diff --git a/.gitmodules b/.gitmodules
new file mode 100644
index 0000000000..47b5635599
--- /dev/null
+++ b/.gitmodules
@@ -0,0 +1,4 @@
+[submodule "tools/tgstation-server"]
+ path = tools/tgstation-server
+ url = https://github.com/tgstation/tgstation-server
+ branch = master
diff --git a/SQL/database_changelog.txt b/SQL/database_changelog.txt
index d0546da131..d28b33a8eb 100644
--- a/SQL/database_changelog.txt
+++ b/SQL/database_changelog.txt
@@ -1,3 +1,23 @@
+20 May 2017, by Jordie0608
+
+Created table `round` to replace tracking of the datapoints 'round_start', 'round_end', 'server_ip', 'game_mode', 'round_end_results', 'end_error', 'end_proper', 'emergency_shuttle', 'map_name' and 'station_renames' in the `feedback` table.
+Once created this table is populated with rows from the `feedback` table.
+
+START TRANSACTION;
+CREATE TABLE `feedback`.`round` (`id` INT(11) NOT NULL AUTO_INCREMENT, `start_datetime` DATETIME NOT NULL, `end_datetime` DATETIME NULL, `server_ip` INT(10) UNSIGNED NOT NULL, `server_port` SMALLINT(5) UNSIGNED NOT NULL, `commit_hash` CHAR(40) NULL, `game_mode` VARCHAR(32) NULL, `game_mode_result` VARCHAR(64) NULL, `end_state` VARCHAR(64) NULL, `shuttle_name` VARCHAR(64) NULL, `map_name` VARCHAR(32) NULL, `station_name` VARCHAR(80) NULL, PRIMARY KEY (`id`));
+INSERT INTO `feedback`.`round`
+(`id`, `start_datetime`, `end_datetime`, `server_ip`, `server_port`, `commit_hash`, `game_mode`, `game_mode_result`, `end_state`, `shuttle_name`, `map_name`, `station_name`)
+SELECT DISTINCT ri.round_id, IFNULL(STR_TO_DATE(st.details,'%a %b %e %H:%i:%s %Y'), TIMESTAMP(0)), STR_TO_DATE(et.details,'%a %b %e %H:%i:%s %Y'), IFNULL(INET_ATON(SUBSTRING_INDEX(IF(si.details = '', '0', IF(SUBSTRING_INDEX(si.details, ':', 1) LIKE '%_._%', si.details, '0')), ':', 1)), INET_ATON(0)), IFNULL(IF(si.details LIKE '%:_%', CAST(SUBSTRING_INDEX(si.details, ':', -1) AS UNSIGNED), '0'), '0'), ch.details, gm.details, mr.details, IFNULL(es.details, ep.details), ss.details, mn.details, sn.details
+FROM `feedback`.`feedback`AS ri
+LEFT JOIN `feedback`.`feedback` AS st ON ri.round_id = st.round_id AND st.var_name = "round_start" LEFT JOIN `feedback`.`feedback` AS et ON ri.round_id = et.round_id AND et.var_name = "round_end" LEFT JOIN `feedback`.`feedback` AS si ON ri.round_id = si.round_id AND si.var_name = "server_ip" LEFT JOIN `feedback`.`feedback` AS ch ON ri.round_id = ch.round_id AND ch.var_name = "revision" LEFT JOIN `feedback`.`feedback` AS gm ON ri.round_id = gm.round_id AND gm.var_name = "game_mode" LEFT JOIN `feedback`.`feedback` AS mr ON ri.round_id = mr.round_id AND mr.var_name = "round_end_result" LEFT JOIN `feedback`.`feedback` AS es ON ri.round_id = es.round_id AND es.var_name = "end_state" LEFT JOIN `feedback`.`feedback` AS ep ON ri.round_id = ep.round_id AND ep.var_name = "end_proper" LEFT JOIN `feedback`.`feedback` AS ss ON ri.round_id = ss.round_id AND ss.var_name = "emergency_shuttle" LEFT JOIN `feedback`.`feedback` AS mn ON ri.round_id = mn.round_id AND mn.var_name = "map_name" LEFT JOIN `feedback`.`feedback` AS sn ON ri.round_id = sn.round_id AND sn.var_name = "station_renames";
+COMMIT;
+
+It's not necessary to delete the rows from the `feedback` table but henceforth these datapoints will be in the `round` table.
+
+Remember to add a prefix to the table names if you use them
+
+----------------------------------------------------
+
21 April 2017, by Jordie0608
Modified table 'player', adding the column 'accountjoindate', removing the column 'id' and making the column 'ckey' the primary key.
diff --git a/SQL/tgstation_schema.sql b/SQL/tgstation_schema.sql
index 73e2d465f3..46729fc9bb 100644
--- a/SQL/tgstation_schema.sql
+++ b/SQL/tgstation_schema.sql
@@ -362,6 +362,29 @@ CREATE TABLE `poll_vote` (
KEY `idx_pvote_optionid_ckey` (`optionid`,`ckey`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `round`
+--
+DROP TABLE IF EXISTS `round`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `round` (
+ `id` INT(11) NOT NULL AUTO_INCREMENT,
+ `start_datetime` DATETIME NOT NULL,
+ `end_datetime` DATETIME NULL,
+ `server_ip` INT(10) UNSIGNED NOT NULL,
+ `server_port` SMALLINT(5) UNSIGNED NOT NULL,
+ `commit_hash` CHAR(40) NULL,
+ `game_mode` VARCHAR(32) NULL,
+ `game_mode_result` VARCHAR(64) NULL,
+ `end_state` VARCHAR(64) NULL,
+ `shuttle_name` VARCHAR(64) NULL,
+ `map_name` VARCHAR(32) NULL,
+ `station_name` VARCHAR(80) NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
diff --git a/SQL/tgstation_schema_prefixed.sql b/SQL/tgstation_schema_prefixed.sql
index 4d74b9deaa..f717bf96ad 100644
--- a/SQL/tgstation_schema_prefixed.sql
+++ b/SQL/tgstation_schema_prefixed.sql
@@ -362,6 +362,29 @@ CREATE TABLE `SS13_poll_vote` (
KEY `idx_pvote_optionid_ckey` (`optionid`,`ckey`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `SS13_round`
+--
+DROP TABLE IF EXISTS `SS13_round`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `SS13_round` (
+ `id` INT(11) NOT NULL AUTO_INCREMENT,
+ `start_datetime` DATETIME NOT NULL,
+ `end_datetime` DATETIME NULL,
+ `server_ip` INT(10) UNSIGNED NOT NULL,
+ `server_port` SMALLINT(5) UNSIGNED NOT NULL,
+ `commit_hash` CHAR(40) NULL,
+ `game_mode` VARCHAR(32) NULL,
+ `game_mode_result` VARCHAR(64) NULL,
+ `end_state` VARCHAR(64) NULL,
+ `shuttle_name` VARCHAR(64) NULL,
+ `map_name` VARCHAR(32) NULL,
+ `station_name` VARCHAR(80) NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm b/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm
index 381e9b96fb..1a4f7aacbb 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm
@@ -13,7 +13,7 @@
"ad" = (
/obj/structure/flora/ausbushes/leafybush,
/turf/open/floor/plating/beach/sand,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"ae" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
@@ -21,44 +21,47 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/beach)
"af" = (
/obj/structure/table,
/obj/item/clothing/mask/gas,
+/obj/machinery/light/small{
+ dir = 1
+ },
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/beach)
"ag" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/beach)
"ah" = (
/obj/machinery/power/smes,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/beach)
"ai" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/beach)
"aj" = (
/turf/closed/wall/mineral/sandstone{
baseturf = /turf/open/floor/plating/beach/sand
},
-/area/ruin/powered)
+/area/ruin/powered/beach)
"ak" = (
/obj/structure/toilet,
/obj/effect/decal/sandeffect,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/beach)
"al" = (
/obj/structure/urinal{
pixel_y = 32
@@ -66,7 +69,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/beach)
"am" = (
/obj/structure/urinal{
pixel_y = 32
@@ -75,13 +78,16 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/beach)
"an" = (
/obj/item/device/flashlight/lantern,
+/obj/machinery/light/small{
+ dir = 1
+ },
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/beach)
"ao" = (
/obj/structure/sink{
dir = 4;
@@ -96,213 +102,219 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/beach)
"ap" = (
/obj/structure/flora/ausbushes/sparsegrass,
/turf/open/floor/plating/beach/sand,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"aq" = (
/obj/structure/flora/ausbushes/sunnybush,
/turf/open/floor/plating/beach/sand,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"ar" = (
/turf/open/floor/plating/beach/sand,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"as" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/beach)
"at" = (
/obj/item/weapon/tank/internals/oxygen,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/beach)
"au" = (
/obj/effect/decal/sandeffect,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/beach)
"av" = (
/obj/machinery/door/airlock/hatch,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/beach)
"aw" = (
/obj/machinery/door/airlock/sandstone,
/turf/open/floor/wood,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"ax" = (
/obj/structure/extinguisher_cabinet,
/turf/closed/wall/mineral/sandstone{
baseturf = /turf/open/floor/plating/beach/sand
},
-/area/ruin/powered)
+/area/ruin/powered/beach)
"ay" = (
/obj/machinery/door/airlock/hatch,
/obj/effect/decal/sandeffect,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/beach)
"az" = (
/obj/item/clothing/neck/necklace/dope,
/obj/item/weapon/reagent_containers/spray/spraytan,
/turf/open/floor/plating/beach/sand,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"aA" = (
/obj/effect/decal/sandeffect,
/turf/open/floor/plating/beach/sand,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"aB" = (
+/obj/effect/turf_decal/stripes/asteroid/line{
+ dir = 1
+ },
/turf/open/floor/plasteel/asteroid{
baseturf = /turf/open/floor/plating/beach/sand;
tag = "icon-asteroidwarning (NORTH)"
},
-/obj/effect/turf_decal/stripes/asteroid/line{
- dir = 1
- },
-/area/ruin/powered)
+/area/ruin/powered/beach)
"aC" = (
/turf/open/floor/wood,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"aD" = (
/obj/structure/table,
/obj/item/weapon/storage/box/drinkingglasses,
/obj/item/weapon/storage/box/drinkingglasses,
/obj/item/weapon/reagent_containers/food/drinks/shaker,
/obj/item/weapon/storage/box/beakers,
+/obj/machinery/light{
+ dir = 1
+ },
/turf/open/floor/wood,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"aE" = (
/obj/structure/table,
/obj/machinery/reagentgrinder,
/turf/open/floor/wood,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"aF" = (
/obj/machinery/vending/boozeomat{
emagged = 1;
req_access_txt = "0"
},
/turf/open/floor/wood,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"aG" = (
/obj/structure/table,
/obj/item/weapon/book/manual/barman_recipes,
/obj/item/weapon/reagent_containers/glass/rag,
/turf/open/floor/wood,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"aH" = (
/obj/structure/table,
/obj/item/weapon/storage/box/donkpockets,
+/obj/machinery/light{
+ dir = 1
+ },
/turf/open/floor/wood,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"aI" = (
/obj/structure/table,
/obj/machinery/microwave,
/turf/open/floor/wood,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"aJ" = (
/obj/structure/closet/crate/bin,
/obj/item/weapon/tank/internals/emergency_oxygen,
/obj/item/trash/candy,
/obj/item/toy/talking/owl,
+/obj/effect/turf_decal/stripes/asteroid/line{
+ dir = 1
+ },
/turf/open/floor/plasteel/asteroid{
baseturf = /turf/open/floor/plating/beach/sand;
tag = "icon-asteroidwarning (NORTH)"
},
-/obj/effect/turf_decal/stripes/asteroid/line{
- dir = 1
- },
-/area/ruin/powered)
+/area/ruin/powered/beach)
"aK" = (
/turf/open/floor/plasteel/asteroid{
baseturf = /turf/open/floor/plating/beach/sand
},
-/area/ruin/powered)
+/area/ruin/powered/beach)
"aL" = (
/obj/effect/mob_spawn/human/bartender/alive{
name = "beach bum sleeper"
},
/turf/open/floor/wood,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"aM" = (
/obj/structure/reagent_dispensers/beerkeg,
/turf/open/floor/wood,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"aN" = (
/obj/machinery/vending/cigarette,
/turf/open/floor/plasteel/asteroid{
baseturf = /turf/open/floor/plating/beach/sand
},
-/area/ruin/powered)
+/area/ruin/powered/beach)
"aO" = (
/obj/structure/stacklifter,
/turf/open/floor/plating/beach/sand,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"aP" = (
/obj/structure/table/wood,
/turf/open/floor/wood,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"aQ" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/turf/open/floor/wood,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"aR" = (
/obj/structure/table/wood,
/obj/item/weapon/reagent_containers/food/drinks/bottle/tequila,
/turf/open/floor/wood,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"aS" = (
/obj/machinery/processor,
/turf/open/floor/wood,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"aT" = (
/obj/machinery/vending/cola,
/turf/open/floor/plasteel/asteroid{
baseturf = /turf/open/floor/plating/beach/sand
},
-/area/ruin/powered)
+/area/ruin/powered/beach)
"aU" = (
/obj/effect/overlay/palmtree_l,
/turf/open/floor/plating/beach/sand,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"aV" = (
/obj/effect/mob_spawn/human/beach/alive{
flavour_text = "You're, like, totally a dudebro, bruh. Ch'yea. You came here, like, on spring break, hopin' to pick up some bangin' hot chicks, y'knaw?";
- pocket2 = /obj/item/weapon/reagent_containers/food/snacks/pizzaslice/dank;
+ l_pocket = /obj/item/weapon/reagent_containers/food/snacks/pizzaslice/dank;
uniform = /obj/item/clothing/under/pants/youngfolksjeans
},
/turf/open/floor/plating/beach/sand,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"aW" = (
/obj/structure/chair/stool,
+/obj/effect/turf_decal/stripes/asteroid/line{
+ dir = 1
+ },
/turf/open/floor/plasteel/asteroid{
baseturf = /turf/open/floor/plating/beach/sand;
tag = "icon-asteroidwarning (NORTH)"
},
-/obj/effect/turf_decal/stripes/asteroid/line{
- dir = 1
- },
-/area/ruin/powered)
+/area/ruin/powered/beach)
"aX" = (
/obj/structure/closet/secure_closet/freezer/meat,
/turf/open/floor/wood,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"aY" = (
/obj/machinery/vending/snack,
/turf/open/floor/plasteel/asteroid{
baseturf = /turf/open/floor/plating/beach/sand
},
-/area/ruin/powered)
+/area/ruin/powered/beach)
"aZ" = (
/obj/effect/overlay/coconut,
/turf/open/floor/plating/beach/sand,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"ba" = (
/obj/machinery/light{
dir = 4;
@@ -316,24 +328,24 @@
"bb" = (
/obj/structure/weightlifter,
/turf/open/floor/plating/beach/sand,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"bc" = (
/obj/machinery/door/airlock/sandstone,
/obj/effect/decal/sandeffect,
/turf/open/floor/wood,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"bd" = (
/obj/structure/closet/secure_closet/freezer/kitchen{
req_access = null
},
/turf/open/floor/wood,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"be" = (
/obj/vehicle/scooter/skateboard{
dir = 4
},
/turf/open/floor/plating/beach/sand,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"bf" = (
/obj/machinery/light{
icon_state = "tube1";
@@ -347,10 +359,10 @@
"bg" = (
/obj/structure/sign/barsign,
/turf/closed/wall/mineral/sandstone,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"bh" = (
/turf/closed/wall/mineral/sandstone,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"bi" = (
/turf/open/floor/plating/beach/sand{
density = 1;
@@ -365,14 +377,14 @@
/turf/open/floor/plasteel/asteroid{
baseturf = /turf/open/floor/plating/beach/sand
},
-/area/ruin/powered)
+/area/ruin/powered/beach)
"bk" = (
/obj/structure/table/wood,
/obj/item/weapon/reagent_containers/food/snacks/pastatomato,
/turf/open/floor/plasteel/asteroid{
baseturf = /turf/open/floor/plating/beach/sand
},
-/area/ruin/powered)
+/area/ruin/powered/beach)
"bl" = (
/obj/structure/chair/wood/normal{
icon_state = "wooden_chair";
@@ -381,7 +393,7 @@
/turf/open/floor/plasteel/asteroid{
baseturf = /turf/open/floor/plating/beach/sand
},
-/area/ruin/powered)
+/area/ruin/powered/beach)
"bm" = (
/mob/living/simple_animal/crab,
/turf/open/floor/plating/beach/sand{
@@ -456,7 +468,7 @@
"bx" = (
/obj/structure/flora/rock,
/turf/open/floor/plating/beach/sand,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"by" = (
/obj/machinery/door/airlock/sandstone,
/obj/effect/decal/sandeffect,
@@ -467,7 +479,7 @@
"bz" = (
/mob/living/simple_animal/crab,
/turf/open/floor/plating/beach/sand,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"bA" = (
/obj/structure/window/reinforced{
dir = 1
@@ -480,7 +492,7 @@
/obj/item/weapon/storage/firstaid,
/obj/item/weapon/storage/firstaid/brute,
/turf/open/floor/wood,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"bB" = (
/obj/structure/window/reinforced{
dir = 4;
@@ -492,7 +504,7 @@
},
/obj/structure/chair/stool,
/turf/open/floor/wood,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"bC" = (
/obj/structure/table/wood,
/obj/item/weapon/tank/internals/oxygen,
@@ -512,11 +524,11 @@
"bE" = (
/obj/item/weapon/reagent_containers/spray/spraytan,
/turf/open/floor/plating/beach/sand,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"bF" = (
/obj/item/toy/beach_ball,
/turf/open/floor/plating/beach/sand,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"bG" = (
/obj/structure/window/reinforced{
dir = 8
@@ -524,7 +536,7 @@
/obj/structure/window/reinforced,
/obj/item/device/megaphone,
/turf/open/floor/wood,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"bH" = (
/obj/structure/window/reinforced{
dir = 4;
@@ -532,13 +544,13 @@
},
/obj/effect/mob_spawn/human/beach/alive{
flavour_text = "You're a spunky lifeguard! It's up to you to make sure nobody drowns or gets eaten by sharks and stuff.";
- has_id = 1;
+ id = /obj/item/weapon/card/id;
id_access = "Medical Doctor";
id_job = "Lifeguard";
mob_gender = "female"
},
/turf/open/floor/wood,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"bI" = (
/obj/structure/dresser,
/turf/open/floor/pod/dark{
@@ -548,11 +560,11 @@
"bJ" = (
/obj/structure/chair,
/turf/open/floor/plating/beach/sand,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"bK" = (
/obj/item/weapon/storage/backpack/dufflebag,
/turf/open/floor/plating/beach/sand,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"bL" = (
/obj/effect/decal/sandeffect{
density = 1
@@ -562,43 +574,227 @@
baseturf = /turf/open/floor/plating/lava/smooth;
density = 1
},
-/area/ruin/powered)
+/area/ruin/powered/beach)
"bM" = (
/turf/open/floor/plasteel/stairs/old,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"bN" = (
/obj/structure/flora/ausbushes/reedbush,
/turf/open/floor/plating/beach/sand,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"bO" = (
/obj/item/device/camera,
/turf/open/floor/plating/beach/sand,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"bP" = (
/obj/item/weapon/reagent_containers/food/drinks/beer,
/turf/open/floor/plating/beach/sand,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"bQ" = (
/obj/structure/flora/ausbushes/reedbush,
/turf/open/floor/plating/beach/coastline_t,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"bR" = (
/turf/open/floor/plating/beach/coastline_t,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"bS" = (
/obj/structure/flora/ausbushes/sparsegrass,
/turf/open/floor/plating/beach/coastline_t,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"bT" = (
/turf/open/floor/plating/beach/coastline_b,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"bU" = (
/turf/open/floor/plating/beach/water,
-/area/ruin/powered)
+/area/ruin/powered/beach)
"bV" = (
/obj/structure/flora/ausbushes/stalkybush,
/turf/open/floor/plating/beach/water,
+/area/ruin/powered/beach)
+"bW" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/beach)
+"bX" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/beach)
+"bY" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/beach)
+"bZ" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/beach)
+"ca" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/beach)
+"cb" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/beach)
+"cc" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/beach)
+"cd" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/closed/wall/mineral/sandstone{
+ baseturf = /turf/open/floor/plating/beach/sand
+ },
+/area/ruin/powered/beach)
+"ce" = (
+/obj/effect/decal/sandeffect,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating/beach/sand,
+/area/ruin/powered/beach)
+"cf" = (
+/obj/effect/decal/sandeffect,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating/beach/sand,
+/area/ruin/powered/beach)
+"cg" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plating/beach/sand,
+/area/ruin/powered/beach)
+"ch" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plating/beach/sand,
+/area/ruin/powered/beach)
+"ci" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plating/beach/sand,
+/area/ruin/powered/beach)
+"cj" = (
+/obj/effect/turf_decal/stripes/asteroid/line{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/asteroid{
+ baseturf = /turf/open/floor/plating/beach/sand;
+ tag = "icon-asteroidwarning (NORTH)"
+ },
+/area/ruin/powered/beach)
+"ck" = (
+/obj/effect/turf_decal/stripes/asteroid/line{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/asteroid{
+ baseturf = /turf/open/floor/plating/beach/sand;
+ tag = "icon-asteroidwarning (NORTH)"
+ },
+/area/ruin/powered/beach)
+"cl" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plating/beach/sand,
+/area/ruin/powered/beach)
+"cm" = (
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/turf/open/floor/pod/dark{
+ baseturf = /turf/open/floor/plating/asteroid/basalt
+ },
/area/ruin/powered)
+"cn" = (
+/obj/effect/decal/sandeffect,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/pod/dark{
+ baseturf = /turf/open/floor/plating/asteroid/basalt
+ },
+/area/ruin/powered)
+"co" = (
+/obj/effect/decal/sandeffect,
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/turf/open/floor/pod/dark{
+ baseturf = /turf/open/floor/plating/asteroid/basalt
+ },
+/area/ruin/powered)
+"cp" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/pod/dark{
+ baseturf = /turf/open/floor/plating/asteroid/basalt
+ },
+/area/ruin/powered)
+"cq" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plating/beach/sand,
+/area/ruin/powered/beach)
+"cr" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plating/beach/sand,
+/area/ruin/powered/beach)
+"cs" = (
+/obj/effect/overlay/palmtree_l,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plating/beach/sand,
+/area/ruin/powered/beach)
+"ct" = (
+/obj/machinery/light,
+/turf/open/floor/plating/beach/water,
+/area/ruin/powered/beach)
+"cu" = (
+/obj/machinery/light,
+/turf/open/floor/plating/beach/water,
+/area/ruin/powered/beach)
+"cv" = (
+/obj/machinery/light,
+/turf/open/floor/plating/beach/water,
+/area/ruin/powered/beach)
+"cw" = (
+/obj/machinery/light,
+/turf/open/floor/plating/beach/water,
+/area/ruin/powered/beach)
+"cx" = (
+/obj/machinery/light,
+/turf/open/floor/plating/beach/water,
+/area/ruin/powered/beach)
+"cy" = (
+/obj/machinery/light,
+/turf/open/floor/plating/beach/water,
+/area/ruin/powered/beach)
(1,1,1) = {"
aa
@@ -646,11 +842,11 @@ ab
ab
ab
bn
-br
+cm
bu
bv
bu
-bs
+co
bC
ab
ab
@@ -673,7 +869,7 @@ ab
ab
ab
ap
-ar
+cg
ar
ar
ab
@@ -721,7 +917,7 @@ ap
bR
bT
bU
-bU
+ct
ab
ab
aa
@@ -740,7 +936,7 @@ aO
ar
bb
ar
-ar
+ci
ar
ar
aA
@@ -748,7 +944,7 @@ aA
aA
ar
ar
-ar
+cr
bN
bR
bT
@@ -819,7 +1015,7 @@ bT
bU
bU
bU
-bU
+cv
ab
ab
aa
@@ -859,10 +1055,10 @@ aa
(9,1,1) = {"
aa
ab
-ab
-ab
-ab
-aA
+bW
+bW
+bW
+ce
aA
aA
aA
@@ -893,7 +1089,7 @@ aa
ac
ae
as
-ab
+bW
aB
aK
aK
@@ -980,7 +1176,7 @@ bU
bU
bU
bU
-bU
+cx
ab
aa
"}
@@ -1051,7 +1247,7 @@ aa
(15,1,1) = {"
aa
ac
-aj
+cd
aj
aj
aF
@@ -1092,7 +1288,7 @@ aj
aj
bc
aj
-aB
+cj
aK
aA
ar
@@ -1172,7 +1368,7 @@ bU
bU
bU
bU
-bU
+cy
ab
aa
"}
@@ -1188,14 +1384,14 @@ aj
aj
aj
aj
-aB
+ck
aK
aA
ar
ar
ar
ar
-ar
+cq
ar
ar
bR
@@ -1275,10 +1471,10 @@ aa
(22,1,1) = {"
aa
ab
-ab
-ab
-ab
-aA
+bW
+bW
+bW
+cf
aA
aA
aA
@@ -1363,7 +1559,7 @@ bT
bU
bU
bU
-bU
+cw
ab
ab
aa
@@ -1412,7 +1608,7 @@ aq
ar
be
ar
-ar
+cl
ar
ar
aA
@@ -1420,7 +1616,7 @@ aA
aA
ar
ar
-aU
+cs
ar
bR
bT
@@ -1457,7 +1653,7 @@ ap
bR
bT
bU
-bU
+cu
ab
ab
aa
@@ -1473,7 +1669,7 @@ ab
ab
ab
ap
-ar
+ch
ap
ar
ab
@@ -1510,11 +1706,11 @@ ab
ab
ab
bo
-bs
+cn
bu
bu
bv
-br
+cp
bC
ab
ab
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_biodome_clown_planet.dmm b/_maps/RandomRuins/LavaRuins/lavaland_biodome_clown_planet.dmm
index 3c67c89821..423d2e424e 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_biodome_clown_planet.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_biodome_clown_planet.dmm
@@ -83,7 +83,7 @@
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"an" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -93,7 +93,7 @@
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"ao" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -103,7 +103,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"ap" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -113,7 +113,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"aq" = (
/obj/structure/disposalpipe/trunk,
/obj/structure/disposaloutlet{
@@ -122,7 +122,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"ar" = (
/obj/structure/disposalpipe/segment{
invisibility = 101
@@ -131,7 +131,7 @@
icon_state = "darkyellowfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"as" = (
/obj/effect/mob_spawn/human/corpse/damaged,
/obj/effect/decal/cleanable/blood/old,
@@ -142,7 +142,7 @@
icon_state = "darkyellowfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"at" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -153,7 +153,7 @@
icon_state = "darkyellowfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"au" = (
/obj/structure/disposalpipe/segment{
invisibility = 101
@@ -161,7 +161,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"av" = (
/obj/structure/disposalpipe/sortjunction{
dir = 1;
@@ -172,7 +172,7 @@
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"aw" = (
/obj/structure/window/reinforced,
/obj/structure/disposalpipe/segment{
@@ -181,7 +181,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"ax" = (
/obj/effect/decal/cleanable/pie_smudge,
/obj/structure/disposalpipe/segment{
@@ -191,7 +191,7 @@
icon_state = "darkyellowfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"ay" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -203,7 +203,7 @@
icon_state = "darkyellowfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"az" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -214,7 +214,7 @@
icon_state = "darkyellowfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"aA" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -224,7 +224,7 @@
icon_state = "darkyellowfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"aB" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -235,20 +235,20 @@
icon_state = "darkyellowfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"aC" = (
/turf/open/indestructible{
icon_state = "darkyellowfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"aD" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/indestructible{
icon_state = "darkyellowfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"aE" = (
/obj/effect/decal/cleanable/cobweb{
icon_state = "cobweb2"
@@ -257,7 +257,7 @@
icon_state = "darkyellowfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"aF" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -268,7 +268,7 @@
icon_state = "darkyellowfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"aG" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -279,7 +279,7 @@
icon_state = "darkyellowfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"aH" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -291,7 +291,7 @@
icon_state = "darkyellowfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"aI" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -303,7 +303,7 @@
icon_state = "darkyellowfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"aJ" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -313,7 +313,7 @@
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"aK" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -324,7 +324,7 @@
icon_state = "darkyellowfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"aL" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -333,7 +333,7 @@
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"aM" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -344,13 +344,13 @@
icon_state = "darkyellowfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"aN" = (
/obj/structure/disposalpipe/segment{
invisibility = 101
},
/turf/open/floor/plating,
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"aO" = (
/obj/item/weapon/bikehorn,
/obj/structure/disposalpipe/segment{
@@ -361,7 +361,7 @@
icon_state = "darkyellowfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"aP" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -370,7 +370,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"aQ" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
@@ -383,7 +383,7 @@
invisibility = 101
},
/turf/open/floor/plating,
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"aS" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -393,7 +393,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"aT" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment{
@@ -403,14 +403,14 @@
icon_state = "darkyellowfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"aU" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"aV" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -422,7 +422,7 @@
icon_state = "darkyellowfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"aW" = (
/obj/item/weapon/bikehorn,
/obj/effect/decal/cleanable/dirt,
@@ -433,7 +433,7 @@
icon_state = "darkyellowfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"aX" = (
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -444,7 +444,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"aY" = (
/obj/item/weapon/bikehorn,
/obj/structure/disposalpipe/segment{
@@ -454,7 +454,7 @@
icon_state = "darkyellowfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"aZ" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -463,14 +463,14 @@
/turf/open/indestructible{
icon_state = "darkredfull"
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"ba" = (
/obj/effect/decal/cleanable/pie_smudge,
/turf/open/indestructible{
icon_state = "darkyellowfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bb" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -479,7 +479,7 @@
/turf/open/indestructible{
icon_state = "white"
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bc" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -491,7 +491,7 @@
icon_state = "darkyellowfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bd" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -505,7 +505,7 @@
/turf/open/indestructible{
icon_state = "white"
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"be" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -516,7 +516,7 @@
/turf/open/indestructible{
icon_state = "white"
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bf" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -528,7 +528,7 @@
icon_state = "darkyellowfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bg" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -538,7 +538,7 @@
/turf/open/indestructible{
icon_state = "white"
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bh" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -548,7 +548,7 @@
/turf/open/indestructible{
icon_state = "white"
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bi" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -558,7 +558,7 @@
/turf/open/indestructible{
icon_state = "white"
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bj" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -567,20 +567,24 @@
/turf/open/indestructible{
icon_state = "light_on"
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bk" = (
/obj/structure/disposalpipe/segment{
invisibility = 101
},
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
/turf/open/indestructible{
icon_state = "white"
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bl" = (
/turf/open/indestructible{
icon_state = "light_on"
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bm" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -590,7 +594,7 @@
/turf/open/indestructible{
icon_state = "white"
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bn" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -600,7 +604,7 @@
/turf/open/indestructible{
icon_state = "white"
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bo" = (
/obj/machinery/light{
icon_state = "tube1";
@@ -610,18 +614,18 @@
/area/ruin/powered)
"bp" = (
/turf/closed/mineral/clown,
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bq" = (
/obj/item/weapon/pickaxe,
/turf/open/indestructible{
icon_state = "white"
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"br" = (
/turf/open/indestructible{
icon_state = "white"
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bs" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -631,7 +635,7 @@
/turf/open/indestructible{
icon_state = "darkredfull"
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bt" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -641,7 +645,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bu" = (
/obj/item/weapon/bikehorn,
/obj/structure/disposalpipe/segment{
@@ -653,7 +657,7 @@
icon_state = "darkyellowfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bv" = (
/obj/machinery/light{
dir = 8
@@ -669,14 +673,14 @@
icon_state = "darkredfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"by" = (
/obj/structure/disposalpipe/segment,
/turf/open/indestructible{
icon_state = "darkyellowfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bz" = (
/obj/machinery/disposal/deliveryChute{
dir = 1
@@ -685,13 +689,13 @@
/turf/open/indestructible{
icon_state = "white"
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bA" = (
/turf/open/indestructible{
icon_state = "darkredfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bB" = (
/turf/open/indestructible/sound{
icon_state = "bananium";
@@ -699,7 +703,7 @@
sound = 'sound/effects/clownstep1.ogg';
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bC" = (
/obj/structure/disposalpipe/junction{
dir = 1;
@@ -711,7 +715,7 @@
icon_state = "darkyellowfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bD" = (
/obj/structure/mecha_wreckage/honker,
/obj/structure/disposalpipe/segment{
@@ -721,7 +725,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bE" = (
/obj/effect/decal/cleanable/oil,
/obj/structure/disposalpipe/segment{
@@ -732,7 +736,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bF" = (
/obj/effect/decal/cleanable/cobweb{
icon_state = "cobweb2"
@@ -743,7 +747,7 @@
sound = 'sound/effects/clownstep1.ogg';
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bG" = (
/obj/item/weapon/grown/bananapeel{
color = "#2F3000";
@@ -759,7 +763,7 @@
sound = 'sound/effects/clownstep1.ogg';
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bI" = (
/obj/effect/mob_spawn/human/corpse/damaged,
/obj/effect/decal/cleanable/blood/old,
@@ -767,7 +771,7 @@
icon_state = "darkyellowfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bJ" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -777,7 +781,7 @@
icon_state = "darkredfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bK" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -788,19 +792,19 @@
icon_state = "darkredfull";
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bL" = (
/obj/item/weapon/reagent_containers/food/drinks/trophy/gold_cup,
/obj/structure/table/glass,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bM" = (
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bN" = (
/obj/machinery/disposal/deliveryChute,
/obj/structure/disposalpipe/trunk{
@@ -809,7 +813,7 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bO" = (
/obj/effect/decal/cleanable/cobweb,
/turf/open/indestructible/sound{
@@ -818,56 +822,59 @@
sound = 'sound/effects/clownstep1.ogg';
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bP" = (
/obj/structure/statue/bananium/clown,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bQ" = (
/obj/structure/table/glass,
/obj/item/weapon/grown/bananapeel/bluespace,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bR" = (
/obj/structure/table/glass,
/obj/item/clothing/shoes/clown_shoes/banana_shoes,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bS" = (
/obj/item/weapon/coin/clown,
/obj/item/weapon/coin/clown,
/obj/item/weapon/coin/clown,
/obj/item/weapon/coin/clown,
+/obj/machinery/light/small{
+ dir = 8
+ },
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bT" = (
/obj/item/slime_extract/rainbow,
/obj/structure/table/glass,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bU" = (
/obj/item/weapon/bikehorn/airhorn,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bV" = (
/obj/structure/table/glass,
/obj/item/weapon/gun/magic/staff/honk,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bW" = (
/obj/item/weapon/bikehorn,
/turf/open/indestructible/sound{
@@ -876,7 +883,7 @@
sound = 'sound/effects/clownstep1.ogg';
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bX" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -891,7 +898,7 @@
sound = 'sound/effects/clownstep1.ogg';
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"bZ" = (
/obj/machinery/door/airlock/clown,
/turf/open/indestructible/sound{
@@ -900,7 +907,7 @@
sound = 'sound/effects/clownstep1.ogg';
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"ca" = (
/obj/item/weapon/bikehorn,
/obj/effect/decal/cleanable/dirt,
@@ -910,13 +917,588 @@
sound = 'sound/effects/clownstep1.ogg';
wet = 5
},
-/area/ruin/powered)
+/area/ruin/powered/clownplanet)
"cb" = (
/obj/machinery/light{
dir = 1
},
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/ruin/powered)
+"cc" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cd" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"ce" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cf" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cg" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"ch" = (
+/obj/structure/disposalpipe/segment{
+ invisibility = 101
+ },
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"ci" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cj" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"ck" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cl" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cm" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cn" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"co" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cp" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cq" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cr" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cs" = (
+/obj/structure/disposalpipe/segment{
+ invisibility = 101
+ },
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"ct" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cu" = (
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cv" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cw" = (
+/obj/structure/disposalpipe/segment{
+ invisibility = 101
+ },
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cx" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cy" = (
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cz" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cA" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cB" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cC" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cD" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cE" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cF" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cG" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cH" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cI" = (
+/obj/structure/disposalpipe/segment{
+ invisibility = 101
+ },
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cJ" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cK" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cL" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cM" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cN" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cO" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cP" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cQ" = (
+/obj/structure/disposalpipe/segment{
+ invisibility = 101
+ },
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cR" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cS" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cT" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cU" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cV" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cW" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cX" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cY" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"cZ" = (
+/obj/structure/disposalpipe/segment{
+ invisibility = 101
+ },
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"da" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"db" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"dc" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"dd" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"de" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"df" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"dg" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"dh" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"di" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"dj" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"dk" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"dl" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"dm" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"dn" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"do" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"dp" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"dq" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"dr" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"ds" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"dt" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"du" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"dv" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"dw" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"dx" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"dy" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"dz" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"dA" = (
+/obj/machinery/light/small,
+/turf/open/floor/noslip{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/powered)
+"dB" = (
+/obj/structure/disposalpipe/segment{
+ invisibility = 101
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered/clownplanet)
+"dC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ invisibility = 101
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered/clownplanet)
+"dD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c";
+ invisibility = 101
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered/clownplanet)
+"dE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c";
+ invisibility = 101
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered/clownplanet)
+"dF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ invisibility = 101
+ },
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/turf/open/indestructible{
+ icon_state = "white"
+ },
+/area/ruin/powered/clownplanet)
+"dG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ invisibility = 101
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/indestructible{
+ icon_state = "white"
+ },
+/area/ruin/powered/clownplanet)
+"dH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c";
+ invisibility = 101
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/indestructible{
+ icon_state = "white"
+ },
+/area/ruin/powered/clownplanet)
+"dI" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/indestructible{
+ icon_state = "darkredfull";
+ wet = 5
+ },
+/area/ruin/powered/clownplanet)
+"dJ" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/indestructible{
+ icon_state = "darkredfull";
+ wet = 5
+ },
+/area/ruin/powered/clownplanet)
+"dK" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/carpet{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"dL" = (
+/obj/item/weapon/coin/clown,
+/obj/item/weapon/coin/clown,
+/obj/item/weapon/coin/clown,
+/obj/item/weapon/coin/clown,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/carpet{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/clownplanet)
+"dM" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/indestructible/sound{
+ icon_state = "bananium";
+ name = "bananium floor";
+ sound = 'sound/effects/clownstep1.ogg';
+ wet = 5
+ },
+/area/ruin/powered/clownplanet)
+"dN" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/indestructible/sound{
+ icon_state = "bananium";
+ name = "bananium floor";
+ sound = 'sound/effects/clownstep1.ogg';
+ wet = 5
+ },
+/area/ruin/powered/clownplanet)
+"dO" = (
+/obj/machinery/light,
+/turf/open/indestructible/sound{
+ icon_state = "bananium";
+ name = "bananium floor";
+ sound = 'sound/effects/clownstep1.ogg';
+ wet = 5
+ },
+/area/ruin/powered/clownplanet)
+"dP" = (
+/obj/machinery/light,
+/turf/open/indestructible/sound{
+ icon_state = "bananium";
+ name = "bananium floor";
+ sound = 'sound/effects/clownstep1.ogg';
+ wet = 5
+ },
+/area/ruin/powered/clownplanet)
(1,1,1) = {"
aa
@@ -1065,7 +1647,7 @@ ak
am
aN
aS
-aV
+dE
aH
bf
aJ
@@ -1095,7 +1677,7 @@ aa
ah
ak
ak
-ah
+cc
aF
at
ar
@@ -1137,7 +1719,7 @@ ar
aJ
aL
aL
-ah
+cc
bx
bA
bB
@@ -1170,16 +1752,16 @@ aL
aX
aL
bb
-bb
+dF
bp
-ah
-bA
+cc
+dI
bA
bB
-ah
-ah
+cc
+cc
bH
-ah
+cc
bB
bB
bB
@@ -1207,8 +1789,8 @@ bb
bb
bq
bp
-ah
-ah
+cc
+cc
bA
bB
bB
@@ -1217,7 +1799,7 @@ bB
bB
ca
bH
-bB
+dO
ah
ak
ak
@@ -1245,7 +1827,7 @@ bA
bA
bA
bB
-ah
+cc
bB
bB
bH
@@ -1264,8 +1846,8 @@ ae
ah
ak
ao
-al
-ar
+ch
+dB
aH
az
az
@@ -1275,12 +1857,12 @@ bg
bj
bl
bp
-ah
+cc
bA
bA
bB
bB
-ah
+cc
bB
bB
bB
@@ -1306,18 +1888,18 @@ an
aB
aL
bb
-bb
+dG
br
-ah
-ah
+cc
+cc
bA
bB
bB
-ah
-ah
+cc
+cc
bB
bB
-ah
+cc
bB
bH
ak
@@ -1331,7 +1913,7 @@ ab
ad
ah
ak
-ah
+cc
at
ar
aB
@@ -1342,15 +1924,15 @@ aB
aL
aL
bs
-al
+ch
aJ
-ah
-ah
-ah
+cc
+cc
+cc
bP
bS
-ah
-bB
+cc
+dM
bB
bH
ca
@@ -1378,13 +1960,13 @@ aA
aV
ay
az
-ah
-ah
+cc
+cc
bL
bM
bM
bM
-ah
+cc
bB
bH
bH
@@ -1402,10 +1984,10 @@ al
al
au
ar
-al
+ch
ar
aT
-al
+ch
ax
ar
aH
@@ -1413,13 +1995,13 @@ aD
aA
aM
aG
-ah
-bM
+cc
+dK
bQ
bT
bM
-ah
-ah
+cc
+cc
bH
bB
bB
@@ -1431,7 +2013,7 @@ ah
(16,1,1) = {"
ac
ag
-ac
+dA
ah
ak
ao
@@ -1447,7 +2029,7 @@ bt
aM
aG
aV
-al
+ch
bN
bM
bU
@@ -1456,7 +2038,7 @@ bZ
bB
bH
bB
-ah
+cc
ak
bX
ak
@@ -1481,12 +2063,12 @@ bu
by
bC
aD
-ah
+cc
bM
bR
bV
bM
-ah
+cc
bB
bB
bB
@@ -1502,7 +2084,7 @@ ac
ah
ah
ak
-ah
+cc
az
az
az
@@ -1515,12 +2097,12 @@ aG
ba
aL
bI
-ah
+cc
bL
bM
bM
bM
-ah
+cc
bB
bB
bB
@@ -1536,25 +2118,25 @@ ad
ah
ak
ak
-ah
+cc
az
az
aO
aA
aA
aL
-ah
-ah
+cc
+cc
aZ
-ah
+cc
bD
-ah
+cc
bB
-ah
+cc
bP
-bS
-ah
-bB
+dL
+cc
+dN
bB
bH
bH
@@ -1569,8 +2151,8 @@ aa
ad
ah
ak
-ah
-ah
+cc
+cc
aA
aA
aA
@@ -1580,13 +2162,13 @@ aL
bh
bk
bn
-ah
+cc
bE
aJ
bB
bB
-ah
-ah
+cc
+cc
bY
bB
bB
@@ -1603,9 +2185,9 @@ aa
ae
ah
ak
-ah
-ah
-aA
+cc
+cc
+dC
aK
aL
az
@@ -1615,12 +2197,12 @@ bb
bl
bl
bp
-ah
+cc
bJ
bA
bB
bB
-ah
+cc
bB
bH
bB
@@ -1649,9 +2231,9 @@ bb
bl
bl
bz
-al
+ch
bK
-ah
+cc
bB
bB
bH
@@ -1659,7 +2241,7 @@ bH
bH
bB
bW
-bB
+dP
ah
bX
ak
@@ -1671,8 +2253,8 @@ aa
aa
ah
ak
-ah
-ah
+cc
+cc
aC
aA
aA
@@ -1683,7 +2265,7 @@ bi
bm
br
bp
-ah
+cc
bA
bA
bB
@@ -1705,8 +2287,8 @@ aa
aa
ah
ak
-ah
-ah
+cc
+cc
aD
aA
aL
@@ -1714,17 +2296,17 @@ aA
aL
aL
bh
-bn
+dH
bp
-ah
-bA
+cc
+dJ
bA
bB
bB
bB
bB
bB
-ah
+cc
bB
bB
ak
@@ -1740,7 +2322,7 @@ aa
ah
ak
ak
-ah
+cc
aE
aA
aA
@@ -1748,8 +2330,8 @@ aA
aM
aB
aL
-ah
-ah
+cc
+cc
bA
bA
bB
@@ -1774,15 +2356,15 @@ aa
ah
ah
ak
-ah
-ah
+cc
+cc
aM
aB
-aM
+dD
ar
ar
aS
-ah
+cc
ak
ah
bF
@@ -1791,7 +2373,7 @@ bB
ah
bB
bB
-ah
+cc
bB
bB
ak
@@ -1810,13 +2392,13 @@ ah
ah
ak
ak
-ah
-aQ
-ah
+cc
+cu
+cc
ba
aC
-aQ
-ah
+cu
+cc
ak
ah
ah
@@ -1849,7 +2431,7 @@ ak
aU
aU
aU
-ah
+cc
ak
ah
ah
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm
index 79f1604d5d..127d5b3d55 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm
@@ -22,38 +22,38 @@
/turf/closed/wall/mineral/titanium/nodiagonal{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"af" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"ag" = (
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"ah" = (
/obj/structure/toilet,
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"ai" = (
/obj/machinery/vending/coffee,
/turf/open/floor/plasteel/cmo{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"aj" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/turf/open/floor/plasteel/cmo{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"ak" = (
/obj/structure/table/wood,
/obj/item/device/taperecorder,
@@ -61,34 +61,37 @@
/turf/open/floor/plasteel/cmo{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"al" = (
/obj/structure/table/wood,
/obj/item/toy/carpplushie,
/turf/open/floor/plasteel/cmo{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"am" = (
/obj/machinery/vending/snack,
/turf/open/floor/plasteel/cmo{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"an" = (
/obj/machinery/sleeper{
icon_state = "sleeper-open";
dir = 4
},
+/obj/machinery/light{
+ dir = 8
+ },
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"ao" = (
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"ap" = (
/obj/structure/table,
/obj/item/weapon/circular_saw,
@@ -98,7 +101,7 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"aq" = (
/obj/structure/table,
/obj/item/weapon/cautery{
@@ -108,7 +111,7 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"ar" = (
/obj/structure/table,
/obj/item/weapon/surgical_drapes,
@@ -116,12 +119,12 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"as" = (
/turf/open/floor/plasteel/cmo{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"at" = (
/obj/structure/chair/office/dark{
dir = 1
@@ -129,7 +132,7 @@
/turf/open/floor/plasteel/cmo{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"au" = (
/obj/structure/chair/office/dark{
dir = 4
@@ -137,7 +140,7 @@
/turf/open/floor/plasteel/cmo{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"av" = (
/obj/item/weapon/reagent_containers/glass/rag,
/obj/item/weapon/reagent_containers/spray/cleaner,
@@ -145,13 +148,16 @@
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
dir = 8
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"aw" = (
/obj/structure/bed/roller,
+/obj/machinery/light{
+ dir = 4
+ },
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"ax" = (
/obj/structure/closet/crate/trashcart,
/obj/item/weapon/storage/bag/trash,
@@ -177,7 +183,7 @@
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"az" = (
/obj/structure/noticeboard{
dir = 1;
@@ -190,25 +196,25 @@
/turf/open/floor/plasteel/cmo{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"aA" = (
/obj/structure/closet/secure_closet/medical2,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"aB" = (
/obj/machinery/computer/operating,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"aC" = (
/obj/structure/table/optable,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"aD" = (
/obj/structure/table,
/obj/item/weapon/retractor,
@@ -216,7 +222,7 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"aE" = (
/turf/closed/wall/mineral/titanium/nodiagonal{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
@@ -229,13 +235,13 @@
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"aG" = (
/obj/structure/extinguisher_cabinet,
/turf/closed/wall/mineral/titanium/nodiagonal{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"aH" = (
/obj/structure/extinguisher_cabinet,
/turf/closed/wall/mineral/titanium/nodiagonal{
@@ -255,62 +261,65 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"aL" = (
/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
dir = 1
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"aM" = (
/obj/effect/mob_spawn/human/doctor/alive/lavaland,
/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
dir = 1
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"aN" = (
/obj/structure/closet/crate/freezer,
/obj/item/weapon/reagent_containers/blood/random,
/obj/item/weapon/reagent_containers/blood/random,
/obj/item/weapon/reagent_containers/blood/random,
/obj/item/weapon/reagent_containers/blood/random,
+/obj/machinery/light/small{
+ dir = 1
+ },
/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
dir = 1
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"aO" = (
/obj/machinery/iv_drip,
/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
dir = 1
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"aP" = (
/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
dir = 0
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"aQ" = (
/turf/open/floor/plasteel/blue/corner{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
dir = 8
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"aR" = (
/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
dir = 4
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"aS" = (
/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
dir = 8
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"aT" = (
/obj/structure/closet,
/obj/effect/decal/cleanable/cobweb,
@@ -321,21 +330,24 @@
},
/obj/item/ammo_casing/shotgun/buckshot,
/obj/item/weapon/storage/box/bodybags,
+/obj/machinery/light/small{
+ dir = 8
+ },
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"aU" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"aV" = (
/obj/structure/closet/secure_closet/medical1,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"aW" = (
/obj/machinery/vending/wallmed{
pixel_y = 28
@@ -343,25 +355,25 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"aX" = (
/obj/item/stack/cable_coil/random,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"aY" = (
/obj/structure/bodycontainer/morgue,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"aZ" = (
/obj/effect/decal/cleanable/ash,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"ba" = (
/obj/structure/table/glass,
/obj/item/weapon/reagent_containers/glass/beaker,
@@ -369,21 +381,24 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bb" = (
/obj/structure/table/reinforced,
/obj/item/device/laser_pointer,
+/obj/machinery/light{
+ dir = 4
+ },
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bc" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/firstaid/regular,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bd" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/box/gloves,
@@ -391,17 +406,20 @@
pixel_x = 3;
pixel_y = 3
},
+/obj/machinery/light{
+ dir = 4
+ },
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"be" = (
/obj/effect/decal/cleanable/oil,
/obj/item/weapon/storage/toolbox/mechanical,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bf" = (
/obj/structure/table,
/obj/item/weapon/storage/fancy/cigarettes/dromedaryco,
@@ -409,39 +427,39 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bg" = (
/mob/living/simple_animal/cockroach,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bh" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/firstaid/brute,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bi" = (
/obj/item/toy/cattoy,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bj" = (
/obj/structure/table/glass,
/obj/item/weapon/lazarus_injector,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bk" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bl" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/snacks/cookie{
@@ -462,11 +480,14 @@
/obj/item/weapon/reagent_containers/food/snacks/cookie{
name = "doggie biscuit"
},
+/obj/machinery/light{
+ dir = 1
+ },
/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
dir = 1
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bm" = (
/obj/structure/chair/comfy/teal{
dir = 8
@@ -475,13 +496,16 @@
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
dir = 1
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bn" = (
/obj/structure/bed/dogbed,
+/obj/machinery/light/small{
+ dir = 1
+ },
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bo" = (
/obj/item/weapon/reagent_containers/glass/bowl,
/obj/item/weapon/reagent_containers/food/snacks/cheesewedge,
@@ -489,7 +513,7 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bp" = (
/obj/structure/closet/crate/bin,
/obj/item/trash/pistachios,
@@ -499,32 +523,32 @@
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
dir = 8
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bq" = (
/obj/structure/filingcabinet/chestdrawer/wheeled,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"br" = (
/obj/structure/chair/office/dark,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bs" = (
/obj/structure/table/reinforced,
/obj/item/weapon/phone,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bt" = (
/obj/item/weapon/twohanded/required/kirbyplants,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bu" = (
/obj/structure/chair/comfy/teal{
dir = 8
@@ -533,7 +557,7 @@
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
dir = 4
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bv" = (
/obj/effect/mob_spawn/mouse{
dir = 4;
@@ -543,13 +567,13 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bw" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bx" = (
/obj/machinery/door/airlock/medical{
name = "Patient Room";
@@ -558,7 +582,7 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"by" = (
/obj/structure/table/reinforced,
/obj/item/device/flashlight/lamp,
@@ -566,14 +590,14 @@
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
dir = 8
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bz" = (
/obj/structure/table/reinforced,
/obj/item/clothing/glasses/regular,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bA" = (
/obj/structure/table/reinforced,
/obj/item/weapon/paper_bin,
@@ -581,14 +605,14 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bB" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/box/hug,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bC" = (
/obj/structure/chair/office/light{
dir = 1
@@ -596,7 +620,7 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bD" = (
/obj/structure/table/glass,
/obj/item/weapon/reagent_containers/glass/bottle/cyanide{
@@ -607,20 +631,20 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bE" = (
/obj/structure/closet/crate/critter,
/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
dir = 8
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bF" = (
/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
dir = 10
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bG" = (
/obj/structure/chair/comfy/teal{
dir = 8
@@ -629,7 +653,7 @@
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
dir = 6
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bH" = (
/obj/structure/table,
/obj/item/weapon/tank/internals/oxygen,
@@ -638,7 +662,7 @@
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
dir = 8
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bI" = (
/obj/structure/sign/bluecross_2{
name = "animal hospital"
@@ -646,7 +670,7 @@
/turf/closed/wall/mineral/titanium/nodiagonal{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bJ" = (
/obj/machinery/door/airlock/glass_large{
name = "Ian's Pet Care"
@@ -655,7 +679,7 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bK" = (
/obj/item/weapon/reagent_containers/glass/bowl,
/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,
@@ -665,7 +689,7 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bL" = (
/obj/vehicle/scooter/skateboard{
dir = 4
@@ -691,7 +715,7 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bO" = (
/obj/structure/flora/ausbushes/ppflowers,
/turf/open/floor/grass{
@@ -707,7 +731,7 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bQ" = (
/obj/structure/table/glass,
/obj/item/clothing/neck/petcollar,
@@ -715,7 +739,7 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bR" = (
/obj/structure/table,
/obj/machinery/cell_charger,
@@ -728,7 +752,7 @@
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
dir = 10
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bS" = (
/obj/structure/closet,
/obj/item/weapon/defibrillator/loaded,
@@ -738,7 +762,7 @@
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
dir = 6
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bT" = (
/obj/item/weapon/pickaxe,
/obj/effect/decal/cleanable/blood/old,
@@ -757,7 +781,7 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"bX" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 6
@@ -806,7 +830,7 @@
/turf/closed/wall/mineral/titanium/nodiagonal{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"cd" = (
/obj/structure/table/reinforced,
/obj/item/clothing/gloves/color/latex,
@@ -815,7 +839,7 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"ce" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
@@ -824,13 +848,13 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"cf" = (
/obj/structure/closet/l3closet,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"cg" = (
/obj/machinery/door/unpowered/shuttle{
name = "Break Room"
@@ -838,7 +862,7 @@
/turf/open/floor/plasteel/cmo{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"ch" = (
/obj/machinery/door/unpowered/shuttle{
name = "Emergency Care"
@@ -846,7 +870,7 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"ci" = (
/obj/machinery/door/unpowered/shuttle{
desc = "There's a note wedged in the seam saying something about directing pizza here.";
@@ -856,7 +880,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"cj" = (
/obj/machinery/door/unpowered/shuttle{
name = "Morgue"
@@ -864,7 +888,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"ck" = (
/obj/machinery/door/unpowered/shuttle{
name = "Medical Supplies"
@@ -872,7 +896,7 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"cl" = (
/obj/machinery/door/unpowered/shuttle{
name = "Safety Supplies"
@@ -880,7 +904,7 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
"cm" = (
/obj/machinery/door/unpowered/shuttle{
name = "Tool Storage"
@@ -888,7 +912,157 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/area/ruin/powered)
+/area/ruin/powered/animal_hospital)
+"cn" = (
+/obj/machinery/light,
+/turf/open/floor/grass{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/lavaland/surface/outdoors)
+"co" = (
+/obj/machinery/light,
+/turf/open/floor/grass{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/lavaland/surface/outdoors)
+"cp" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"cq" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/bar{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+ },
+/area/ruin/powered/animal_hospital)
+"cr" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/cmo{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+ },
+/area/ruin/powered/animal_hospital)
+"cs" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cmo{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+ },
+/area/ruin/powered/animal_hospital)
+"ct" = (
+/obj/effect/mob_spawn/human/doctor/alive/lavaland,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/blue/side{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
+ dir = 1
+ },
+/area/ruin/powered/animal_hospital)
+"cu" = (
+/obj/effect/mob_spawn/human/doctor/alive/lavaland,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/blue/side{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
+ dir = 1
+ },
+/area/ruin/powered/animal_hospital)
+"cv" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/blue/side{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
+ dir = 1
+ },
+/area/ruin/powered/animal_hospital)
+"cw" = (
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/blue/side{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
+ dir = 0
+ },
+/area/ruin/powered/animal_hospital)
+"cx" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/grass{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/lavaland/surface/outdoors)
+"cy" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/blue/side{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
+ dir = 4
+ },
+/area/ruin/powered/animal_hospital)
+"cz" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/blue/side{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
+ dir = 1
+ },
+/area/ruin/powered/animal_hospital)
+"cA" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/blue/side{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
+ dir = 4
+ },
+/area/ruin/powered/animal_hospital)
+"cB" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/blue/side{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
+ dir = 4
+ },
+/area/ruin/powered/animal_hospital)
+"cC" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/grass{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/lavaland/surface/outdoors)
+"cD" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/grass{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/lavaland/surface/outdoors)
+"cE" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
(1,1,1) = {"
aa
@@ -963,7 +1137,7 @@ ab
aJ
ab
ab
-ac
+cx
ab
aa
aa
@@ -987,7 +1161,7 @@ aa
aa
aa
ab
-ab
+cp
ax
ac
aJ
@@ -1047,7 +1221,7 @@ aa
ab
ae
ag
-ag
+cq
ay
ae
aK
@@ -1062,7 +1236,7 @@ bp
by
bF
ae
-ac
+cC
ac
ab
ab
@@ -1087,7 +1261,7 @@ ae
ae
ae
ae
-aL
+cz
bq
bz
aP
@@ -1104,14 +1278,14 @@ ac
aa
ab
ab
-ac
+cn
ae
ae
ae
ae
aG
aL
-aP
+cw
ae
aV
ba
@@ -1137,7 +1311,7 @@ ac
ac
ae
ai
-as
+cr
as
cg
aK
@@ -1170,7 +1344,7 @@ aj
at
as
ae
-aM
+ct
aK
ck
ao
@@ -1230,7 +1404,7 @@ al
au
as
ae
-aM
+cu
aK
cl
ao
@@ -1242,7 +1416,7 @@ aK
aK
aP
ae
-bM
+cD
ac
ac
ab
@@ -1257,7 +1431,7 @@ ac
ac
ae
am
-as
+cs
as
cg
aK
@@ -1320,7 +1494,7 @@ cd
an
aA
ae
-aL
+cv
aP
ae
ae
@@ -1335,7 +1509,7 @@ bn
bN
bP
ae
-ab
+cE
ab
aa
aa
@@ -1374,7 +1548,7 @@ aa
aa
ab
ab
-ac
+co
ae
ap
ao
@@ -1443,15 +1617,15 @@ ae
aO
aR
aR
+cy
aR
aR
aR
+cA
aR
aR
aR
-aR
-aR
-aR
+cB
aR
bS
ae
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm
index 14cdf35514..d6a1a3567a 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm
@@ -6,7 +6,7 @@
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered/snow_biodome)
+/area/ruin/powered)
"ac" = (
/obj/item/stack/medical/ointment,
/obj/structure/table,
@@ -19,6 +19,9 @@
/obj/structure/table,
/obj/item/stack/medical/gauze,
/obj/item/stack/medical/gauze,
+/obj/machinery/light/small{
+ dir = 1
+ },
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
@@ -36,6 +39,9 @@
/area/ruin/powered/snow_biodome)
"ag" = (
/obj/structure/reagent_dispensers/beerkeg,
+/obj/machinery/light/small{
+ dir = 1
+ },
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
@@ -54,6 +60,9 @@
/area/ruin/powered/snow_biodome)
"aj" = (
/obj/structure/sink,
+/obj/machinery/light/small{
+ dir = 1
+ },
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
@@ -290,89 +299,92 @@
/obj/item/clothing/shoes/winterboots,
/obj/item/clothing/gloves/fingerless,
/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
+/area/ruin/powered)
"aT" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered/snow_biodome)
+/area/ruin/powered)
"aU" = (
/obj/machinery/vending/coffee,
/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
+/area/ruin/powered)
"aV" = (
/obj/structure/closet/secure_closet/freezer/fridge,
/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
+/area/ruin/powered)
"aW" = (
/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
+/area/ruin/powered)
"aX" = (
/turf/open/floor/pod/light,
-/area/ruin/powered/snow_biodome)
+/area/ruin/powered)
"aY" = (
/obj/structure/chair/stool,
/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
+/area/ruin/powered)
"aZ" = (
/obj/machinery/door/airlock/hatch,
/obj/structure/fans/tiny,
/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
+/area/ruin/powered)
"ba" = (
/obj/machinery/door/airlock/silver,
/obj/structure/fans/tiny,
/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
+/area/ruin/powered)
"bb" = (
/obj/machinery/door/airlock/silver,
/obj/structure/fans/tiny,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered/snow_biodome)
+/area/ruin/powered)
"bc" = (
/obj/structure/table,
/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
+/area/ruin/powered)
"bd" = (
/obj/structure/table,
/obj/item/weapon/pen,
/obj/item/weapon/paper_bin,
/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
+/area/ruin/powered)
"be" = (
/obj/structure/table,
/obj/machinery/microwave,
/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
+/area/ruin/powered)
"bf" = (
/obj/effect/decal/cleanable/oil,
/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
+/area/ruin/powered)
"bg" = (
/obj/item/weapon/twohanded/required/chainsaw,
/obj/structure/closet,
+/obj/machinery/light/small{
+ dir = 4
+ },
/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
+/area/ruin/powered)
"bh" = (
/obj/structure/filingcabinet,
/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
+/area/ruin/powered)
"bi" = (
/obj/machinery/computer/monitor,
/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
+/area/ruin/powered)
"bj" = (
/obj/item/weapon/storage/toolbox/mechanical,
/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
+/area/ruin/powered)
"bk" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
+/area/ruin/powered)
"bl" = (
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/lava/smooth;
@@ -382,22 +394,22 @@
/area/ruin/powered/snow_biodome)
"bm" = (
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/ruin/powered/snow_biodome)
+/area/ruin/powered)
"bn" = (
/obj/item/clothing/mask/balaclava,
/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
+/area/ruin/powered)
"bo" = (
/obj/structure/table,
/obj/item/weapon/storage/fancy/cigarettes/cigpack_carp,
/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
+/area/ruin/powered)
"bp" = (
/obj/structure/table,
/obj/item/weapon/pen,
/obj/item/weapon/paper,
/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
+/area/ruin/powered)
"bq" = (
/obj/machinery/light/built{
dir = 1
@@ -406,12 +418,202 @@
baseturf = /turf/open/floor/plating/asteroid/basalt;
initial_gas_mix = "o2=14;n2=23;TEMP=300"
},
-/area/ruin/powered/snow_biodome)
+/area/ruin/powered)
"br" = (
/obj/structure/fans/tiny,
/obj/machinery/door/airlock/glass_large,
/turf/open/floor/pod/dark,
+/area/ruin/powered)
+"bs" = (
+/obj/machinery/door/airlock/glass_large,
+/obj/structure/fans/tiny,
+/turf/open/floor/pod/dark,
+/area/ruin/powered)
+"bt" = (
+/obj/structure/fans/tiny,
+/turf/open/floor/pod/dark,
+/area/ruin/powered)
+"bu" = (
+/obj/structure/fans/tiny,
+/turf/open/floor/pod/dark,
+/area/ruin/powered)
+"bv" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating/ice{
+ initial_gas_mix = "o2=22;n2=82;TEMP=180"
+ },
/area/ruin/powered/snow_biodome)
+"bw" = (
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ name = "floor"
+ },
+/area/ruin/powered/snow_biodome)
+"bx" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ name = "floor"
+ },
+/area/ruin/powered/snow_biodome)
+"by" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/snow{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ initial_gas_mix = "o2=22;n2=82;TEMP=180"
+ },
+/area/ruin/powered/snow_biodome)
+"bz" = (
+/obj/machinery/light,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ name = "floor"
+ },
+/area/ruin/powered/snow_biodome)
+"bA" = (
+/obj/machinery/light,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ name = "floor"
+ },
+/area/ruin/powered/snow_biodome)
+"bB" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/snow{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ initial_gas_mix = "o2=22;n2=82;TEMP=180"
+ },
+/area/ruin/powered/snow_biodome)
+"bC" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/snow{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ initial_gas_mix = "o2=22;n2=82;TEMP=180"
+ },
+/area/ruin/powered/snow_biodome)
+"bD" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/snow{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ initial_gas_mix = "o2=22;n2=82;TEMP=180"
+ },
+/area/ruin/powered/snow_biodome)
+"bE" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/snow{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ initial_gas_mix = "o2=22;n2=82;TEMP=180"
+ },
+/area/ruin/powered/snow_biodome)
+"bF" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/snow{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ initial_gas_mix = "o2=22;n2=82;TEMP=180"
+ },
+/area/ruin/powered/snow_biodome)
+"bG" = (
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/turf/open/floor/pod/dark,
+/area/ruin/powered)
+"bH" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/pod/dark,
+/area/ruin/powered)
+"bI" = (
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/turf/open/floor/pod/dark,
+/area/ruin/powered)
+"bJ" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/snow{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ initial_gas_mix = "o2=22;n2=82;TEMP=180"
+ },
+/area/ruin/powered/snow_biodome)
+"bK" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/snow{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ initial_gas_mix = "o2=22;n2=82;TEMP=180"
+ },
+/area/ruin/powered/snow_biodome)
+"bL" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/snow{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ initial_gas_mix = "o2=22;n2=82;TEMP=180"
+ },
+/area/ruin/powered/snow_biodome)
+"bM" = (
+/obj/machinery/light,
+/turf/open/floor/plating/asteroid/snow{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ initial_gas_mix = "o2=22;n2=82;TEMP=180"
+ },
+/area/ruin/powered/snow_biodome)
+"bN" = (
+/obj/machinery/light,
+/turf/open/floor/plating/ice{
+ initial_gas_mix = "o2=22;n2=82;TEMP=180"
+ },
+/area/ruin/powered/snow_biodome)
+"bO" = (
+/obj/machinery/light,
+/turf/open/floor/plating/asteroid/snow{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ initial_gas_mix = "o2=22;n2=82;TEMP=180"
+ },
+/area/ruin/powered/snow_biodome)
+"bP" = (
+/obj/machinery/light,
+/turf/open/floor/plating/asteroid/snow{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ initial_gas_mix = "o2=22;n2=82;TEMP=180"
+ },
+/area/ruin/powered/snow_biodome)
+"bQ" = (
+/obj/machinery/light/small,
+/turf/open/floor/pod/dark,
+/area/ruin/powered)
+"bR" = (
+/obj/machinery/light/small,
+/turf/open/floor/pod/dark,
+/area/ruin/powered)
(1,1,1) = {"
aa
@@ -458,10 +660,10 @@ ab
ab
ab
aS
-aW
+bG
aW
aX
-aW
+bI
aW
bh
ab
@@ -486,7 +688,7 @@ ab
ab
ab
ak
-ak
+by
ak
ab
aS
@@ -552,7 +754,7 @@ ak
aI
ak
ak
-ak
+bC
az
ak
aB
@@ -560,7 +762,7 @@ ak
ak
ak
aI
-ak
+bJ
ak
ak
ak
@@ -577,7 +779,7 @@ aa
aa
aa
ab
-ao
+bv
ao
ao
ao
@@ -631,7 +833,7 @@ ak
ak
ak
ak
-ak
+bO
ab
ab
bm
@@ -744,7 +946,7 @@ aq
aq
aK
aq
-ak
+bD
ao
ao
ao
@@ -770,7 +972,7 @@ ab
ad
af
ar
-at
+bw
at
aD
at
@@ -790,7 +992,7 @@ ak
ak
ak
az
-ak
+bM
ab
aS
aS
@@ -806,7 +1008,7 @@ au
au
aq
at
-at
+bz
aq
ak
ak
@@ -825,7 +1027,7 @@ ak
aI
ab
bn
-aW
+bQ
ab
bm
"}
@@ -887,7 +1089,7 @@ ao
ak
ak
ak
-aO
+bs
aX
aX
br
@@ -919,10 +1121,10 @@ ao
ao
ak
ak
-aP
+bt
aX
aX
-aP
+bt
bm
"}
(17,1,1) = {"
@@ -966,7 +1168,7 @@ av
at
aG
at
-at
+bA
aq
aR
ak
@@ -985,7 +1187,7 @@ ao
ao
ab
aW
-aW
+bR
ab
bm
"}
@@ -995,7 +1197,7 @@ ai
af
aq
av
-at
+bx
aH
at
aN
@@ -1014,7 +1216,7 @@ ak
ak
ak
ao
-ao
+bN
ab
bo
bp
@@ -1032,7 +1234,7 @@ aq
aq
aq
aq
-ak
+bE
ak
ak
ak
@@ -1175,7 +1377,7 @@ ak
aI
aI
ak
-ak
+bP
ab
ab
bm
@@ -1224,7 +1426,7 @@ az
ak
ak
ak
-ak
+bF
ak
ak
ak
@@ -1232,7 +1434,7 @@ ak
ak
az
ak
-ak
+bK
ak
ak
az
@@ -1286,7 +1488,7 @@ ab
ab
ab
ak
-ak
+bB
ak
ab
aU
@@ -1298,7 +1500,7 @@ bf
bj
ab
ak
-ak
+bL
ak
ab
ab
@@ -1322,7 +1524,7 @@ ab
ab
ab
aV
-aW
+bH
aY
bc
be
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_gluttony.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_gluttony.dmm
index 9de95170a9..e59667aae4 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_gluttony.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_gluttony.dmm
@@ -15,36 +15,36 @@
/area/ruin/powered)
"e" = (
/turf/open/floor/plating/lava/smooth,
-/area/ruin/powered)
+/area/ruin/powered/gluttony)
"f" = (
/obj/item/weapon/reagent_containers/syringe/gluttony,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/gluttony)
"g" = (
/obj/effect/gluttony,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/gluttony)
"h" = (
/obj/item/weapon/veilrender/vealrender,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/gluttony)
"i" = (
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/gluttony)
"j" = (
/obj/item/trash/plate,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/gluttony)
"k" = (
/obj/machinery/door/airlock/uranium,
/obj/structure/fans/tiny/invisible,
@@ -57,37 +57,113 @@
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/gluttony)
"m" = (
/obj/item/trash/raisins,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/gluttony)
"n" = (
/obj/item/trash/pistachios,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/gluttony)
"o" = (
/obj/item/trash/popcorn,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/gluttony)
"p" = (
/obj/item/trash/semki,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/gluttony)
"q" = (
/obj/item/trash/syndi_cakes,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/gluttony)
+"r" = (
+/obj/effect/gluttony,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/gluttony)
+"s" = (
+/obj/effect/gluttony,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/gluttony)
+"t" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/gluttony)
+"u" = (
+/obj/effect/gluttony,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/gluttony)
+"v" = (
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/gluttony)
+"w" = (
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/gluttony)
+"x" = (
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/gluttony)
+"y" = (
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/gluttony)
+"z" = (
+/obj/item/trash/plate,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/gluttony)
+"A" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/gluttony)
(1,1,1) = {"
a
@@ -211,7 +287,7 @@ c
d
i
i
-i
+v
d
c
b
@@ -253,7 +329,7 @@ c
c
c
d
-i
+t
i
m
d
@@ -277,7 +353,7 @@ d
d
g
m
-i
+w
d
d
d
@@ -294,7 +370,7 @@ c
d
e
d
-g
+r
g
g
g
@@ -302,7 +378,7 @@ g
i
p
i
-j
+z
l
i
d
@@ -338,7 +414,7 @@ c
d
e
d
-g
+s
g
g
g
@@ -346,7 +422,7 @@ i
g
i
l
-i
+A
i
q
d
@@ -365,7 +441,7 @@ d
d
g
i
-i
+x
d
d
d
@@ -385,7 +461,7 @@ c
c
c
d
-g
+u
i
i
d
@@ -431,7 +507,7 @@ c
d
j
i
-i
+y
d
c
b
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_golem_ship.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_golem_ship.dmm
index 1c47260f2c..7f0cfced70 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_golem_ship.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_golem_ship.dmm
@@ -122,6 +122,9 @@
name = "shrine of the liberator";
pixel_x = 0
},
+/obj/machinery/light{
+ dir = 8
+ },
/turf/open/floor/mineral/titanium/purple{
baseturf = /turf/open/floor/plating/lava/smooth
},
@@ -215,6 +218,7 @@
/obj/item/weapon/storage/firstaid/fire,
/obj/structure/table/wood,
/obj/item/weapon/storage/firstaid/fire,
+/obj/machinery/light,
/turf/open/floor/mineral/titanium/purple{
baseturf = /turf/open/floor/plating/lava/smooth
},
@@ -262,6 +266,122 @@
baseturf = /turf/open/floor/plating/lava/smooth
},
/area/ruin/powered/golem_ship)
+"I" = (
+/obj/machinery/light/small,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"J" = (
+/obj/machinery/light/small,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"K" = (
+/obj/machinery/light/small,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"L" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"M" = (
+/obj/effect/mob_spawn/human/golem/adamantine,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"N" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"O" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"P" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"Q" = (
+/obj/machinery/light/small,
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"R" = (
+/obj/machinery/light/small,
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"S" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"T" = (
+/obj/machinery/light/small,
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"U" = (
+/obj/effect/mob_spawn/human/golem/adamantine,
+/obj/machinery/light/small,
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"V" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"W" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"X" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
(1,1,1) = {"
a
@@ -358,7 +478,7 @@ a
a
a
b
-l
+L
l
j
l
@@ -384,10 +504,10 @@ l
l
b
l
-l
+Q
G
l
-l
+T
b
b
b
@@ -427,7 +547,7 @@ j
l
l
b
-l
+P
l
G
l
@@ -444,18 +564,18 @@ a
a
b
c
-f
+I
b
-m
+M
o
b
l
l
G
o
-m
+U
b
-f
+V
F
b
a
@@ -510,18 +630,18 @@ a
a
b
c
-f
+J
b
l
l
+O
l
l
-l
-l
+S
l
z
b
-f
+W
F
b
a
@@ -598,9 +718,9 @@ a
a
b
e
-f
+K
b
-l
+N
l
l
l
@@ -609,7 +729,7 @@ v
l
B
b
-f
+X
f
b
a
@@ -670,7 +790,7 @@ h
h
b
t
-l
+R
b
h
h
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_greed.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_greed.dmm
index d63971dafb..4b71e65a80 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_greed.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_greed.dmm
@@ -16,26 +16,32 @@
"e" = (
/obj/structure/table/wood/poker,
/obj/item/weapon/gun/ballistic/revolver/russian/soul,
+/obj/machinery/light/small{
+ dir = 1
+ },
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/lava/smooth;
icon_state = "carpetsymbol"
},
-/area/ruin/powered)
+/area/ruin/powered/greed)
"f" = (
/obj/structure/cursed_slot_machine,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/lava/smooth;
icon_state = "carpetsymbol"
},
-/area/ruin/powered)
+/area/ruin/powered/greed)
"g" = (
/obj/structure/table/wood/poker,
/obj/item/weapon/coin/mythril,
+/obj/machinery/light/small{
+ dir = 1
+ },
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/lava/smooth;
icon_state = "carpetsymbol"
},
-/area/ruin/powered)
+/area/ruin/powered/greed)
"h" = (
/obj/structure/table/wood/poker,
/obj/item/weapon/coin/diamond,
@@ -43,13 +49,13 @@
baseturf = /turf/open/floor/plating/lava/smooth;
icon_state = "carpetsymbol"
},
-/area/ruin/powered)
+/area/ruin/powered/greed)
"i" = (
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/lava/smooth;
icon_state = "carpetsymbol"
},
-/area/ruin/powered)
+/area/ruin/powered/greed)
"j" = (
/obj/structure/table/wood/poker,
/obj/item/weapon/coin/adamantine,
@@ -57,7 +63,7 @@
baseturf = /turf/open/floor/plating/lava/smooth;
icon_state = "carpetsymbol"
},
-/area/ruin/powered)
+/area/ruin/powered/greed)
"k" = (
/obj/machinery/computer/arcade/battle{
emagged = 1
@@ -65,46 +71,50 @@
/turf/open/floor/engine/cult{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/greed)
"l" = (
/obj/item/weapon/coin/gold,
/turf/open/floor/engine/cult{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/greed)
"m" = (
/turf/open/floor/engine/cult{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/greed)
"n" = (
/obj/structure/table/wood/poker,
/obj/item/stack/spacecash/c1000,
/turf/open/floor/engine/cult{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/greed)
"o" = (
/obj/item/weapon/storage/bag/money,
/turf/open/floor/engine/cult{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/greed)
"p" = (
/obj/structure/table/wood/poker,
/obj/item/weapon/ore/gold,
/turf/open/floor/engine/cult{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/greed)
"q" = (
/obj/structure/table/wood/poker,
/obj/item/stack/spacecash/c20,
/obj/item/stack/spacecash/c50,
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
/turf/open/floor/engine/cult{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/greed)
"r" = (
/obj/structure/table/wood/poker,
/obj/item/stack/spacecash/c500,
@@ -113,21 +123,47 @@
/turf/open/floor/engine/cult{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/greed)
"s" = (
/obj/structure/table/wood/poker,
/obj/item/stack/spacecash/c200,
/turf/open/floor/engine/cult{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/greed)
"t" = (
/obj/machinery/door/airlock/gold,
+/obj/structure/fans/tiny/invisible,
/turf/open/floor/engine/cult{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/obj/structure/fans/tiny/invisible,
/area/ruin/powered)
+"u" = (
+/obj/structure/table/wood/poker,
+/obj/item/stack/spacecash/c500,
+/obj/item/stack/spacecash/c100,
+/obj/item/stack/spacecash/c1000,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/greed)
+"v" = (
+/obj/item/weapon/coin/gold,
+/obj/machinery/light/small,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/greed)
+"w" = (
+/obj/item/weapon/storage/bag/money,
+/obj/machinery/light/small,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/greed)
(1,1,1) = {"
a
@@ -320,7 +356,7 @@ m
m
l
m
-l
+v
d
d
a
@@ -364,7 +400,7 @@ m
l
m
l
-o
+w
d
d
a
@@ -404,7 +440,7 @@ c
d
d
p
-r
+u
r
d
c
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_pride.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_pride.dmm
index 9a86d48b66..c341460d97 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_pride.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_pride.dmm
@@ -20,7 +20,7 @@
/turf/open/floor/mineral/silver{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/pride)
"f" = (
/obj/structure/mirror{
pixel_x = 32
@@ -28,12 +28,12 @@
/turf/open/floor/mineral/silver{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/pride)
"g" = (
/turf/open/floor/mineral/silver{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/pride)
"h" = (
/obj/structure/mirror/magic/pride,
/turf/closed/wall/mineral/diamond{
@@ -47,6 +47,109 @@
blocks_air = 1
},
/area/ruin/powered)
+"j" = (
+/obj/structure/mirror{
+ pixel_x = -32
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/mineral/silver{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/pride)
+"k" = (
+/obj/structure/mirror{
+ pixel_x = 32
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/mineral/silver{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/pride)
+"l" = (
+/obj/structure/mirror{
+ pixel_x = -32
+ },
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/turf/open/floor/mineral/silver{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/pride)
+"m" = (
+/obj/structure/mirror{
+ pixel_x = 32
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/mineral/silver{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/pride)
+"n" = (
+/obj/structure/mirror{
+ pixel_x = -32
+ },
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/turf/open/floor/mineral/silver{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/pride)
+"o" = (
+/obj/structure/mirror{
+ pixel_x = 32
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/mineral/silver{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/pride)
+"p" = (
+/obj/structure/mirror{
+ pixel_x = -32
+ },
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/turf/open/floor/mineral/silver{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/pride)
+"q" = (
+/obj/structure/mirror{
+ pixel_x = 32
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/mineral/silver{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/pride)
+"r" = (
+/obj/machinery/light/small,
+/turf/open/floor/mineral/silver{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/pride)
+"s" = (
+/obj/machinery/light/small,
+/turf/open/floor/mineral/silver{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/pride)
(1,1,1) = {"
a
@@ -120,16 +223,16 @@ c
d
d
d
+j
e
e
+l
e
e
+n
e
e
-e
-e
-e
-e
+p
e
e
d
@@ -153,7 +256,7 @@ g
g
g
g
-g
+r
d
a
a
@@ -197,7 +300,7 @@ g
g
g
g
-g
+s
d
c
a
@@ -208,16 +311,16 @@ c
d
d
d
+k
f
f
+m
f
f
+o
f
f
-f
-f
-f
-f
+q
f
f
d
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_seed_vault.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_seed_vault.dmm
index 64c1a7cb26..ac67c57d9b 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_seed_vault.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_seed_vault.dmm
@@ -19,31 +19,31 @@
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/seedvault)
"e" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/box/disks_plantgene,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/seedvault)
"f" = (
/obj/machinery/plantgenes/seedvault,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/seedvault)
"g" = (
/obj/structure/table/wood,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/seedvault)
"h" = (
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/seedvault)
"i" = (
/obj/structure/closet/crate/hydroponics,
/obj/structure/beebox,
@@ -57,7 +57,7 @@
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/seedvault)
"j" = (
/obj/structure/shuttle/engine/propulsion{
icon_state = "propulsion";
@@ -71,13 +71,13 @@
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/seedvault)
"l" = (
/obj/machinery/door/airlock,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/seedvault)
"m" = (
/obj/structure/shuttle/engine/propulsion{
icon_state = "propulsion";
@@ -90,7 +90,7 @@
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/seedvault)
"o" = (
/obj/structure/closet/crate/hydroponics,
/obj/item/weapon/cultivator,
@@ -108,13 +108,13 @@
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/seedvault)
"p" = (
/obj/machinery/hydroponics/constructable,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/seedvault)
"q" = (
/obj/item/weapon/hatchet,
/obj/item/weapon/storage/bag/plants,
@@ -123,7 +123,7 @@
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/seedvault)
"r" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/bag/plants,
@@ -133,7 +133,7 @@
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/seedvault)
"s" = (
/obj/structure/table/wood,
/obj/item/weapon/gun/energy/floragun,
@@ -144,13 +144,13 @@
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/seedvault)
"t" = (
/obj/effect/mob_spawn/human/seed_vault,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/seedvault)
"u" = (
/obj/structure/sink{
icon_state = "sink";
@@ -161,19 +161,19 @@
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/seedvault)
"v" = (
/obj/machinery/vending/hydronutrients,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/seedvault)
"w" = (
/obj/machinery/vending/hydroseeds,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/seedvault)
"x" = (
/obj/machinery/reagentgrinder{
pixel_y = 5
@@ -186,7 +186,7 @@
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/seedvault)
"y" = (
/obj/structure/sink{
dir = 4;
@@ -197,13 +197,13 @@
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/seedvault)
"z" = (
/obj/machinery/door/airlock/external,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/seedvault)
"A" = (
/obj/machinery/door/airlock/external,
/obj/structure/fans/tiny,
@@ -217,31 +217,31 @@
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/seedvault)
"C" = (
/obj/machinery/seed_extractor,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/seedvault)
"D" = (
/obj/machinery/biogenerator,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/seedvault)
"E" = (
/obj/machinery/chem_dispenser/mutagensaltpeter,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/seedvault)
"F" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/seedvault)
"G" = (
/obj/structure/closet/crate/hydroponics,
/obj/item/clothing/under/rank/hydroponics,
@@ -251,13 +251,13 @@
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/seedvault)
"H" = (
/obj/machinery/chem_master/condimaster,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/seedvault)
"I" = (
/obj/structure/table/wood,
/obj/item/weapon/reagent_containers/glass/bucket,
@@ -267,14 +267,14 @@
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/seedvault)
"J" = (
/obj/item/weapon/storage/toolbox/syndicate,
/obj/structure/table/wood,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/lava/smooth
},
-/area/ruin/powered)
+/area/ruin/powered/seedvault)
"K" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall/r_wall,
@@ -292,6 +292,102 @@
},
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
+"N" = (
+/obj/structure/table/wood,
+/obj/item/weapon/storage/box/disks_plantgene,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/seedvault)
+"O" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/seedvault)
+"P" = (
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/seedvault)
+"Q" = (
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/seedvault)
+"R" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/seedvault)
+"S" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/seedvault)
+"T" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/seedvault)
+"U" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/seedvault)
+"V" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/seedvault)
+"W" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/seedvault)
+"X" = (
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/light,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/seedvault)
+"Y" = (
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/light,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/seedvault)
(1,1,1) = {"
a
@@ -346,10 +442,10 @@ a
a
c
c
+T
h
h
-h
-h
+U
c
c
a
@@ -389,12 +485,12 @@ c
k
c
n
-h
+R
u
h
h
u
-h
+V
u
c
a
@@ -429,17 +525,17 @@ a
a
a
c
-e
+N
h
c
-p
+P
h
p
h
h
p
h
-p
+X
c
a
a
@@ -539,17 +635,17 @@ a
b
a
c
-h
+O
h
c
-p
+Q
h
h
h
h
h
h
-p
+Y
c
a
a
@@ -587,12 +683,12 @@ c
i
c
s
-h
+S
y
h
h
y
-h
+W
J
c
a
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm
index 0bc99060de..afc0dfb104 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm
@@ -34,6 +34,9 @@
req_access = null;
req_access_txt = "150"
},
+/obj/machinery/light/small{
+ dir = 1
+ },
/turf/open/floor/plasteel/podhatch,
/area/ruin/powered/syndicate_lava_base)
"ah" = (
@@ -52,6 +55,9 @@
name = "skeletal minibar"
},
/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,
+/obj/machinery/light/small{
+ dir = 1
+ },
/turf/open/floor/wood,
/area/ruin/powered/syndicate_lava_base)
"aj" = (
@@ -152,6 +158,9 @@
/obj/item/stack/packageWrap,
/obj/item/weapon/hand_labeler,
/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 4
+ },
/turf/open/floor/plasteel/podhatch{
dir = 8
},
@@ -165,6 +174,10 @@
/obj/item/ammo_box/magazine/sniper_rounds,
/obj/item/ammo_box/magazine/sniper_rounds,
/obj/item/ammo_box/magazine/sniper_rounds,
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
/turf/open/floor/plasteel/grimy,
/area/ruin/powered/syndicate_lava_base)
"az" = (
@@ -179,6 +192,9 @@
/obj/item/ammo_box/magazine/sniper_rounds,
/obj/item/ammo_box/magazine/sniper_rounds,
/obj/item/ammo_box/magazine/sniper_rounds,
+/obj/machinery/light/small{
+ dir = 4
+ },
/turf/open/floor/plasteel/grimy,
/area/ruin/powered/syndicate_lava_base)
"aA" = (
@@ -338,6 +354,9 @@
/obj/item/weapon/tank/internals/emergency_oxygen/engi,
/obj/item/device/flashlight/seclite,
/obj/item/clothing/mask/gas,
+/obj/machinery/light{
+ dir = 8
+ },
/turf/open/floor/plasteel/podhatch{
tag = "icon-podhatch (EAST)";
icon_state = "podhatch";
@@ -421,6 +440,7 @@
icon_state = "plant-21";
layer = 4.1
},
+/obj/machinery/light/small,
/turf/open/floor/plasteel/black,
/area/ruin/powered/syndicate_lava_base)
"be" = (
@@ -433,6 +453,9 @@
icon_state = "toilet00";
dir = 8
},
+/obj/machinery/light/small{
+ dir = 8
+ },
/turf/open/floor/plasteel/vault{
dir = 5
},
@@ -501,6 +524,9 @@
/obj/item/device/assembly/signaler,
/obj/item/device/assembly/voice,
/obj/item/device/assembly/voice,
+/obj/machinery/light{
+ dir = 1
+ },
/turf/open/floor/plasteel/vault{
dir = 8
},
@@ -519,11 +545,17 @@
},
/area/ruin/powered/syndicate_lava_base)
"bn" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
/turf/open/floor/plasteel/podhatch{
dir = 9
},
/area/ruin/powered/syndicate_lava_base)
"bo" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
/turf/open/floor/plasteel/podhatch{
dir = 5
},
@@ -566,6 +598,9 @@
pixel_y = 3
},
/obj/item/weapon/storage/box/syringes,
+/obj/machinery/light{
+ dir = 1
+ },
/turf/open/floor/plasteel/podhatch,
/area/ruin/powered/syndicate_lava_base)
"bt" = (
@@ -584,6 +619,9 @@
/turf/open/floor/plating,
/area/ruin/powered/syndicate_lava_base)
"bv" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
/mob/living/carbon/monkey,
/turf/open/floor/plasteel/vault{
dir = 8
@@ -737,6 +775,9 @@
/obj/machinery/vending/toyliberationstation{
req_access_txt = "150"
},
+/obj/machinery/light{
+ dir = 8
+ },
/turf/open/floor/plasteel/vault{
dir = 5
},
@@ -874,6 +915,7 @@
/obj/structure/table/reinforced,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
+/obj/machinery/light,
/turf/open/floor/plasteel/podhatch{
tag = "icon-podhatch (NORTH)";
icon_state = "podhatch";
@@ -1117,6 +1159,9 @@
/obj/structure/noticeboard{
pixel_y = 32
},
+/obj/machinery/light{
+ dir = 1
+ },
/turf/open/floor/plasteel/vault{
dir = 5
},
@@ -1215,6 +1260,9 @@
/obj/item/weapon/retractor,
/obj/item/weapon/hemostat,
/obj/structure/table/reinforced,
+/obj/machinery/light/small{
+ dir = 4
+ },
/turf/open/floor/plasteel/vault{
dir = 8
},
@@ -1282,6 +1330,9 @@
/area/ruin/powered/syndicate_lava_base)
"cZ" = (
/obj/structure/filingcabinet/security,
+/obj/machinery/light{
+ dir = 8
+ },
/turf/open/floor/plasteel/vault{
dir = 5
},
@@ -1342,6 +1393,9 @@
amount = 50
},
/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 4
+ },
/turf/open/floor/plasteel/vault{
dir = 8
},
@@ -1429,6 +1483,10 @@
/obj/structure/sign/vacuum{
pixel_x = -32
},
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
/turf/open/floor/plasteel/vault{
dir = 8
},
@@ -1459,6 +1517,597 @@
},
/turf/open/floor/plating/lava/smooth/lava_land_surface,
/area/lavaland/surface/outdoors)
+"dv" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"dw" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"dx" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"dy" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"dz" = (
+/obj/item/weapon/bombcore/large/underwall,
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"dA" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"dB" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"dC" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"dD" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"dE" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"dF" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"dG" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"dH" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"dI" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"dJ" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"dK" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"dL" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"dM" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"dN" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"dO" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"dP" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"dQ" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"dR" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"dS" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"dT" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"dU" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"dV" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"dW" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"dX" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"dY" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"dZ" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"ea" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eb" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"ec" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"ed" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"ee" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"ef" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eg" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eh" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"ei" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"ej" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"ek" = (
+/obj/item/weapon/bombcore/large/underwall,
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"el" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"em" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"en" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eo" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"ep" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eq" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"er" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"es" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"et" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eu" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"ev" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"ew" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"ex" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"ey" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"ez" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eA" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eB" = (
+/obj/item/weapon/bombcore/large/underwall,
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eC" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eD" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eE" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eF" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eG" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eH" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eI" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eJ" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eK" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eL" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eM" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eN" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eO" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eP" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eQ" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eR" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eS" = (
+/obj/item/weapon/bombcore/large/underwall,
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eT" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eU" = (
+/obj/item/weapon/bombcore/large/underwall,
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eV" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eW" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eX" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eY" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"eZ" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fa" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fb" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fc" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fd" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fe" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"ff" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fg" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fh" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fi" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fj" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fk" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fl" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fm" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fn" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fo" = (
+/obj/item/weapon/bombcore/large/underwall,
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fp" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fq" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fr" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fs" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"ft" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fu" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fv" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fw" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fx" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fy" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fz" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fA" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fB" = (
+/obj/machinery/door/airlock/hatch{
+ name = "Syndicate Recon Outpost";
+ req_access_txt = "150"
+ },
+/obj/structure/fans/tiny,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ruin/powered)
+"fC" = (
+/obj/machinery/door/airlock/hatch{
+ name = "Syndicate Recon Outpost";
+ req_access_txt = "150"
+ },
+/obj/structure/fans/tiny,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ruin/powered)
+"fD" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fE" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fF" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fG" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fH" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fI" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/powered)
+"fJ" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/ruin/powered/syndicate_lava_base)
+"fK" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/ruin/powered/syndicate_lava_base)
+"fL" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/ruin/powered/syndicate_lava_base)
+"fM" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/ruin/powered/syndicate_lava_base)
+"fN" = (
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/ruin/powered/syndicate_lava_base)
+"fO" = (
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/ruin/powered/syndicate_lava_base)
+"fP" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/ruin/powered/syndicate_lava_base)
+"fQ" = (
+/obj/structure/bed/roller,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ruin/powered/syndicate_lava_base)
+"fR" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/ruin/powered/syndicate_lava_base)
+"fS" = (
+/obj/machinery/iv_drip,
+/obj/item/weapon/reagent_containers/blood/random,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/ruin/powered/syndicate_lava_base)
+"fT" = (
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/turf/open/floor/plasteel/podhatch{
+ dir = 8
+ },
+/area/ruin/powered/syndicate_lava_base)
+"fU" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/podhatch{
+ tag = "icon-podhatch (EAST)";
+ icon_state = "podhatch";
+ dir = 4
+ },
+/area/ruin/powered/syndicate_lava_base)
+"fV" = (
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ruin/powered/syndicate_lava_base)
+"fW" = (
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ruin/powered/syndicate_lava_base)
+"fX" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/podhatch{
+ tag = "icon-podhatch (NORTH)";
+ icon_state = "podhatch";
+ dir = 1
+ },
+/area/ruin/powered/syndicate_lava_base)
+"fY" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/podhatch{
+ tag = "icon-podhatch (NORTH)";
+ icon_state = "podhatch";
+ dir = 1
+ },
+/area/ruin/powered/syndicate_lava_base)
+"fZ" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/ruin/powered/syndicate_lava_base)
+"ga" = (
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/podhatch,
+/area/ruin/powered/syndicate_lava_base)
+"gb" = (
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/podhatch,
+/area/ruin/powered/syndicate_lava_base)
+"gc" = (
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/turf/open/floor/plasteel/podhatch{
+ dir = 8
+ },
+/area/ruin/powered/syndicate_lava_base)
+"gd" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/podhatch{
+ tag = "icon-podhatch (EAST)";
+ icon_state = "podhatch";
+ dir = 4
+ },
+/area/ruin/powered/syndicate_lava_base)
+"ge" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/ruin/powered/syndicate_lava_base)
+"gf" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/ruin/powered/syndicate_lava_base)
+"gg" = (
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/turf/open/floor/plasteel/podhatch{
+ dir = 8
+ },
+/area/ruin/powered/syndicate_lava_base)
+"gh" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/podhatch{
+ tag = "icon-podhatch (EAST)";
+ icon_state = "podhatch";
+ dir = 4
+ },
+/area/ruin/powered/syndicate_lava_base)
+"gi" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/circuit/green,
+/area/ruin/powered/syndicate_lava_base)
+"gj" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/ruin/powered/syndicate_lava_base)
+"gk" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/circuit/red,
+/area/ruin/powered/syndicate_lava_base)
+"gl" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/circuit/red,
+/area/ruin/powered/syndicate_lava_base)
(1,1,1) = {"
aa
@@ -1764,15 +2413,15 @@ ac
ab
ab
ac
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ad
-ad
+dv
+dv
+dv
+dv
+dv
+dv
+dz
+dv
+dv
ac
ab
ab
@@ -1790,29 +2439,29 @@ ab
ab
ab
ac
-ad
-ad
-ad
-ad
-ad
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ad
-ad
-cG
+dv
+dv
+dv
+dv
+dv
+dz
+dv
+dv
+dv
+dv
+dv
+dv
+dz
+dv
+dv
cG
+ge
cG
cW
cG
+gj
cG
-cG
-ad
+dv
ac
ab
ab
@@ -1830,12 +2479,12 @@ ab
ab
ab
ab
-ad
+dv
aq
aq
aq
aY
-aq
+fP
aY
bz
bJ
@@ -1852,7 +2501,7 @@ cG
cG
cG
cG
-ad
+dv
ab
ab
ab
@@ -1870,7 +2519,7 @@ ac
ab
ab
ab
-ad
+dv
aq
aQ
aO
@@ -1892,7 +2541,7 @@ cG
cG
cG
cG
-ad
+dv
ab
ab
ab
@@ -1910,9 +2559,9 @@ ab
ab
ac
ac
-ad
-aq
+dv
aq
+fL
aq
aZ
aq
@@ -1932,7 +2581,7 @@ cG
cG
cG
cG
-ad
+dv
ab
ab
ab
@@ -1947,10 +2596,10 @@ ab
ab
ab
ab
-ad
-ad
-ad
-ad
+dv
+dv
+dv
+dv
ad
ad
ad
@@ -1972,7 +2621,7 @@ cG
cG
cG
cG
-ad
+dv
ac
ab
ab
@@ -1987,7 +2636,7 @@ ab
ab
ab
ab
-ad
+dv
ao
aw
aA
@@ -1999,7 +2648,7 @@ ad
bh
bB
aS
-bO
+fS
bO
cf
cm
@@ -2012,7 +2661,7 @@ cG
cG
cG
cG
-ad
+dv
ac
ab
ab
@@ -2027,7 +2676,7 @@ ab
ab
ab
ab
-ad
+dv
ap
aq
ap
@@ -2052,7 +2701,7 @@ cG
de
cG
cG
-ad
+dv
ac
ac
ab
@@ -2067,7 +2716,7 @@ ab
ab
ab
ac
-ad
+dv
aq
ap
aq
@@ -2092,9 +2741,9 @@ cD
ad
dj
ad
-ae
-ad
-ad
+dz
+dv
+dv
ab
ab
ab
@@ -2107,7 +2756,7 @@ ab
ab
ab
ac
-ad
+dv
ar
ax
aB
@@ -2122,8 +2771,8 @@ aq
bP
bX
ad
-cn
-cw
+fX
+ga
ae
aS
cL
@@ -2134,7 +2783,7 @@ aq
cU
bu
dt
-ad
+dv
ab
ab
ab
@@ -2146,8 +2795,8 @@ ab
ab
ab
ab
-ad
-ad
+dv
+dv
ad
ad
ad
@@ -2174,7 +2823,7 @@ aq
aq
dp
aO
-ad
+dv
ab
ab
ab
@@ -2186,10 +2835,10 @@ ab
ab
ab
ab
-ad
+dv
af
as
-as
+fJ
aC
aK
aq
@@ -2206,7 +2855,7 @@ cn
cw
cf
aq
-aq
+gf
cT
cY
dg
@@ -2214,7 +2863,7 @@ dk
aS
bu
dt
-ad
+dv
ab
ab
ab
@@ -2226,7 +2875,7 @@ ab
ab
ab
ab
-ad
+dv
ag
as
as
@@ -2254,7 +2903,7 @@ ad
ad
ad
ad
-ad
+dv
du
ab
ab
@@ -2266,7 +2915,7 @@ ab
ab
ab
ab
-ad
+dv
ah
as
as
@@ -2280,21 +2929,21 @@ bn
aY
aY
aY
-aY
+fT
aY
co
cy
aY
+gc
aY
aY
-aY
-aY
+gg
aY
cv
dn
dq
aO
-dn
+fB
ab
ab
ab
@@ -2306,7 +2955,7 @@ ab
ab
ab
ab
-ae
+dz
ad
as
as
@@ -2320,21 +2969,21 @@ bo
aZ
aZ
aZ
-aZ
+fU
aZ
cp
cz
aZ
+gd
aZ
aZ
-aZ
-aZ
+gh
aZ
cA
dn
dr
aO
-dn
+fB
ab
ab
ab
@@ -2346,7 +2995,7 @@ ab
ab
ab
ab
-ad
+dv
ai
as
as
@@ -2354,7 +3003,7 @@ aG
ap
aq
ap
-bb
+fM
ad
ad
bu
@@ -2370,11 +3019,11 @@ ad
ad
ad
ad
-ad
-ad
-ad
-ad
-ad
+dv
+dv
+dv
+dv
+dv
du
ab
ab
@@ -2386,10 +3035,10 @@ ab
ab
ab
ab
-ad
+dv
aj
as
-as
+fK
aH
aq
ap
@@ -2410,7 +3059,7 @@ aq
cU
cZ
dh
-ae
+dz
ac
ac
ac
@@ -2426,7 +3075,7 @@ ab
ab
ab
ab
-ad
+dv
ad
ad
ad
@@ -2450,7 +3099,7 @@ ap
ap
ap
aq
-ad
+dv
ac
ac
ab
@@ -2466,7 +3115,7 @@ ab
ab
ab
ab
-ad
+dv
ak
at
ay
@@ -2482,19 +3131,19 @@ ap
aq
bP
ad
-cn
-cw
+fY
+gb
cf
aq
cM
cV
da
aq
-ad
-ad
-ad
-ad
-ad
+dv
+dv
+dv
+dv
+dv
ab
ab
ab
@@ -2506,7 +3155,7 @@ ab
ab
ab
ab
-ad
+dv
al
au
au
@@ -2514,7 +3163,7 @@ au
aO
aT
aq
-aq
+fN
ad
bs
aq
@@ -2532,9 +3181,9 @@ db
aq
ad
aq
-do
+gk
aq
-ad
+dv
ab
ab
ab
@@ -2546,7 +3195,7 @@ ab
ab
ab
ab
-ad
+dv
ad
ad
ae
@@ -2574,7 +3223,7 @@ dl
do
ds
do
-ad
+dv
ab
ab
ab
@@ -2586,7 +3235,7 @@ ab
ab
ab
ab
-ad
+dv
am
au
au
@@ -2594,7 +3243,7 @@ au
aO
aT
aq
-aq
+fO
ae
bu
bu
@@ -2612,9 +3261,9 @@ aO
bK
ad
aq
-do
+gl
aq
-ad
+dv
ab
ab
ab
@@ -2626,7 +3275,7 @@ ab
ab
ab
ab
-ad
+dv
an
av
az
@@ -2640,7 +3289,7 @@ bv
bI
ap
bI
-aO
+fV
ad
cr
cB
@@ -2651,10 +3300,10 @@ ad
cF
ad
ad
-ad
-ad
-ad
-ad
+dv
+dv
+dv
+dv
ab
ab
ab
@@ -2666,13 +3315,13 @@ ab
ab
ab
ab
-ad
-ad
-ad
-ad
-ad
-ad
-ad
+dv
+dv
+dv
+dv
+dv
+dv
+dv
aW
ad
ad
@@ -2691,7 +3340,7 @@ ad
dc
di
di
-ad
+dv
ab
ab
ab
@@ -2712,7 +3361,7 @@ ac
ac
ab
ac
-ad
+dv
aX
bf
ad
@@ -2722,7 +3371,7 @@ ap
bx
bx
ad
-aq
+fZ
aq
aq
aq
@@ -2731,7 +3380,7 @@ ad
dd
di
dm
-ad
+dv
ab
ab
ab
@@ -2752,15 +3401,15 @@ ab
ab
ab
ab
-ad
-ad
-ad
-ad
-bw
+dv
+dv
+dv
+dv
+fQ
bI
ap
bU
-aO
+fW
ad
ct
cC
@@ -2769,9 +3418,9 @@ cK
cS
ad
dc
+gi
di
-di
-ad
+dv
ac
ab
ab
@@ -2795,23 +3444,23 @@ ac
ab
ab
ac
-ad
+dv
by
bx
-ap
+fR
bx
ce
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
+dv
+dv
+dv
+dv
+dv
+dv
+dv
+dv
+dv
+dv
+dv
ac
ab
ab
@@ -2835,13 +3484,13 @@ ab
ab
ab
ab
-ad
-ad
-ad
-ad
-ad
-ad
-ad
+dv
+dv
+dv
+dv
+dv
+dv
+dv
ab
ab
ab
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_ww_vault.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_ww_vault.dmm
deleted file mode 100644
index ab0173231e..0000000000
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_ww_vault.dmm
+++ /dev/null
@@ -1,10010 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/turf/template_noop,
-/area/template_noop)
-"b" = (
-/turf/closed/indestructible,
-/area/ruin/powered)
-"c" = (
-/turf/open/floor/engine/cult,
-/area/ruin/powered)
-"d" = (
-/obj/structure/destructible/cult/pylon,
-/turf/open/floor/engine/cult,
-/area/ruin/powered)
-"e" = (
-/turf/open/floor/plating{
- icon_state = "cultdamage5"
- },
-/area/ruin/powered)
-"f" = (
-/mob/living/simple_animal/hostile/faithless,
-/turf/open/floor/engine/cult,
-/area/ruin/powered)
-"g" = (
-/turf/open/floor/circuit/off,
-/area/ruin/powered)
-"h" = (
-/turf/closed/indestructible{
- desc = "The patterns engraved on the wall seem to shift as you try to focus on them. You feel sick.";
- icon = 'icons/turf/walls/cult_wall.dmi';
- icon_state = "cult"
- },
-/area/ruin/powered)
-"i" = (
-/turf/open/floor/plating{
- icon_state = "cultdamage3"
- },
-/area/ruin/powered)
-"j" = (
-/turf/open/floor/plating{
- icon_state = "cultdamage6"
- },
-/area/ruin/powered)
-"k" = (
-/obj/effect/gateway,
-/turf/open/floor/engine/cult,
-/area/ruin/powered)
-"l" = (
-/mob/living/simple_animal/hostile/faithless,
-/turf/open/floor/circuit/off,
-/area/ruin/powered)
-"m" = (
-/obj/machinery/wish_granter_dark,
-/turf/open/floor/circuit/green/off,
-/area/ruin/powered)
-"n" = (
-/turf/open/floor/circuit/green/off,
-/area/ruin/powered)
-"o" = (
-/obj/structure/destructible/cult/pylon,
-/turf/open/floor/circuit/green/off,
-/area/ruin/powered)
-"p" = (
-/obj/structure/signpost,
-/turf/open/floor/circuit/green/off,
-/area/ruin/powered)
-"q" = (
-/obj/effect/meatgrinder,
-/turf/open/floor/circuit/green/off,
-/area/ruin/powered)
-"r" = (
-/obj/structure/destructible/cult/pylon,
-/turf/open/floor/circuit/off,
-/area/ruin/powered)
-"s" = (
-/turf/open/floor/engine/cult{
- baseturf = /turf/open/floor/plating/lava/smooth
- },
-/area/ruin/powered)
-"t" = (
-/turf/open/floor/plating{
- icon_state = "cultdamage2"
- },
-/area/ruin/powered)
-"u" = (
-/turf/open/floor/carpet,
-/area/ruin/powered)
-"v" = (
-/mob/living/simple_animal/hostile/faithless,
-/turf/open/floor/carpet,
-/area/ruin/powered)
-"w" = (
-/obj/machinery/door/airlock/vault{
- locked = 1
- },
-/turf/open/floor/engine/cult,
-/area/ruin/powered)
-"x" = (
-/obj/structure/destructible/cult/pylon,
-/turf/open/floor/engine/cult{
- baseturf = /turf/open/floor/plating/lava/smooth
- },
-/area/ruin/powered)
-"y" = (
-/mob/living/simple_animal/hostile/faithless,
-/turf/open/floor/engine/cult{
- baseturf = /turf/open/floor/plating/lava/smooth
- },
-/area/ruin/powered)
-"z" = (
-/turf/template_noop,
-/turf/closed/indestructible{
- desc = "The patterns engraved on the wall seem to shift as you try to focus on them. You feel sick.";
- icon = 'icons/turf/walls/cult_wall.dmi';
- icon_state = "cult"
- },
-/area/ruin/powered)
-"A" = (
-/mob/living/simple_animal/hostile/faithless,
-/turf/template_noop,
-/area/template_noop)
-"B" = (
-/obj/effect/mob_spawn/human/miner/rig,
-/turf/open/floor/engine/cult{
- baseturf = /turf/open/floor/plating/lava/smooth
- },
-/area/ruin/powered)
-"C" = (
-/obj/machinery/door/airlock/vault{
- locked = 1
- },
-/turf/open/floor/engine/cult{
- baseturf = /turf/open/floor/plating/lava/smooth;
-
- },
-/obj/structure/fans/tiny/invisible,
-/area/ruin/powered)
-"D" = (
-/turf/open/floor/engine/cult{
- baseturf = /turf/open/floor/plating/lava/smooth;
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/template_noop)
-"E" = (
-/turf/closed/indestructible,
-/area/template_noop)
-"F" = (
-/obj/item/weapon/paper{
- info = "meat grinder requires sacri"
- },
-/turf/open/floor/engine/cult{
- baseturf = /turf/open/floor/plating/lava/smooth;
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/template_noop)
-"G" = (
-/obj/effect/mob_spawn/human/syndicatecommando,
-/turf/open/floor/engine/cult{
- baseturf = /turf/open/floor/plating/lava/smooth;
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/template_noop)
-"H" = (
-/mob/living/simple_animal/hostile/faithless,
-/turf/open/floor/engine/cult{
- baseturf = /turf/open/floor/plating/lava/smooth;
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/template_noop)
-
-(1,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(2,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(3,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(4,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-s
-s
-s
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(5,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-c
-c
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-b
-s
-s
-h
-s
-s
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(6,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-c
-c
-c
-c
-c
-b
-b
-a
-a
-a
-a
-a
-a
-a
-b
-s
-h
-h
-h
-s
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(7,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-c
-c
-c
-c
-c
-c
-b
-b
-a
-a
-a
-a
-a
-a
-b
-s
-s
-h
-h
-s
-s
-s
-s
-s
-s
-h
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(8,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-c
-c
-h
-h
-c
-c
-b
-b
-a
-a
-a
-a
-a
-b
-b
-s
-s
-h
-h
-h
-h
-h
-h
-c
-h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(9,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-f
-c
-h
-c
-c
-c
-b
-b
-b
-b
-b
-b
-b
-b
-h
-s
-h
-h
-s
-s
-s
-s
-s
-h
-s
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(10,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-h
-h
-c
-c
-c
-c
-h
-s
-s
-s
-s
-h
-s
-y
-h
-s
-y
-h
-h
-h
-h
-h
-s
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(11,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-c
-f
-c
-d
-h
-c
-c
-f
-c
-h
-s
-s
-h
-s
-h
-y
-s
-h
-y
-h
-h
-s
-s
-s
-h
-s
-s
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(12,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-c
-h
-c
-c
-c
-h
-h
-c
-f
-f
-c
-h
-s
-s
-h
-s
-h
-s
-y
-h
-s
-s
-s
-s
-s
-s
-h
-s
-s
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(13,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-c
-c
-c
-c
-c
-h
-c
-c
-h
-h
-h
-h
-c
-c
-f
-h
-s
-s
-h
-s
-s
-s
-x
-h
-s
-x
-s
-s
-s
-s
-h
-s
-s
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(14,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-c
-c
-c
-c
-c
-c
-h
-h
-c
-h
-c
-c
-h
-c
-c
-c
-h
-h
-s
-h
-s
-s
-s
-s
-h
-s
-s
-s
-h
-s
-s
-h
-s
-s
-b
-s
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(15,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-h
-c
-c
-c
-c
-c
-c
-c
-h
-c
-h
-c
-f
-h
-h
-c
-c
-c
-h
-s
-h
-h
-h
-h
-h
-h
-s
-s
-s
-h
-s
-s
-h
-s
-s
-s
-s
-s
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(16,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-c
-h
-c
-c
-c
-h
-h
-c
-c
-h
-c
-h
-c
-c
-c
-h
-d
-c
-c
-h
-s
-c
-c
-c
-c
-c
-h
-h
-h
-h
-h
-s
-s
-h
-s
-x
-s
-s
-s
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(17,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-c
-c
-h
-h
-c
-c
-c
-h
-c
-c
-h
-c
-h
-h
-c
-c
-h
-h
-c
-h
-h
-s
-h
-c
-c
-c
-c
-c
-d
-c
-h
-s
-s
-s
-h
-s
-s
-s
-s
-s
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(18,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-c
-c
-c
-c
-c
-h
-c
-c
-c
-h
-d
-c
-h
-c
-c
-h
-c
-c
-c
-c
-c
-h
-s
-s
-h
-h
-h
-f
-f
-c
-c
-c
-h
-s
-s
-s
-h
-s
-s
-s
-s
-s
-s
-b
-a
-a
-a
-a
-a
-a
-D
-a
-a
-a
-a
-a
-a
-a
-"}
-(19,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-c
-c
-c
-h
-h
-c
-c
-h
-c
-c
-h
-c
-c
-h
-h
-h
-c
-c
-c
-h
-s
-s
-s
-s
-h
-h
-h
-c
-c
-c
-h
-s
-s
-y
-h
-s
-x
-s
-s
-s
-s
-b
-D
-D
-D
-a
-a
-a
-D
-a
-a
-a
-a
-a
-a
-a
-"}
-(20,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-c
-c
-c
-h
-d
-c
-c
-c
-h
-c
-c
-h
-c
-c
-h
-c
-c
-c
-c
-h
-h
-c
-c
-h
-h
-s
-s
-s
-s
-s
-h
-h
-c
-c
-h
-s
-y
-s
-w
-s
-s
-s
-s
-s
-s
-b
-a
-a
-D
-D
-D
-D
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(21,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-h
-c
-c
-c
-h
-h
-c
-f
-c
-h
-c
-c
-h
-c
-c
-h
-d
-c
-c
-c
-c
-h
-h
-c
-c
-h
-h
-s
-s
-s
-s
-s
-h
-c
-c
-h
-s
-s
-s
-w
-s
-s
-s
-s
-s
-s
-b
-a
-a
-a
-D
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(22,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-h
-h
-h
-c
-c
-h
-c
-c
-c
-h
-f
-c
-h
-c
-c
-h
-h
-c
-c
-h
-c
-c
-h
-c
-c
-c
-h
-h
-h
-x
-s
-s
-h
-c
-c
-h
-s
-s
-s
-h
-s
-x
-s
-s
-s
-s
-b
-D
-D
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(23,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-h
-h
-c
-c
-h
-f
-c
-c
-h
-c
-c
-h
-c
-c
-c
-h
-c
-c
-h
-c
-c
-h
-h
-c
-c
-c
-f
-h
-h
-s
-s
-h
-c
-c
-h
-h
-h
-h
-h
-s
-s
-s
-s
-s
-s
-b
-a
-D
-D
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(24,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-h
-h
-c
-c
-h
-c
-c
-c
-h
-f
-c
-h
-c
-c
-c
-h
-c
-c
-h
-f
-c
-c
-h
-h
-c
-f
-c
-c
-h
-h
-s
-h
-c
-c
-c
-c
-s
-s
-h
-s
-s
-s
-s
-s
-s
-b
-D
-D
-D
-D
-a
-A
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(25,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-h
-c
-c
-h
-c
-c
-c
-h
-c
-c
-h
-h
-c
-c
-h
-c
-c
-h
-h
-c
-c
-c
-h
-c
-s
-s
-s
-s
-h
-s
-h
-h
-c
-c
-c
-s
-s
-h
-s
-x
-B
-s
-s
-s
-b
-a
-D
-D
-D
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(26,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-h
-c
-h
-c
-f
-h
-c
-c
-c
-h
-c
-c
-c
-h
-c
-c
-h
-c
-c
-c
-h
-c
-f
-c
-h
-h
-s
-s
-s
-s
-c
-s
-s
-h
-c
-c
-c
-s
-s
-h
-s
-s
-s
-s
-s
-s
-b
-D
-D
-D
-D
-D
-D
-D
-D
-a
-a
-a
-a
-a
-a
-"}
-(27,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-h
-c
-f
-c
-c
-h
-c
-c
-h
-h
-c
-c
-c
-h
-c
-c
-h
-h
-c
-c
-h
-h
-h
-h
-h
-h
-s
-s
-s
-s
-c
-s
-h
-h
-h
-h
-h
-s
-s
-h
-s
-s
-y
-s
-s
-s
-b
-a
-a
-a
-a
-a
-a
-a
-a
-D
-D
-a
-a
-a
-a
-"}
-(28,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-h
-h
-c
-c
-f
-h
-c
-c
-h
-d
-c
-c
-c
-h
-c
-c
-c
-h
-h
-c
-c
-c
-c
-c
-c
-h
-h
-s
-s
-s
-h
-h
-h
-s
-s
-s
-s
-s
-s
-h
-s
-x
-s
-s
-s
-s
-b
-a
-a
-a
-a
-a
-a
-a
-a
-D
-a
-a
-a
-a
-a
-"}
-(29,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-h
-d
-c
-c
-h
-c
-c
-h
-c
-c
-c
-c
-h
-h
-d
-c
-c
-h
-h
-h
-h
-c
-c
-c
-c
-h
-h
-h
-h
-h
-s
-s
-s
-s
-s
-s
-s
-s
-h
-s
-s
-s
-s
-s
-s
-b
-E
-E
-E
-E
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(30,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-h
-h
-h
-h
-h
-h
-c
-c
-c
-c
-c
-c
-c
-c
-h
-h
-c
-c
-c
-c
-c
-h
-h
-h
-c
-c
-c
-h
-s
-s
-s
-s
-s
-s
-s
-s
-x
-s
-s
-h
-s
-s
-s
-s
-s
-s
-C
-F
-G
-D
-D
-D
-D
-D
-a
-a
-a
-a
-a
-a
-a
-"}
-(31,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-c
-c
-h
-c
-c
-c
-c
-c
-c
-h
-h
-h
-h
-c
-f
-c
-c
-c
-c
-d
-h
-c
-f
-c
-h
-s
-s
-s
-s
-s
-s
-h
-h
-h
-s
-s
-h
-s
-x
-s
-s
-s
-s
-C
-D
-D
-D
-H
-D
-D
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(32,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-h
-h
-h
-c
-c
-h
-h
-h
-c
-c
-c
-h
-h
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-h
-c
-c
-h
-h
-s
-s
-s
-s
-h
-h
-h
-s
-h
-s
-s
-h
-s
-s
-s
-s
-s
-s
-b
-E
-E
-E
-E
-a
-a
-D
-a
-a
-a
-a
-a
-a
-a
-"}
-(33,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-c
-h
-h
-c
-c
-c
-h
-h
-h
-c
-h
-c
-c
-h
-h
-h
-h
-h
-h
-h
-c
-c
-h
-c
-c
-h
-s
-s
-s
-s
-h
-h
-x
-s
-s
-h
-s
-s
-h
-s
-s
-s
-s
-s
-s
-b
-a
-a
-a
-a
-a
-a
-D
-D
-a
-a
-a
-a
-a
-a
-"}
-(34,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-h
-c
-c
-c
-c
-d
-h
-h
-h
-c
-c
-h
-c
-f
-f
-c
-c
-h
-c
-c
-c
-c
-c
-h
-h
-s
-s
-s
-h
-s
-s
-y
-s
-h
-s
-s
-h
-s
-x
-s
-s
-s
-s
-b
-a
-a
-a
-a
-a
-a
-D
-D
-a
-a
-a
-a
-a
-a
-"}
-(35,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-h
-h
-c
-c
-c
-c
-c
-c
-h
-c
-c
-h
-f
-c
-f
-f
-c
-h
-h
-c
-c
-c
-c
-c
-h
-s
-s
-s
-s
-s
-s
-s
-s
-h
-s
-s
-h
-s
-s
-s
-s
-s
-s
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(36,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-h
-c
-c
-c
-c
-c
-c
-h
-c
-c
-h
-h
-h
-h
-c
-f
-c
-h
-c
-c
-c
-c
-c
-h
-s
-s
-s
-s
-s
-s
-h
-h
-h
-s
-s
-h
-s
-s
-s
-s
-s
-s
-b
-D
-D
-a
-a
-a
-a
-a
-a
-a
-D
-a
-a
-a
-a
-"}
-(37,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-h
-c
-c
-c
-c
-c
-c
-h
-c
-c
-c
-c
-d
-h
-c
-c
-c
-h
-h
-h
-h
-h
-h
-h
-h
-s
-s
-c
-s
-h
-h
-s
-s
-s
-s
-h
-s
-x
-s
-s
-s
-b
-b
-a
-D
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(38,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-h
-h
-c
-c
-c
-c
-c
-h
-c
-c
-c
-c
-c
-h
-h
-c
-c
-c
-c
-c
-c
-c
-c
-c
-h
-h
-s
-h
-h
-h
-s
-s
-s
-s
-y
-h
-s
-s
-s
-b
-b
-b
-a
-a
-D
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(39,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-c
-c
-c
-c
-h
-h
-c
-c
-c
-c
-h
-h
-c
-c
-c
-c
-c
-h
-h
-c
-c
-c
-c
-c
-c
-c
-c
-c
-h
-h
-h
-s
-s
-s
-s
-s
-s
-s
-h
-s
-s
-b
-a
-a
-a
-a
-a
-D
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(40,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-c
-c
-f
-f
-c
-c
-h
-h
-c
-c
-c
-c
-h
-c
-c
-c
-c
-c
-c
-h
-h
-h
-h
-h
-h
-d
-c
-c
-c
-c
-c
-c
-s
-s
-s
-s
-s
-s
-s
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(41,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-h
-h
-c
-c
-c
-c
-c
-c
-c
-h
-c
-c
-c
-c
-h
-h
-h
-h
-h
-c
-f
-c
-c
-c
-h
-c
-c
-c
-c
-c
-c
-c
-c
-c
-s
-s
-s
-s
-s
-c
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(42,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-h
-c
-c
-c
-d
-h
-h
-c
-c
-h
-h
-c
-f
-c
-c
-c
-c
-h
-c
-c
-c
-c
-f
-h
-h
-c
-c
-c
-h
-h
-h
-h
-h
-c
-s
-s
-s
-s
-s
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(43,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-c
-h
-h
-c
-c
-c
-h
-h
-c
-c
-c
-h
-h
-h
-c
-c
-f
-c
-h
-c
-c
-h
-h
-h
-h
-c
-c
-c
-c
-h
-f
-c
-c
-h
-h
-h
-h
-h
-h
-h
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(44,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-c
-c
-c
-h
-h
-c
-c
-h
-h
-c
-c
-c
-c
-d
-h
-c
-c
-c
-c
-h
-c
-c
-h
-c
-c
-c
-c
-c
-c
-c
-h
-c
-f
-c
-c
-c
-h
-h
-c
-c
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(45,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-c
-h
-h
-c
-c
-h
-h
-h
-c
-c
-c
-h
-h
-h
-d
-c
-h
-c
-c
-h
-c
-c
-c
-h
-h
-h
-h
-h
-f
-c
-c
-c
-c
-c
-c
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(46,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-c
-c
-c
-c
-c
-c
-h
-h
-c
-c
-c
-h
-h
-h
-c
-c
-c
-h
-h
-c
-h
-c
-c
-h
-c
-c
-c
-h
-d
-c
-c
-c
-c
-h
-h
-h
-h
-h
-c
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(47,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-c
-c
-c
-c
-h
-c
-c
-c
-c
-d
-h
-c
-c
-c
-c
-c
-c
-h
-c
-c
-h
-c
-c
-c
-c
-c
-c
-c
-c
-h
-h
-d
-h
-h
-c
-c
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(48,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-c
-c
-c
-c
-h
-c
-c
-c
-c
-c
-h
-h
-h
-c
-c
-c
-c
-h
-c
-c
-h
-h
-h
-c
-c
-c
-c
-h
-h
-h
-f
-c
-f
-c
-f
-c
-c
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(49,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-c
-c
-c
-c
-c
-c
-c
-c
-h
-h
-c
-c
-f
-f
-c
-c
-h
-h
-h
-h
-h
-h
-c
-c
-c
-f
-h
-h
-h
-h
-h
-h
-c
-c
-c
-c
-c
-c
-c
-c
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(50,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-h
-h
-h
-c
-c
-c
-c
-c
-c
-c
-c
-d
-h
-h
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-h
-h
-h
-h
-h
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(51,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-c
-i
-c
-c
-c
-c
-c
-c
-h
-h
-h
-c
-c
-c
-c
-c
-c
-c
-c
-h
-h
-d
-c
-c
-f
-c
-c
-c
-c
-c
-c
-c
-h
-c
-c
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(52,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-c
-f
-c
-c
-c
-d
-c
-c
-c
-c
-h
-c
-c
-c
-c
-c
-c
-c
-c
-c
-h
-h
-h
-h
-c
-c
-c
-c
-c
-c
-c
-h
-h
-c
-c
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(53,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-h
-h
-h
-h
-h
-h
-c
-c
-c
-c
-c
-c
-c
-h
-h
-c
-c
-c
-h
-h
-h
-h
-f
-c
-c
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(54,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-h
-h
-h
-c
-c
-c
-f
-f
-c
-h
-h
-h
-h
-h
-d
-c
-f
-c
-c
-h
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(55,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-c
-c
-c
-c
-c
-c
-c
-j
-c
-c
-c
-f
-c
-c
-c
-c
-c
-c
-c
-c
-c
-h
-h
-h
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-f
-h
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(56,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-d
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-h
-h
-h
-h
-c
-c
-c
-c
-c
-c
-c
-c
-c
-h
-h
-h
-c
-f
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(57,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-e
-c
-c
-f
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-h
-h
-c
-c
-c
-c
-c
-h
-h
-h
-h
-d
-c
-c
-f
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(58,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-i
-c
-c
-j
-c
-c
-c
-c
-c
-c
-c
-c
-c
-h
-h
-h
-h
-h
-h
-h
-c
-c
-c
-c
-c
-c
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(59,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-k
-c
-c
-c
-c
-c
-c
-s
-s
-s
-c
-k
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-h
-c
-c
-c
-c
-c
-c
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(60,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-c
-c
-c
-c
-e
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-f
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-h
-w
-w
-h
-h
-h
-h
-h
-h
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(61,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-c
-c
-f
-c
-c
-c
-c
-c
-c
-c
-j
-c
-c
-c
-c
-c
-i
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(62,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-d
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-f
-c
-c
-c
-d
-u
-u
-u
-u
-d
-c
-c
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(63,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-f
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-f
-c
-d
-c
-c
-f
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-v
-u
-u
-u
-c
-c
-f
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(64,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-j
-c
-f
-c
-c
-c
-c
-c
-c
-u
-u
-u
-u
-c
-f
-c
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(65,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-c
-c
-c
-c
-e
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-u
-u
-v
-u
-c
-c
-c
-c
-c
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(66,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-c
-c
-c
-c
-j
-c
-c
-f
-c
-c
-c
-c
-c
-e
-c
-c
-c
-c
-i
-c
-c
-c
-c
-c
-c
-f
-c
-u
-u
-u
-u
-c
-c
-c
-c
-c
-c
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(67,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-j
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-f
-c
-k
-c
-c
-d
-u
-u
-u
-u
-d
-c
-c
-c
-c
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(68,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-u
-u
-u
-u
-c
-c
-c
-c
-c
-c
-c
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(69,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-c
-k
-c
-c
-f
-c
-c
-c
-c
-c
-c
-c
-c
-f
-c
-c
-c
-c
-c
-d
-c
-c
-c
-c
-c
-c
-c
-u
-u
-u
-v
-c
-c
-c
-c
-c
-c
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(70,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-u
-u
-u
-u
-c
-c
-c
-c
-c
-k
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(71,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-c
-c
-c
-c
-c
-d
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-i
-c
-c
-c
-c
-c
-c
-f
-c
-c
-u
-u
-u
-u
-c
-i
-c
-c
-c
-c
-c
-c
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(72,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-i
-c
-c
-c
-c
-c
-c
-c
-c
-e
-c
-c
-c
-c
-i
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-d
-u
-u
-u
-u
-d
-c
-c
-c
-c
-c
-c
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(73,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-c
-c
-f
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-j
-c
-c
-c
-c
-c
-c
-c
-c
-u
-u
-u
-u
-c
-c
-c
-c
-c
-c
-c
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(74,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-c
-g
-g
-c
-c
-c
-c
-c
-f
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-f
-c
-u
-v
-u
-u
-c
-c
-c
-c
-f
-c
-f
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(75,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-c
-c
-g
-g
-g
-c
-c
-c
-c
-c
-c
-c
-c
-f
-c
-c
-c
-f
-c
-c
-i
-c
-c
-c
-c
-c
-u
-u
-u
-u
-c
-c
-c
-c
-c
-c
-c
-c
-c
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(76,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-c
-c
-c
-c
-g
-c
-c
-i
-c
-g
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-u
-u
-u
-u
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(77,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-g
-c
-c
-c
-c
-c
-l
-c
-c
-c
-c
-g
-g
-c
-f
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-d
-u
-u
-u
-u
-d
-c
-c
-c
-c
-c
-c
-c
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(78,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-g
-c
-c
-c
-c
-g
-c
-c
-c
-c
-g
-c
-c
-c
-c
-c
-c
-c
-d
-c
-c
-c
-c
-c
-c
-c
-c
-c
-u
-u
-u
-u
-c
-c
-c
-c
-c
-c
-c
-c
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(79,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-g
-g
-k
-c
-c
-g
-c
-c
-c
-g
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-f
-c
-c
-c
-v
-u
-u
-u
-c
-c
-f
-c
-c
-c
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(80,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-g
-c
-c
-c
-g
-c
-c
-c
-g
-c
-c
-c
-c
-c
-t
-c
-c
-c
-c
-c
-f
-c
-c
-c
-c
-c
-c
-u
-u
-u
-u
-c
-c
-c
-c
-c
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(81,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-g
-g
-c
-g
-c
-c
-c
-f
-g
-c
-c
-d
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-u
-u
-u
-u
-c
-c
-c
-c
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(82,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-g
-c
-g
-c
-g
-c
-c
-c
-g
-c
-c
-c
-c
-c
-f
-j
-c
-c
-c
-c
-c
-c
-c
-f
-c
-d
-u
-u
-u
-u
-d
-c
-c
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(83,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-g
-c
-g
-c
-g
-c
-c
-c
-g
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(84,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-c
-c
-c
-g
-c
-g
-c
-c
-g
-c
-g
-g
-c
-g
-g
-c
-c
-c
-c
-c
-g
-f
-c
-c
-k
-c
-c
-c
-c
-c
-c
-c
-c
-c
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(85,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-l
-g
-g
-c
-c
-g
-c
-g
-c
-c
-g
-c
-c
-c
-c
-g
-g
-g
-c
-c
-c
-c
-c
-c
-c
-c
-c
-f
-c
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(86,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-g
-g
-g
-d
-g
-c
-g
-c
-g
-g
-c
-f
-c
-c
-g
-c
-c
-c
-c
-c
-c
-c
-c
-j
-c
-c
-c
-c
-k
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(87,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-c
-c
-c
-g
-c
-g
-g
-g
-g
-g
-k
-g
-c
-c
-c
-c
-g
-g
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(88,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-g
-c
-g
-g
-g
-g
-c
-c
-g
-c
-c
-c
-g
-g
-c
-c
-f
-c
-c
-c
-c
-d
-c
-c
-c
-c
-c
-c
-c
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(89,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-g
-g
-i
-c
-g
-f
-g
-c
-c
-c
-c
-g
-c
-c
-c
-g
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(90,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-g
-g
-g
-c
-g
-g
-g
-g
-g
-c
-g
-g
-r
-c
-g
-g
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(91,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-i
-c
-g
-g
-g
-c
-g
-g
-g
-c
-g
-c
-g
-g
-c
-g
-g
-c
-c
-c
-f
-c
-c
-c
-c
-j
-c
-c
-c
-c
-c
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(92,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-g
-g
-l
-g
-g
-g
-g
-g
-c
-g
-g
-g
-c
-g
-g
-c
-c
-g
-g
-c
-c
-c
-c
-c
-c
-c
-c
-f
-c
-c
-c
-c
-b
-b
-a
-a
-a
-a
-A
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(93,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-c
-c
-c
-g
-g
-g
-g
-c
-g
-c
-g
-l
-g
-c
-g
-g
-c
-c
-g
-g
-c
-f
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(94,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-g
-g
-g
-c
-d
-g
-c
-g
-g
-c
-g
-g
-g
-g
-g
-g
-c
-c
-c
-c
-c
-c
-c
-c
-f
-c
-c
-c
-c
-d
-c
-c
-c
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(95,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-g
-g
-g
-g
-c
-c
-g
-g
-l
-g
-g
-g
-g
-g
-g
-f
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(96,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-g
-g
-g
-c
-c
-g
-g
-g
-g
-g
-g
-f
-g
-c
-c
-c
-g
-c
-c
-c
-c
-c
-c
-c
-e
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(97,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-g
-g
-g
-c
-g
-g
-g
-g
-g
-c
-g
-g
-c
-g
-g
-g
-c
-c
-c
-g
-g
-g
-c
-c
-c
-c
-c
-c
-j
-c
-c
-c
-c
-c
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(98,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-c
-g
-g
-g
-g
-c
-g
-g
-g
-g
-g
-g
-g
-c
-g
-l
-g
-g
-g
-g
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(99,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-g
-g
-i
-b
-b
-g
-b
-b
-g
-g
-g
-g
-g
-g
-g
-l
-g
-c
-c
-c
-c
-c
-g
-c
-c
-c
-c
-k
-c
-c
-c
-c
-c
-c
-j
-c
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(100,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-d
-g
-g
-b
-g
-g
-g
-b
-g
-g
-g
-g
-g
-c
-c
-g
-g
-g
-g
-g
-g
-g
-g
-c
-c
-c
-c
-c
-f
-c
-j
-c
-c
-c
-c
-c
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(101,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-b
-b
-g
-b
-g
-b
-b
-g
-g
-g
-g
-l
-g
-g
-c
-c
-c
-c
-c
-f
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-f
-c
-c
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(102,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-c
-c
-c
-b
-g
-c
-g
-g
-g
-b
-g
-g
-g
-g
-g
-g
-g
-g
-g
-g
-g
-c
-c
-c
-c
-c
-c
-d
-c
-c
-c
-c
-c
-c
-c
-c
-c
-f
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(103,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-b
-g
-g
-g
-g
-g
-b
-g
-g
-g
-c
-c
-c
-c
-d
-c
-c
-g
-g
-g
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-d
-c
-c
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(104,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-b
-c
-d
-g
-r
-c
-b
-c
-c
-g
-g
-g
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-j
-c
-c
-c
-c
-c
-c
-c
-c
-f
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(105,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-n
-b
-b
-b
-b
-b
-c
-d
-g
-g
-g
-g
-c
-c
-f
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(106,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-p
-n
-n
-n
-n
-n
-n
-n
-n
-b
-c
-c
-c
-c
-c
-g
-c
-c
-c
-c
-c
-c
-f
-c
-f
-c
-c
-c
-c
-f
-c
-c
-j
-c
-c
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(107,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-n
-n
-n
-n
-n
-n
-n
-n
-n
-b
-c
-c
-c
-f
-c
-c
-c
-c
-c
-k
-c
-c
-c
-c
-c
-c
-f
-c
-c
-c
-c
-c
-c
-c
-f
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(108,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-n
-n
-n
-n
-n
-n
-o
-n
-n
-b
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-e
-c
-c
-c
-c
-c
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(109,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-n
-n
-n
-n
-n
-b
-b
-b
-b
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(110,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-n
-n
-n
-n
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-c
-c
-c
-c
-d
-c
-c
-c
-c
-c
-c
-c
-f
-c
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(111,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-n
-n
-n
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-c
-c
-c
-c
-c
-c
-c
-f
-c
-c
-c
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(112,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-n
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-f
-c
-c
-c
-c
-f
-c
-c
-c
-c
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(113,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-n
-q
-n
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-c
-c
-c
-c
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(114,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-n
-n
-b
-n
-o
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(115,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-o
-n
-n
-n
-n
-n
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(116,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-n
-n
-n
-n
-n
-n
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(117,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-n
-n
-n
-n
-n
-n
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-A
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(118,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-m
-n
-n
-n
-n
-n
-n
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(119,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-n
-n
-n
-o
-n
-n
-n
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(120,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
diff --git a/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm b/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm
index c06cd20702..5395c297f1 100644
--- a/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm
+++ b/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm
@@ -475,7 +475,7 @@
/area/ruin/derelictoutpost)
"bq" = (
/obj/effect/mob_spawn/human/corpse/nanotrasensoldier{
- helmet = null;
+ head = null;
id_job = "Tradepost Officer";
name = "Tradeport Officer";
random = 1
diff --git a/_maps/RandomRuins/SpaceRuins/dragoontomb.dmm b/_maps/RandomRuins/SpaceRuins/dragoontomb.dmm
deleted file mode 100644
index 94d7274849..0000000000
--- a/_maps/RandomRuins/SpaceRuins/dragoontomb.dmm
+++ /dev/null
@@ -1,1888 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/turf/template_noop,
-/area/template_noop)
-"b" = (
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/unpowered/no_grav)
-"c" = (
-/turf/closed/mineral/volcanic/lava_land_surface{
- baseturf = /turf/open/floor/plating/asteroid
- },
-/area/ruin/unpowered/no_grav)
-"d" = (
-/mob/living/simple_animal/hostile/flan/water,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/unpowered/no_grav)
-"e" = (
-/mob/living/simple_animal/hostile/flan/fire,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/unpowered/no_grav)
-"f" = (
-/obj/structure/lattice,
-/turf/template_noop,
-/area/template_noop)
-"g" = (
-/obj/item/weapon/bikehorn,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/unpowered/no_grav)
-"h" = (
-/turf/closed/wall/mineral/iron,
-/area/ruin/unpowered/no_grav)
-"i" = (
-/obj/structure/rack,
-/obj/item/weapon/kitchen/knife/combat/survival,
-/turf/open/floor/plating/astplate{
- initial_gas_mix = "TEMP=2.7"
- },
-/area/ruin/unpowered/no_grav)
-"j" = (
-/turf/open/floor/plating/astplate{
- initial_gas_mix = "TEMP=2.7"
- },
-/area/ruin/unpowered/no_grav)
-"k" = (
-/obj/structure/rack,
-/obj/item/weapon/twohanded/spear,
-/turf/open/floor/plating/astplate{
- initial_gas_mix = "TEMP=2.7"
- },
-/area/ruin/unpowered/no_grav)
-"l" = (
-/obj/structure/rack,
-/obj/item/weapon/relic,
-/turf/open/floor/plating/astplate{
- initial_gas_mix = "TEMP=2.7"
- },
-/area/ruin/unpowered/no_grav)
-"m" = (
-/obj/structure/mineral_door/wood,
-/turf/open/floor/plating/astplate{
- initial_gas_mix = "TEMP=2.7"
- },
-/area/ruin/unpowered/no_grav)
-"n" = (
-/obj/structure/rack,
-/obj/item/weapon/dice/d4,
-/turf/open/floor/plating/astplate{
- initial_gas_mix = "TEMP=2.7"
- },
-/area/ruin/unpowered/no_grav)
-"o" = (
-/obj/structure/rack,
-/obj/item/weapon/dice/d8,
-/turf/open/floor/plating/astplate{
- initial_gas_mix = "TEMP=2.7"
- },
-/area/ruin/unpowered/no_grav)
-"p" = (
-/obj/structure/rack,
-/obj/item/weapon/dice/d12,
-/turf/open/floor/plating/astplate{
- initial_gas_mix = "TEMP=2.7"
- },
-/area/ruin/unpowered/no_grav)
-"q" = (
-/obj/structure/rack,
-/obj/item/weapon/dice/d00,
-/turf/open/floor/plating/astplate{
- initial_gas_mix = "TEMP=2.7"
- },
-/area/ruin/unpowered/no_grav)
-"r" = (
-/obj/structure/rack,
-/obj/item/weapon/dice/d20,
-/turf/open/floor/plating/astplate{
- initial_gas_mix = "TEMP=2.7"
- },
-/area/ruin/unpowered/no_grav)
-"s" = (
-/obj/structure/statue/silver/sec,
-/turf/open/floor/mineral/silver,
-/area/ruin/unpowered/no_grav)
-"t" = (
-/obj/structure/statue/silver/md,
-/turf/open/floor/mineral/silver,
-/area/ruin/unpowered/no_grav)
-"u" = (
-/obj/structure/table/wood/fancy,
-/obj/item/weapon/twohanded/skybulge,
-/turf/open/floor/mineral/silver,
-/area/ruin/unpowered/no_grav)
-"v" = (
-/turf/open/floor/mineral/silver,
-/area/ruin/unpowered/no_grav)
-"w" = (
-/obj/structure/mineral_door/silver,
-/turf/open/floor/mineral/silver,
-/area/ruin/unpowered/no_grav)
-"x" = (
-/obj/structure/closet/coffin,
-/obj/item/stack/sheet/bone,
-/turf/open/floor/mineral/silver,
-/area/ruin/unpowered/no_grav)
-"y" = (
-/mob/living/simple_animal/hostile/flan/fire,
-/turf/open/floor/plating/astplate{
- initial_gas_mix = "TEMP=2.7"
- },
-/area/ruin/unpowered/no_grav)
-"z" = (
-/obj/structure/statue/silver/secborg,
-/turf/open/floor/mineral/silver,
-/area/ruin/unpowered/no_grav)
-"A" = (
-/obj/structure/statue/silver/medborg,
-/turf/open/floor/mineral/silver,
-/area/ruin/unpowered/no_grav)
-"B" = (
-/obj/structure/table/wood/fancy,
-/obj/item/weapon/reagent_containers/food/snacks/donkpocket,
-/turf/open/floor/mineral/silver,
-/area/ruin/unpowered/no_grav)
-"C" = (
-/obj/effect/turf_decal/stripes/asteroid/line{
- dir = 8
- },
-/turf/open/floor/plating/astplate{
- icon_state = "astplate_warn";
- initial_gas_mix = "TEMP=2.7";
- tag = "icon-astplate_warn (WEST)"
- },
-/area/ruin/unpowered/no_grav)
-"D" = (
-/obj/effect/turf_decal/stripes/asteroid/line{
- dir = 4
- },
-/turf/open/floor/plating/astplate{
- icon_state = "astplate_warn";
- initial_gas_mix = "TEMP=2.7";
- tag = "icon-astplate_warn (EAST)"
- },
-/area/ruin/unpowered/no_grav)
-"E" = (
-/obj/item/weapon/dice/d10,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/unpowered/no_grav)
-"F" = (
-/obj/structure/grille,
-/turf/template_noop,
-/area/ruin/unpowered/no_grav)
-"G" = (
-/obj/item/weapon/dice/d100,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/unpowered/no_grav)
-"H" = (
-/obj/effect/turf_decal/stripes/asteroid/line{
- dir = 10
- },
-/turf/open/floor/plating/astplate{
- icon_state = "astplate_warn";
- initial_gas_mix = "TEMP=2.7";
- tag = "icon-astplate_warn (SOUTHWEST)"
- },
-/area/ruin/unpowered/no_grav)
-"I" = (
-/obj/effect/turf_decal/stripes/asteroid/line{
- dir = 6
- },
-/turf/open/floor/plating/astplate{
- icon_state = "astplate_warn";
- initial_gas_mix = "TEMP=2.7";
- tag = "icon-astplate_warn (SOUTHEAST)"
- },
-/area/ruin/unpowered/no_grav)
-"J" = (
-/obj/item/weapon/crowbar/red,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/unpowered/no_grav)
-"K" = (
-/obj/item/weapon/dice/d1,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/unpowered/no_grav)
-"L" = (
-/turf/open/floor/mineral/silver{
- initial_gas_mix = "TEMP=2.7"
- },
-/area/ruin/unpowered/no_grav)
-
-(1,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(2,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(3,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-b
-b
-c
-c
-c
-c
-a
-a
-a
-a
-c
-c
-c
-c
-c
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(4,1,1) = {"
-a
-a
-a
-a
-a
-a
-b
-b
-b
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-b
-b
-b
-c
-c
-c
-a
-a
-a
-a
-c
-c
-c
-a
-a
-a
-"}
-(5,1,1) = {"
-a
-a
-a
-a
-a
-a
-b
-b
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-a
-a
-a
-"}
-(6,1,1) = {"
-a
-a
-a
-a
-a
-b
-b
-b
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-b
-c
-c
-c
-c
-c
-c
-c
-c
-c
-b
-b
-b
-b
-c
-c
-c
-c
-c
-a
-a
-"}
-(7,1,1) = {"
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-c
-b
-c
-c
-c
-c
-c
-b
-b
-c
-c
-b
-b
-c
-c
-c
-b
-c
-b
-c
-c
-b
-c
-c
-c
-c
-c
-a
-a
-"}
-(8,1,1) = {"
-a
-b
-b
-b
-b
-b
-c
-c
-b
-b
-b
-b
-b
-d
-c
-c
-c
-c
-b
-b
-c
-c
-c
-b
-b
-c
-b
-b
-c
-c
-c
-c
-c
-c
-b
-c
-c
-a
-a
-a
-"}
-(9,1,1) = {"
-a
-a
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-b
-c
-c
-c
-b
-b
-b
-b
-c
-c
-c
-b
-b
-b
-c
-c
-c
-c
-b
-c
-c
-b
-c
-c
-c
-a
-a
-"}
-(10,1,1) = {"
-a
-a
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-c
-b
-c
-c
-c
-b
-b
-b
-b
-c
-c
-c
-b
-d
-c
-c
-c
-c
-b
-b
-c
-c
-b
-c
-c
-c
-c
-a
-"}
-(11,1,1) = {"
-a
-a
-a
-c
-c
-c
-c
-c
-b
-b
-b
-c
-c
-b
-b
-c
-c
-c
-c
-b
-E
-c
-b
-c
-b
-c
-c
-c
-c
-b
-b
-c
-c
-b
-b
-c
-c
-c
-a
-a
-"}
-(12,1,1) = {"
-a
-a
-a
-c
-c
-c
-c
-b
-d
-b
-b
-c
-c
-b
-b
-b
-c
-c
-c
-c
-c
-c
-G
-c
-b
-c
-c
-c
-b
-b
-c
-c
-c
-b
-b
-c
-c
-b
-b
-a
-"}
-(13,1,1) = {"
-a
-a
-a
-c
-c
-c
-c
-b
-b
-b
-e
-b
-c
-c
-b
-b
-b
-b
-c
-c
-c
-c
-c
-c
-b
-b
-c
-c
-b
-b
-c
-c
-c
-c
-c
-c
-c
-b
-a
-a
-"}
-(14,1,1) = {"
-a
-a
-a
-c
-c
-c
-c
-b
-b
-c
-b
-b
-b
-c
-c
-c
-c
-b
-b
-b
-b
-b
-c
-c
-c
-b
-b
-c
-b
-c
-c
-c
-c
-c
-c
-b
-b
-a
-a
-a
-"}
-(15,1,1) = {"
-a
-a
-a
-c
-c
-c
-c
-c
-b
-c
-c
-b
-g
-c
-c
-c
-c
-c
-b
-b
-b
-b
-c
-c
-c
-b
-b
-c
-b
-c
-c
-c
-c
-c
-c
-b
-b
-a
-a
-a
-"}
-(16,1,1) = {"
-a
-a
-a
-c
-c
-c
-c
-c
-c
-c
-c
-b
-b
-b
-b
-c
-c
-c
-c
-c
-b
-b
-c
-b
-b
-c
-b
-c
-b
-c
-c
-b
-b
-b
-b
-b
-b
-a
-a
-a
-"}
-(17,1,1) = {"
-a
-a
-a
-a
-c
-c
-c
-c
-c
-c
-b
-d
-b
-b
-c
-c
-c
-c
-c
-c
-c
-b
-b
-b
-c
-c
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-"}
-(18,1,1) = {"
-a
-a
-a
-a
-c
-c
-c
-c
-c
-b
-b
-c
-c
-c
-c
-f
-c
-c
-c
-c
-c
-b
-b
-c
-c
-b
-b
-b
-d
-b
-c
-c
-c
-c
-b
-b
-b
-a
-a
-a
-"}
-(19,1,1) = {"
-a
-a
-a
-a
-c
-c
-c
-c
-c
-c
-c
-c
-a
-a
-a
-f
-a
-a
-f
-a
-a
-c
-b
-b
-c
-b
-b
-b
-b
-b
-b
-c
-c
-c
-c
-b
-b
-a
-a
-a
-"}
-(20,1,1) = {"
-a
-a
-a
-a
-b
-b
-c
-c
-c
-c
-a
-a
-h
-h
-h
-h
-h
-h
-h
-h
-f
-c
-c
-b
-b
-b
-b
-c
-c
-b
-b
-c
-c
-c
-c
-c
-b
-a
-a
-a
-"}
-(21,1,1) = {"
-a
-a
-a
-a
-b
-b
-b
-b
-c
-c
-c
-f
-h
-i
-j
-h
-n
-j
-j
-h
-a
-f
-c
-c
-b
-b
-b
-c
-c
-c
-b
-b
-c
-c
-c
-c
-b
-b
-a
-a
-"}
-(22,1,1) = {"
-a
-a
-a
-a
-a
-b
-b
-b
-c
-c
-c
-a
-h
-j
-j
-m
-j
-j
-j
-h
-F
-F
-c
-c
-J
-b
-c
-c
-c
-c
-c
-b
-c
-c
-c
-c
-c
-c
-a
-a
-"}
-(23,1,1) = {"
-a
-a
-a
-a
-a
-b
-b
-b
-c
-c
-a
-a
-h
-k
-j
-h
-o
-j
-j
-C
-C
-C
-H
-b
-b
-b
-c
-b
-b
-b
-c
-b
-c
-c
-c
-c
-c
-a
-a
-a
-"}
-(24,1,1) = {"
-a
-a
-a
-a
-a
-a
-b
-b
-c
-c
-c
-a
-h
-h
-h
-h
-p
-j
-y
-D
-D
-D
-I
-b
-b
-d
-c
-c
-b
-b
-c
-b
-c
-c
-c
-c
-c
-a
-a
-a
-"}
-(25,1,1) = {"
-a
-a
-a
-a
-a
-a
-b
-b
-b
-c
-c
-f
-h
-l
-j
-h
-q
-j
-j
-h
-F
-F
-c
-b
-b
-c
-c
-c
-b
-K
-c
-b
-c
-c
-c
-c
-c
-c
-a
-a
-"}
-(26,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-b
-b
-c
-c
-a
-h
-j
-j
-m
-j
-j
-j
-h
-f
-c
-c
-b
-b
-c
-b
-c
-c
-c
-c
-b
-c
-b
-c
-c
-c
-c
-a
-a
-"}
-(27,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-b
-b
-c
-c
-f
-h
-k
-j
-h
-r
-L
-j
-h
-a
-c
-b
-b
-c
-c
-b
-c
-c
-c
-c
-c
-c
-b
-c
-c
-b
-b
-a
-a
-"}
-(28,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-b
-b
-c
-a
-f
-h
-h
-h
-h
-h
-w
-h
-h
-a
-c
-b
-c
-c
-b
-b
-c
-c
-b
-c
-c
-c
-b
-d
-b
-b
-b
-a
-a
-"}
-(29,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-b
-b
-c
-a
-f
-a
-a
-a
-h
-s
-v
-z
-h
-f
-c
-b
-c
-b
-b
-c
-c
-c
-b
-c
-c
-c
-b
-c
-c
-c
-a
-a
-a
-"}
-(30,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-b
-c
-c
-c
-c
-f
-f
-h
-h
-v
-h
-h
-a
-c
-c
-c
-b
-d
-c
-b
-c
-b
-c
-c
-c
-b
-c
-c
-b
-b
-a
-a
-"}
-(31,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-c
-c
-c
-c
-a
-a
-h
-t
-v
-A
-h
-a
-a
-c
-c
-c
-b
-c
-b
-c
-b
-b
-b
-b
-b
-c
-c
-b
-a
-a
-a
-"}
-(32,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-c
-c
-c
-c
-c
-a
-h
-h
-v
-h
-h
-f
-f
-f
-c
-b
-b
-c
-c
-c
-c
-b
-b
-c
-c
-c
-c
-c
-a
-a
-a
-"}
-(33,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-c
-c
-c
-c
-f
-h
-u
-v
-B
-h
-a
-a
-c
-c
-b
-b
-b
-c
-c
-c
-b
-c
-c
-c
-c
-c
-c
-c
-a
-a
-"}
-(34,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-c
-c
-c
-a
-h
-h
-x
-h
-h
-a
-a
-c
-c
-c
-b
-b
-c
-b
-b
-b
-c
-c
-c
-c
-c
-c
-c
-a
-a
-"}
-(35,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-c
-c
-c
-h
-h
-h
-f
-a
-c
-c
-c
-c
-c
-b
-b
-b
-c
-c
-c
-c
-c
-c
-c
-c
-a
-a
-a
-"}
-(36,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-c
-c
-c
-a
-f
-c
-c
-c
-c
-b
-b
-b
-b
-c
-c
-c
-c
-c
-c
-c
-a
-a
-a
-a
-a
-"}
-(37,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-c
-c
-c
-c
-c
-c
-b
-b
-b
-b
-b
-b
-b
-c
-c
-c
-c
-c
-a
-a
-a
-a
-a
-a
-"}
-(38,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-c
-c
-b
-b
-b
-b
-a
-a
-a
-a
-b
-b
-c
-c
-c
-a
-a
-a
-a
-a
-a
-a
-"}
-(39,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-a
-a
-a
-a
-a
-a
-a
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(40,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
diff --git a/_maps/RandomRuins/SpaceRuins/vaporwave.dmm b/_maps/RandomRuins/SpaceRuins/vaporwave.dmm
index e953ee9a4e..fd97136d6c 100644
--- a/_maps/RandomRuins/SpaceRuins/vaporwave.dmm
+++ b/_maps/RandomRuins/SpaceRuins/vaporwave.dmm
@@ -37,6 +37,9 @@
/area/ruin/powered/aesthetic)
"j" = (
/obj/structure/chair/stool,
+/obj/machinery/light/small{
+ dir = 1
+ },
/turf/open/floor/plasteel/vaporwave,
/area/ruin/powered/aesthetic)
"k" = (
@@ -153,10 +156,10 @@
},
/area/ruin/unpowered/no_grav)
"G" = (
+/obj/effect/turf_decal/stripes/asteroid/line,
/turf/open/floor/plating/astplate{
initial_gas_mix = "TEMP=2.7"
},
-/obj/effect/turf_decal/stripes/asteroid/line,
/area/ruin/unpowered/no_grav)
"H" = (
/obj/effect/overlay/palmtree_l,
@@ -196,6 +199,39 @@
/obj/effect/decal/sandeffect,
/turf/open/floor/plasteel/airless/asteroid,
/area/ruin/unpowered/no_grav)
+"O" = (
+/obj/structure/chair/comfy/black{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vaporwave,
+/area/ruin/powered/aesthetic)
+"P" = (
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/vaporwave,
+/area/ruin/powered/aesthetic)
+"Q" = (
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/vaporwave,
+/area/ruin/powered/aesthetic)
+"R" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating/astplate{
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/ruin/unpowered/no_grav)
+"S" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating/astplate{
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/ruin/unpowered/no_grav)
(1,1,1) = {"
a
@@ -294,7 +330,7 @@ h
u
y
f
-B
+R
d
d
a
@@ -326,7 +362,7 @@ j
k
k
v
-k
+P
f
C
I
@@ -390,11 +426,11 @@ a
d
c
g
-n
+O
n
k
w
-k
+Q
g
F
I
@@ -430,7 +466,7 @@ p
u
y
g
-B
+S
d
d
a
diff --git a/_maps/RandomZLevels/beach.dmm b/_maps/RandomZLevels/beach.dmm
index be820d8e85..ee17326fdb 100644
--- a/_maps/RandomZLevels/beach.dmm
+++ b/_maps/RandomZLevels/beach.dmm
@@ -163,7 +163,7 @@
/area/awaymission/beach)
"aC" = (
/obj/effect/mob_spawn/human/cook{
- helmet = null;
+ head = null;
id_access = "Bartender";
id_job = "Bartender";
suit = /obj/item/clothing/suit/armor/vest;
diff --git a/_maps/RandomZLevels/wildwest.dmm b/_maps/RandomZLevels/wildwest.dmm
index 8e0df405b2..72a2dcac9c 100644
--- a/_maps/RandomZLevels/wildwest.dmm
+++ b/_maps/RandomZLevels/wildwest.dmm
@@ -187,7 +187,7 @@
/turf/closed/mineral,
/area/awaymission/wwmines)
"aO" = (
-/obj/effect/mob_spawn/human/syndicatecommando,
+/obj/effect/mob_spawn/human/corpse/syndicatecommando,
/turf/open/floor/plasteel/cult{
name = "engraved floor";
tag = "icon-cult"
@@ -929,7 +929,7 @@
},
/area/awaymission/wwgov)
"dh" = (
-/obj/effect/mob_spawn/human/syndicatecommando{
+/obj/effect/mob_spawn/human/corpse/syndicatecommando{
mob_name = "Syndicate Commando"
},
/turf/open/floor/carpet,
@@ -2017,7 +2017,7 @@
},
/area/awaymission/wwmines)
"gy" = (
-/obj/effect/mob_spawn/human/syndicatecommando{
+/obj/effect/mob_spawn/human/corpse/syndicatecommando{
mob_name = "Syndicate Commando"
},
/turf/open/floor/grass,
diff --git a/_maps/__MAP_DEFINES.dm b/_maps/__MAP_DEFINES.dm
deleted file mode 100644
index e1e113a290..0000000000
--- a/_maps/__MAP_DEFINES.dm
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
-The /tg/ codebase currently requires you to have 11 z-levels of the same size dimensions.
-z-level order is important, the order you put them in inside the map config.dm will determine what z level number they are assigned ingame.
-Names of z-level do not matter, but order does greatly, for instances such as checking alive status of revheads on z1
-
-current as of 2016/6/2
-z1 = station
-z2 = centcomm
-z5 = mining
-Everything else = randomized space
-Last space-z level = empty
-*/
-
-#define CROSSLINKED 2
-#define SELFLOOPING 1
-#define UNAFFECTED 0
-
-#define MAIN_STATION "Main Station"
-#define CENTCOMM "CentComm"
-#define EMPTY_AREA_1 "Empty Area 1"
-#define EMPTY_AREA_2 "Empty Area 2"
-#define MINING "Mining Asteroid"
-#define EMPTY_AREA_3 "Empty Area 3"
-#define EMPTY_AREA_4 "Empty Area 4"
-#define EMPTY_AREA_5 "Empty Area 5"
-#define EMPTY_AREA_6 "Empty Area 6"
-#define EMPTY_AREA_7 "Empty Area 7"
-#define EMPTY_AREA_8 "Empty Area 8"
-#define AWAY_MISSION "Away Mission"
-#define AWAY_MISSION_LIST list(AWAY_MISSION = SELFLOOPING)
-#define DEFAULT_MAP_TRANSITION_CONFIG list(MAIN_STATION = CROSSLINKED, CENTCOMM = SELFLOOPING, EMPTY_AREA_1 = CROSSLINKED, EMPTY_AREA_2 = CROSSLINKED, MINING = SELFLOOPING, EMPTY_AREA_3 = CROSSLINKED, EMPTY_AREA_4 = CROSSLINKED, EMPTY_AREA_5 = CROSSLINKED, EMPTY_AREA_6 = CROSSLINKED, EMPTY_AREA_7 = CROSSLINKED, EMPTY_AREA_8 = CROSSLINKED)
diff --git a/_maps/basemap.dm b/_maps/basemap.dm
index 6d5747fa5c..20396b128a 100644
--- a/_maps/basemap.dm
+++ b/_maps/basemap.dm
@@ -1,10 +1,10 @@
#ifndef ALL_MAPS
-#include "map_files\generic\SpaceStation.dmm"
#include "map_files\generic\Centcomm.dmm"
+#include "map_files\generic\SpaceStation.dmm"
#include "map_files\generic\Space.dmm"
#include "map_files\generic\SpaceDock.dmm"
-#include "map_files\Mining\lavaland.dmm"
+#include "map_files\Mining\Lavaland.dmm"
#else
diff --git a/_maps/loadallmaps.dm b/_maps/loadallmaps.dm
deleted file mode 100644
index 22359d164f..0000000000
--- a/_maps/loadallmaps.dm
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifdef ALL_MAPS
-#include "map_files\debug\runtimestation.dmm"
-#include "map_files\Deltastation\DeltaStation2.dmm"
-#include "map_files\MetaStation\MetaStation.dmm"
-#include "map_files\OmegaStation\OmegaStation.dmm"
-#include "map_files\PubbyStation\PubbyStation.dmm"
-#include "map_files\TgStation\tgstation.2.1.3.dmm"
-#include "map_files\Cerestation\cerestation.dmm"
-#include "map_files\CitadelStation\CitadelStation-1.2.1.dmm"
-
-#include "map_files\generic\Centcomm.dmm"
-#include "map_files\generic\SpaceStation.dmm"
-#include "map_files\generic\Space.dmm"
-#include "map_files\generic\SpaceDock.dmm"
-
-#include "map_files\Mining\Lavaland.dmm"
-
-#ifdef TRAVISBUILDING
-#include "templates.dm"
-#endif
-#endif
\ No newline at end of file
diff --git a/_maps/map_files/Cerestation/cerestation.dmm b/_maps/map_files/Cerestation/cerestation.dmm
index 0df3264dce..92d0902564 100644
--- a/_maps/map_files/Cerestation/cerestation.dmm
+++ b/_maps/map_files/Cerestation/cerestation.dmm
@@ -293,16 +293,12 @@
/area/space)
"aaQ" = (
/turf/closed/wall,
-/area/maintenance/disposal{
- name = "Northen External Waste Belt"
- })
+/area/maintenance/asteroid/disposal/north)
"aaR" = (
/obj/structure/window/reinforced/fulltile,
/obj/structure/grille,
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "Northen External Waste Belt"
- })
+/area/maintenance/asteroid/disposal/north)
"aaS" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -325,6 +321,7 @@
icon_state = "1-2";
pixel_y = 0
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -354,6 +351,7 @@
"aaX" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -412,17 +410,13 @@
dir = 4
},
/turf/open/floor/plating/airless,
-/area/maintenance/disposal{
- name = "Northen External Waste Belt"
- })
+/area/maintenance/asteroid/disposal/north)
"abf" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/closed/wall,
-/area/maintenance/disposal{
- name = "Northen External Waste Belt"
- })
+/area/maintenance/asteroid/disposal/north)
"abg" = (
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -431,9 +425,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "Northen External Waste Belt"
- })
+/area/maintenance/asteroid/disposal/north)
"abh" = (
/obj/machinery/conveyor/auto{
icon_state = "conveyor0";
@@ -446,18 +438,14 @@
random_basetype = /obj/structure/sign/poster/contraband
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "Northen External Waste Belt"
- })
+/area/maintenance/asteroid/disposal/north)
"abi" = (
/obj/machinery/conveyor/auto{
icon_state = "conveyor0";
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "Northen External Waste Belt"
- })
+/area/maintenance/asteroid/disposal/north)
"abj" = (
/obj/machinery/conveyor/auto{
icon_state = "conveyor0";
@@ -467,9 +455,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "Northen External Waste Belt"
- })
+/area/maintenance/asteroid/disposal/north)
"abk" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/machinery/conveyor/auto{
@@ -478,9 +464,7 @@
verted = -1
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "Northen External Waste Belt"
- })
+/area/maintenance/asteroid/disposal/north)
"abl" = (
/obj/machinery/light{
dir = 8
@@ -589,34 +573,26 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "Northen External Waste Belt"
- })
+/area/maintenance/asteroid/disposal/north)
"abu" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/disposal{
- name = "Northen External Waste Belt"
- })
+/area/maintenance/asteroid/disposal/north)
"abv" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "Northen External Waste Belt"
- })
+/area/maintenance/asteroid/disposal/north)
"abw" = (
/obj/machinery/conveyor/auto{
icon_state = "conveyor0";
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "Northen External Waste Belt"
- })
+/area/maintenance/asteroid/disposal/north)
"abx" = (
/obj/structure/showcase{
density = 0;
@@ -722,25 +698,19 @@
})
"abF" = (
/turf/closed/wall/rust,
-/area/maintenance/disposal{
- name = "Northen External Waste Belt"
- })
+/area/maintenance/asteroid/disposal/north)
"abG" = (
/obj/machinery/light/small,
/obj/structure/table,
/obj/item/weapon/storage/toolbox/emergency,
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/disposal{
- name = "Northen External Waste Belt"
- })
+/area/maintenance/asteroid/disposal/north)
"abH" = (
/obj/structure/rack,
/obj/item/clothing/mask/breath,
/obj/item/weapon/tank/internals/emergency_oxygen,
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/disposal{
- name = "Northen External Waste Belt"
- })
+/area/maintenance/asteroid/disposal/north)
"abI" = (
/obj/structure/cable/orange{
d2 = 4;
@@ -757,9 +727,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "Northen External Waste Belt"
- })
+/area/maintenance/asteroid/disposal/north)
"abJ" = (
/obj/structure/cable/orange{
d1 = 2;
@@ -767,17 +735,13 @@
icon_state = "2-8"
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/disposal{
- name = "Northen External Waste Belt"
- })
+/area/maintenance/asteroid/disposal/north)
"abK" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/disposal{
- name = "Northen External Waste Belt"
- })
+/area/maintenance/asteroid/disposal/north)
"abL" = (
/obj/structure/disposalpipe/trunk,
/obj/structure/disposaloutlet{
@@ -785,9 +749,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "Northen External Waste Belt"
- })
+/area/maintenance/asteroid/disposal/north)
"abM" = (
/obj/machinery/porta_turret/ai{
dir = 4
@@ -893,15 +855,11 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "Northen External Waste Belt"
- })
+/area/maintenance/asteroid/disposal/north)
"abY" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall,
-/area/maintenance/disposal{
- name = "Northen External Waste Belt"
- })
+/area/maintenance/asteroid/disposal/north)
"abZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black{
@@ -1023,18 +981,14 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "Northen External Waste Belt"
- })
+/area/maintenance/asteroid/disposal/north)
"acl" = (
/obj/machinery/disposal/deliveryChute,
/obj/structure/disposalpipe/trunk{
dir = 1
},
/turf/open/floor/plating/airless,
-/area/maintenance/disposal{
- name = "Northen External Waste Belt"
- })
+/area/maintenance/asteroid/disposal/north)
"acm" = (
/obj/docking_port/stationary{
dheight = 9;
@@ -1117,9 +1071,7 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "Northen External Waste Belt"
- })
+/area/maintenance/asteroid/disposal/north)
"acu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
@@ -1465,6 +1417,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -1485,6 +1438,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -1592,6 +1546,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -1738,6 +1693,7 @@
"adI" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -1799,9 +1755,7 @@
/area/shuttle/syndicate)
"adP" = (
/turf/closed/mineral,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"adQ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -2047,9 +2001,7 @@
/area/shuttle/syndicate)
"aep" = (
/turf/closed/mineral/random/labormineral,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_west)
"aeq" = (
/turf/open/floor/plasteel/darkred/side{
icon_state = "darkred";
@@ -2192,6 +2144,7 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -2266,9 +2219,7 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"aeK" = (
/obj/structure/rack,
/obj/item/weapon/gun/energy/e_gun/advtaser{
@@ -2402,7 +2353,7 @@
/obj/structure/window/reinforced{
dir = 1
},
-/turf/open/floor/plating,
+/turf/open/floor/plating/airless,
/area/shuttle/syndicate)
"aeX" = (
/obj/structure/reagent_dispensers/fueltank,
@@ -2432,22 +2383,16 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"afb" = (
/obj/machinery/light/small,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/cargo_south)
"afc" = (
/turf/open/floor/plating/asteroid,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"afd" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -2501,9 +2446,7 @@
/area/ai_monitored/security/armory)
"afi" = (
/turf/closed/wall,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"afj" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 2
@@ -2516,9 +2459,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"afk" = (
/obj/structure/disposaloutlet{
icon_state = "outlet";
@@ -2527,9 +2468,7 @@
/obj/structure/disposalpipe/trunk,
/obj/structure/disposalpipe/trunk,
/turf/open/floor/plating/airless,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"afl" = (
/obj/machinery/power/terminal{
dir = 4
@@ -2651,25 +2590,23 @@
/obj/structure/shuttle/engine/propulsion{
icon_state = "propulsion_l"
},
-/turf/open/floor/plating,
+/turf/open/floor/plating/airless,
/area/shuttle/syndicate)
"afu" = (
/obj/structure/shuttle/engine/propulsion,
-/turf/open/floor/plating,
+/turf/open/floor/plating/airless,
/area/shuttle/syndicate)
"afv" = (
/obj/structure/shuttle/engine/propulsion{
icon_state = "propulsion_r"
},
-/turf/open/floor/plating,
+/turf/open/floor/plating/airless,
/area/shuttle/syndicate)
"afw" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/cargo_south)
"afx" = (
/obj/machinery/vending/sustenance,
/turf/open/floor/plating/astplate{
@@ -2761,9 +2698,7 @@
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"afF" = (
/obj/machinery/light/small{
dir = 4
@@ -2776,31 +2711,23 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"afG" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"afH" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"afI" = (
/obj/structure/window/reinforced/fulltile,
/obj/structure/grille,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"afJ" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/black{
@@ -2882,9 +2809,7 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"afR" = (
/obj/structure/cable{
d1 = 1;
@@ -2898,9 +2823,7 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"afS" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/obj/machinery/turretid{
@@ -2911,9 +2834,7 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"afT" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -2923,9 +2844,7 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"afU" = (
/obj/machinery/light{
dir = 1
@@ -2933,9 +2852,7 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"afV" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-09"
@@ -2943,16 +2860,12 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"afW" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"afX" = (
/turf/open/space,
/obj/machinery/porta_turret/syndicate{
@@ -3082,9 +2995,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"ago" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/cobweb,
@@ -3092,9 +3003,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"agp" = (
/obj/machinery/light/small{
dir = 1
@@ -3103,9 +3012,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"agq" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -3116,9 +3023,7 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"agr" = (
/obj/structure/disposalpipe/sortjunction{
dir = 8;
@@ -3132,9 +3037,7 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"ags" = (
/obj/structure/disposalpipe/sortjunction{
dir = 8;
@@ -3145,9 +3048,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"agt" = (
/obj/structure/disposalpipe/sortjunction{
dir = 8;
@@ -3158,9 +3059,7 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"agu" = (
/obj/structure/disposalpipe/sortjunction{
dir = 8;
@@ -3171,9 +3070,7 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"agv" = (
/obj/structure/disposalpipe/sortjunction{
dir = 8;
@@ -3184,9 +3081,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"agw" = (
/obj/structure/disposalpipe/sortjunction{
dir = 8;
@@ -3199,9 +3094,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"agx" = (
/obj/structure/disposalpipe/sortjunction{
dir = 8;
@@ -3216,9 +3109,7 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"agy" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -3229,9 +3120,7 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"agz" = (
/obj/machinery/light/small{
dir = 1
@@ -3240,9 +3129,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"agA" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -3253,9 +3140,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"agB" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -3263,9 +3148,7 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"agC" = (
/obj/machinery/disposal/deliveryChute{
dir = 4
@@ -3274,9 +3157,7 @@
dir = 8
},
/turf/open/floor/plating/airless,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"agD" = (
/obj/structure/disposaloutlet{
dir = 8
@@ -3285,9 +3166,7 @@
dir = 4
},
/turf/open/floor/plating/airless,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_east)
"agE" = (
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -3298,9 +3177,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_east)
"agF" = (
/obj/machinery/conveyor/auto{
icon_state = "conveyor0";
@@ -3309,9 +3186,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_east)
"agG" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/machinery/conveyor/auto{
@@ -3322,9 +3197,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_east)
"agH" = (
/obj/machinery/message_server,
/turf/open/floor/circuit{
@@ -3439,9 +3312,7 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"agQ" = (
/obj/structure/cable{
d1 = 1;
@@ -3455,9 +3326,7 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"agR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -3466,9 +3335,7 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"agS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -3488,9 +3355,7 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"agT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -3498,9 +3363,7 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"agU" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
@@ -3513,9 +3376,7 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"agV" = (
/obj/structure/sink{
icon_state = "sink";
@@ -3555,11 +3416,11 @@
"agZ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d2 = 2;
icon_state = "0-2"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -3612,9 +3473,7 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"ahe" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -3623,9 +3482,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"ahf" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -3633,9 +3490,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"ahg" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -3644,9 +3499,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"ahh" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -3655,9 +3508,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"ahi" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -3666,9 +3517,7 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"ahj" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -3678,9 +3527,7 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"ahk" = (
/obj/structure/disposalpipe/junction{
dir = 4;
@@ -3689,18 +3536,14 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"ahl" = (
/obj/structure/disposalpipe/junction,
/obj/effect/landmark/blobstart,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"ahm" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j2";
@@ -3709,9 +3552,7 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"ahn" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
@@ -3720,9 +3561,7 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"aho" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
@@ -3733,9 +3572,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"ahp" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
@@ -3744,9 +3581,7 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"ahq" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -3756,9 +3591,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"ahr" = (
/obj/machinery/light/small{
dir = 8
@@ -3767,25 +3600,19 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_east)
"ahs" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_east)
"aht" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_east)
"ahu" = (
/obj/machinery/conveyor/auto{
icon_state = "conveyor0";
@@ -3794,9 +3621,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_east)
"ahv" = (
/obj/machinery/telecomms/server/presets/supply,
/turf/open/floor/circuit{
@@ -3862,9 +3687,7 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"ahD" = (
/obj/machinery/door/airlock/hatch{
name = "AI Core";
@@ -3874,16 +3697,12 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"ahE" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"ahF" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -3994,9 +3813,7 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"ahR" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -4005,9 +3822,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"ahS" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -4017,9 +3832,7 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"ahT" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -4028,9 +3841,7 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"ahU" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -4044,9 +3855,7 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"ahV" = (
/obj/structure/closet/emcloset,
/obj/structure/sign/poster/random{
@@ -4056,22 +3865,16 @@
random_basetype = /obj/structure/sign/poster/contraband
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_east)
"ahW" = (
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_east)
"ahX" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_east)
"ahY" = (
/obj/machinery/telecomms/server/presets/service,
/turf/open/floor/circuit{
@@ -4164,9 +3967,7 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"aii" = (
/obj/machinery/light/small{
dir = 1
@@ -4179,9 +3980,7 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"aij" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/ai_status_display{
@@ -4190,9 +3989,7 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"aik" = (
/obj/machinery/recharge_station,
/obj/effect/turf_decal/stripes/line{
@@ -4202,9 +3999,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"ail" = (
/obj/structure/chair/stool,
/obj/structure/sign/poster/official/work_for_a_future{
@@ -4265,6 +4060,7 @@
name = "Armory Desk";
req_one_access_txt = "38;2"
},
+/obj/item/weapon/paper_bin,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -4310,7 +4106,6 @@
"aiv" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -4325,6 +4120,7 @@
d2 = 2;
icon_state = "0-2"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -4332,11 +4128,11 @@
"aiw" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d2 = 8;
icon_state = "0-8"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -4371,9 +4167,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_east)
"aiB" = (
/obj/structure/cable/orange{
d1 = 1;
@@ -4384,18 +4178,14 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"aiC" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"aiD" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -4405,9 +4195,7 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"aiE" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -4415,9 +4203,7 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"aiF" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -4426,20 +4212,14 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"aiG" = (
/obj/structure/table,
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_east)
"aiH" = (
/turf/open/floor/plating,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_east)
"aiI" = (
/obj/machinery/conveyor/auto{
icon_state = "conveyor0";
@@ -4448,9 +4228,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_east)
"aiJ" = (
/obj/machinery/conveyor/auto{
icon_state = "conveyor0";
@@ -4460,9 +4238,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_east)
"aiK" = (
/obj/machinery/conveyor/auto{
dir = 6;
@@ -4472,9 +4248,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_east)
"aiL" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/structure/closet,
@@ -4482,9 +4256,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_east)
"aiM" = (
/obj/machinery/light,
/turf/open/floor/plasteel/black{
@@ -4513,9 +4285,7 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"aiP" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -4524,9 +4294,7 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"aiQ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
@@ -4534,9 +4302,7 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"aiR" = (
/turf/closed/wall,
/area/quartermaster/sorting)
@@ -4577,17 +4343,13 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_west)
"aiX" = (
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_west)
"aiY" = (
/obj/machinery/light/small{
dir = 1
@@ -4597,17 +4359,13 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_west)
"aiZ" = (
/obj/structure/table,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_west)
"aja" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
@@ -4615,15 +4373,11 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_west)
"ajb" = (
/obj/structure/closet/crate,
/turf/open/floor/plating/asteroid,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/cargo_south)
"ajc" = (
/obj/machinery/light/small{
dir = 4
@@ -4632,9 +4386,7 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_west)
"ajd" = (
/obj/machinery/camera{
c_tag = "Prison Screen Monitor";
@@ -4777,9 +4529,7 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"ajt" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/maintenance{
@@ -4789,31 +4539,23 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"aju" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/emergency,
/turf/open/floor/plating,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_east)
"ajv" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_east)
"ajw" = (
/obj/effect/turf_decal/stripes/corner{
dir = 8
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_east)
"ajx" = (
/obj/machinery/light/small{
dir = 4
@@ -4822,9 +4564,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_east)
"ajy" = (
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -4835,9 +4575,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_east)
"ajz" = (
/obj/structure/disposaloutlet{
dir = 8
@@ -4882,9 +4620,7 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"ajE" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -4892,9 +4628,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"ajF" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -4906,9 +4640,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"ajG" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -4920,9 +4652,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"ajH" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -5063,23 +4793,17 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_west)
"ajW" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_west)
"ajX" = (
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_west)
"ajY" = (
/obj/structure/bed,
/turf/open/floor/plasteel/floorgrime{
@@ -5096,6 +4820,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/poddoor/preopen{
id = "permatoggle";
+ layer = 2.6;
name = "prisoner transfer door"
},
/turf/open/floor/plating{
@@ -5202,14 +4927,12 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"akl" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"akm" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -5225,23 +4948,17 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_east)
"ako" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"akp" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"akq" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -5261,9 +4978,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"akr" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -5284,9 +4999,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"aks" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -5304,9 +5017,7 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"akt" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -5317,9 +5028,7 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"aku" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -5330,9 +5039,7 @@
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"akv" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -5347,9 +5054,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"akw" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -5364,9 +5069,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"akx" = (
/turf/open/floor/plating/asteroid/airless,
/area/mine/unexplored{
@@ -5441,9 +5144,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_west)
"akH" = (
/obj/effect/turf_decal/stripes/asteroid/line{
icon_state = "ast_warn";
@@ -5452,17 +5153,13 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_west)
"akI" = (
/obj/structure/barricade/wooden,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_west)
"akJ" = (
/obj/effect/turf_decal/stripes/asteroid/line{
icon_state = "ast_warn";
@@ -5471,18 +5168,14 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_west)
"akK" = (
/obj/structure/disposalpipe/segment,
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"akL" = (
/obj/machinery/status_display{
density = 0;
@@ -5572,9 +5265,7 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_west)
"akU" = (
/obj/structure/curtain,
/obj/machinery/shower{
@@ -5583,7 +5274,7 @@
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"akV" = (
/obj/structure/curtain,
/obj/machinery/shower{
@@ -5593,7 +5284,7 @@
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"akW" = (
/obj/effect/turf_decal/stripes/asteroid/line{
icon_state = "ast_warn";
@@ -5602,9 +5293,7 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/cargo_west)
"akX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
@@ -5616,9 +5305,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"akY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
@@ -5626,9 +5313,7 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"akZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -5636,9 +5321,7 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"ala" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
@@ -5647,18 +5330,14 @@
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"alb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/landmark/blobstart,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"alc" = (
/turf/closed/mineral,
/area/mine/unexplored{
@@ -5800,9 +5479,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"alu" = (
/obj/structure/rack,
/obj/item/weapon/pickaxe/emergency,
@@ -5811,42 +5488,32 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"alv" = (
/obj/structure/grille,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"alw" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating/asteroid,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"alx" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"aly" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"alz" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
@@ -5854,7 +5521,7 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"alA" = (
/obj/structure/table/wood,
/obj/item/device/modular_computer/laptop/preset/civillian,
@@ -5864,7 +5531,7 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"alB" = (
/obj/machinery/light_switch{
pixel_y = 25
@@ -5875,7 +5542,7 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"alC" = (
/obj/item/weapon/storage/secure/safe{
pixel_y = 32
@@ -5883,12 +5550,12 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"alD" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"alE" = (
/obj/structure/sink{
icon_state = "sink";
@@ -5902,13 +5569,13 @@
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"alF" = (
/obj/item/weapon/soap/deluxe,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"alG" = (
/obj/machinery/light/small{
dir = 8
@@ -5916,31 +5583,23 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_east)
"alH" = (
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"alI" = (
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"alJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"alK" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel{
@@ -6335,9 +5994,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"amn" = (
/obj/structure/cable/orange{
d1 = 2;
@@ -6347,9 +6004,7 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/cargo_west)
"amo" = (
/obj/structure/cable/orange{
d1 = 2;
@@ -6363,9 +6018,7 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"amp" = (
/obj/structure/cable/orange{
d1 = 4;
@@ -6378,9 +6031,7 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"amq" = (
/obj/structure/cable/orange{
d1 = 4;
@@ -6394,9 +6045,7 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"amr" = (
/obj/structure/cable/orange{
d1 = 4;
@@ -6410,9 +6059,7 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"ams" = (
/obj/structure/cable/orange{
d1 = 2;
@@ -6426,16 +6073,14 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"amt" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"amu" = (
/obj/structure/chair{
dir = 1
@@ -6443,18 +6088,18 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"amv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"amw" = (
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"amx" = (
/obj/machinery/door/airlock{
name = "Bathroom"
@@ -6462,18 +6107,18 @@
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"amy" = (
/obj/machinery/light/small,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"amz" = (
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"amA" = (
/obj/machinery/door/airlock{
id_tag = "bc"
@@ -6481,7 +6126,7 @@
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"amB" = (
/obj/machinery/button/door{
id = "bc";
@@ -6499,7 +6144,7 @@
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"amC" = (
/obj/machinery/camera/motion{
c_tag = "Bridge Escape Pod External";
@@ -6520,9 +6165,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"amE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
@@ -6539,9 +6182,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"amF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/camera{
@@ -6554,17 +6195,13 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"amG" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"amH" = (
/obj/machinery/light{
dir = 4
@@ -6572,9 +6209,7 @@
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"amI" = (
/turf/closed/mineral/random/labormineral,
/area/mine/unexplored{
@@ -6746,9 +6381,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"ane" = (
/obj/structure/cable/orange{
d1 = 1;
@@ -6762,9 +6395,7 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"anf" = (
/obj/structure/cable/orange{
d1 = 1;
@@ -6778,9 +6409,7 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"ang" = (
/obj/structure/cable/orange{
d1 = 4;
@@ -6799,9 +6428,7 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"anh" = (
/obj/structure/cable/orange{
d1 = 4;
@@ -6811,9 +6438,7 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"ani" = (
/obj/machinery/power/apc{
dir = 4;
@@ -6833,7 +6458,7 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"anj" = (
/obj/structure/table/wood,
/obj/item/weapon/pinpointer,
@@ -6841,7 +6466,7 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"ank" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
@@ -6849,14 +6474,14 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"anl" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/captain,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"anm" = (
/obj/machinery/status_display{
density = 0;
@@ -6865,7 +6490,7 @@
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"ann" = (
/obj/docking_port/stationary/random{
dir = 1;
@@ -6888,9 +6513,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"anp" = (
/obj/machinery/ai_status_display{
pixel_x = 32
@@ -6898,9 +6521,7 @@
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"anq" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 2
@@ -6909,9 +6530,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"anr" = (
/obj/structure/cable/orange{
d2 = 2;
@@ -6931,9 +6550,7 @@
"ans" = (
/obj/structure/closet/firecloset/full,
/turf/open/floor/plating/asteroid,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/cargo_west)
"ant" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall{
@@ -6991,7 +6608,6 @@
"anA" = (
/obj/structure/rack,
/obj/item/weapon/shovel,
-/obj/item/clothing/glasses/material/mining,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -7090,15 +6706,16 @@
"anK" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d2 = 4;
icon_state = "0-4"
},
/obj/machinery/door/poddoor/preopen{
id = "prisonbreak";
+ layer = 2.6;
name = "emergency prisoner containment blast door"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -7139,15 +6756,16 @@
"anN" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d2 = 8;
icon_state = "0-8"
},
/obj/machinery/door/poddoor/preopen{
id = "prisonbreak";
+ layer = 2.6;
name = "emergency prisoner containment blast door"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -7219,9 +6837,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"anU" = (
/obj/machinery/light/small{
dir = 1
@@ -7232,9 +6848,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"anV" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -7243,9 +6857,7 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"anW" = (
/obj/structure/disposalpipe/segment,
/obj/structure/disposalpipe/segment{
@@ -7254,9 +6866,7 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"anX" = (
/obj/structure/cable/orange{
d1 = 1;
@@ -7270,9 +6880,7 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"anY" = (
/obj/structure/cable/orange{
d1 = 1;
@@ -7283,23 +6891,19 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"anZ" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plating/asteroid,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"aoa" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aob" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
@@ -7307,7 +6911,7 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aoc" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/captain,
@@ -7318,7 +6922,7 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aod" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -7326,7 +6930,7 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aoe" = (
/obj/machinery/suit_storage_unit/captain,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -7335,7 +6939,7 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aof" = (
/obj/machinery/light/small{
dir = 1
@@ -7347,7 +6951,7 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aog" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -7363,7 +6967,7 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aoh" = (
/obj/machinery/door/window/eastright{
name = "Captain's Desk";
@@ -7378,7 +6982,7 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aoi" = (
/obj/machinery/airalarm{
frequency = 1439;
@@ -7391,7 +6995,7 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aoj" = (
/obj/machinery/light{
dir = 1
@@ -7401,7 +7005,7 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aok" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/lockbox/medal,
@@ -7411,20 +7015,20 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aol" = (
/obj/structure/table/wood,
/obj/item/weapon/book/manual/wiki/security_space_law,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aom" = (
/obj/structure/displaycase/captain,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aon" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/pod_1)
@@ -7450,9 +7054,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"aoq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/light/small{
@@ -7462,17 +7064,13 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"aor" = (
/obj/machinery/light/small{
dir = 8
},
/turf/open/floor/plating/asteroid,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/cargo_west)
"aos" = (
/obj/structure/cable/orange{
d1 = 2;
@@ -7482,9 +7080,7 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/cargo_west)
"aot" = (
/obj/structure/cable/orange{
d1 = 4;
@@ -7499,9 +7095,7 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/cargo_west)
"aou" = (
/obj/machinery/power/apc{
dir = 4;
@@ -7760,9 +7354,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"aoU" = (
/obj/structure/cable/orange{
d1 = 1;
@@ -7772,14 +7364,12 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/cargo_south)
"aoV" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
+/area/crew_quarters/dorms/female)
"aoW" = (
/obj/structure/cable/orange{
d1 = 1;
@@ -7791,34 +7381,30 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"aoX" = (
/obj/structure/grille,
/turf/open/floor/plating/asteroid,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/com_north)
"aoY" = (
/obj/structure/dresser,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aoZ" = (
/obj/structure/closet/secure_closet/captains,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"apa" = (
/obj/machinery/light/small,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"apb" = (
/obj/machinery/door/airlock/command{
name = "Captain's Quarters";
@@ -7828,13 +7414,13 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"apc" = (
/obj/structure/chair/office/dark,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"apd" = (
/obj/structure/table/wood,
/obj/structure/window/reinforced{
@@ -7845,19 +7431,19 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"ape" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"apf" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"apg" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
@@ -7865,18 +7451,18 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aph" = (
/mob/living/simple_animal/pet/fox/Renault,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"api" = (
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"apj" = (
/obj/structure/chair{
dir = 1
@@ -7911,9 +7497,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"apl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
@@ -7923,9 +7507,7 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"apm" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
@@ -7935,9 +7517,7 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"apn" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 1
@@ -7946,15 +7526,11 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
+/area/ai_monitored/turret_protected/aisat/hallway)
"apo" = (
/obj/structure/grille/broken,
/turf/open/floor/plating/asteroid,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/cargo_west)
"app" = (
/obj/structure/cable/orange{
d1 = 1;
@@ -7965,9 +7541,7 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
+/area/maintenance/asteroid/fore/cargo_west)
"apq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
@@ -8021,23 +7595,6 @@
},
/area/quartermaster/miningdock)
"apx" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Cell Block APC";
- pixel_x = 23;
- pixel_y = 2
- },
-/obj/structure/cable/orange,
-/obj/effect/turf_decal/stripes/end{
- tag = "icon-warn_end (WEST)";
- icon_state = "warn_end";
- dir = 8
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/prison)
-"apy" = (
/obj/structure/bed,
/obj/machinery/camera{
c_tag = "Brig Cell 3";
@@ -8049,7 +7606,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"apz" = (
+"apy" = (
/obj/machinery/flasher{
id = "Cell 3";
pixel_x = 0;
@@ -8059,7 +7616,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"apA" = (
+"apz" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -8077,7 +7634,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"apB" = (
+"apA" = (
/obj/structure/table,
/obj/machinery/firealarm{
dir = 8;
@@ -8086,6 +7643,7 @@
/obj/machinery/light{
dir = 1
},
+/obj/item/weapon/paper_bin,
/obj/item/weapon/storage/firstaid/regular{
pixel_x = 0
},
@@ -8093,7 +7651,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"apC" = (
+"apB" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -8103,7 +7661,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"apD" = (
+"apC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -8111,7 +7669,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"apE" = (
+"apD" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -8121,7 +7679,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"apF" = (
+"apE" = (
/obj/structure/table,
/obj/machinery/recharger,
/obj/machinery/newscaster/security_unit{
@@ -8131,7 +7689,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"apG" = (
+"apF" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -8149,7 +7707,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"apH" = (
+"apG" = (
/obj/machinery/flasher{
id = "Cell 7";
pixel_x = 0;
@@ -8159,7 +7717,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"apI" = (
+"apH" = (
/obj/structure/bed,
/obj/machinery/camera{
c_tag = "Brig Cell 7";
@@ -8172,7 +7730,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"apJ" = (
+"apI" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -8182,10 +7740,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"apK" = (
+/area/maintenance/asteroid/fore/com_north)
+"apJ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -8196,10 +7752,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"apL" = (
+/area/maintenance/asteroid/fore/com_west)
+"apK" = (
/obj/machinery/power/apc{
dir = 2;
name = "Dorm APC";
@@ -8215,37 +7769,35 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"apM" = (
+"apL" = (
/obj/structure/closet/crate,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"apN" = (
+/area/maintenance/asteroid/fore/com_west)
+"apM" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"apO" = (
+/area/crew_quarters/dorms/female)
+"apN" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/blue,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"apP" = (
+/area/crew_quarters/dorms/female)
+"apO" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/orange,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"apQ" = (
+/area/crew_quarters/dorms/female)
+"apP" = (
/obj/machinery/light/small{
dir = 1
},
@@ -8257,16 +7809,16 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"apR" = (
+/area/crew_quarters/dorms/female)
+"apQ" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/purple,
/obj/effect/landmark/start/assistant,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"apS" = (
+/area/crew_quarters/dorms/female)
+"apR" = (
/obj/machinery/camera/motion{
c_tag = "Bridge Maintenance Eastl";
dir = 8
@@ -8275,57 +7827,55 @@
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"apT" = (
+/area/maintenance/asteroid/fore/com_north)
+"apS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"apU" = (
+/area/crew_quarters/heads/captain)
+"apT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"apV" = (
+/area/crew_quarters/heads/captain)
+"apU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"apW" = (
+/area/crew_quarters/heads/captain)
+"apV" = (
/obj/structure/table/wood,
/obj/structure/window/reinforced,
/obj/item/weapon/hand_tele,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"apX" = (
+/area/crew_quarters/heads/captain)
+"apW" = (
/obj/structure/window/reinforced,
/obj/machinery/computer/card,
/obj/item/weapon/card/id/captains_spare,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"apY" = (
+/area/crew_quarters/heads/captain)
+"apX" = (
/obj/structure/window/reinforced,
/obj/machinery/computer/communications,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"apZ" = (
+/area/crew_quarters/heads/captain)
+"apY" = (
/obj/structure/table/wood,
/obj/structure/window/reinforced{
dir = 4;
@@ -8336,16 +7886,16 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"aqa" = (
+/area/crew_quarters/heads/captain)
+"apZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"aqb" = (
+/area/crew_quarters/heads/captain)
+"aqa" = (
/obj/structure/chair/comfy/brown{
dir = 4
},
@@ -8356,8 +7906,8 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"aqc" = (
+/area/crew_quarters/heads/captain)
+"aqb" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/photo_album,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -8366,23 +7916,23 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"aqd" = (
+/area/crew_quarters/heads/captain)
+"aqc" = (
/obj/structure/table/wood,
/obj/item/toy/figure/captain,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"aqe" = (
+/area/crew_quarters/heads/captain)
+"aqd" = (
/obj/structure/chair/comfy/brown{
dir = 8
},
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"aqf" = (
+/area/crew_quarters/heads/captain)
+"aqe" = (
/obj/structure/chair{
dir = 1
},
@@ -8394,21 +7944,17 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_1)
-"aqg" = (
+"aqf" = (
/obj/structure/girder,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aqh" = (
+/area/maintenance/asteroid/fore/com_north)
+"aqg" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating/asteroid,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aqi" = (
+/area/maintenance/asteroid/fore/com_east)
+"aqh" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
@@ -8420,40 +7966,37 @@
},
/turf/open/space,
/area/space)
-"aqj" = (
+"aqi" = (
+/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
-"aqk" = (
+/area/ai_monitored/turret_protected/aisat/hallway)
+"aqj" = (
+/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
-"aql" = (
+/area/ai_monitored/turret_protected/aisat/hallway)
+"aqk" = (
+/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
-"aqm" = (
+/area/ai_monitored/turret_protected/aisat/hallway)
+"aql" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
/turf/open/space,
/area/space)
-"aqn" = (
+"aqm" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -8463,10 +8006,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aqo" = (
+/area/maintenance/asteroid/fore/cargo_west)
+"aqn" = (
/obj/machinery/camera{
c_tag = "Cargo Western Loading Bay 2";
dir = 5;
@@ -8477,13 +8018,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aqp" = (
+"aqo" = (
/obj/machinery/computer/cargo,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aqq" = (
+"aqp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -8491,7 +8032,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aqr" = (
+"aqq" = (
/obj/machinery/door/airlock/mining{
req_access_txt = "48"
},
@@ -8499,7 +8040,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"aqs" = (
+"aqr" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -8508,7 +8049,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"aqt" = (
+"aqs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -8516,13 +8057,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"aqu" = (
+"aqt" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"aqv" = (
+"aqu" = (
/obj/machinery/door/window/brigdoor/westleft{
id = "Cell 3";
name = "Cell Door 3";
@@ -8534,29 +8075,30 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aqw" = (
+"aqv" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d2 = 2;
icon_state = "0-2"
},
/obj/machinery/door/poddoor/preopen{
id = "prisonbreak";
+ layer = 2.6;
name = "emergency prisoner containment blast door"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"aqx" = (
+"aqw" = (
/obj/machinery/computer/prisoner,
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"aqy" = (
+"aqx" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -8567,13 +8109,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"aqz" = (
+"aqy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"aqA" = (
+"aqz" = (
/obj/structure/chair/office/light{
dir = 4
},
@@ -8581,13 +8123,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"aqB" = (
+"aqA" = (
/obj/machinery/computer/crew,
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"aqC" = (
+"aqB" = (
/obj/machinery/door/window/brigdoor/eastleft{
id = "Cell 7";
name = "Cell Door 7";
@@ -8599,12 +8141,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aqD" = (
+"aqC" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aqE" = (
+"aqD" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -8613,20 +8155,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aqF" = (
+"aqE" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"aqG" = (
+/area/crew_quarters/dorms/female)
+"aqF" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/blue,
/obj/structure/window,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"aqH" = (
+/area/crew_quarters/dorms/female)
+"aqG" = (
/obj/structure/sign/poster/random{
name = "random official poster";
pixel_x = -32;
@@ -8635,24 +8177,24 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"aqI" = (
+/area/crew_quarters/dorms/female)
+"aqH" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/orange,
/obj/structure/window,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"aqJ" = (
+/area/crew_quarters/dorms/female)
+"aqI" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/purple,
/obj/structure/window,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"aqK" = (
+/area/crew_quarters/dorms/female)
+"aqJ" = (
/obj/machinery/camera{
c_tag = "Fore Asteroid Maintenance APCs 2";
dir = 5;
@@ -8661,20 +8203,16 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aqL" = (
+/area/maintenance/asteroid/fore/com_north)
+"aqK" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aqM" = (
+/area/maintenance/asteroid/fore/com_north)
+"aqL" = (
/obj/machinery/computer/arcade,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -8682,16 +8220,16 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"aqN" = (
+/area/crew_quarters/heads/captain)
+"aqM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"aqO" = (
+/area/crew_quarters/heads/captain)
+"aqN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -8699,8 +8237,8 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"aqP" = (
+/area/crew_quarters/heads/captain)
+"aqO" = (
/obj/structure/chair/comfy/brown{
dir = 4
},
@@ -8708,8 +8246,8 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"aqQ" = (
+/area/crew_quarters/heads/captain)
+"aqP" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/red{
pixel_x = 8;
@@ -8719,21 +8257,21 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"aqR" = (
+/area/crew_quarters/heads/captain)
+"aqQ" = (
/obj/structure/table/wood,
/obj/item/device/camera,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"aqS" = (
+/area/crew_quarters/heads/captain)
+"aqR" = (
/obj/structure/shuttle/engine/propulsion/burst,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/pod_1)
-"aqT" = (
+"aqS" = (
/obj/machinery/door/airlock/shuttle{
name = "Escape Pod Airlock"
},
@@ -8747,41 +8285,35 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/pod_1)
-"aqU" = (
+"aqT" = (
/obj/structure/closet/crate,
/obj/item/weapon/pickaxe/mini,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aqV" = (
+/area/maintenance/asteroid/fore/com_east)
+"aqU" = (
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/space)
-"aqW" = (
+"aqV" = (
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"aqX" = (
+/area/hallway/secondary/bridges/cargo_ai)
+"aqW" = (
/obj/machinery/camera{
c_tag = "Core-Command-Cargo Bridge 4";
dir = 8;
network = list("SS13")
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"aqY" = (
+/area/hallway/secondary/bridges/cargo_ai)
+"aqX" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"aqZ" = (
+"aqY" = (
/obj/machinery/requests_console{
department = "Cargo Bay";
departmentType = 2;
@@ -8793,26 +8325,39 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"ara" = (
+"aqZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"arb" = (
+"ara" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
+"arb" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad"
+ },
+/turf/open/floor/plasteel{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/quartermaster/office)
"arc" = (
/obj/machinery/conveyor{
dir = 4;
id = "QMLoad"
},
-/turf/open/floor/plasteel{
+/obj/machinery/door/poddoor{
+ id = "QMLoaddoor2";
+ name = "supply dock loading door"
+ },
+/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
@@ -8821,24 +8366,11 @@
dir = 4;
id = "QMLoad"
},
-/obj/machinery/door/poddoor{
- id = "QMLoaddoor2";
- name = "supply dock loading door"
- },
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
"are" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/quartermaster/office)
-"arf" = (
/obj/machinery/conveyor{
dir = 4;
id = "QMLoad"
@@ -8849,14 +8381,14 @@
},
/turf/open/floor/plating,
/area/shuttle/supply)
-"arg" = (
+"arf" = (
/obj/machinery/door/airlock/shuttle{
name = "Supply Shuttle Airlock";
req_access_txt = "31"
},
/turf/open/floor/plating,
/area/shuttle/supply)
-"arh" = (
+"arg" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 8;
name = "Supply Dock Airlock";
@@ -8866,25 +8398,25 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"ari" = (
+"arh" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"arj" = (
+"ari" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"ark" = (
+"arj" = (
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"arl" = (
+"ark" = (
/obj/machinery/requests_console{
department = "Cargo Bay";
departmentType = 2;
@@ -8903,14 +8435,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"arm" = (
+"arl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"arn" = (
+"arm" = (
/obj/machinery/button/door{
id = "MiningWarehouse";
name = "Mining Warehouse Shutters";
@@ -8922,12 +8454,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"aro" = (
+"arn" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"arp" = (
+"aro" = (
/obj/structure/closet/secure_closet/brig{
id = "Cell 3";
name = "Cell 3 Locker"
@@ -8936,7 +8468,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"arq" = (
+"arp" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -8947,10 +8479,9 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"arr" = (
+"arq" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -8967,13 +8498,15 @@
},
/obj/machinery/door/poddoor/preopen{
id = "prisonbreak";
+ layer = 2.6;
name = "emergency prisoner containment blast door"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"ars" = (
+"arr" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -8984,7 +8517,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"art" = (
+"ars" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -8994,7 +8527,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"aru" = (
+"art" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -9015,7 +8548,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"arv" = (
+"aru" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -9026,8 +8559,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"arw" = (
-/obj/machinery/door/firedoor,
+"arv" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -9044,6 +8576,7 @@
},
/obj/machinery/door/poddoor/preopen{
id = "prisonbreak";
+ layer = 2.6;
name = "emergency prisoner containment blast door"
},
/obj/structure/table/reinforced,
@@ -9059,7 +8592,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"arx" = (
+"arw" = (
/obj/structure/closet/secure_closet/brig{
id = "Cell 7";
name = "Cell 7 Locker"
@@ -9068,7 +8601,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ary" = (
+"arx" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -9081,10 +8614,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"arz" = (
+/area/maintenance/asteroid/fore/com_north)
+"ary" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -9100,7 +8631,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"arA" = (
+"arz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -9108,7 +8639,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"arB" = (
+"arA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -9121,7 +8652,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"arC" = (
+"arB" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -9132,7 +8663,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"arD" = (
+"arC" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -9149,15 +8680,15 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"arE" = (
+"arD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"arF" = (
+/area/crew_quarters/dorms/female)
+"arE" = (
/obj/machinery/light_switch{
pixel_x = -25
},
@@ -9170,8 +8701,8 @@
dir = 6;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"arG" = (
+/area/crew_quarters/dorms/female)
+"arF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -9181,8 +8712,8 @@
dir = 6;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"arH" = (
+/area/crew_quarters/dorms/female)
+"arG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -9192,8 +8723,8 @@
dir = 10;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"arI" = (
+/area/crew_quarters/dorms/female)
+"arH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -9208,8 +8739,8 @@
dir = 10;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"arJ" = (
+/area/crew_quarters/dorms/female)
+"arI" = (
/obj/machinery/airalarm{
dir = 8;
icon_state = "alarm0";
@@ -9226,23 +8757,21 @@
dir = 10;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"arK" = (
+/area/crew_quarters/dorms/female)
+"arJ" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo{
- name = "Chief Medical Officer's Private Quarters"
- })
-"arL" = (
+/area/crew_quarters/heads/cmo/private)
+"arK" = (
/obj/machinery/vending/cigarette{
extended_inventory = 1
},
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"arM" = (
+/area/crew_quarters/heads/captain)
+"arL" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -9250,37 +8779,37 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"arN" = (
+/area/crew_quarters/heads/captain)
+"arM" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"arO" = (
+/area/crew_quarters/heads/captain)
+"arN" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/blue,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"arP" = (
+/area/crew_quarters/heads/captain)
+"arO" = (
/obj/structure/table/wood,
/obj/item/device/camera_film,
/obj/item/device/camera_film,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"arQ" = (
+/area/crew_quarters/heads/captain)
+"arP" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"arR" = (
+"arQ" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 4;
name = "Command Escape Pod"
@@ -9289,20 +8818,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"arS" = (
+"arR" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief{
- name = "Chief Engineer's Private Quarters"
- })
-"arT" = (
+/area/crew_quarters/heads/chief/private)
+"arS" = (
/obj/structure/closet/crate,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"arU" = (
+"arT" = (
/obj/machinery/light/small{
dir = 1
},
@@ -9310,7 +8837,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"arV" = (
+"arU" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -9325,7 +8852,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"arW" = (
+"arV" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -9336,7 +8863,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"arX" = (
+"arW" = (
/obj/machinery/conveyor_switch{
id = "QMLoad"
},
@@ -9344,7 +8871,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"arY" = (
+"arX" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 8;
name = "Supply Dock Airlock";
@@ -9358,7 +8885,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"arZ" = (
+"arY" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
name = "Supply Dock Airlock";
@@ -9372,7 +8899,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"asa" = (
+"arZ" = (
/obj/machinery/door/airlock/shuttle{
name = "Supply Shuttle Airlock";
req_access_txt = "31"
@@ -9383,7 +8910,7 @@
},
/turf/open/floor/plating,
/area/shuttle/supply)
-"asb" = (
+"asa" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
name = "Supply Dock Airlock";
@@ -9393,7 +8920,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"asc" = (
+"asb" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -9403,7 +8930,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"asd" = (
+"asc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/extinguisher_cabinet{
pixel_x = 24
@@ -9412,7 +8939,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"ase" = (
+"asd" = (
/obj/machinery/door/poddoor/shutters{
id = "MiningWarehouse"
},
@@ -9421,7 +8948,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"asf" = (
+"ase" = (
/obj/machinery/door/airlock/mining{
req_access_txt = "48"
},
@@ -9430,27 +8957,27 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"asg" = (
+"asf" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/mining)
-"ash" = (
+"asg" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
/turf/open/floor/plating,
/area/shuttle/mining)
-"asi" = (
+"ash" = (
/obj/machinery/iv_drip,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"asj" = (
+"asi" = (
/obj/structure/bed/roller,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"ask" = (
+"asj" = (
/obj/structure/table,
/obj/machinery/light{
dir = 1
@@ -9460,14 +8987,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"asl" = (
+"ask" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/toxin,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"asm" = (
+"asl" = (
/obj/machinery/door_timer{
id = "Cell 3";
name = "Cell 3";
@@ -9484,26 +9011,27 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"asn" = (
+"asm" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable/orange,
/obj/machinery/door/poddoor/preopen{
id = "prisonbreak";
+ layer = 2.6;
name = "emergency prisoner containment blast door"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"aso" = (
+"asn" = (
/obj/machinery/computer/secure_data,
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"asp" = (
+"aso" = (
/obj/structure/chair/office/light{
dir = 8
},
@@ -9511,13 +9039,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"asq" = (
+"asp" = (
/obj/machinery/computer/security,
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"asr" = (
+"asq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/holopad,
/turf/open/floor/plasteel/red/side{
@@ -9526,16 +9054,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ass" = (
+"asr" = (
/obj/structure/table,
/obj/item/device/flashlight/lamp,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"ast" = (
+/area/maintenance/asteroid/fore/com_north)
+"ass" = (
/obj/structure/closet,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/structure/sign/poster/random{
@@ -9548,10 +9074,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"asu" = (
+/area/maintenance/asteroid/fore/com_north)
+"ast" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/orange{
d1 = 1;
@@ -9561,40 +9085,38 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"asv" = (
+/area/maintenance/asteroid/fore/com_north)
+"asu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"asw" = (
+"asv" = (
/obj/structure/chair/stool,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"asx" = (
+"asw" = (
/obj/structure/table/wood,
/obj/item/toy/dummy,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"asy" = (
+"asx" = (
/obj/structure/table/wood,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"asz" = (
+"asy" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"asA" = (
+"asz" = (
/obj/machinery/door/airlock{
name = "Female Sleeping Quarters"
},
@@ -9604,21 +9126,21 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"asB" = (
+/area/crew_quarters/dorms/female)
+"asA" = (
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"asC" = (
+/area/crew_quarters/dorms/female)
+"asB" = (
/obj/machinery/light{
dir = 4
},
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"asD" = (
+/area/crew_quarters/dorms/female)
+"asC" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -9626,8 +9148,8 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"asE" = (
+/area/crew_quarters/dorms/female)
+"asD" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -9638,10 +9160,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"asF" = (
+/area/maintenance/asteroid/fore/com_north)
+"asE" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/cmo,
/obj/machinery/airalarm{
@@ -9656,51 +9176,41 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo{
- name = "Chief Medical Officer's Private Quarters"
- })
-"asG" = (
+/area/crew_quarters/heads/cmo/private)
+"asF" = (
/obj/machinery/light_switch{
pixel_y = 25
},
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo{
- name = "Chief Medical Officer's Private Quarters"
- })
-"asH" = (
+/area/crew_quarters/heads/cmo/private)
+"asG" = (
/obj/structure/table/wood,
/obj/item/device/modular_computer/laptop/preset/civillian,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo{
- name = "Chief Medical Officer's Private Quarters"
- })
-"asI" = (
+/area/crew_quarters/heads/cmo/private)
+"asH" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo{
- name = "Chief Medical Officer's Private Quarters"
- })
-"asJ" = (
+/area/crew_quarters/heads/cmo/private)
+"asI" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo{
- name = "Chief Medical Officer's Private Quarters"
- })
-"asK" = (
+/area/crew_quarters/heads/cmo/private)
+"asJ" = (
/obj/machinery/vending/boozeomat,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"asL" = (
+/area/crew_quarters/heads/captain)
+"asK" = (
/obj/machinery/light,
/obj/machinery/firealarm{
dir = 1;
@@ -9709,14 +9219,14 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"asM" = (
+/area/crew_quarters/heads/captain)
+"asL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"asN" = (
+/area/crew_quarters/heads/captain)
+"asM" = (
/obj/machinery/light_switch{
pixel_y = -24
},
@@ -9724,47 +9234,41 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"asO" = (
+/area/crew_quarters/heads/captain)
+"asN" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"asP" = (
+"asO" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"asQ" = (
+"asP" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief{
- name = "Chief Engineer's Private Quarters"
- })
-"asR" = (
+/area/crew_quarters/heads/chief/private)
+"asQ" = (
/obj/structure/table/wood,
/obj/item/device/modular_computer/laptop/preset/civillian,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief{
- name = "Chief Engineer's Private Quarters"
- })
-"asS" = (
+/area/crew_quarters/heads/chief/private)
+"asR" = (
/obj/machinery/light_switch{
pixel_y = 25
},
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief{
- name = "Chief Engineer's Private Quarters"
- })
-"asT" = (
+/area/crew_quarters/heads/chief/private)
+"asS" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/ce,
/obj/machinery/airalarm{
@@ -9779,10 +9283,8 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief{
- name = "Chief Engineer's Private Quarters"
- })
-"asU" = (
+/area/crew_quarters/heads/chief/private)
+"asT" = (
/obj/machinery/power/apc{
dir = 8;
name = "Chief Engineer's Private Quarters APC";
@@ -9801,10 +9303,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief{
- name = "Chief Engineer's Private Quarters"
- })
-"asV" = (
+/area/crew_quarters/heads/chief/private)
+"asU" = (
/obj/structure/sign/poster/random{
name = "random contraband poster";
pixel_x = -32;
@@ -9816,18 +9316,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"asW" = (
+"asV" = (
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"asX" = (
+"asW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"asY" = (
+"asX" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -9839,7 +9339,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"asZ" = (
+"asY" = (
/obj/machinery/holopad,
/obj/machinery/button/door{
dir = 2;
@@ -9858,7 +9358,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"ata" = (
+"asZ" = (
/obj/machinery/button/door{
dir = 2;
id = "QMLoaddoor2";
@@ -9874,14 +9374,14 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/supply)
-"atb" = (
+"ata" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"atc" = (
+"atb" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -9894,13 +9394,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"atd" = (
+"atc" = (
/obj/structure/closet/secure_closet/miner,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"ate" = (
+"atd" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -9912,13 +9412,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"atf" = (
+"ate" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"atg" = (
+"atf" = (
/obj/structure/rack,
/obj/item/weapon/shovel,
/obj/item/weapon/pickaxe,
@@ -9933,7 +9433,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"ath" = (
+"atg" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -9941,7 +9441,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"ati" = (
+"ath" = (
/obj/structure/table,
/obj/machinery/light{
icon_state = "tube1";
@@ -9949,11 +9449,11 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/mining)
-"atj" = (
+"ati" = (
/obj/machinery/computer/shuttle/mining,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/mining)
-"atk" = (
+"atj" = (
/obj/structure/table,
/obj/machinery/light{
dir = 4;
@@ -9961,12 +9461,12 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/mining)
-"atl" = (
+"atk" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"atm" = (
+"atl" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -9975,25 +9475,25 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"atn" = (
+"atm" = (
/obj/structure/closet/crate/freezer/blood,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"ato" = (
+"atn" = (
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"atp" = (
+"ato" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"atq" = (
+"atp" = (
/obj/structure/bed,
/obj/machinery/camera{
c_tag = "Brig Cell 2";
@@ -10005,7 +9505,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"atr" = (
+"atq" = (
/obj/machinery/flasher{
id = "Cell 2";
pixel_x = 0;
@@ -10015,7 +9515,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ats" = (
+"atr" = (
/obj/structure/table,
/obj/item/key/security,
/obj/item/clothing/glasses/sunglasses,
@@ -10033,7 +9533,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"att" = (
+"ats" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -10044,7 +9544,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"atu" = (
+"att" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -10057,7 +9557,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"atv" = (
+"atu" = (
/obj/structure/table,
/obj/machinery/light,
/obj/machinery/recharger,
@@ -10065,7 +9565,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"atw" = (
+"atv" = (
/obj/machinery/flasher{
id = "Cell 6";
pixel_x = 0;
@@ -10075,7 +9575,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"atx" = (
+"atw" = (
/obj/structure/bed,
/obj/machinery/camera{
c_tag = "Brig Cell 6";
@@ -10088,7 +9588,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aty" = (
+"atx" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -10097,27 +9597,21 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"atz" = (
+/area/maintenance/asteroid/fore/com_north)
+"aty" = (
/obj/structure/chair/stool,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"atA" = (
+/area/maintenance/asteroid/fore/com_north)
+"atz" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"atB" = (
+/area/maintenance/asteroid/fore/com_north)
+"atA" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -10130,21 +9624,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"atC" = (
+"atB" = (
/obj/structure/table/wood,
/obj/item/device/paicard,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"atD" = (
+"atC" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/firstaid/brute,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"atE" = (
+"atD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -10152,15 +9646,15 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"atF" = (
+"atE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"atG" = (
+/area/crew_quarters/dorms/female)
+"atF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -10170,8 +9664,8 @@
dir = 5;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"atH" = (
+/area/crew_quarters/dorms/female)
+"atG" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -10183,24 +9677,24 @@
dir = 5;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"atI" = (
+/area/crew_quarters/dorms/female)
+"atH" = (
/turf/open/floor/plasteel/neutral/side{
tag = "icon-neutral (NORTHEAST)";
icon_state = "neutral";
dir = 5;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"atJ" = (
+/area/crew_quarters/dorms/female)
+"atI" = (
/turf/open/floor/plasteel/neutral/side{
tag = "icon-neutral (NORTHWEST)";
icon_state = "neutral";
dir = 9;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"atK" = (
+/area/crew_quarters/dorms/female)
+"atJ" = (
/obj/structure/cable/orange{
d2 = 4;
icon_state = "0-4"
@@ -10219,8 +9713,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"atL" = (
+/area/crew_quarters/dorms/female)
+"atK" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -10236,62 +9730,50 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"atM" = (
+/area/maintenance/asteroid/fore/com_north)
+"atL" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"atN" = (
+/area/maintenance/asteroid/fore/com_north)
+"atM" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo{
- name = "Chief Medical Officer's Private Quarters"
- })
-"atO" = (
+/area/crew_quarters/heads/cmo/private)
+"atN" = (
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo{
- name = "Chief Medical Officer's Private Quarters"
- })
-"atP" = (
+/area/crew_quarters/heads/cmo/private)
+"atO" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo{
- name = "Chief Medical Officer's Private Quarters"
- })
-"atQ" = (
+/area/crew_quarters/heads/cmo/private)
+"atP" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo{
- name = "Chief Medical Officer's Private Quarters"
- })
-"atR" = (
+/area/crew_quarters/heads/cmo/private)
+"atQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"atS" = (
+/area/crew_quarters/heads/captain)
+"atR" = (
/obj/machinery/door/airlock/command{
name = "Captain's Office";
req_access = null;
@@ -10301,40 +9783,34 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"atT" = (
+/area/crew_quarters/heads/captain)
+"atS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"atU" = (
+/area/crew_quarters/heads/captain)
+"atT" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief{
- name = "Chief Engineer's Private Quarters"
- })
-"atV" = (
+/area/crew_quarters/heads/chief/private)
+"atU" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief{
- name = "Chief Engineer's Private Quarters"
- })
-"atW" = (
+/area/crew_quarters/heads/chief/private)
+"atV" = (
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief{
- name = "Chief Engineer's Private Quarters"
- })
-"atX" = (
+/area/crew_quarters/heads/chief/private)
+"atW" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
@@ -10344,10 +9820,8 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief{
- name = "Chief Engineer's Private Quarters"
- })
-"atY" = (
+/area/crew_quarters/heads/chief/private)
+"atX" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -10357,17 +9831,15 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"atZ" = (
+/area/maintenance/asteroid/fore/com_east)
+"atY" = (
/obj/structure/closet/crate/medical,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"aua" = (
+"atZ" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -10375,7 +9847,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"aub" = (
+"aua" = (
/obj/machinery/door/poddoor/shutters{
id = "CargoWarehouse"
},
@@ -10383,7 +9855,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"auc" = (
+"aub" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -10391,7 +9863,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aud" = (
+"auc" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 8;
name = "Supply Dock Airlock";
@@ -10405,7 +9877,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aue" = (
+"aud" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
name = "Supply Dock Airlock";
@@ -10419,7 +9891,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"auf" = (
+"aue" = (
/obj/machinery/door/airlock/shuttle{
name = "Supply Shuttle Airlock";
req_access_txt = "31"
@@ -10430,7 +9902,7 @@
},
/turf/open/floor/plating,
/area/shuttle/supply)
-"aug" = (
+"auf" = (
/obj/machinery/door/airlock/shuttle{
name = "Supply Shuttle Airlock";
req_access_txt = "31"
@@ -10449,7 +9921,7 @@
},
/turf/open/floor/plating,
/area/shuttle/supply)
-"auh" = (
+"aug" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/firealarm{
dir = 4;
@@ -10459,13 +9931,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aui" = (
+"auh" = (
/obj/effect/landmark/start/shaft_miner,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"auj" = (
+"aui" = (
/obj/machinery/computer/security/mining{
network = list("MINE","AuxBase")
},
@@ -10473,7 +9945,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"auk" = (
+"auj" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -10482,7 +9954,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"aul" = (
+"auk" = (
/obj/structure/closet/crate,
/obj/item/weapon/ore/silver,
/obj/item/weapon/ore/silver,
@@ -10491,28 +9963,28 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"aum" = (
+"aul" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"aun" = (
+"aum" = (
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/mining)
-"auo" = (
+"aun" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/mining)
-"aup" = (
+"auo" = (
/obj/machinery/gulag_teleporter,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"auq" = (
+"aup" = (
/obj/machinery/computer/gulag_teleporter_computer,
/obj/machinery/camera{
c_tag = "Labor Shuttle Dock North"
@@ -10521,7 +9993,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"aur" = (
+"auq" = (
/obj/machinery/computer/security{
name = "Labor Camp Monitoring";
network = list("Labor")
@@ -10534,7 +10006,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"aus" = (
+"aur" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -10545,24 +10017,20 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aut" = (
+/area/maintenance/asteroid/fore/com_west)
+"aus" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"auu" = (
+/area/maintenance/asteroid/fore/com_west)
+"aut" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"auv" = (
+"auu" = (
/obj/machinery/door/window/brigdoor/westleft{
id = "Cell 2";
name = "Cell Door 2";
@@ -10574,7 +10042,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"auw" = (
+"auv" = (
/obj/structure/closet/secure_closet/warden{
pixel_x = 0
},
@@ -10584,11 +10052,12 @@
pixel_x = -28;
pixel_y = 0
},
+/obj/item/device/radio,
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"aux" = (
+"auw" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -10599,7 +10068,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"auy" = (
+"aux" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/obj/structure/extinguisher_cabinet{
@@ -10609,7 +10078,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"auz" = (
+"auy" = (
/obj/machinery/door/window/brigdoor/eastleft{
id = "Cell 6";
name = "Cell Door 6";
@@ -10621,32 +10090,26 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"auA" = (
+"auz" = (
/obj/structure/rack,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"auB" = (
+/area/maintenance/asteroid/fore/com_north)
+"auA" = (
/obj/effect/turf_decal/stripes/asteroid/line,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"auC" = (
+/area/maintenance/asteroid/fore/cargo_west)
+"auB" = (
/obj/structure/girder,
/obj/item/stack/sheet/metal,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"auD" = (
+/area/maintenance/asteroid/fore/com_west)
+"auC" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -10659,10 +10122,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"auE" = (
+/area/maintenance/asteroid/fore/com_north)
+"auD" = (
/obj/machinery/door/airlock/maintenance{
name = "Fore Asteroid Maintenance Access";
req_access_txt = "12"
@@ -10673,10 +10134,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"auF" = (
+/area/maintenance/asteroid/fore/com_north)
+"auE" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -10685,21 +10144,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"auG" = (
+"auF" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/pill_bottle/dice,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"auH" = (
+"auG" = (
/obj/structure/table/wood,
/obj/item/device/instrument/guitar,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"auI" = (
+"auH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/sign/poster/random{
name = "random official poster";
@@ -10710,7 +10169,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"auJ" = (
+"auI" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/yellow,
/obj/structure/window{
@@ -10722,8 +10181,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"auK" = (
+/area/crew_quarters/dorms/female)
+"auJ" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/green,
/obj/structure/window{
@@ -10734,8 +10193,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"auL" = (
+/area/crew_quarters/dorms/female)
+"auK" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/red,
/obj/structure/window{
@@ -10746,8 +10205,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"auM" = (
+/area/crew_quarters/dorms/female)
+"auL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -10762,30 +10221,24 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo{
- name = "Chief Medical Officer's Private Quarters"
- })
-"auN" = (
+/area/crew_quarters/heads/cmo/private)
+"auM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo{
- name = "Chief Medical Officer's Private Quarters"
- })
-"auO" = (
+/area/crew_quarters/heads/cmo/private)
+"auN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo{
- name = "Chief Medical Officer's Private Quarters"
- })
-"auP" = (
+/area/crew_quarters/heads/cmo/private)
+"auO" = (
/obj/structure/table/wood,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
@@ -10797,7 +10250,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"auQ" = (
+"auP" = (
/obj/structure/table/wood,
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -10812,7 +10265,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"auR" = (
+"auQ" = (
/obj/structure/table/wood,
/obj/machinery/vending/wallmed{
pixel_y = 32
@@ -10824,7 +10277,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"auS" = (
+"auR" = (
/obj/structure/noticeboard{
pixel_y = 32
},
@@ -10834,7 +10287,7 @@
tag = "icon-darkblue (NORTHEAST)"
},
/area/bridge)
-"auT" = (
+"auS" = (
/obj/machinery/light/small{
dir = 1
},
@@ -10851,7 +10304,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"auU" = (
+"auT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -10861,7 +10314,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"auV" = (
+"auU" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -10870,7 +10323,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"auW" = (
+"auV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/button/door{
id = "bridge";
@@ -10882,7 +10335,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"auX" = (
+"auW" = (
/obj/machinery/light/small{
dir = 1
},
@@ -10900,7 +10353,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"auY" = (
+"auX" = (
/obj/machinery/requests_console{
announcementConsole = 1;
department = "Bridge";
@@ -10913,7 +10366,7 @@
dir = 9
},
/area/bridge)
-"auZ" = (
+"auY" = (
/obj/machinery/camera{
c_tag = "Bridge Main 1"
},
@@ -10924,7 +10377,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"ava" = (
+"auZ" = (
/obj/structure/sign/pods{
pixel_y = 32
},
@@ -10935,7 +10388,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"avb" = (
+"ava" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -10946,27 +10399,23 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"avc" = (
+"avb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief{
- name = "Chief Engineer's Private Quarters"
- })
-"avd" = (
+/area/crew_quarters/heads/chief/private)
+"avc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief{
- name = "Chief Engineer's Private Quarters"
- })
-"ave" = (
+/area/crew_quarters/heads/chief/private)
+"avd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -10981,10 +10430,8 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief{
- name = "Chief Engineer's Private Quarters"
- })
-"avf" = (
+/area/crew_quarters/heads/chief/private)
+"ave" = (
/obj/machinery/power/apc{
dir = 4;
name = "Cargo Warehouse APC";
@@ -11009,7 +10456,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"avg" = (
+"avf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -11017,7 +10464,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"avh" = (
+"avg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -11028,7 +10475,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"avi" = (
+"avh" = (
/obj/machinery/door/poddoor/shutters{
id = "CargoWarehouse"
},
@@ -11039,7 +10486,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"avj" = (
+"avi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -11050,7 +10497,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"avk" = (
+"avj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -11060,14 +10507,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"avl" = (
+"avk" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"avm" = (
+"avl" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -11079,20 +10526,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
+"avm" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad"
+ },
+/obj/machinery/door/poddoor{
+ id = "QMLoaddoor";
+ name = "supply dock loading door"
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/quartermaster/office)
"avn" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad"
- },
-/obj/machinery/door/poddoor{
- id = "QMLoaddoor";
- name = "supply dock loading door"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/quartermaster/office)
-"avo" = (
/obj/machinery/conveyor{
dir = 4;
id = "QMLoad"
@@ -11103,7 +10550,7 @@
},
/turf/open/floor/plating,
/area/shuttle/supply)
-"avp" = (
+"avo" = (
/obj/structure/closet/secure_closet/miner,
/obj/machinery/light{
icon_state = "tube1";
@@ -11113,19 +10560,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"avq" = (
+"avp" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"avr" = (
+"avq" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"avs" = (
+"avr" = (
/obj/machinery/door/airlock/glass_mining{
cyclelinkeddir = 8;
name = "Mining Dock";
@@ -11135,7 +10582,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"avt" = (
+"avs" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
name = "Mining Dock Airlock";
@@ -11147,14 +10594,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"avu" = (
+"avt" = (
/obj/machinery/door/airlock/titanium{
name = "Mining Shuttle Airlock";
req_access_txt = "0"
},
/turf/open/floor/plating,
/area/shuttle/mining)
-"avv" = (
+"avu" = (
/obj/docking_port/mobile{
dir = 8;
dwidth = 3;
@@ -11178,15 +10625,15 @@
},
/turf/open/floor/plating,
/area/shuttle/mining)
-"avw" = (
+"avv" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/labor)
-"avx" = (
+"avw" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
/turf/open/floor/plating,
/area/shuttle/labor)
-"avy" = (
+"avx" = (
/obj/machinery/disposal/deliveryChute{
tag = "icon-intake (NORTH)";
icon_state = "intake";
@@ -11195,7 +10642,7 @@
/obj/structure/disposalpipe/trunk,
/turf/open/floor/plating/airless,
/area/space)
-"avz" = (
+"avy" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -11204,7 +10651,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"avA" = (
+"avz" = (
/obj/structure/chair{
dir = 1
},
@@ -11212,7 +10659,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"avB" = (
+"avA" = (
/obj/structure/table,
/obj/item/weapon/storage/box/prisoner,
/obj/machinery/airalarm{
@@ -11224,7 +10671,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"avC" = (
+"avB" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -11238,10 +10685,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"avD" = (
+/area/maintenance/asteroid/fore/com_west)
+"avC" = (
/obj/machinery/door/airlock/maintenance{
name = "Fore Asteroid Maintenance Access";
req_access_txt = "12"
@@ -11249,10 +10694,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"avE" = (
+/area/maintenance/asteroid/fore/com_west)
+"avD" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -11263,12 +10706,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"avF" = (
+"avE" = (
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"avG" = (
+"avF" = (
/obj/structure/sign/bluecross_2{
pixel_x = 32;
pixel_y = 32
@@ -11277,16 +10720,17 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"avH" = (
+"avG" = (
/obj/structure/closet/secure_closet/security/sec,
/obj/machinery/light{
dir = 1
},
+/obj/item/device/radio,
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"avI" = (
+"avH" = (
/obj/structure/closet/secure_closet/brig{
id = "Cell 2";
name = "Cell 2 Locker"
@@ -11295,7 +10739,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"avJ" = (
+"avI" = (
/obj/machinery/door/airlock/glass_security{
name = "Brig Control";
req_access_txt = "3"
@@ -11320,7 +10764,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"avK" = (
+"avJ" = (
/obj/machinery/door/airlock/glass_security{
name = "Brig Control";
req_access_txt = "3"
@@ -11335,24 +10779,25 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"avL" = (
+"avK" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d2 = 8;
icon_state = "0-8"
},
/obj/machinery/door/poddoor/preopen{
id = "prisonbreak";
+ layer = 2.6;
name = "emergency prisoner containment blast door"
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"avM" = (
+"avL" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -11362,7 +10807,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"avN" = (
+"avM" = (
/obj/structure/closet/secure_closet/brig{
id = "Cell 6";
name = "Cell 6 Locker"
@@ -11371,7 +10816,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"avO" = (
+"avN" = (
/obj/machinery/door/airlock/maintenance{
name = "Fore Asteroid Maintenance Access";
req_access_txt = "12"
@@ -11379,10 +10824,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"avP" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"avO" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -11397,55 +10840,53 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"avQ" = (
+/area/maintenance/asteroid/fore/com_north)
+"avP" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"avR" = (
+"avQ" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"avS" = (
+"avR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"avT" = (
+"avS" = (
/obj/machinery/light/small,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"avU" = (
+/area/crew_quarters/dorms/female)
+"avT" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/yellow,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"avV" = (
+/area/crew_quarters/dorms/female)
+"avU" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/green,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"avW" = (
+/area/crew_quarters/dorms/female)
+"avV" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/red,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"avX" = (
+/area/crew_quarters/dorms/female)
+"avW" = (
/obj/structure/cable/orange{
d2 = 4;
icon_state = "0-4"
@@ -11463,8 +10904,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"avY" = (
+/area/crew_quarters/dorms/male)
+"avX" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -11482,10 +10923,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"avZ" = (
+/area/maintenance/asteroid/fore/com_north)
+"avY" = (
/obj/machinery/power/apc{
dir = 4;
name = "Chief Medical Officer's Private Quarters APC";
@@ -11508,18 +10947,14 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo{
- name = "Chief Medical Officer's Private Quarters"
- })
-"awa" = (
+/area/crew_quarters/heads/cmo/private)
+"avZ" = (
/obj/structure/dresser,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo{
- name = "Chief Medical Officer's Private Quarters"
- })
-"awb" = (
+/area/crew_quarters/heads/cmo/private)
+"awa" = (
/obj/structure/closet{
icon_door = "blue";
name = "Chief Medical Officer's Uniform"
@@ -11533,10 +10968,8 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo{
- name = "Chief Medical Officer's Private Quarters"
- })
-"awc" = (
+/area/crew_quarters/heads/cmo/private)
+"awb" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -11545,20 +10978,16 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo{
- name = "Chief Medical Officer's Private Quarters"
- })
-"awd" = (
+/area/crew_quarters/heads/cmo/private)
+"awc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo{
- name = "Chief Medical Officer's Private Quarters"
- })
-"awe" = (
+/area/crew_quarters/heads/cmo/private)
+"awd" = (
/obj/machinery/door/airlock/medical{
name = "Chief Medical Officer's Personal Quarters";
req_access_txt = "40"
@@ -11569,28 +10998,26 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo{
- name = "Chief Medical Officer's Private Quarters"
- })
-"awf" = (
+/area/crew_quarters/heads/cmo/private)
+"awe" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"awg" = (
+"awf" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"awh" = (
+"awg" = (
/turf/open/floor/plasteel/darkblue/side{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 4;
tag = "icon-darkblue (EAST)"
},
/area/bridge)
-"awi" = (
+"awh" = (
/obj/structure/table/wood,
/obj/structure/window/reinforced{
dir = 8
@@ -11600,25 +11027,25 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"awj" = (
+"awi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"awk" = (
+"awj" = (
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"awl" = (
+"awk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"awm" = (
+"awl" = (
/obj/structure/table/wood,
/obj/structure/window/reinforced{
dir = 4;
@@ -11629,14 +11056,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"awn" = (
+"awm" = (
/turf/open/floor/plasteel/darkblue/side{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 8;
tag = "icon-darkblue (WEST)"
},
/area/bridge)
-"awo" = (
+"awn" = (
/obj/machinery/door/airlock/engineering{
name = "Chief Engineer's Personal Quarters";
req_access_txt = "56"
@@ -11647,20 +11074,16 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief{
- name = "Chief Engineer's Private Quarters"
- })
-"awp" = (
+/area/crew_quarters/heads/chief/private)
+"awo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief{
- name = "Chief Engineer's Private Quarters"
- })
-"awq" = (
+/area/crew_quarters/heads/chief/private)
+"awp" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -11670,10 +11093,8 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief{
- name = "Chief Engineer's Private Quarters"
- })
-"awr" = (
+/area/crew_quarters/heads/chief/private)
+"awq" = (
/obj/structure/closet{
icon_door = "yellow";
name = "Chief Engineer's Uniform"
@@ -11685,30 +11106,24 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief{
- name = "Chief Engineer's Private Quarters"
- })
-"aws" = (
+/area/crew_quarters/heads/chief/private)
+"awr" = (
/obj/structure/dresser,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief{
- name = "Chief Engineer's Private Quarters"
- })
-"awt" = (
+/area/crew_quarters/heads/chief/private)
+"aws" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"awu" = (
+/area/maintenance/asteroid/fore/com_north)
+"awt" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"awv" = (
+"awu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/conveyor_switch{
id = "QMLoad"
@@ -11717,19 +11132,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aww" = (
+"awv" = (
/obj/machinery/mineral/equipment_vendor,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"awx" = (
+"aww" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"awy" = (
+"awx" = (
/obj/machinery/computer/shuttle/labor,
/obj/structure/reagent_dispensers/peppertank{
pixel_x = -31;
@@ -11737,13 +11152,13 @@
},
/turf/open/floor/mineral/plastitanium,
/area/shuttle/labor)
-"awz" = (
+"awy" = (
/obj/structure/chair/office/dark{
dir = 1
},
/turf/open/floor/mineral/plastitanium,
/area/shuttle/labor)
-"awA" = (
+"awz" = (
/obj/structure/table,
/obj/item/weapon/folder/red{
pixel_x = 8;
@@ -11752,18 +11167,18 @@
/obj/item/weapon/restraints/handcuffs,
/turf/open/floor/mineral/plastitanium,
/area/shuttle/labor)
-"awB" = (
+"awA" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/security/processing)
-"awC" = (
+"awB" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/processing)
-"awD" = (
+"awC" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/sign/securearea{
@@ -11779,7 +11194,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"awE" = (
+"awD" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -11787,12 +11202,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"awF" = (
+"awE" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"awG" = (
+"awF" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
@@ -11800,7 +11215,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"awH" = (
+"awG" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -11808,7 +11223,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"awI" = (
+"awH" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -11821,20 +11236,16 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"awJ" = (
+/area/maintenance/asteroid/fore/com_west)
+"awI" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"awK" = (
+/area/maintenance/asteroid/fore/com_west)
+"awJ" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -11843,19 +11254,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"awL" = (
+"awK" = (
/obj/structure/closet/l3closet/scientist,
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"awM" = (
+"awL" = (
/obj/structure/closet/secure_closet/security/sec,
+/obj/item/device/radio,
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"awN" = (
+"awM" = (
/obj/machinery/door_timer{
id = "Cell 2";
name = "Cell 2";
@@ -11872,7 +11284,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"awO" = (
+"awN" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -11883,7 +11295,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"awP" = (
+"awO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -11891,7 +11303,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"awQ" = (
+"awP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -11900,7 +11312,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"awR" = (
+"awQ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -11911,7 +11323,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"awS" = (
+"awR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -11920,7 +11332,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"awT" = (
+"awS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -11929,7 +11341,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"awU" = (
+"awT" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -11940,7 +11352,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"awV" = (
+"awU" = (
/obj/machinery/door_timer{
id = "Cell 6";
name = "Cell 6";
@@ -11957,7 +11369,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"awW" = (
+"awV" = (
/obj/machinery/light/small{
dir = 1
},
@@ -11966,10 +11378,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"awX" = (
+/area/maintenance/asteroid/fore/com_north)
+"awW" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -11977,10 +11387,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"awY" = (
+/area/maintenance/asteroid/fore/com_north)
+"awX" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
dir = 1
@@ -11989,7 +11397,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"awZ" = (
+"awY" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -11997,18 +11405,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"axa" = (
+"awZ" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"axb" = (
+"axa" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"axc" = (
+/area/crew_quarters/dorms/male)
+"axb" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -12018,13 +11426,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"axd" = (
+"axc" = (
/obj/structure/chair/comfy/brown,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"axe" = (
+"axd" = (
/obj/structure/window/reinforced{
dir = 4;
pixel_x = 0
@@ -12035,26 +11443,24 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"axf" = (
+"axe" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief{
- name = "Chief Engineer's Private Quarters"
- })
-"axg" = (
+/area/crew_quarters/heads/chief/private)
+"axf" = (
/obj/structure/closet/crate/medical,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"axh" = (
+"axg" = (
/obj/structure/closet/crate/freezer,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"axi" = (
+"axh" = (
/obj/machinery/button/door{
id = "CargoWarehouse";
name = "Cargo Warehouse Shutters";
@@ -12065,7 +11471,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"axj" = (
+"axi" = (
/obj/machinery/button/door{
id = "CargoWarehouse";
name = "Cargo Warehouse Shutters";
@@ -12075,7 +11481,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"axk" = (
+"axj" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=8";
dir = 8;
@@ -12091,11 +11497,11 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"axl" = (
+"axk" = (
/turf/open/floor/mineral/titanium/blue,
/turf/closed/wall/mineral/titanium/interior,
/area/shuttle/supply)
-"axm" = (
+"axl" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=4";
dir = 4;
@@ -12110,7 +11516,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"axn" = (
+"axm" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -12119,7 +11525,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"axo" = (
+"axn" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -12127,7 +11533,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"axp" = (
+"axo" = (
/obj/machinery/airalarm{
dir = 4;
pixel_x = -23;
@@ -12140,7 +11546,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"axq" = (
+"axp" = (
/obj/machinery/computer/shuttle/mining,
/obj/machinery/camera{
c_tag = "Mining Bay";
@@ -12153,22 +11559,22 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"axr" = (
+"axq" = (
/obj/structure/closet/crate,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/mining)
-"axs" = (
+"axr" = (
/obj/structure/shuttle/engine/heater,
/turf/open/floor/plating,
/area/shuttle/mining)
-"axt" = (
+"axs" = (
/obj/structure/ore_box,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/mining)
-"axu" = (
+"axt" = (
/turf/open/floor/mineral/plastitanium,
/area/shuttle/labor)
-"axv" = (
+"axu" = (
/obj/machinery/button/flasher{
id = "gulagshuttleflasher";
name = "Flash Control";
@@ -12178,7 +11584,7 @@
},
/turf/open/floor/mineral/plastitanium,
/area/shuttle/labor)
-"axw" = (
+"axv" = (
/obj/machinery/mineral/labor_claim_console{
machinedir = 2;
pixel_x = 30;
@@ -12186,14 +11592,14 @@
},
/turf/open/floor/mineral/plastitanium,
/area/shuttle/labor)
-"axx" = (
+"axw" = (
/obj/machinery/door/airlock/titanium{
name = "Labor Shuttle Airlock";
req_access_txt = "2"
},
/turf/open/floor/mineral/plastitanium,
/area/shuttle/labor)
-"axy" = (
+"axx" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
name = "Labor Camp Shuttle Airlock";
@@ -12203,10 +11609,10 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/security/processing)
-"axz" = (
+"axy" = (
/turf/open/floor/plating,
/area/security/processing)
-"axA" = (
+"axz" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 8;
name = "Labor Camp Shuttle Airlock";
@@ -12216,7 +11622,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"axB" = (
+"axA" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -12229,7 +11635,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"axC" = (
+"axB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -12237,20 +11643,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"axD" = (
+"axC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Labor Shuttle";
req_access = null;
req_access_txt = "2"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"axE" = (
+"axD" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -12263,17 +11670,13 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"axF" = (
+/area/maintenance/asteroid/fore/com_west)
+"axE" = (
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"axG" = (
+/area/maintenance/asteroid/fore/com_west)
+"axF" = (
/obj/structure/closet/bombcloset,
/obj/structure/sign/map/left/ceres{
pixel_x = -32
@@ -12282,7 +11685,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"axH" = (
+"axG" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
@@ -12291,7 +11694,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"axI" = (
+"axH" = (
/obj/structure/bed,
/obj/machinery/camera{
c_tag = "Brig Cell 1";
@@ -12303,7 +11706,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"axJ" = (
+"axI" = (
/obj/machinery/flasher{
id = "Cell 1";
pixel_x = 0;
@@ -12313,7 +11716,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"axK" = (
+"axJ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -12334,7 +11737,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"axL" = (
+"axK" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -12348,7 +11751,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"axM" = (
+"axL" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -12361,7 +11764,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"axN" = (
+"axM" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -12394,7 +11797,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"axO" = (
+"axN" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -12412,7 +11815,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"axP" = (
+"axO" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -12429,7 +11832,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"axQ" = (
+"axP" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -12450,7 +11853,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"axR" = (
+"axQ" = (
/obj/machinery/flasher{
id = "Cell 5";
pixel_x = 0;
@@ -12460,7 +11863,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"axS" = (
+"axR" = (
/obj/structure/bed,
/obj/machinery/camera{
c_tag = "Brig Cell 5";
@@ -12474,7 +11877,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"axT" = (
+"axS" = (
/obj/machinery/power/apc{
dir = 2;
name = "Vault APC";
@@ -12492,8 +11895,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"axU" = (
+/area/security/courtroom)
+"axT" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -12503,10 +11906,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"axV" = (
+/area/maintenance/asteroid/fore/com_south)
+"axU" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -12521,10 +11922,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"axW" = (
+/area/maintenance/asteroid/fore/com_north)
+"axV" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -12539,10 +11938,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"axX" = (
+/area/maintenance/asteroid/fore/com_north)
+"axW" = (
/obj/machinery/door/airlock/maintenance{
name = "Dorm SMES Access";
req_access_txt = "10;11;12"
@@ -12555,10 +11952,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"axY" = (
+/area/maintenance/asteroid/fore/com_north)
+"axX" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -12570,10 +11965,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"axZ" = (
+/area/maintenance/asteroid/fore/com_north)
+"axY" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -12583,10 +11976,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aya" = (
+/area/maintenance/asteroid/fore/com_north)
+"axZ" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -12595,14 +11986,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"ayb" = (
+"aya" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"ayc" = (
+"ayb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -12610,7 +12001,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"ayd" = (
+"ayc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -12621,7 +12012,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aye" = (
+"ayd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -12630,44 +12021,42 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"ayf" = (
+"aye" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"ayg" = (
+/area/crew_quarters/dorms/male)
+"ayf" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/blue,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"ayh" = (
+/area/crew_quarters/dorms/male)
+"ayg" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/orange,
/obj/effect/landmark/start/assistant,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"ayi" = (
+/area/crew_quarters/dorms/male)
+"ayh" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/purple,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"ayj" = (
+/area/crew_quarters/dorms/male)
+"ayi" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/hos{
- name = "Head of Security's Private Quarters"
- })
-"ayk" = (
+/area/crew_quarters/heads/hos/private)
+"ayj" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/hos,
/obj/machinery/airalarm{
@@ -12682,46 +12071,36 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/hos{
- name = "Head of Security's Private Quarters"
- })
-"ayl" = (
+/area/crew_quarters/heads/hos/private)
+"ayk" = (
/obj/machinery/light_switch{
pixel_y = 25
},
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/hos{
- name = "Head of Security's Private Quarters"
- })
-"aym" = (
+/area/crew_quarters/heads/hos/private)
+"ayl" = (
/obj/structure/table/wood,
/obj/item/device/modular_computer/laptop/preset/civillian,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/hos{
- name = "Head of Security's Private Quarters"
- })
-"ayn" = (
+/area/crew_quarters/heads/hos/private)
+"aym" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
/obj/item/weapon/stamp/hos,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/hos{
- name = "Head of Security's Private Quarters"
- })
-"ayo" = (
+/area/crew_quarters/heads/hos/private)
+"ayn" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/hos{
- name = "Head of Security's Private Quarters"
- })
-"ayp" = (
+/area/crew_quarters/heads/hos/private)
+"ayo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -12730,7 +12109,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"ayq" = (
+"ayp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -12738,7 +12117,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"ayr" = (
+"ayq" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -12748,7 +12127,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"ays" = (
+"ayr" = (
/obj/item/weapon/twohanded/required/kirbyplants{
tag = "icon-plant-21";
icon_state = "plant-21"
@@ -12757,7 +12136,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"ayt" = (
+"ays" = (
/obj/structure/window/reinforced,
/obj/machinery/computer/card,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -12769,14 +12148,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"ayu" = (
+"ayt" = (
/obj/structure/window/reinforced,
/obj/machinery/computer/communications,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"ayv" = (
+"ayu" = (
/obj/structure/window/reinforced,
/obj/machinery/computer/security,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -12787,7 +12166,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"ayw" = (
+"ayv" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1
@@ -12796,7 +12175,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"ayx" = (
+"ayw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -12804,7 +12183,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"ayy" = (
+"ayx" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -12812,42 +12191,34 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"ayz" = (
+"ayy" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor{
- name = "Research Director's Private Quarters"
- })
-"ayA" = (
+/area/crew_quarters/heads/hor/private)
+"ayz" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor{
- name = "Research Director's Private Quarters"
- })
-"ayB" = (
+/area/crew_quarters/heads/hor/private)
+"ayA" = (
/obj/structure/table/wood,
/obj/item/device/modular_computer/laptop/preset/civillian,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor{
- name = "Research Director's Private Quarters"
- })
-"ayC" = (
+/area/crew_quarters/heads/hor/private)
+"ayB" = (
/obj/machinery/light_switch{
pixel_y = 25
},
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor{
- name = "Research Director's Private Quarters"
- })
-"ayD" = (
+/area/crew_quarters/heads/hor/private)
+"ayC" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/rd,
/obj/machinery/airalarm{
@@ -12862,26 +12233,20 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor{
- name = "Research Director's Private Quarters"
- })
-"ayE" = (
+/area/crew_quarters/heads/hor/private)
+"ayD" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor{
- name = "Research Director's Private Quarters"
- })
-"ayF" = (
+/area/crew_quarters/heads/hor/private)
+"ayE" = (
/obj/structure/rack,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"ayG" = (
+/area/maintenance/asteroid/fore/com_east)
+"ayF" = (
/obj/structure/closet,
/obj/machinery/light/small{
dir = 1
@@ -12890,19 +12255,15 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"ayH" = (
+/area/maintenance/asteroid/fore/com_east)
+"ayG" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"ayI" = (
+/area/maintenance/asteroid/fore/com_east)
+"ayH" = (
/obj/machinery/power/apc{
dir = 8;
name = "Fore Asteroid Maintenance APC";
@@ -12921,10 +12282,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"ayJ" = (
+/area/maintenance/asteroid/fore/cargo_west)
+"ayI" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -12939,16 +12298,14 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"ayK" = (
+/area/maintenance/asteroid/fore/cargo_west)
+"ayJ" = (
/obj/structure/closet/crate/internals,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"ayL" = (
+"ayK" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -12963,14 +12320,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"ayM" = (
+"ayL" = (
/obj/effect/landmark/event_spawn,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"ayN" = (
+"ayM" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=8";
dir = 8;
@@ -12981,14 +12338,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"ayO" = (
+"ayN" = (
/obj/structure/window/reinforced{
dir = 1
},
/obj/structure/shuttle/engine/heater,
/turf/open/floor/plating/airless,
/area/shuttle/supply)
-"ayP" = (
+"ayO" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=4";
dir = 4;
@@ -12999,7 +12356,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"ayQ" = (
+"ayP" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -13007,7 +12364,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"ayR" = (
+"ayQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -13019,7 +12376,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"ayS" = (
+"ayR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -13030,7 +12387,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"ayT" = (
+"ayS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -13042,7 +12399,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"ayU" = (
+"ayT" = (
/obj/machinery/door/airlock/mining{
req_access_txt = "48"
},
@@ -13056,7 +12413,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"ayV" = (
+"ayU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -13068,7 +12425,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"ayW" = (
+"ayV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -13076,7 +12433,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"ayX" = (
+"ayW" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -13084,7 +12441,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"ayY" = (
+"ayX" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -13098,7 +12455,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"ayZ" = (
+"ayY" = (
/obj/structure/shuttle/engine/propulsion/burst,
/obj/structure/window/reinforced{
dir = 1;
@@ -13106,21 +12463,21 @@
},
/turf/open/floor/plating/airless,
/area/shuttle/mining)
-"aza" = (
+"ayZ" = (
/obj/machinery/door/airlock/titanium{
name = "Labor Shuttle Airlock";
req_access_txt = "2"
},
/turf/open/floor/plasteel/black,
/area/shuttle/labor)
-"azb" = (
+"aza" = (
/obj/machinery/mineral/stacking_machine/laborstacker{
input_dir = 2;
output_dir = 1
},
/turf/open/floor/plasteel/black,
/area/shuttle/labor)
-"azc" = (
+"azb" = (
/obj/machinery/computer/shuttle/labor,
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -13132,7 +12489,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"azd" = (
+"azc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -13140,18 +12497,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"aze" = (
+"azd" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"azf" = (
+"aze" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -13165,10 +12522,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"azg" = (
+/area/maintenance/asteroid/fore/com_west)
+"azf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -13181,30 +12536,28 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"azh" = (
+/area/maintenance/asteroid/fore/com_west)
+"azg" = (
/obj/machinery/vending/security,
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"azi" = (
+"azh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/landmark/start/security_officer,
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"azj" = (
+"azi" = (
/obj/machinery/holopad,
/obj/effect/landmark/start/security_officer,
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"azk" = (
+"azj" = (
/obj/machinery/door/window/brigdoor/westleft{
id = "Cell 1";
name = "Cell Door 1";
@@ -13216,7 +12569,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"azl" = (
+"azk" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -13226,24 +12579,24 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
+"azl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/security/prison)
"azm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/prison)
-"azn" = (
-/obj/machinery/door/airlock/glass_large{
- name = "Cell Block";
- req_access_txt = "0";
- req_one_access_txt = "38;2"
- },
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/airlock/glass_security{
+ name = "Cell Block";
+ req_access_txt = "0";
+ req_one_access_txt = "38;2"
+ },
/turf/open/floor/plasteel/red/corner{
tag = "icon-redcorner (NORTH)";
icon_state = "redcorner";
@@ -13251,9 +12604,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"azo" = (
+"azn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/glass_security{
+ name = "Cell Block";
+ req_access_txt = "0";
+ req_one_access_txt = "38;2"
+ },
/turf/open/floor/plasteel/red/corner{
tag = "icon-redcorner (EAST)";
icon_state = "redcorner";
@@ -13261,7 +12619,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"azp" = (
+"azo" = (
/obj/machinery/door/window/brigdoor/eastleft{
id = "Cell 5";
name = "Cell Door 5";
@@ -13273,12 +12631,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"azq" = (
+"azp" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"azr" = (
+/area/security/courtroom)
+"azq" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -13288,10 +12646,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"azs" = (
+/area/maintenance/asteroid/fore/com_north)
+"azr" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -13304,10 +12660,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"azt" = (
+/area/maintenance/asteroid/fore/com_north)
+"azs" = (
/obj/machinery/door/airlock/maintenance{
name = "Dorm SMES Access";
req_access_txt = "10;11;12"
@@ -13320,10 +12674,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"azu" = (
+/area/maintenance/asteroid/fore/com_north)
+"azt" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -13336,10 +12688,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"azv" = (
+/area/maintenance/asteroid/fore/com_north)
+"azu" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -13366,10 +12716,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"azw" = (
+/area/maintenance/asteroid/fore/com_north)
+"azv" = (
/obj/structure/disposalpipe/segment,
/obj/structure/sign/map/left/ceres{
pixel_x = -32
@@ -13378,14 +12726,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"azx" = (
+"azw" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/crayons,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"azy" = (
+"azx" = (
/obj/structure/table/wood,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
@@ -13395,7 +12743,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"azz" = (
+"azy" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -13404,7 +12752,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"azA" = (
+"azz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -13412,7 +12760,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"azB" = (
+"azA" = (
/obj/machinery/light{
dir = 4
},
@@ -13421,36 +12769,36 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"azC" = (
+"azB" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"azD" = (
+/area/crew_quarters/dorms/male)
+"azC" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/blue,
/obj/structure/window,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"azE" = (
+/area/crew_quarters/dorms/male)
+"azD" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/orange,
/obj/structure/window,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"azF" = (
+/area/crew_quarters/dorms/male)
+"azE" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/purple,
/obj/structure/window,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"azG" = (
+/area/crew_quarters/dorms/male)
+"azF" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1
@@ -13461,20 +12809,16 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/hos{
- name = "Head of Security's Private Quarters"
- })
-"azH" = (
+/area/crew_quarters/heads/hos/private)
+"azG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/hos{
- name = "Head of Security's Private Quarters"
- })
-"azI" = (
+/area/crew_quarters/heads/hos/private)
+"azH" = (
/obj/structure/chair{
dir = 1
},
@@ -13484,10 +12828,8 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/hos{
- name = "Head of Security's Private Quarters"
- })
-"azJ" = (
+/area/crew_quarters/heads/hos/private)
+"azI" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -13496,20 +12838,16 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/hos{
- name = "Head of Security's Private Quarters"
- })
-"azK" = (
+/area/crew_quarters/heads/hos/private)
+"azJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/hos{
- name = "Head of Security's Private Quarters"
- })
-"azL" = (
+/area/crew_quarters/heads/hos/private)
+"azK" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/obj/structure/sign/map/left/ceres{
pixel_x = -32
@@ -13518,7 +12856,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"azM" = (
+"azL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -13527,10 +12865,23 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
+"azM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ tag = "icon-darkblue (NORTH)";
+ icon_state = "darkblue";
+ dir = 1;
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/bridge)
"azN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/darkblue/side{
tag = "icon-darkblue (NORTH)";
icon_state = "darkblue";
@@ -13539,19 +12890,6 @@
},
/area/bridge)
"azO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/darkblue/side{
- tag = "icon-darkblue (NORTH)";
- icon_state = "darkblue";
- dir = 1;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/bridge)
-"azP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -13563,7 +12901,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"azQ" = (
+"azP" = (
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
/turf/open/floor/plasteel/darkblue/side{
tag = "icon-darkblue (NORTH)";
@@ -13572,23 +12910,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"azR" = (
+"azQ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"azS" = (
+"azR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor{
- name = "Research Director's Private Quarters"
- })
-"azT" = (
+/area/crew_quarters/heads/hor/private)
+"azS" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -13597,10 +12933,8 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor{
- name = "Research Director's Private Quarters"
- })
-"azU" = (
+/area/crew_quarters/heads/hor/private)
+"azT" = (
/obj/structure/chair{
dir = 1
},
@@ -13610,20 +12944,16 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor{
- name = "Research Director's Private Quarters"
- })
-"azV" = (
+/area/crew_quarters/heads/hor/private)
+"azU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor{
- name = "Research Director's Private Quarters"
- })
-"azW" = (
+/area/crew_quarters/heads/hor/private)
+"azV" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -13635,10 +12965,8 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor{
- name = "Research Director's Private Quarters"
- })
-"azX" = (
+/area/crew_quarters/heads/hor/private)
+"azW" = (
/obj/machinery/power/apc{
dir = 8;
name = "Research Director's Private Quarters APC";
@@ -13662,20 +12990,16 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor{
- name = "Research Director's Private Quarters"
- })
-"azY" = (
+/area/crew_quarters/heads/hor/private)
+"azX" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"azZ" = (
+/area/maintenance/asteroid/fore/com_east)
+"azY" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -13685,7 +13009,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"aAa" = (
+"azZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -13693,7 +13017,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"aAb" = (
+"aAa" = (
/obj/machinery/door/airlock/engineering{
name = "Cargo Warehouse";
req_access_txt = "31"
@@ -13705,13 +13029,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"aAc" = (
+"aAb" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aAd" = (
+"aAc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -13719,13 +13043,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aAe" = (
+"aAd" = (
/obj/machinery/light,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aAf" = (
+"aAe" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=8";
dir = 8;
@@ -13740,23 +13064,23 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aAg" = (
+"aAf" = (
/obj/structure/shuttle/engine/propulsion{
icon_state = "burst_l"
},
/turf/open/floor/plating/airless,
/area/shuttle/supply)
-"aAh" = (
+"aAg" = (
/obj/structure/shuttle/engine/propulsion,
/turf/open/floor/plating/airless,
/area/shuttle/supply)
-"aAi" = (
+"aAh" = (
/obj/structure/shuttle/engine/propulsion{
icon_state = "burst_r"
},
/turf/open/floor/plating/airless,
/area/shuttle/supply)
-"aAj" = (
+"aAi" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=4";
dir = 4;
@@ -13771,7 +13095,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aAk" = (
+"aAj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/camera{
c_tag = "Cargo Eastern Loading Bay 2";
@@ -13786,7 +13110,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aAl" = (
+"aAk" = (
/obj/machinery/disposal/bin,
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -13803,7 +13127,7 @@
tag = "icon-browncorner (NORTH)"
},
/area/quartermaster/miningdock)
-"aAm" = (
+"aAl" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1
@@ -13812,17 +13136,17 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"aAn" = (
+"aAm" = (
/obj/structure/table,
/obj/item/weapon/folder,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"aAo" = (
+"aAn" = (
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
-"aAp" = (
+"aAo" = (
/obj/machinery/mineral/labor_claim_console{
machinedir = 1;
pixel_x = 30;
@@ -13830,18 +13154,18 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
-"aAq" = (
+"aAp" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating/airless,
/area/space)
-"aAr" = (
+"aAq" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"aAs" = (
+"aAr" = (
/obj/machinery/door/airlock/glass_security{
name = "Prisoner Processing";
req_access_txt = "2"
@@ -13850,7 +13174,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"aAt" = (
+"aAs" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -13870,10 +13194,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aAu" = (
+/area/maintenance/asteroid/fore/com_west)
+"aAt" = (
/obj/machinery/power/apc{
dir = 4;
name = "Security Equipment APC";
@@ -13889,7 +13211,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aAv" = (
+"aAu" = (
/obj/structure/table,
/obj/machinery/recharger,
/obj/machinery/camera{
@@ -13901,7 +13223,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aAw" = (
+"aAv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/holopad,
/obj/effect/landmark/start/security_officer,
@@ -13909,7 +13231,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aAx" = (
+"aAw" = (
/obj/structure/closet/secure_closet/brig{
id = "Cell 1";
name = "Cell 1 Locker"
@@ -13918,7 +13240,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aAy" = (
+"aAx" = (
/obj/machinery/door_timer{
id = "Cell 1";
name = "Cell 1";
@@ -13942,7 +13264,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aAz" = (
+"aAy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -13950,30 +13272,31 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aAA" = (
+"aAz" = (
/obj/machinery/light,
/obj/machinery/computer/secure_data,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aAB" = (
+"aAA" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/preopen{
id = "prisonbreak";
+ layer = 2.6;
name = "emergency prisoner containment blast door"
},
/obj/structure/cable/orange{
d2 = 4;
icon_state = "0-4"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aAC" = (
+"aAB" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -13997,7 +13320,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aAD" = (
+"aAC" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -14012,23 +13335,24 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aAE" = (
+"aAD" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/preopen{
id = "prisonbreak";
+ layer = 2.6;
name = "emergency prisoner containment blast door"
},
/obj/structure/cable/orange{
d2 = 8;
icon_state = "0-8"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aAF" = (
+"aAE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -14036,7 +13360,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aAG" = (
+"aAF" = (
/obj/machinery/door_timer{
id = "Cell 5";
name = "Cell 5";
@@ -14060,7 +13384,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aAH" = (
+"aAG" = (
/obj/structure/closet/secure_closet/brig{
id = "Cell 5";
name = "Cell 5 Locker"
@@ -14069,39 +13393,39 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aAI" = (
+"aAH" = (
/obj/structure/closet/lawcloset,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aAJ" = (
+/area/security/courtroom)
+"aAI" = (
/obj/structure/chair,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aAK" = (
+/area/security/courtroom)
+"aAJ" = (
/obj/machinery/light{
dir = 1
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aAL" = (
+/area/security/courtroom)
+"aAK" = (
/obj/structure/chair/comfy/brown,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aAM" = (
+/area/security/courtroom)
+"aAL" = (
/obj/structure/chair/comfy/black,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aAN" = (
+/area/security/courtroom)
+"aAM" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -14111,16 +13435,16 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aAO" = (
+/area/security/courtroom)
+"aAN" = (
/obj/structure/chair{
dir = 8
},
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aAP" = (
+/area/security/courtroom)
+"aAO" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -14130,17 +13454,13 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aAQ" = (
+/area/maintenance/asteroid/fore/com_north)
+"aAP" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aAR" = (
+/area/maintenance/asteroid/fore/com_north)
+"aAQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -14150,10 +13470,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aAS" = (
+/area/maintenance/asteroid/fore/com_north)
+"aAR" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -14162,10 +13480,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aAT" = (
+/area/maintenance/asteroid/fore/com_east)
+"aAS" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -14179,10 +13495,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aAU" = (
+/area/maintenance/asteroid/fore/com_north)
+"aAT" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -14191,17 +13505,15 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aAV" = (
+/area/maintenance/asteroid/fore/com_north)
+"aAU" = (
/obj/structure/table/wood,
/obj/item/toy/cards/deck,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aAW" = (
+"aAV" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -14209,7 +13521,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aAX" = (
+"aAW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -14218,15 +13530,15 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aAY" = (
+"aAX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"aAZ" = (
+/area/crew_quarters/dorms/male)
+"aAY" = (
/obj/machinery/light_switch{
pixel_x = -25
},
@@ -14238,8 +13550,8 @@
dir = 6;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"aBa" = (
+/area/crew_quarters/dorms/male)
+"aAZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -14248,8 +13560,8 @@
dir = 6;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"aBb" = (
+/area/crew_quarters/dorms/male)
+"aBa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -14258,8 +13570,8 @@
dir = 10;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"aBc" = (
+/area/crew_quarters/dorms/male)
+"aBb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -14273,8 +13585,8 @@
dir = 10;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"aBd" = (
+/area/crew_quarters/dorms/male)
+"aBc" = (
/obj/machinery/airalarm{
dir = 8;
icon_state = "alarm0";
@@ -14290,8 +13602,8 @@
dir = 10;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"aBe" = (
+/area/crew_quarters/dorms/male)
+"aBd" = (
/obj/machinery/requests_console{
announcementConsole = 1;
department = "Head of Security's Desk";
@@ -14303,17 +13615,13 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/hos{
- name = "Head of Security's Private Quarters"
- })
-"aBf" = (
+/area/crew_quarters/heads/hos/private)
+"aBe" = (
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/hos{
- name = "Head of Security's Private Quarters"
- })
-"aBg" = (
+/area/crew_quarters/heads/hos/private)
+"aBf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -14322,14 +13630,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aBh" = (
+"aBg" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aBi" = (
+"aBh" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -14338,7 +13646,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aBj" = (
+"aBi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -14347,14 +13655,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aBk" = (
+"aBj" = (
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor{
- name = "Research Director's Private Quarters"
- })
-"aBl" = (
+/area/crew_quarters/heads/hor/private)
+"aBk" = (
/obj/machinery/requests_console{
announcementConsole = 1;
department = "Research Director's Desk";
@@ -14366,10 +13672,8 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor{
- name = "Research Director's Private Quarters"
- })
-"aBm" = (
+/area/crew_quarters/heads/hor/private)
+"aBl" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -14382,29 +13686,25 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aBn" = (
+/area/maintenance/asteroid/fore/com_east)
+"aBm" = (
/obj/structure/closet/crate,
/obj/item/weapon/coin/silver,
/obj/item/weapon/coin/silver,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aBo" = (
+/area/maintenance/asteroid/fore/cargo_west)
+"aBn" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aBp" = (
+"aBo" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -14414,16 +13714,16 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aBq" = (
+"aBp" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aBr" = (
+"aBq" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/stripes/line,
@@ -14434,7 +13734,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aBs" = (
+"aBr" = (
/obj/structure/chair{
dir = 8
},
@@ -14444,7 +13744,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
-"aBt" = (
+"aBs" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
@@ -14452,7 +13752,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"aBu" = (
+"aBt" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -14463,30 +13763,27 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aBv" = (
+/area/maintenance/asteroid/fore/com_west)
+"aBu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aBw" = (
+/area/maintenance/asteroid/fore/com_west)
+"aBv" = (
/obj/structure/table,
+/obj/item/weapon/paper_bin,
/obj/machinery/recharger,
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aBx" = (
+"aBw" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/preopen{
id = "prisonbreak";
+ layer = 2.6;
name = "emergency prisoner containment blast door"
},
/obj/structure/cable/orange{
@@ -14503,35 +13800,36 @@
d2 = 2;
icon_state = "0-2"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aBy" = (
+"aBx" = (
/obj/structure/sign/map/left/ceres{
pixel_x = -32
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aBz" = (
+/area/security/courtroom)
+"aBy" = (
/obj/structure/table/wood,
/obj/item/device/taperecorder/empty,
/obj/item/device/tape/random,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aBA" = (
+/area/security/courtroom)
+"aBz" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aBB" = (
+/area/security/courtroom)
+"aBA" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/blue{
pixel_x = 5;
@@ -14540,16 +13838,16 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aBC" = (
+/area/security/courtroom)
+"aBB" = (
/obj/structure/table/wood,
/obj/item/weapon/gavelblock,
/obj/item/weapon/gavelhammer,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aBD" = (
+/area/security/courtroom)
+"aBC" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -14558,8 +13856,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aBE" = (
+/area/security/courtroom)
+"aBD" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -14568,8 +13866,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aBF" = (
+/area/security/courtroom)
+"aBE" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -14579,14 +13877,14 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aBG" = (
+/area/security/courtroom)
+"aBF" = (
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aBH" = (
+/area/security/courtroom)
+"aBG" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -14597,10 +13895,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aBI" = (
+/area/maintenance/asteroid/fore/com_north)
+"aBH" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -14611,10 +13907,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aBJ" = (
+/area/maintenance/asteroid/fore/com_north)
+"aBI" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -14623,10 +13917,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aBK" = (
+/area/maintenance/asteroid/fore/com_north)
+"aBJ" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -14635,7 +13927,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aBL" = (
+"aBK" = (
/obj/structure/chair/stool,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -14644,7 +13936,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aBM" = (
+"aBL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -14654,7 +13946,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aBN" = (
+"aBM" = (
/obj/machinery/door/airlock{
name = "Male Sleeping Quarters"
},
@@ -14663,21 +13955,21 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"aBO" = (
+/area/crew_quarters/dorms/male)
+"aBN" = (
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"aBP" = (
+/area/crew_quarters/dorms/male)
+"aBO" = (
/obj/machinery/light{
dir = 4
},
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"aBQ" = (
+/area/crew_quarters/dorms/male)
+"aBP" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -14685,24 +13977,21 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"aBR" = (
+/area/crew_quarters/dorms/male)
+"aBQ" = (
/obj/structure/dresser,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/hos{
- name = "Head of Security's Private Quarters"
- })
-"aBS" = (
+/area/crew_quarters/heads/hos/private)
+"aBR" = (
/obj/structure/closet/secure_closet/hos,
+/obj/item/device/radio,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/hos{
- name = "Head of Security's Private Quarters"
- })
-"aBT" = (
+/area/crew_quarters/heads/hos/private)
+"aBS" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -14711,20 +14000,16 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/hos{
- name = "Head of Security's Private Quarters"
- })
-"aBU" = (
+/area/crew_quarters/heads/hos/private)
+"aBT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/hos{
- name = "Head of Security's Private Quarters"
- })
-"aBV" = (
+/area/crew_quarters/heads/hos/private)
+"aBU" = (
/obj/machinery/door/airlock/security{
name = "Head of Security's Personal Quarters";
req_access_txt = "58"
@@ -14735,10 +14020,8 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/hos{
- name = "Head of Security's Private Quarters"
- })
-"aBW" = (
+/area/crew_quarters/heads/hos/private)
+"aBV" = (
/obj/machinery/camera{
c_tag = "Bridge Main 2";
dir = 1;
@@ -14749,7 +14032,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aBX" = (
+"aBW" = (
/obj/machinery/computer/crew,
/obj/machinery/firealarm{
dir = 1;
@@ -14759,13 +14042,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aBY" = (
+"aBX" = (
/obj/machinery/computer/med_data,
/turf/open/floor/plasteel/darkblue/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aBZ" = (
+"aBY" = (
/obj/structure/table,
/obj/item/weapon/paper_bin,
/obj/machinery/light,
@@ -14773,49 +14056,49 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aCa" = (
+"aBZ" = (
/turf/open/floor/plasteel/darkblue/corner{
icon_state = "darkbluecorners";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aCb" = (
+"aCa" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aCc" = (
+"aCb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/item/device/radio/beacon,
/turf/open/floor/plasteel/darkblue/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aCd" = (
+"aCc" = (
/turf/open/floor/plasteel/darkblue/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aCe" = (
+"aCd" = (
/obj/machinery/computer/security,
/turf/open/floor/plasteel/darkblue/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aCf" = (
+"aCe" = (
/obj/machinery/computer/secure_data,
/turf/open/floor/plasteel/darkblue/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aCg" = (
+"aCf" = (
/turf/open/floor/plasteel/darkblue/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aCh" = (
+"aCg" = (
/obj/machinery/door/airlock/research{
name = "Research Director's Personal Quarters";
req_access_txt = "30"
@@ -14826,20 +14109,16 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor{
- name = "Research Director's Private Quarters"
- })
-"aCi" = (
+/area/crew_quarters/heads/hor/private)
+"aCh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor{
- name = "Research Director's Private Quarters"
- })
-"aCj" = (
+/area/crew_quarters/heads/hor/private)
+"aCi" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -14849,10 +14128,8 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor{
- name = "Research Director's Private Quarters"
- })
-"aCk" = (
+/area/crew_quarters/heads/hor/private)
+"aCj" = (
/obj/structure/closet{
icon_door = "pink";
name = "Research Director's Uniform"
@@ -14866,18 +14143,14 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor{
- name = "Research Director's Private Quarters"
- })
-"aCl" = (
+/area/crew_quarters/heads/hor/private)
+"aCk" = (
/obj/structure/dresser,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor{
- name = "Research Director's Private Quarters"
- })
-"aCm" = (
+/area/crew_quarters/heads/hor/private)
+"aCl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/firealarm{
dir = 8;
@@ -14887,7 +14160,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aCn" = (
+"aCm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -14895,7 +14168,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aCo" = (
+"aCn" = (
/obj/machinery/light{
dir = 1
},
@@ -14906,7 +14179,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aCp" = (
+"aCo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -14921,7 +14194,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aCq" = (
+"aCp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -14935,7 +14208,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aCr" = (
+"aCq" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -14943,7 +14216,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aCs" = (
+"aCr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -14952,7 +14225,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aCt" = (
+"aCs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -14965,7 +14238,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aCu" = (
+"aCt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -14973,20 +14246,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aCv" = (
+"aCu" = (
/obj/effect/landmark/event_spawn,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aCw" = (
+"aCv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/brown/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aCx" = (
+"aCw" = (
/obj/machinery/power/apc{
dir = 1;
name = "Mining Dock APC";
@@ -15006,11 +14279,11 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"aCy" = (
+"aCx" = (
/obj/structure/closet/crate,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
-"aCz" = (
+"aCy" = (
/obj/machinery/door/airlock/titanium{
id_tag = "prisonshuttle";
name = "Labor Shuttle Airlock"
@@ -15034,7 +14307,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
-"aCA" = (
+"aCz" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
name = "Labor Camp Shuttle Airlock";
@@ -15043,7 +14316,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/security/processing)
-"aCB" = (
+"aCA" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 8;
name = "Labor Camp Shuttle Airlock"
@@ -15052,27 +14325,28 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"aCC" = (
+"aCB" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"aCD" = (
+"aCC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
id_tag = "laborexit";
name = "Labor Shuttle";
req_access = null;
req_access_txt = "63"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"aCE" = (
+"aCD" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -15085,10 +14359,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aCF" = (
+/area/maintenance/asteroid/fore/com_west)
+"aCE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/button/door{
id = "GulagCivExit";
@@ -15099,10 +14371,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aCG" = (
+/area/maintenance/asteroid/fore/com_west)
+"aCF" = (
/obj/structure/reagent_dispensers/peppertank{
pixel_x = -32
},
@@ -15118,13 +14388,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aCH" = (
+"aCG" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aCI" = (
+"aCH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -15132,7 +14402,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aCJ" = (
+"aCI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -15142,12 +14412,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aCK" = (
+"aCJ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/preopen{
id = "prisonbreak";
+ layer = 2.6;
name = "emergency prisoner containment blast door"
},
/obj/structure/cable/orange{
@@ -15161,7 +14432,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aCL" = (
+"aCK" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -15171,7 +14442,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aCM" = (
+"aCL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -15181,23 +14452,23 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
+"aCM" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/corner{
+ tag = "icon-redcorner (NORTH)";
+ icon_state = "redcorner";
+ dir = 1;
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/security/brig)
"aCN" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/corner{
- tag = "icon-redcorner (NORTH)";
- icon_state = "redcorner";
- dir = 1;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/brig)
-"aCO" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -15211,14 +14482,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aCP" = (
+"aCO" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aCQ" = (
+"aCP" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -15231,7 +14502,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aCR" = (
+"aCQ" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 32
},
@@ -15245,7 +14516,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aCS" = (
+"aCR" = (
/obj/machinery/camera{
c_tag = "Brig Hall East"
},
@@ -15259,7 +14530,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aCT" = (
+"aCS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -15270,7 +14541,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aCU" = (
+"aCT" = (
/obj/machinery/door/airlock/security{
name = "Courtroom";
req_access = null;
@@ -15283,15 +14554,15 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aCV" = (
+"aCU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/red/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aCW" = (
+/area/security/courtroom)
+"aCV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -15301,44 +14572,44 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aCX" = (
+/area/security/courtroom)
+"aCW" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aCY" = (
+/area/security/courtroom)
+"aCX" = (
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aCZ" = (
+/area/security/courtroom)
+"aCY" = (
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aDa" = (
+/area/security/courtroom)
+"aCZ" = (
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aDb" = (
+/area/security/courtroom)
+"aDa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aDc" = (
+/area/security/courtroom)
+"aDb" = (
/turf/open/floor/plasteel/blue/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aDd" = (
+/area/security/courtroom)
+"aDc" = (
/obj/machinery/airalarm{
dir = 8;
icon_state = "alarm0";
@@ -15347,8 +14618,8 @@
/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aDe" = (
+/area/security/courtroom)
+"aDd" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -15361,10 +14632,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aDf" = (
+/area/maintenance/asteroid/fore/com_north)
+"aDe" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -15378,10 +14647,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aDg" = (
+/area/maintenance/asteroid/fore/com_north)
+"aDf" = (
/obj/structure/sign/poster/random{
name = "random official poster";
pixel_x = -32;
@@ -15391,7 +14658,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aDh" = (
+"aDg" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -15400,7 +14667,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aDi" = (
+"aDh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -15408,7 +14675,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aDj" = (
+"aDi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -15428,7 +14695,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aDk" = (
+"aDj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -15438,21 +14705,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aDl" = (
+"aDk" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aDm" = (
+"aDl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"aDn" = (
+/area/crew_quarters/dorms/male)
+"aDm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -15462,8 +14729,8 @@
dir = 5;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"aDo" = (
+/area/crew_quarters/dorms/male)
+"aDn" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -15475,42 +14742,40 @@
dir = 5;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"aDp" = (
+/area/crew_quarters/dorms/male)
+"aDo" = (
/turf/open/floor/plasteel/neutral/side{
tag = "icon-neutral (NORTHEAST)";
icon_state = "neutral";
dir = 5;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"aDq" = (
+/area/crew_quarters/dorms/male)
+"aDp" = (
/turf/open/floor/plasteel/neutral/side{
tag = "icon-neutral (NORTHWEST)";
icon_state = "neutral";
dir = 9;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"aDr" = (
+/area/crew_quarters/dorms/male)
+"aDq" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"aDs" = (
+/area/crew_quarters/dorms/male)
+"aDr" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/hos{
- name = "Head of Security's Private Quarters"
- })
-"aDt" = (
+/area/crew_quarters/heads/hos/private)
+"aDs" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aDu" = (
+"aDt" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -15519,7 +14784,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aDv" = (
+"aDu" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -15529,13 +14794,14 @@
},
/obj/machinery/door/poddoor/preopen{
id = "bridge";
+ layer = 2.6;
name = "Emergency Blast Door"
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aDw" = (
+"aDv" = (
/obj/machinery/door/airlock/glass_command{
cyclelinkeddir = null;
name = "Bridge";
@@ -15552,10 +14818,9 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aDx" = (
+"aDw" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d2 = 2;
icon_state = "0-2"
@@ -15563,13 +14828,15 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/poddoor/preopen{
id = "bridge";
+ layer = 2.6;
name = "Emergency Blast Door"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aDy" = (
+"aDx" = (
/obj/machinery/door/airlock/glass_command{
cyclelinkeddir = null;
name = "Bridge";
@@ -15586,16 +14853,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aDz" = (
+"aDy" = (
/obj/structure/girder,
/obj/structure/grille,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aDA" = (
+/area/maintenance/asteroid/fore/com_east)
+"aDz" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -15605,10 +14870,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aDB" = (
+/area/maintenance/asteroid/fore/cargo_west)
+"aDA" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -15618,10 +14881,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aDC" = (
+/area/maintenance/asteroid/fore/cargo_west)
+"aDB" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -15629,7 +14890,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aDD" = (
+"aDC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -15637,7 +14898,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aDE" = (
+"aDD" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -15645,7 +14906,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aDF" = (
+"aDE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -15657,7 +14918,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aDG" = (
+"aDF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -15668,7 +14929,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aDH" = (
+"aDG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -15683,7 +14944,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aDI" = (
+"aDH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -15694,7 +14955,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aDJ" = (
+"aDI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -15711,7 +14972,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aDK" = (
+"aDJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -15724,7 +14985,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aDL" = (
+"aDK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -15738,7 +14999,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aDM" = (
+"aDL" = (
/obj/structure/shuttle/engine/heater,
/obj/structure/window/reinforced{
dir = 1;
@@ -15746,7 +15007,7 @@
},
/turf/open/floor/plating/airless,
/area/shuttle/labor)
-"aDN" = (
+"aDM" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/sign/securearea{
@@ -15762,7 +15023,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"aDO" = (
+"aDN" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -15781,10 +15042,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aDP" = (
+/area/maintenance/asteroid/fore/com_west)
+"aDO" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -15802,10 +15061,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aDQ" = (
+/area/maintenance/asteroid/fore/com_west)
+"aDP" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -15826,7 +15083,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aDR" = (
+"aDQ" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -15843,7 +15100,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aDS" = (
+"aDR" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -15861,7 +15118,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aDT" = (
+"aDS" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -15874,7 +15131,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aDU" = (
+"aDT" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -15888,7 +15145,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aDV" = (
+"aDU" = (
/obj/machinery/door/airlock/glass_security{
name = "Equipment Room";
req_access_txt = "1"
@@ -15915,7 +15172,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aDW" = (
+"aDV" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -15929,7 +15186,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aDX" = (
+"aDW" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -15949,7 +15206,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aDY" = (
+"aDX" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -15962,7 +15219,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aDZ" = (
+"aDY" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -15980,7 +15237,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aEa" = (
+"aDZ" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -15998,7 +15255,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aEb" = (
+"aEa" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -16014,7 +15271,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aEc" = (
+"aEb" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -16032,7 +15289,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aEd" = (
+"aEc" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -16052,7 +15309,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aEe" = (
+"aEd" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -16066,7 +15323,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aEf" = (
+"aEe" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -16083,7 +15340,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aEg" = (
+"aEf" = (
/obj/machinery/power/apc{
dir = 4;
name = "Brig APC";
@@ -16104,12 +15361,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aEh" = (
+"aEg" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aEi" = (
+"aEh" = (
/obj/structure/chair{
dir = 4
},
@@ -16118,8 +15375,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aEj" = (
+/area/security/courtroom)
+"aEi" = (
/obj/structure/table/wood,
/turf/open/floor/plasteel/red/side{
tag = "icon-red (NORTHEAST)";
@@ -16127,26 +15384,26 @@
dir = 5;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aEk" = (
+/area/security/courtroom)
+"aEj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aEl" = (
+/area/security/courtroom)
+"aEk" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aEm" = (
+/area/security/courtroom)
+"aEl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aEn" = (
+/area/security/courtroom)
+"aEm" = (
/obj/structure/table/wood,
/turf/open/floor/plasteel/blue/side{
tag = "icon-blue (NORTHWEST)";
@@ -16154,8 +15411,8 @@
dir = 9;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aEo" = (
+/area/security/courtroom)
+"aEn" = (
/obj/structure/chair{
dir = 8
},
@@ -16165,8 +15422,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aEp" = (
+/area/security/courtroom)
+"aEo" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -16177,10 +15434,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aEq" = (
+/area/maintenance/asteroid/fore/com_north)
+"aEp" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -16190,10 +15445,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aEr" = (
+/area/maintenance/asteroid/fore/com_north)
+"aEq" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -16217,7 +15470,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aEs" = (
+"aEr" = (
/obj/machinery/power/terminal{
tag = "icon-term (EAST)";
icon_state = "term";
@@ -16233,31 +15486,27 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aEt" = (
+/area/maintenance/asteroid/fore/com_north)
+"aEs" = (
/obj/machinery/power/smes/engineering,
/obj/structure/cable/orange,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aEu" = (
+/area/maintenance/asteroid/fore/com_north)
+"aEt" = (
/turf/open/floor/plasteel/neutral/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aEv" = (
+"aEu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aEw" = (
+"aEv" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/yellow,
/obj/structure/window{
@@ -16269,8 +15518,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"aEx" = (
+/area/crew_quarters/dorms/male)
+"aEw" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/green,
/obj/structure/window{
@@ -16281,8 +15530,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"aEy" = (
+/area/crew_quarters/dorms/male)
+"aEx" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/red,
/obj/structure/window{
@@ -16293,21 +15542,21 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"aEz" = (
+/area/crew_quarters/dorms/male)
+"aEy" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aEA" = (
+"aEz" = (
/obj/structure/rack,
/obj/item/device/flashlight,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aEB" = (
+"aEA" = (
/obj/machinery/power/apc{
dir = 1;
name = "Head of Security's Personal Quarters APC";
@@ -16322,17 +15571,15 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/hos{
- name = "Head of Security's Private Quarters"
- })
-"aEC" = (
+/area/crew_quarters/heads/hos/private)
+"aEB" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aED" = (
+"aEC" = (
/obj/machinery/power/apc{
dir = 4;
name = "Bridge APC";
@@ -16352,7 +15599,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aEE" = (
+"aED" = (
/turf/open/floor/plasteel/darkblue/side{
tag = "icon-darkblue (NORTH)";
icon_state = "darkblue";
@@ -16360,7 +15607,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aEF" = (
+"aEE" = (
/obj/machinery/camera{
c_tag = "Bridge Midway 1"
},
@@ -16376,7 +15623,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aEG" = (
+"aEF" = (
/obj/structure/table,
/obj/item/stack/packageWrap,
/obj/item/device/destTagger,
@@ -16387,7 +15634,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aEH" = (
+"aEG" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/turf/open/floor/plasteel/darkblue/side{
@@ -16397,7 +15644,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aEI" = (
+"aEH" = (
/obj/structure/table,
/obj/machinery/recharger,
/turf/open/floor/plasteel/darkblue/side{
@@ -16407,7 +15654,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aEJ" = (
+"aEI" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -16420,7 +15667,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aEK" = (
+"aEJ" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j2";
dir = 2
@@ -16429,7 +15676,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aEL" = (
+"aEK" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -16448,7 +15695,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aEM" = (
+"aEL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -16460,7 +15707,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aEN" = (
+"aEM" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -16479,7 +15726,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aEO" = (
+"aEN" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular{
pixel_x = 0
@@ -16502,7 +15749,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aEP" = (
+"aEO" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/o2,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -16518,7 +15765,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aEQ" = (
+"aEP" = (
/obj/structure/table,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -16533,7 +15780,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aER" = (
+"aEQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -16548,40 +15795,32 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aES" = (
+"aER" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/qm{
- name = "Quartermaster's Private Quarters"
- })
-"aET" = (
+/area/quartermaster/qm/private)
+"aES" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/qm{
- name = "Quartermaster's Private Quarters"
- })
-"aEU" = (
+/area/quartermaster/qm/private)
+"aET" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/qm{
- name = "Quartermaster's Private Quarters"
- })
-"aEV" = (
+/area/quartermaster/qm/private)
+"aEU" = (
/obj/structure/dresser,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/qm{
- name = "Quartermaster's Private Quarters"
- })
-"aEW" = (
+/area/quartermaster/qm/private)
+"aEV" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/qm,
/obj/machinery/airalarm{
@@ -16596,17 +15835,13 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/qm{
- name = "Quartermaster's Private Quarters"
- })
-"aEX" = (
+/area/quartermaster/qm/private)
+"aEW" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/qm{
- name = "Quartermaster's Private Quarters"
- })
-"aEY" = (
+/area/quartermaster/qm/private)
+"aEX" = (
/obj/machinery/door/airlock/glass_mining{
name = "Cargo Bay";
req_access_txt = "0";
@@ -16617,7 +15852,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aEZ" = (
+"aEY" = (
/obj/machinery/door/airlock/glass_mining{
name = "Cargo Bay";
req_access_txt = "0";
@@ -16627,7 +15862,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aFa" = (
+"aEZ" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -16638,7 +15873,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aFb" = (
+"aFa" = (
/obj/structure/table,
/obj/item/clothing/gloves/fingerless,
/obj/item/clothing/head/soft,
@@ -16646,20 +15881,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aFc" = (
+"aFb" = (
/obj/structure/closet/wardrobe/cargotech,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aFd" = (
+"aFc" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aFe" = (
+"aFd" = (
/obj/structure/table,
/obj/item/weapon/hand_labeler,
/obj/item/hand_labeler_refill,
@@ -16673,11 +15908,11 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aFf" = (
+"aFe" = (
/obj/structure/shuttle/engine/propulsion,
/turf/open/floor/plating/airless,
/area/shuttle/labor)
-"aFg" = (
+"aFf" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -16687,7 +15922,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"aFh" = (
+"aFg" = (
/obj/machinery/camera{
c_tag = "Labor Shuttle Dock South";
dir = 1
@@ -16700,7 +15935,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"aFi" = (
+"aFh" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -16716,7 +15951,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"aFj" = (
+"aFi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -16724,7 +15959,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"aFk" = (
+"aFj" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -16742,10 +15977,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aFl" = (
+/area/maintenance/asteroid/fore/com_west)
+"aFk" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/obj/machinery/door/airlock/maintenance{
@@ -16756,10 +15989,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aFm" = (
+/area/maintenance/asteroid/fore/com_west)
+"aFl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -16767,7 +15998,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aFn" = (
+"aFm" = (
/obj/effect/landmark/secequipment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -16779,7 +16010,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aFo" = (
+"aFn" = (
/obj/effect/landmark/secequipment,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/obj/machinery/light,
@@ -16787,7 +16018,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aFp" = (
+"aFo" = (
/obj/effect/landmark/secequipment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -16796,7 +16027,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aFq" = (
+"aFp" = (
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -16809,23 +16040,24 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aFr" = (
+"aFq" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/preopen{
id = "prisonbreak";
+ layer = 2.6;
name = "emergency prisoner containment blast door"
},
/obj/structure/cable/orange,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aFs" = (
+"aFr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -16837,7 +16069,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aFt" = (
+"aFs" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -16854,7 +16086,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aFu" = (
+"aFt" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -16865,7 +16097,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aFv" = (
+"aFu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -16882,7 +16114,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aFw" = (
+"aFv" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/red/corner{
tag = "icon-redcorner (WEST)";
@@ -16891,7 +16123,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aFx" = (
+"aFw" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -16903,18 +16135,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
+"aFx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/corner{
+ tag = "icon-redcorner (WEST)";
+ icon_state = "redcorner";
+ dir = 8;
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/security/brig)
"aFy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/corner{
- tag = "icon-redcorner (WEST)";
- icon_state = "redcorner";
- dir = 8;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/brig)
-"aFz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -16927,7 +16159,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aFA" = (
+"aFz" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -16943,7 +16175,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aFB" = (
+"aFA" = (
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
/turf/open/floor/plasteel/red/corner{
tag = "icon-redcorner (WEST)";
@@ -16952,7 +16184,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aFC" = (
+"aFB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -16965,7 +16197,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aFD" = (
+"aFC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -16974,7 +16206,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aFE" = (
+"aFD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -16990,12 +16222,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aFF" = (
+"aFE" = (
/turf/open/floor/plasteel/red/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aFG" = (
+"aFF" = (
/obj/structure/sign/goldenplaque{
pixel_y = -32
},
@@ -17003,7 +16235,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aFH" = (
+"aFG" = (
/turf/open/floor/plasteel/red/corner{
tag = "icon-redcorner (WEST)";
icon_state = "redcorner";
@@ -17011,7 +16243,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aFI" = (
+"aFH" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -17022,7 +16254,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aFJ" = (
+"aFI" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -17031,15 +16263,15 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aFK" = (
+"aFJ" = (
/obj/structure/chair{
dir = 4
},
/turf/open/floor/plasteel/red/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aFL" = (
+/area/security/courtroom)
+"aFK" = (
/obj/structure/table/wood,
/obj/item/weapon/book/manual/wiki/security_space_law,
/turf/open/floor/plasteel/red/side{
@@ -17047,8 +16279,8 @@
dir = 6;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aFM" = (
+/area/security/courtroom)
+"aFL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
@@ -17056,24 +16288,24 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aFN" = (
+/area/security/courtroom)
+"aFM" = (
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
icon_state = "neutralcorner";
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aFO" = (
+/area/security/courtroom)
+"aFN" = (
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
icon_state = "neutralcorner";
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aFP" = (
+/area/security/courtroom)
+"aFO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
@@ -17081,8 +16313,8 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aFQ" = (
+/area/security/courtroom)
+"aFP" = (
/obj/structure/table/wood,
/turf/open/floor/plasteel/blue/side{
tag = "icon-blue (SOUTHWEST)";
@@ -17090,27 +16322,27 @@
dir = 10;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aFR" = (
+/area/security/courtroom)
+"aFQ" = (
/obj/structure/chair{
dir = 8
},
/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aFS" = (
+/area/security/courtroom)
+"aFR" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aFT" = (
+"aFS" = (
/obj/structure/closet/secure_closet/personal,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aFU" = (
+"aFT" = (
/obj/structure/closet/secure_closet/personal,
/obj/machinery/light,
/obj/effect/spawner/lootdrop/costume,
@@ -17118,20 +16350,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aFV" = (
+"aFU" = (
/obj/machinery/light/small,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"aFW" = (
+/area/crew_quarters/dorms/male)
+"aFV" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/yellow,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"aFX" = (
+/area/crew_quarters/dorms/male)
+"aFW" = (
/obj/machinery/light/small,
/obj/structure/sign/poster/random{
name = "random official poster";
@@ -17141,22 +16373,22 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"aFY" = (
+/area/crew_quarters/dorms/male)
+"aFX" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/green,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"aFZ" = (
+/area/crew_quarters/dorms/male)
+"aFY" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/red,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_male)
-"aGa" = (
+/area/crew_quarters/dorms/male)
+"aFZ" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -17165,7 +16397,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aGb" = (
+"aGa" = (
/obj/structure/disposalpipe/trunk{
dir = 8
},
@@ -17176,7 +16408,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aGc" = (
+"aGb" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -17186,7 +16418,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aGd" = (
+"aGc" = (
/obj/machinery/light/small,
/obj/structure/cable/orange{
d1 = 4;
@@ -17205,8 +16437,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aGe" = (
+/area/crew_quarters/heads/hop)
+"aGd" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -17221,7 +16453,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aGf" = (
+"aGe" = (
/obj/machinery/door/airlock/maintenance{
name = "Bridge APC Access";
req_access_txt = "10;11;12"
@@ -17235,7 +16467,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aGg" = (
+"aGf" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -17252,7 +16484,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aGh" = (
+"aGg" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -17268,7 +16500,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aGi" = (
+"aGh" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -17289,7 +16521,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aGj" = (
+"aGi" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -17303,7 +16535,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aGk" = (
+"aGj" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -17326,7 +16558,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aGl" = (
+"aGk" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -17339,7 +16571,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aGm" = (
+"aGl" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -17352,17 +16584,15 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aGn" = (
+"aGm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/qm{
- name = "Quartermaster's Private Quarters"
- })
-"aGo" = (
+/area/quartermaster/qm/private)
+"aGn" = (
/obj/structure/table/wood,
/obj/item/device/modular_computer/laptop/preset/civillian,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -17371,10 +16601,8 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/qm{
- name = "Quartermaster's Private Quarters"
- })
-"aGp" = (
+/area/quartermaster/qm/private)
+"aGo" = (
/obj/structure/chair{
dir = 8
},
@@ -17384,20 +16612,16 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/qm{
- name = "Quartermaster's Private Quarters"
- })
-"aGq" = (
+/area/quartermaster/qm/private)
+"aGp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/qm{
- name = "Quartermaster's Private Quarters"
- })
-"aGr" = (
+/area/quartermaster/qm/private)
+"aGq" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -17413,10 +16637,8 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/qm{
- name = "Quartermaster's Private Quarters"
- })
-"aGs" = (
+/area/quartermaster/qm/private)
+"aGr" = (
/obj/machinery/power/apc{
dir = 8;
name = "Quartermaster's Private Quarters APC";
@@ -17440,10 +16662,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/qm{
- name = "Quartermaster's Private Quarters"
- })
-"aGt" = (
+/area/quartermaster/qm/private)
+"aGs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/extinguisher_cabinet{
pixel_x = -24
@@ -17459,7 +16679,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aGu" = (
+"aGt" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -17469,13 +16689,13 @@
dir = 1
},
/area/quartermaster/office)
-"aGv" = (
+"aGu" = (
/turf/open/floor/plasteel/brown{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 1
},
/area/quartermaster/office)
-"aGw" = (
+"aGv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -17485,7 +16705,7 @@
tag = "icon-browncorner (NORTH)"
},
/area/quartermaster/office)
-"aGx" = (
+"aGw" = (
/obj/machinery/requests_console{
department = "Cargo Bay";
departmentType = 2;
@@ -17500,7 +16720,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aGy" = (
+"aGx" = (
/obj/machinery/autolathe,
/obj/machinery/light{
dir = 1
@@ -17512,7 +16732,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aGz" = (
+"aGy" = (
/obj/structure/table,
/obj/item/device/multitool,
/obj/machinery/camera{
@@ -17532,7 +16752,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aGA" = (
+"aGz" = (
/obj/structure/table,
/obj/item/weapon/folder,
/obj/item/weapon/stamp/denied{
@@ -17551,7 +16771,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aGB" = (
+"aGA" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular,
/obj/structure/noticeboard{
@@ -17561,7 +16781,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aGC" = (
+"aGB" = (
/obj/structure/table,
/obj/machinery/computer/stockexchange,
/obj/structure/sign/poster/random{
@@ -17574,12 +16794,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aGD" = (
+"aGC" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aGE" = (
+"aGD" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -17587,7 +16807,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aGF" = (
+"aGE" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -17600,28 +16820,26 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aGG" = (
+/area/maintenance/asteroid/fore/com_west)
+"aGF" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aGH" = (
+"aGG" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d2 = 4;
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aGI" = (
+"aGH" = (
/obj/machinery/door/airlock/security{
name = "Detective's Office";
req_access_txt = "4"
@@ -17639,20 +16857,20 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"aGJ" = (
+"aGI" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d2 = 8;
icon_state = "0-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aGK" = (
+"aGJ" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -17661,15 +16879,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aGL" = (
+"aGK" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aGM" = (
+"aGL" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d2 = 4;
icon_state = "0-4"
@@ -17680,11 +16897,12 @@
id = "lawyerinterior";
name = "privacy shutters"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aGN" = (
+"aGM" = (
/obj/machinery/door/airlock{
name = "Law Office";
req_access_txt = "38"
@@ -17708,10 +16926,9 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aGO" = (
+"aGN" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d2 = 8;
icon_state = "0-8"
@@ -17721,23 +16938,24 @@
id = "lawyerinterior";
name = "privacy shutters"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aGP" = (
+"aGO" = (
/turf/open/floor/plasteel/red/side{
icon_state = "red";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aGQ" = (
+"aGP" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aGR" = (
+"aGQ" = (
/obj/machinery/door/airlock/glass_security{
cyclelinkeddir = 2;
id_tag = "innerbrig";
@@ -17749,7 +16967,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aGS" = (
+"aGR" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -17760,7 +16978,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aGT" = (
+"aGS" = (
/obj/machinery/camera{
c_tag = "Courtroom Main South";
dir = 1
@@ -17770,35 +16988,35 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aGU" = (
+/area/security/courtroom)
+"aGT" = (
/turf/open/floor/plasteel/red/corner{
tag = "icon-redcorner (NORTH)";
icon_state = "redcorner";
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aGV" = (
+/area/security/courtroom)
+"aGU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aGW" = (
+/area/security/courtroom)
+"aGV" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aGX" = (
+/area/security/courtroom)
+"aGW" = (
/turf/open/floor/plasteel/blue/corner{
tag = "icon-bluecorner (EAST)";
icon_state = "bluecorner";
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aGY" = (
+/area/security/courtroom)
+"aGX" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -17812,19 +17030,19 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aGZ" = (
+/area/security/courtroom)
+"aGY" = (
/obj/machinery/recharge_station,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aHa" = (
+"aGZ" = (
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aHb" = (
+"aHa" = (
/obj/machinery/door/airlock/glass{
name = "Dormitories"
},
@@ -17834,7 +17052,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aHc" = (
+"aHb" = (
/obj/machinery/door/airlock/glass{
name = "Dormitories"
},
@@ -17843,24 +17061,24 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aHd" = (
+"aHc" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aHe" = (
+/area/crew_quarters/heads/hop)
+"aHd" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aHf" = (
+/area/crew_quarters/heads/hop)
+"aHe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/darkblue/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aHg" = (
+"aHf" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -17869,7 +17087,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aHh" = (
+"aHg" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -17881,7 +17099,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aHi" = (
+"aHh" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -17889,7 +17107,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aHj" = (
+"aHi" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -17899,7 +17117,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aHk" = (
+"aHj" = (
/obj/machinery/door/airlock/mining{
name = "Quartermaster's Private Quarters";
req_access_txt = "41"
@@ -17910,20 +17128,16 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/qm{
- name = "Quartermaster's Private Quarters"
- })
-"aHl" = (
+/area/quartermaster/qm/private)
+"aHk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/qm{
- name = "Quartermaster's Private Quarters"
- })
-"aHm" = (
+/area/quartermaster/qm/private)
+"aHl" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -17931,10 +17145,8 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/qm{
- name = "Quartermaster's Private Quarters"
- })
-"aHn" = (
+/area/quartermaster/qm/private)
+"aHm" = (
/obj/machinery/light_switch{
pixel_y = -25
},
@@ -17946,10 +17158,8 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/qm{
- name = "Quartermaster's Private Quarters"
- })
-"aHo" = (
+/area/quartermaster/qm/private)
+"aHn" = (
/obj/structure/closet{
icon_door = "orange";
name = "Quartermaster's Uniform"
@@ -17961,10 +17171,8 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/qm{
- name = "Quartermaster's Private Quarters"
- })
-"aHp" = (
+/area/quartermaster/qm/private)
+"aHo" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -17974,20 +17182,16 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aHq" = (
+/area/maintenance/asteroid/fore/com_east)
+"aHp" = (
/obj/machinery/power/apc{
dir = 2;
name = "Gravity Generator APC";
pixel_y = -24
},
/turf/closed/mineral,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aHr" = (
+/area/maintenance/asteroid/fore/cargo_west)
+"aHq" = (
/obj/structure/table,
/obj/item/stack/sheet/glass/fifty,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -17998,7 +17202,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aHs" = (
+"aHr" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -18008,7 +17212,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aHt" = (
+"aHs" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
@@ -18017,18 +17221,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aHu" = (
+"aHt" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aHv" = (
+"aHu" = (
/obj/machinery/computer/secure_data,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -18040,7 +17244,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aHw" = (
+"aHv" = (
/obj/structure/chair/office/dark{
dir = 8
},
@@ -18054,7 +17258,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aHx" = (
+"aHw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -18064,7 +17268,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aHy" = (
+"aHx" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -18080,7 +17284,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aHz" = (
+"aHy" = (
/obj/structure/cable/orange{
d2 = 4;
icon_state = "0-4"
@@ -18096,7 +17300,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"aHA" = (
+"aHz" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -18114,17 +17318,15 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aHB" = (
+/area/maintenance/asteroid/fore/com_west)
+"aHA" = (
/obj/structure/closet/secure_closet/detective,
/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aHC" = (
+"aHB" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -18133,13 +17335,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aHD" = (
+"aHC" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aHE" = (
+"aHD" = (
/obj/structure/table/wood,
/obj/machinery/computer/security/wooden_tv,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -18147,19 +17349,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aHF" = (
+"aHE" = (
/obj/structure/filingcabinet,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aHG" = (
+"aHF" = (
/obj/machinery/computer/secure_data,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aHH" = (
+"aHG" = (
/obj/structure/filingcabinet,
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -18170,7 +17372,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aHI" = (
+"aHH" = (
/obj/machinery/button/door{
id = "lawyerinterior";
name = "Privacy Shutters";
@@ -18181,7 +17383,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aHJ" = (
+"aHI" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -18191,7 +17393,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aHK" = (
+"aHJ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -18206,7 +17408,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aHL" = (
+"aHK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/power/apc{
dir = 4;
@@ -18222,7 +17424,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aHM" = (
+"aHL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/button/flasher{
id = "HoldingCell";
@@ -18236,7 +17438,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aHN" = (
+"aHM" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -18246,7 +17448,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aHO" = (
+"aHN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/red/side{
icon_state = "red";
@@ -18254,19 +17456,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aHP" = (
+"aHO" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d2 = 4;
icon_state = "0-4"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aHQ" = (
+"aHP" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -18276,7 +17478,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aHR" = (
+"aHQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/red/corner{
tag = "icon-redcorner (EAST)";
@@ -18285,14 +17487,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aHS" = (
+"aHR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/vending/coffee,
/turf/open/floor/plasteel/red/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aHT" = (
+"aHS" = (
/obj/machinery/vending/cigarette,
/turf/open/floor/plasteel/red/side{
icon_state = "red";
@@ -18300,24 +17502,24 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
+"aHT" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/security/courtroom)
"aHU" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/courtroom)
-"aHV" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aHW" = (
+/area/security/courtroom)
+"aHV" = (
/obj/machinery/door/airlock/glass{
name = "Courtroom";
req_access_txt = "1"
@@ -18326,17 +17528,17 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/crew_quarters/courtroom)
-"aHX" = (
+/area/security/courtroom)
+"aHW" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aHY" = (
+/area/security/courtroom)
+"aHX" = (
/obj/machinery/light/small{
dir = 8
},
@@ -18344,7 +17546,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aHZ" = (
+"aHY" = (
/obj/machinery/door/airlock{
id_tag = "b3"
},
@@ -18352,7 +17554,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aIa" = (
+"aHZ" = (
/obj/structure/urinal{
pixel_x = 32
},
@@ -18360,13 +17562,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aIb" = (
+"aIa" = (
/obj/machinery/washing_machine,
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aIc" = (
+"aIb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
@@ -18376,7 +17578,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aId" = (
+"aIc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -18385,7 +17587,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aIe" = (
+"aId" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -18399,7 +17601,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aIf" = (
+"aIe" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -18408,26 +17610,26 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aIg" = (
+"aIf" = (
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aIh" = (
+"aIg" = (
/obj/structure/closet/wardrobe/pjs,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aIi" = (
+"aIh" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/hop,
/obj/effect/landmark/start/head_of_personnel,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aIj" = (
+/area/crew_quarters/heads/hop)
+"aIi" = (
/obj/machinery/light_switch{
pixel_y = 25
},
@@ -18438,8 +17640,8 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aIk" = (
+/area/crew_quarters/heads/hop)
+"aIj" = (
/obj/structure/closet/secure_closet/hop,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -18450,16 +17652,16 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aIl" = (
+/area/crew_quarters/heads/hop)
+"aIk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aIm" = (
+/area/crew_quarters/heads/hop)
+"aIl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -18475,8 +17677,8 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aIn" = (
+/area/crew_quarters/heads/hop)
+"aIm" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -18488,8 +17690,8 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aIo" = (
+/area/crew_quarters/heads/hop)
+"aIn" = (
/obj/structure/bed/dogbed,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -18503,8 +17705,8 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aIp" = (
+/area/crew_quarters/heads/hop)
+"aIo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -18515,8 +17717,8 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aIq" = (
+/area/crew_quarters/heads/hop)
+"aIp" = (
/obj/machinery/door/airlock/glass_command{
cyclelinkeddir = null;
name = "Head of Personnel's Office";
@@ -18532,8 +17734,8 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aIr" = (
+/area/crew_quarters/heads/hop)
+"aIq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -18541,7 +17743,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aIs" = (
+"aIr" = (
/obj/machinery/light,
/obj/item/weapon/twohanded/required/kirbyplants{
tag = "icon-plant-21";
@@ -18554,7 +17756,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aIt" = (
+"aIs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -18562,7 +17764,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aIu" = (
+"aIt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -18571,7 +17773,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aIv" = (
+"aIu" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -18585,7 +17787,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aIw" = (
+"aIv" = (
/obj/machinery/camera{
c_tag = "Bridge Midway 2";
dir = 1;
@@ -18596,7 +17798,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aIx" = (
+"aIw" = (
/obj/machinery/light,
/obj/item/weapon/twohanded/required/kirbyplants{
tag = "icon-plant-21";
@@ -18606,7 +17808,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aIy" = (
+"aIx" = (
/obj/structure/table,
/obj/item/stack/sheet/metal/fifty,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -18615,7 +17817,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aIz" = (
+"aIy" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -18625,13 +17827,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aIA" = (
+"aIz" = (
/mob/living/simple_animal/sloth/paperwork,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aIB" = (
+"aIA" = (
/obj/machinery/door/airlock/glass_security{
name = "Security Office";
req_access_txt = "63"
@@ -18640,19 +17842,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aIC" = (
+"aIB" = (
/turf/open/floor/plasteel/red/side{
icon_state = "red";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aID" = (
+"aIC" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aIE" = (
+"aID" = (
/obj/machinery/airalarm{
dir = 8;
icon_state = "alarm0";
@@ -18664,7 +17866,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aIF" = (
+"aIE" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -18689,7 +17891,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aIG" = (
+"aIF" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -18704,10 +17906,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aIH" = (
+/area/maintenance/asteroid/fore/com_west)
+"aIG" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -18720,10 +17920,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aII" = (
+/area/maintenance/asteroid/fore/com_west)
+"aIH" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -18736,10 +17934,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aIJ" = (
+/area/maintenance/asteroid/fore/com_west)
+"aII" = (
/obj/structure/cable/orange{
d2 = 8;
icon_state = "0-8"
@@ -18758,8 +17954,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/detectives_office)
-"aIK" = (
+/area/maintenance/asteroid/fore/com_west)
+"aIJ" = (
/obj/machinery/airalarm{
dir = 4;
icon_state = "alarm0";
@@ -18769,12 +17965,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aIL" = (
+"aIK" = (
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aIM" = (
+"aIL" = (
/obj/structure/chair{
dir = 4
},
@@ -18783,7 +17979,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aIN" = (
+"aIM" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/fancy/cigarettes,
/obj/item/clothing/glasses/sunglasses,
@@ -18792,7 +17988,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aIO" = (
+"aIN" = (
/obj/structure/chair/comfy/brown{
dir = 8
},
@@ -18801,7 +17997,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aIP" = (
+"aIO" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -18812,7 +18008,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aIQ" = (
+"aIP" = (
/obj/structure/rack,
/obj/item/weapon/storage/briefcase,
/obj/item/weapon/storage/briefcase,
@@ -18825,19 +18021,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aIR" = (
+"aIQ" = (
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aIS" = (
+"aIR" = (
/obj/structure/table/wood,
/obj/structure/disposalpipe/segment,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aIT" = (
+"aIS" = (
/obj/structure/table/wood,
/obj/item/weapon/book/manual/wiki/security_space_law,
/obj/structure/cable/orange{
@@ -18849,7 +18045,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aIU" = (
+"aIT" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -18857,20 +18053,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aIV" = (
+"aIU" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/poddoor/preopen{
id = "frontbrig";
+ layer = 2.6;
name = "Emergency External Blast Doors"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aIW" = (
+"aIV" = (
/obj/structure/chair{
dir = 1
},
@@ -18884,8 +18081,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/crew_quarters/courtroom)
-"aIX" = (
+/area/security/courtroom)
+"aIW" = (
/obj/structure/chair{
dir = 1
},
@@ -18894,8 +18091,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/crew_quarters/courtroom)
-"aIY" = (
+/area/security/courtroom)
+"aIX" = (
/obj/structure/chair{
dir = 1
},
@@ -18903,14 +18100,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/crew_quarters/courtroom)
-"aIZ" = (
+/area/security/courtroom)
+"aIY" = (
/turf/open/floor/plasteel/vault{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/crew_quarters/courtroom)
-"aJa" = (
+/area/security/courtroom)
+"aIZ" = (
/obj/structure/chair{
dir = 1
},
@@ -18919,8 +18116,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/crew_quarters/courtroom)
-"aJb" = (
+/area/security/courtroom)
+"aJa" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -18931,10 +18128,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aJc" = (
+/area/maintenance/asteroid/fore/com_north)
+"aJb" = (
/obj/machinery/button/door{
id = "b3";
name = "Privacy Bolts";
@@ -18946,7 +18141,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aJd" = (
+"aJc" = (
/obj/structure/sign/poster/random{
name = "random official poster";
pixel_x = -32;
@@ -18956,12 +18151,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aJe" = (
+"aJd" = (
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aJf" = (
+"aJe" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
/obj/item/device/radio/intercom{
@@ -18973,7 +18168,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aJg" = (
+"aJf" = (
/turf/open/floor/plasteel/neutral/side{
tag = "icon-neutral (EAST)";
icon_state = "neutral";
@@ -18981,32 +18176,32 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aJh" = (
+"aJg" = (
/obj/structure/closet/wardrobe/grey,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aJi" = (
+"aJh" = (
/obj/structure/dresser,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aJj" = (
+/area/crew_quarters/heads/hop)
+"aJi" = (
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aJk" = (
+/area/crew_quarters/heads/hop)
+"aJj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aJl" = (
+/area/crew_quarters/heads/hop)
+"aJk" = (
/obj/machinery/door/airlock/command{
name = "Head of Personnel's Private Quarters";
req_access = null;
@@ -19018,8 +18213,8 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aJm" = (
+/area/crew_quarters/heads/hop)
+"aJl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -19030,8 +18225,8 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aJn" = (
+/area/crew_quarters/heads/hop)
+"aJm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -19042,8 +18237,8 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aJo" = (
+/area/crew_quarters/heads/hop)
+"aJn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -19053,8 +18248,8 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aJp" = (
+/area/crew_quarters/heads/hop)
+"aJo" = (
/obj/machinery/light{
dir = 1
},
@@ -19067,8 +18262,8 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aJq" = (
+/area/crew_quarters/heads/hop)
+"aJp" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -19079,14 +18274,14 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aJr" = (
+/area/crew_quarters/heads/hop)
+"aJq" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/darkblue/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aJs" = (
+"aJr" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -19097,13 +18292,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aJt" = (
+"aJs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/darkblue/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aJu" = (
+"aJt" = (
/obj/structure/cable/orange{
d2 = 4;
icon_state = "0-4"
@@ -19122,17 +18317,13 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aJv" = (
+/area/maintenance/asteroid/fore/com_east)
+"aJu" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Cargo Quantum Pad"
- })
-"aJw" = (
+/area/teleporter/quantum/cargo)
+"aJv" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -19140,10 +18331,8 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Cargo Quantum Pad"
- })
-"aJx" = (
+/area/teleporter/quantum/cargo)
+"aJw" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -19152,7 +18341,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aJy" = (
+"aJx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -19160,7 +18349,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aJz" = (
+"aJy" = (
/obj/machinery/photocopier,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -19169,7 +18358,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aJA" = (
+"aJz" = (
/obj/machinery/computer/cargo,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -19179,7 +18368,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aJB" = (
+"aJA" = (
/obj/structure/chair/office/dark,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -19189,7 +18378,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aJC" = (
+"aJB" = (
/obj/structure/table,
/obj/machinery/computer/stockexchange,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -19199,7 +18388,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aJD" = (
+"aJC" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -19208,7 +18397,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aJE" = (
+"aJD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -19217,18 +18406,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aJF" = (
+"aJE" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aJG" = (
+"aJF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -19239,7 +18428,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aJH" = (
+"aJG" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -19261,14 +18450,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aJI" = (
+"aJH" = (
/obj/structure/filingcabinet,
/obj/machinery/light,
/turf/open/floor/plasteel/red/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aJJ" = (
+"aJI" = (
/obj/structure/table,
/obj/machinery/recharger,
/obj/machinery/newscaster/security_unit{
@@ -19278,7 +18467,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aJK" = (
+"aJJ" = (
/obj/machinery/camera{
c_tag = "Cargo Security Checkpoint";
dir = 8;
@@ -19291,7 +18480,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aJL" = (
+"aJK" = (
/obj/machinery/light/small{
dir = 4
},
@@ -19300,24 +18489,18 @@
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aJM" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"aJL" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating/asteroid,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aJN" = (
+/area/maintenance/asteroid/fore/com_west)
+"aJM" = (
/obj/machinery/light/small,
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aJO" = (
+/area/maintenance/asteroid/fore/com_west)
+"aJN" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/box/evidence,
/obj/item/weapon/hand_labeler,
@@ -19334,14 +18517,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aJP" = (
+"aJO" = (
/obj/structure/disposalpipe/segment,
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aJQ" = (
+"aJP" = (
/obj/structure/table/wood,
/obj/machinery/computer/med_data/laptop,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -19349,12 +18532,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aJR" = (
+"aJQ" = (
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aJS" = (
+"aJR" = (
/obj/machinery/airalarm{
dir = 4;
icon_state = "alarm0";
@@ -19366,7 +18549,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aJT" = (
+"aJS" = (
/obj/structure/chair/office/dark{
dir = 8
},
@@ -19380,14 +18563,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aJU" = (
+"aJT" = (
/obj/structure/filingcabinet,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aJV" = (
+"aJU" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -19396,7 +18579,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aJW" = (
+"aJV" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -19412,7 +18595,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aJX" = (
+"aJW" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -19423,13 +18606,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aJY" = (
+"aJX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aJZ" = (
+"aJY" = (
/turf/open/floor/plasteel/red/corner{
tag = "icon-redcorner (EAST)";
icon_state = "redcorner";
@@ -19437,7 +18620,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aKa" = (
+"aJZ" = (
/obj/machinery/light{
dir = 4
},
@@ -19449,7 +18632,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aKb" = (
+"aKa" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -19457,7 +18640,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aKc" = (
+"aKb" = (
/obj/structure/table,
/obj/structure/bedsheetbin,
/obj/machinery/light{
@@ -19471,7 +18654,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aKd" = (
+"aKc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -19479,7 +18662,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aKe" = (
+"aKd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -19488,7 +18671,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aKf" = (
+"aKe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -19499,7 +18682,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aKg" = (
+"aKf" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -19509,7 +18692,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aKh" = (
+"aKg" = (
/obj/structure/closet/wardrobe/mixed,
/obj/machinery/light{
dir = 4
@@ -19518,20 +18701,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aKi" = (
+"aKh" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aKj" = (
+/area/crew_quarters/heads/hop)
+"aKi" = (
/obj/structure/chair,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aKk" = (
+/area/crew_quarters/heads/hop)
+"aKj" = (
/obj/machinery/light/small{
dir = 4
},
@@ -19539,13 +18722,13 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aKl" = (
+/area/crew_quarters/heads/hop)
+"aKk" = (
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aKm" = (
+/area/crew_quarters/heads/hop)
+"aKl" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1
@@ -19553,8 +18736,8 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aKn" = (
+/area/crew_quarters/heads/hop)
+"aKm" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -19562,19 +18745,18 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aKo" = (
+/area/crew_quarters/heads/hop)
+"aKn" = (
/obj/structure/sign/map/left/ceres{
pixel_y = 32
},
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aKp" = (
+/area/crew_quarters/heads/hop)
+"aKo" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -19587,33 +18769,32 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/poddoor/preopen{
id = "bridge";
+ layer = 2.6;
name = "Emergency Blast Door"
},
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/bridge)
-"aKq" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"aKr" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"aKs" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Cargo Quantum Pad"
- })
-"aKt" = (
+/area/bridge)
+"aKp" = (
+/turf/closed/wall{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/fore)
+"aKq" = (
+/turf/closed/wall/rust{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/fore)
+"aKr" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/teleporter/quantum/cargo)
+"aKs" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
@@ -19629,10 +18810,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Cargo Quantum Pad"
- })
-"aKu" = (
+/area/teleporter/quantum/cargo)
+"aKt" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -19648,10 +18827,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Cargo Quantum Pad"
- })
-"aKv" = (
+/area/teleporter/quantum/cargo)
+"aKu" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
},
@@ -19663,10 +18840,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Cargo Quantum Pad"
- })
-"aKw" = (
+/area/teleporter/quantum/cargo)
+"aKv" = (
/obj/machinery/door/airlock/glass_mining{
name = "Cargo Office";
req_access_txt = "0";
@@ -19678,24 +18853,26 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aKx" = (
+"aKw" = (
/obj/machinery/mineral/ore_redemption,
/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aKy" = (
+"aKx" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/northright{
name = "Cargo Desk";
req_one_access_txt = "50;48"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aKz" = (
+"aKy" = (
/obj/structure/disposalpipe/trunk,
/obj/machinery/disposal/deliveryChute{
tag = "icon-intake (NORTH)";
@@ -19703,10 +18880,8 @@
dir = 1
},
/turf/open/floor/plating/airless,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aKA" = (
+/area/maintenance/asteroid/fore/com_west)
+"aKz" = (
/obj/structure/table/wood,
/obj/item/device/tape/random,
/obj/item/device/tape/random{
@@ -19720,13 +18895,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aKB" = (
+"aKA" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aKC" = (
+"aKB" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -19734,7 +18909,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aKD" = (
+"aKC" = (
/obj/structure/table/wood,
/obj/item/device/camera/detective,
/obj/item/weapon/lighter,
@@ -19742,7 +18917,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aKE" = (
+"aKD" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -19754,7 +18929,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aKF" = (
+"aKE" = (
/obj/machinery/light{
dir = 8
},
@@ -19762,7 +18937,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aKG" = (
+"aKF" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/red{
pixel_x = 8;
@@ -19777,7 +18952,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aKH" = (
+"aKG" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -19787,7 +18962,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aKI" = (
+"aKH" = (
/obj/machinery/photocopier,
/obj/machinery/light{
dir = 4;
@@ -19798,7 +18973,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aKJ" = (
+"aKI" = (
/obj/machinery/light/small{
dir = 8
},
@@ -19815,7 +18990,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aKK" = (
+"aKJ" = (
/obj/machinery/door/airlock{
id_tag = "b2"
},
@@ -19823,7 +18998,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aKL" = (
+"aKK" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1
@@ -19832,7 +19007,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aKM" = (
+"aKL" = (
/obj/structure/sink{
dir = 4;
icon_state = "sink";
@@ -19850,7 +19025,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aKN" = (
+"aKM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -19858,7 +19033,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aKO" = (
+"aKN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -19866,7 +19041,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aKP" = (
+"aKO" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -19874,7 +19049,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aKQ" = (
+"aKP" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -19883,7 +19058,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aKR" = (
+"aKQ" = (
/obj/structure/closet/wardrobe/mixed,
/obj/structure/sign/poster/random{
name = "random official poster";
@@ -19894,20 +19069,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aKS" = (
+"aKR" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aKT" = (
+/area/crew_quarters/heads/hop)
+"aKS" = (
/obj/structure/table/wood,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aKU" = (
+/area/crew_quarters/heads/hop)
+"aKT" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -19915,18 +19090,21 @@
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aKV" = (
+/area/crew_quarters/heads/hop)
+"aKU" = (
/obj/structure/table,
/obj/item/weapon/folder/red{
pixel_x = 8;
pixel_y = 6
},
+/obj/machinery/keycard_auth{
+ pixel_x = -24
+ },
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aKW" = (
+/area/crew_quarters/heads/hop)
+"aKV" = (
/obj/structure/table,
/obj/machinery/camera{
c_tag = "Head of Personnel's Office";
@@ -19938,28 +19116,28 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aKX" = (
+/area/crew_quarters/heads/hop)
+"aKW" = (
/obj/structure/filingcabinet,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aKY" = (
+/area/crew_quarters/heads/hop)
+"aKX" = (
/obj/structure/table,
/obj/item/weapon/paper_bin,
/obj/item/weapon/stamp/hop,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aKZ" = (
+/area/crew_quarters/heads/hop)
+"aKY" = (
/obj/machinery/computer/card,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aLa" = (
+/area/crew_quarters/heads/hop)
+"aKZ" = (
/obj/structure/chair/comfy,
/obj/machinery/button/flasher{
id = "hopflash";
@@ -19984,8 +19162,8 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aLb" = (
+/area/crew_quarters/heads/hop)
+"aLa" = (
/obj/item/weapon/twohanded/required/kirbyplants{
tag = "icon-plant-21";
icon_state = "plant-21"
@@ -19996,7 +19174,7 @@
tag = "icon-darkblue (WEST)"
},
/area/bridge)
-"aLc" = (
+"aLb" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -20006,7 +19184,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aLd" = (
+"aLc" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -20017,7 +19195,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aLe" = (
+"aLd" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -20038,7 +19216,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aLf" = (
+"aLe" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -20049,7 +19227,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aLg" = (
+"aLf" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -20059,7 +19237,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aLh" = (
+"aLg" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -20075,16 +19253,14 @@
tag = "icon-darkblue (EAST)"
},
/area/bridge)
-"aLi" = (
+"aLh" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aLj" = (
+/area/maintenance/asteroid/fore/com_east)
+"aLi" = (
/obj/machinery/camera{
c_tag = "Command SMES";
dir = 6;
@@ -20093,10 +19269,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aLk" = (
+/area/maintenance/asteroid/fore/com_east)
+"aLj" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -20108,10 +19282,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aLl" = (
+/area/maintenance/asteroid/fore/com_east)
+"aLk" = (
/obj/machinery/power/smes/engineering,
/obj/structure/cable/orange{
d2 = 8;
@@ -20120,10 +19292,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aLm" = (
+/area/maintenance/asteroid/fore/com_east)
+"aLl" = (
/obj/structure/table,
/obj/machinery/light/small{
dir = 8
@@ -20132,25 +19302,25 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aLn" = (
+"aLm" = (
/obj/structure/table,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aLo" = (
+"aLn" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aLp" = (
+"aLo" = (
/obj/structure/tank_dispenser/oxygen,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aLq" = (
+"aLp" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -20166,18 +19336,14 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Cargo Quantum Pad"
- })
-"aLr" = (
+/area/teleporter/quantum/cargo)
+"aLq" = (
/obj/machinery/quantumpad,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Cargo Quantum Pad"
- })
-"aLs" = (
+/area/teleporter/quantum/cargo)
+"aLr" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -20196,10 +19362,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Cargo Quantum Pad"
- })
-"aLt" = (
+/area/teleporter/quantum/cargo)
+"aLs" = (
/obj/structure/chair{
dir = 4
},
@@ -20213,7 +19377,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aLu" = (
+"aLt" = (
/obj/machinery/light{
dir = 1
},
@@ -20227,7 +19391,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aLv" = (
+"aLu" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -20240,21 +19404,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
+"aLv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown/corner{
+ tag = "icon-browncorner (EAST)";
+ icon_state = "browncorner";
+ dir = 4;
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/quartermaster/office)
"aLw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/brown/corner{
- tag = "icon-browncorner (EAST)";
- icon_state = "browncorner";
- dir = 4;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/quartermaster/office)
-"aLx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -20269,7 +19433,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aLy" = (
+"aLx" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -20285,7 +19449,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aLz" = (
+"aLy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -20297,7 +19461,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aLA" = (
+"aLz" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -20309,7 +19473,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aLB" = (
+"aLA" = (
/obj/machinery/computer/cargo/request,
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -20322,15 +19486,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aLC" = (
+"aLB" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aLD" = (
+/area/maintenance/asteroid/fore/com_west)
+"aLC" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -20342,7 +19504,7 @@
},
/obj/machinery/power/apc{
dir = 8;
- name = "Fore Maintenance APC";
+ name = "Fore Maintenance West APC";
pixel_x = -25;
pixel_y = 1
},
@@ -20354,10 +19516,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aLE" = (
+/area/maintenance/asteroid/fore/com_west)
+"aLD" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -20366,10 +19526,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aLF" = (
+/area/maintenance/asteroid/fore/com_west)
+"aLE" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -20384,10 +19542,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aLG" = (
+/area/maintenance/asteroid/fore/com_west)
+"aLF" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -20401,10 +19557,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aLH" = (
+/area/maintenance/asteroid/fore/com_west)
+"aLG" = (
/obj/structure/rack,
/obj/item/weapon/storage/briefcase,
/obj/item/weapon/storage/briefcase,
@@ -20412,7 +19566,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aLI" = (
+"aLH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -20420,7 +19574,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aLJ" = (
+"aLI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -20428,7 +19582,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aLK" = (
+"aLJ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -20438,7 +19592,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aLL" = (
+"aLK" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -20450,7 +19604,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aLM" = (
+"aLL" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -20464,7 +19618,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aLN" = (
+"aLM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -20472,8 +19626,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/crew_quarters/courtroom)
-"aLO" = (
+/area/security/courtroom)
+"aLN" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -20483,8 +19637,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/crew_quarters/courtroom)
-"aLP" = (
+/area/security/courtroom)
+"aLO" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -20495,8 +19649,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/crew_quarters/courtroom)
-"aLQ" = (
+/area/security/courtroom)
+"aLP" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -20504,8 +19658,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/crew_quarters/courtroom)
-"aLR" = (
+/area/security/courtroom)
+"aLQ" = (
/obj/machinery/camera{
c_tag = "Courtroom Jury East";
dir = 9;
@@ -20515,8 +19669,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/crew_quarters/courtroom)
-"aLS" = (
+/area/security/courtroom)
+"aLR" = (
/obj/machinery/door/airlock{
name = "Bathroom"
},
@@ -20524,7 +19678,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aLT" = (
+"aLS" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1
@@ -20533,7 +19687,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aLU" = (
+"aLT" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
},
@@ -20544,7 +19698,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aLV" = (
+"aLU" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -20555,7 +19709,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aLW" = (
+"aLV" = (
/obj/structure/closet/wardrobe/mixed,
/obj/machinery/camera{
c_tag = "Dorm Lockers";
@@ -20566,33 +19720,33 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aLX" = (
+"aLW" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters/preopen{
id = "hopshutter"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aLY" = (
+/area/crew_quarters/heads/hop)
+"aLX" = (
/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "hopshutter"
+ },
/obj/machinery/door/window/northleft{
layer = 2.9;
level = 2;
name = "Desk Door";
req_access_txt = "57"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "hopshutter"
- },
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aLZ" = (
+/area/crew_quarters/heads/hop)
+"aLY" = (
/obj/machinery/light{
dir = 8
},
@@ -20602,7 +19756,7 @@
tag = "icon-darkblue (WEST)"
},
/area/bridge)
-"aMa" = (
+"aLZ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -20611,7 +19765,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aMb" = (
+"aMa" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -20620,7 +19774,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aMc" = (
+"aMb" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -20634,7 +19788,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aMd" = (
+"aMc" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -20642,7 +19796,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aMe" = (
+"aMd" = (
/obj/machinery/light{
dir = 4
},
@@ -20652,16 +19806,14 @@
tag = "icon-darkblue (EAST)"
},
/area/bridge)
-"aMf" = (
+"aMe" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aMg" = (
+/area/maintenance/asteroid/fore/com_east)
+"aMf" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -20670,10 +19822,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aMh" = (
+/area/maintenance/asteroid/fore/com_east)
+"aMg" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -20683,10 +19833,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aMi" = (
+/area/maintenance/asteroid/fore/com_east)
+"aMh" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -20701,10 +19849,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aMj" = (
+/area/maintenance/asteroid/fore/com_east)
+"aMi" = (
/obj/machinery/power/terminal{
icon_state = "term";
dir = 1
@@ -20716,21 +19862,19 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aMk" = (
+/area/maintenance/asteroid/fore/com_east)
+"aMj" = (
/obj/item/chair,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aMl" = (
+"aMk" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aMm" = (
+"aMl" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
@@ -20743,7 +19887,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aMn" = (
+"aMm" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
@@ -20764,19 +19908,15 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Cargo Quantum Pad"
- })
-"aMo" = (
+/area/teleporter/quantum/cargo)
+"aMn" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Cargo Quantum Pad"
- })
-"aMp" = (
+/area/teleporter/quantum/cargo)
+"aMo" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
@@ -20795,10 +19935,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Cargo Quantum Pad"
- })
-"aMq" = (
+/area/teleporter/quantum/cargo)
+"aMp" = (
/obj/structure/chair{
dir = 4
},
@@ -20810,7 +19948,7 @@
tag = "icon-browncorner (NORTH)"
},
/area/quartermaster/office)
-"aMr" = (
+"aMq" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -20823,17 +19961,16 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aMs" = (
+"aMr" = (
/obj/structure/rack,
/obj/item/clothing/suit/space/fragile,
/obj/item/clothing/head/helmet/space/fragile,
+/obj/item/weapon/pickaxe,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aMt" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"aMs" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -20847,10 +19984,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aMu" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"aMt" = (
/obj/machinery/power/apc{
dir = 4;
name = "Fore Asteroid Maintenance APC";
@@ -20869,18 +20004,14 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aMv" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"aMu" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aMw" = (
+/area/maintenance/asteroid/fore/com_west)
+"aMv" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -20890,10 +20021,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aMx" = (
+/area/maintenance/asteroid/fore/com_west)
+"aMw" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -20906,10 +20035,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aMy" = (
+/area/maintenance/asteroid/fore/com_west)
+"aMx" = (
/obj/machinery/door/airlock/maintenance{
name = "Security SMES Access";
req_access_txt = "10;11;12"
@@ -20922,10 +20049,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aMz" = (
+/area/maintenance/asteroid/fore/com_west)
+"aMy" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -20942,10 +20067,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aMA" = (
+/area/maintenance/asteroid/fore/com_west)
+"aMz" = (
/obj/machinery/power/terminal{
tag = "icon-term (EAST)";
icon_state = "term";
@@ -20959,17 +20082,15 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aMB" = (
+/area/maintenance/asteroid/fore/com_west)
+"aMA" = (
/obj/structure/table/wood,
/obj/item/device/taperecorder,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aMC" = (
+"aMB" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -20978,7 +20099,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aMD" = (
+"aMC" = (
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -20987,7 +20108,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aME" = (
+"aMD" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -20998,13 +20119,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aMF" = (
+"aME" = (
/obj/machinery/photocopier,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aMG" = (
+"aMF" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -21013,7 +20134,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aMH" = (
+"aMG" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -21026,7 +20147,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aMI" = (
+"aMH" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -21040,7 +20161,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aMJ" = (
+"aMI" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -21056,7 +20177,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aMK" = (
+"aMJ" = (
/obj/structure/closet/lawcloset,
/obj/machinery/firealarm{
dir = 1;
@@ -21066,7 +20187,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aML" = (
+"aMK" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -21075,7 +20196,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aMM" = (
+"aML" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -21085,15 +20206,15 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aMN" = (
+"aMM" = (
/obj/structure/table,
/obj/item/weapon/book/manual/wiki/security_space_law,
/turf/open/floor/plasteel/vault{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/crew_quarters/courtroom)
-"aMO" = (
+/area/security/courtroom)
+"aMN" = (
/obj/machinery/light,
/obj/structure/table,
/obj/machinery/firealarm{
@@ -21104,22 +20225,22 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/crew_quarters/courtroom)
-"aMP" = (
+/area/security/courtroom)
+"aMO" = (
/obj/structure/reagent_dispensers/water_cooler,
/turf/open/floor/plasteel/vault{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/crew_quarters/courtroom)
-"aMQ" = (
+/area/security/courtroom)
+"aMP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/vault{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/crew_quarters/courtroom)
-"aMR" = (
+/area/security/courtroom)
+"aMQ" = (
/obj/machinery/vending/coffee,
/obj/structure/extinguisher_cabinet{
pixel_y = -32
@@ -21128,17 +20249,15 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/crew_quarters/courtroom)
-"aMS" = (
+/area/security/courtroom)
+"aMR" = (
/obj/machinery/light/small,
/obj/structure/closet/emcloset,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aMT" = (
+/area/maintenance/asteroid/fore/com_north)
+"aMS" = (
/obj/machinery/light/small{
dir = 8
},
@@ -21155,7 +20274,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aMU" = (
+"aMT" = (
/obj/machinery/door/airlock{
id_tag = "b1"
},
@@ -21163,7 +20282,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aMV" = (
+"aMU" = (
/obj/machinery/airalarm{
dir = 8;
icon_state = "alarm0";
@@ -21179,7 +20298,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aMW" = (
+"aMV" = (
/obj/structure/table,
/obj/machinery/camera{
c_tag = "Dorm Laundry Room";
@@ -21191,13 +20310,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aMX" = (
+"aMW" = (
/obj/structure/table,
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aMY" = (
+"aMX" = (
/obj/structure/closet/crate/bin{
name = "laundry bin"
},
@@ -21205,7 +20324,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aMZ" = (
+"aMY" = (
/obj/machinery/light/small{
dir = 8
},
@@ -21220,16 +20339,16 @@
dir = 9;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aNa" = (
+/area/crew_quarters/heads/hop)
+"aMZ" = (
/turf/open/floor/plasteel/blue/side{
tag = "icon-blue (NORTH)";
icon_state = "blue";
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aNb" = (
+/area/crew_quarters/heads/hop)
+"aNa" = (
/obj/machinery/light/small{
dir = 4
},
@@ -21243,8 +20362,8 @@
dir = 5;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aNc" = (
+/area/crew_quarters/heads/hop)
+"aNb" = (
/obj/machinery/camera{
c_tag = "Bridge Midway 3";
dir = 1;
@@ -21257,7 +20376,7 @@
tag = "icon-darkblue (WEST)"
},
/area/bridge)
-"aNd" = (
+"aNc" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -21268,7 +20387,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aNe" = (
+"aNd" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -21283,10 +20402,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aNf" = (
+/area/maintenance/asteroid/fore/com_east)
+"aNe" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -21306,10 +20423,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aNg" = (
+/area/maintenance/asteroid/fore/com_east)
+"aNf" = (
/obj/structure/cable/orange{
d2 = 8;
icon_state = "0-8"
@@ -21318,10 +20433,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aNh" = (
+/area/maintenance/asteroid/fore/com_east)
+"aNg" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -21331,10 +20444,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aNi" = (
+/area/maintenance/asteroid/fore/cargo_west)
+"aNh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -21351,7 +20462,24 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
+"aNi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/fore)
"aNj" = (
+/obj/machinery/door/airlock/glass_external{
+ cyclelinkeddir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -21366,23 +20494,6 @@
},
/area/hallway/primary/fore)
"aNk" = (
-/obj/machinery/door/airlock/glass_external{
- cyclelinkeddir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"aNl" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -21398,7 +20509,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aNm" = (
+"aNl" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -21415,7 +20526,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aNn" = (
+"aNm" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
@@ -21427,14 +20538,14 @@
},
/turf/open/space,
/area/space)
-"aNo" = (
+"aNn" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/open/space,
/area/space)
-"aNp" = (
+"aNo" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 4
},
@@ -21444,10 +20555,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Cargo Quantum Pad"
- })
-"aNq" = (
+/area/teleporter/quantum/cargo)
+"aNp" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -21456,10 +20565,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Cargo Quantum Pad"
- })
-"aNr" = (
+/area/teleporter/quantum/cargo)
+"aNq" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -21469,10 +20576,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Cargo Quantum Pad"
- })
-"aNs" = (
+/area/teleporter/quantum/cargo)
+"aNr" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -21483,10 +20588,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/teleporter{
- name = "Cargo Quantum Pad"
- })
-"aNt" = (
+/area/teleporter/quantum/cargo)
+"aNs" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -21499,10 +20602,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/teleporter{
- name = "Cargo Quantum Pad"
- })
-"aNu" = (
+/area/teleporter/quantum/cargo)
+"aNt" = (
/obj/structure/table,
/obj/item/device/multitool,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -21511,10 +20612,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/teleporter{
- name = "Cargo Quantum Pad"
- })
-"aNv" = (
+/area/teleporter/quantum/cargo)
+"aNu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/brown/corner{
baseturf = /turf/open/floor/plating/asteroid/airless;
@@ -21522,7 +20621,7 @@
tag = "icon-browncorner (NORTH)"
},
/area/quartermaster/office)
-"aNw" = (
+"aNv" = (
/obj/structure/table,
/obj/structure/disposalpipe/segment,
/obj/item/device/radio/intercom{
@@ -21538,43 +20637,35 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aNx" = (
+"aNw" = (
/obj/effect/landmark/blobstart,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aNy" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"aNx" = (
/obj/structure/closet,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aNz" = (
+/area/maintenance/asteroid/fore/com_north)
+"aNy" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aNA" = (
+/area/maintenance/asteroid/fore/com_east)
+"aNz" = (
/obj/structure/girder,
/obj/structure/grille,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aNB" = (
+/area/maintenance/asteroid/fore/com_north)
+"aNA" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -21582,10 +20673,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aNC" = (
+/area/maintenance/asteroid/fore/com_west)
+"aNB" = (
/obj/machinery/door/airlock/maintenance{
name = "Security SMES Access";
req_access_txt = "10;11;12"
@@ -21593,10 +20682,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aND" = (
+/area/maintenance/asteroid/fore/com_west)
+"aNC" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -21608,10 +20695,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aNE" = (
+/area/maintenance/asteroid/fore/com_west)
+"aND" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -21626,10 +20711,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aNF" = (
+/area/maintenance/asteroid/fore/com_west)
+"aNE" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -21638,10 +20721,9 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aNG" = (
+"aNF" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d2 = 4;
icon_state = "0-4"
@@ -21650,11 +20732,12 @@
id = "lawyerexterior";
name = "privacy shutters"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aNH" = (
+"aNG" = (
/obj/machinery/door/airlock{
name = "Law Office";
req_access_txt = "38"
@@ -21673,10 +20756,9 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aNI" = (
+"aNH" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d2 = 8;
icon_state = "0-8"
@@ -21685,11 +20767,12 @@
id = "lawyerexterior";
name = "privacy shutters"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aNJ" = (
+"aNI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/airlock/glass{
name = "Brig Lobby"
@@ -21703,7 +20786,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aNK" = (
+"aNJ" = (
/obj/machinery/door/airlock/glass{
name = "Brig Lobby"
},
@@ -21711,15 +20794,15 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aNL" = (
+"aNK" = (
/obj/structure/grille,
-/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aNM" = (
+/area/security/courtroom)
+"aNL" = (
/obj/machinery/door/airlock/glass{
name = "Courtroom"
},
@@ -21727,17 +20810,17 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/crew_quarters/courtroom)
-"aNN" = (
+/area/security/courtroom)
+"aNM" = (
/obj/structure/grille,
-/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"aNO" = (
+/area/security/courtroom)
+"aNN" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/maintenance{
name = "Fore Asteroid Maintenance Access";
@@ -21751,10 +20834,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aNP" = (
+/area/maintenance/asteroid/fore/com_north)
+"aNO" = (
/obj/machinery/door/airlock/glass{
name = "Locker Room"
},
@@ -21764,16 +20845,16 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aNQ" = (
+"aNP" = (
/obj/structure/grille,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/window/fulltile,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aNR" = (
+"aNQ" = (
/obj/machinery/door/airlock/glass{
name = "Locker Room"
},
@@ -21781,27 +20862,28 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aNS" = (
+"aNR" = (
/obj/machinery/vending/cigarette,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aNT" = (
+"aNS" = (
/obj/machinery/vending/cola,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aNU" = (
+"aNT" = (
/obj/machinery/vending/snack,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aNV" = (
+"aNU" = (
/obj/machinery/door/poddoor/preopen{
- id = "hopexternal"
+ id = "hopexternal";
+ layer = 2.6
},
/turf/open/floor/plasteel/blue/corner{
tag = "icon-bluecorner (NORTH)";
@@ -21809,21 +20891,23 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aNW" = (
+/area/crew_quarters/heads/hop)
+"aNV" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/preopen{
- id = "hopexternal"
+ id = "hopexternal";
+ layer = 2.6
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aNX" = (
+/area/crew_quarters/heads/hop)
+"aNW" = (
/obj/machinery/door/poddoor/preopen{
- id = "hopexternal"
+ id = "hopexternal";
+ layer = 2.6
},
/turf/open/floor/plasteel/blue/corner{
tag = "icon-bluecorner (EAST)";
@@ -21831,8 +20915,8 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"aNY" = (
+/area/crew_quarters/heads/hop)
+"aNX" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -21842,7 +20926,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aNZ" = (
+"aNY" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -21855,10 +20939,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aOa" = (
+/area/maintenance/asteroid/fore/com_east)
+"aNZ" = (
/obj/machinery/door/airlock/maintenance{
name = "Fore Asteroid Maintenance Access";
req_access_txt = "12"
@@ -21871,10 +20953,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aOb" = (
+/area/maintenance/asteroid/fore/com_east)
+"aOa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -21890,7 +20970,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOc" = (
+"aOb" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -21899,7 +20979,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOd" = (
+"aOc" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -21915,10 +20995,8 @@
dir = 1
},
/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"aOe" = (
+/area/hallway/secondary/bridges/cargo_ai)
+"aOd" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -21935,28 +21013,22 @@
dir = 1
},
/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"aOf" = (
+/area/hallway/secondary/bridges/cargo_ai)
+"aOe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"aOg" = (
+/area/hallway/secondary/bridges/cargo_ai)
+"aOf" = (
/obj/structure/grille,
-/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Cargo Quantum Pad"
- })
-"aOh" = (
+/area/teleporter/quantum/cargo)
+"aOg" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -21970,21 +21042,17 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/teleporter{
- name = "Cargo Quantum Pad"
- })
-"aOi" = (
+/area/teleporter/quantum/cargo)
+"aOh" = (
/obj/structure/grille,
-/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Cargo Quantum Pad"
- })
-"aOj" = (
+/area/teleporter/quantum/cargo)
+"aOi" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -21997,31 +21065,29 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aOk" = (
-/obj/machinery/door/firedoor,
+/area/maintenance/asteroid/fore/cargo_west)
+"aOj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/brown/corner{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 1;
tag = "icon-browncorner (NORTH)"
},
/area/quartermaster/office)
-"aOl" = (
+"aOk" = (
/obj/structure/grille,
-/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aOm" = (
+"aOl" = (
/obj/structure/chair{
dir = 8
},
@@ -22039,7 +21105,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aOn" = (
+"aOm" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -22048,15 +21114,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aOo" = (
+"aOn" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aOp" = (
+/area/maintenance/asteroid/fore/com_west)
+"aOo" = (
/obj/structure/disposalpipe/sortjunction{
dir = 2;
icon_state = "pipe-j2s";
@@ -22066,10 +21130,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aOq" = (
+/area/maintenance/asteroid/fore/com_west)
+"aOp" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -22078,10 +21140,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aOr" = (
+/area/maintenance/asteroid/fore/com_west)
+"aOq" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -22091,10 +21151,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aOs" = (
+/area/maintenance/asteroid/fore/com_north)
+"aOr" = (
/obj/machinery/door/airlock/maintenance{
name = "Port Asteroid Maintenance";
req_access_txt = "12"
@@ -22105,10 +21163,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aOt" = (
+/area/maintenance/asteroid/fore/com_west)
+"aOs" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -22119,10 +21175,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aOu" = (
+/area/maintenance/asteroid/fore/com_west)
+"aOt" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -22136,10 +21190,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aOv" = (
+/area/maintenance/asteroid/fore/com_west)
+"aOu" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -22148,8 +21200,8 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aOw" = (
+/area/hallway/primary/starboard/fore)
+"aOv" = (
/obj/machinery/camera{
c_tag = "Command Asteroid Hall 10";
dir = 6;
@@ -22167,7 +21219,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOx" = (
+"aOw" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -22180,7 +21232,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOy" = (
+"aOx" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 32
},
@@ -22196,7 +21248,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOz" = (
+"aOy" = (
/obj/machinery/camera{
c_tag = "Command Asteroid Hall 2";
dir = 6;
@@ -22217,7 +21269,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOA" = (
+"aOz" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -22233,7 +21285,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOB" = (
+"aOA" = (
/obj/machinery/light{
dir = 1
},
@@ -22252,7 +21304,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOC" = (
+"aOB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -22268,7 +21320,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOD" = (
+"aOC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -22288,7 +21340,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOE" = (
+"aOD" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -22304,7 +21356,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOF" = (
+"aOE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -22323,7 +21375,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOG" = (
+"aOF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -22344,7 +21396,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOH" = (
+"aOG" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -22368,7 +21420,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOI" = (
+"aOH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -22387,7 +21439,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOJ" = (
+"aOI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -22403,7 +21455,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOK" = (
+"aOJ" = (
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
@@ -22412,18 +21464,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
+"aOK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ tag = "icon-neutralcorner (EAST)";
+ icon_state = "neutralcorner";
+ dir = 4;
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/fore)
"aOL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/corner{
- tag = "icon-neutralcorner (EAST)";
- icon_state = "neutralcorner";
- dir = 4;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"aOM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -22431,7 +21483,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aON" = (
+"aOM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -22450,7 +21502,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOO" = (
+"aON" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -22467,7 +21519,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOP" = (
+"aOO" = (
/obj/machinery/light{
dir = 1
},
@@ -22481,7 +21533,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOQ" = (
+"aOP" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -22492,7 +21544,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOR" = (
+"aOQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -22507,7 +21559,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOS" = (
+"aOR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -22521,7 +21573,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOT" = (
+"aOS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -22540,7 +21592,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOU" = (
+"aOT" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j2";
@@ -22550,7 +21602,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOV" = (
+"aOU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -22563,7 +21615,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOW" = (
+"aOV" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -22574,7 +21626,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOX" = (
+"aOW" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -22591,11 +21643,10 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOY" = (
+"aOX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -22613,7 +21664,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOZ" = (
+"aOY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -22632,7 +21683,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPa" = (
+"aOZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -22651,7 +21702,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPb" = (
+"aPa" = (
/obj/machinery/light{
dir = 1
},
@@ -22668,7 +21719,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPc" = (
+"aPb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -22679,7 +21730,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPd" = (
+"aPc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -22698,7 +21749,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPe" = (
+"aPd" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -22717,7 +21768,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPf" = (
+"aPe" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -22737,7 +21788,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPg" = (
+"aPf" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -22759,7 +21810,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPh" = (
+"aPg" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -22773,7 +21824,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPi" = (
+"aPh" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -22794,23 +21845,23 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
+"aPi" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/blue/corner{
+ tag = "icon-bluecorner (EAST)";
+ icon_state = "bluecorner";
+ dir = 4;
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/fore)
"aPj" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/blue/corner{
- tag = "icon-bluecorner (EAST)";
- icon_state = "bluecorner";
- dir = 4;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"aPk" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -22829,7 +21880,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPl" = (
+"aPk" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -22848,7 +21899,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPm" = (
+"aPl" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -22864,7 +21915,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPn" = (
+"aPm" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -22890,7 +21941,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPo" = (
+"aPn" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -22911,7 +21962,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPp" = (
+"aPo" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -22927,7 +21978,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPq" = (
+"aPp" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -22944,7 +21995,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPr" = (
+"aPq" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -22960,7 +22011,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPs" = (
+"aPr" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -22976,7 +22027,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPt" = (
+"aPs" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -22995,7 +22046,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPu" = (
+"aPt" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -23011,7 +22062,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPv" = (
+"aPu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -23028,7 +22079,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPw" = (
+"aPv" = (
/obj/machinery/light{
dir = 1
},
@@ -23039,7 +22090,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPx" = (
+"aPw" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -23054,7 +22105,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPy" = (
+"aPx" = (
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
icon_state = "neutralcorner";
@@ -23062,7 +22113,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPz" = (
+"aPy" = (
/obj/machinery/camera{
c_tag = "Command Asteroid Hall 9";
dir = 6;
@@ -23075,7 +22126,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPA" = (
+"aPz" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -23088,7 +22139,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPB" = (
+"aPA" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 32
},
@@ -23099,7 +22150,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPC" = (
+"aPB" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
@@ -23108,12 +22159,10 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPD" = (
+"aPC" = (
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Engineering-Medical Bridge"
- })
-"aPE" = (
+/area/hallway/secondary/bridges/engi_med)
+"aPD" = (
/obj/machinery/door/airlock/glass,
/obj/structure/cable/orange{
d1 = 4;
@@ -23126,8 +22175,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aPF" = (
+/area/hallway/primary/starboard/fore)
+"aPE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -23143,8 +22192,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aPG" = (
+/area/hallway/primary/starboard/fore)
+"aPF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -23153,15 +22202,17 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
+ },
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
icon_state = "neutralcorner";
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aPH" = (
-/obj/machinery/door/firedoor,
+/area/hallway/primary/starboard/fore)
+"aPG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -23176,14 +22227,15 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
icon_state = "neutralcorner";
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aPI" = (
+/area/hallway/primary/starboard/fore)
+"aPH" = (
/obj/machinery/light{
dir = 1
},
@@ -23201,8 +22253,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aPJ" = (
+/area/hallway/primary/starboard/fore)
+"aPI" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -23222,8 +22274,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aPK" = (
+/area/hallway/primary/starboard/fore)
+"aPJ" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -23238,8 +22290,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aPL" = (
+/area/hallway/primary/starboard/fore)
+"aPK" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -23259,8 +22311,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aPM" = (
+/area/hallway/primary/starboard/fore)
+"aPL" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -23270,8 +22322,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aPN" = (
+/area/hallway/primary/starboard/fore)
+"aPM" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -23283,8 +22335,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aPO" = (
+/area/hallway/primary/starboard/fore)
+"aPN" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -23296,8 +22348,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aPP" = (
+/area/hallway/primary/starboard/fore)
+"aPO" = (
/obj/structure/chair{
dir = 8
},
@@ -23318,15 +22370,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aPQ" = (
+"aPP" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aPR" = (
+/area/maintenance/asteroid/fore/com_north)
+"aPQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -23336,10 +22386,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aPS" = (
+/area/maintenance/asteroid/fore/com_west)
+"aPR" = (
/obj/machinery/door/airlock/maintenance{
name = "Port Asteroid Maintenance";
req_access_txt = "12"
@@ -23353,10 +22401,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aPT" = (
+/area/maintenance/asteroid/fore/com_west)
+"aPS" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -23365,10 +22411,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aPU" = (
+/area/maintenance/asteroid/fore/com_west)
+"aPT" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/electrical{
pixel_x = 1;
@@ -23377,10 +22421,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aPV" = (
+/area/maintenance/asteroid/fore/com_west)
+"aPU" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -23392,10 +22434,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aPW" = (
+/area/maintenance/asteroid/fore/com_west)
+"aPV" = (
/obj/machinery/door/airlock/maintenance{
name = "Security SMES Access";
req_access_txt = "10;11;12"
@@ -23409,10 +22449,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aPX" = (
+/area/maintenance/asteroid/fore/com_west)
+"aPW" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -23423,7 +22461,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPY" = (
+"aPX" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -23437,7 +22475,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPZ" = (
+"aPY" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -23452,32 +22490,32 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
+"aPZ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/neutral{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/fore)
"aQa" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
"aQb" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"aQc" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -23488,7 +22526,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQd" = (
+"aQc" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -23502,7 +22540,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQe" = (
+"aQd" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -23513,7 +22551,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQf" = (
+"aQe" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -23526,13 +22564,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQg" = (
+"aQf" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -23544,7 +22581,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQh" = (
+"aQg" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -23559,21 +22596,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
+"aQh" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/neutral{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/fore)
"aQi" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"aQj" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -23584,12 +22621,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQk" = (
+"aQj" = (
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQl" = (
+"aQk" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
@@ -23597,19 +22634,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQm" = (
+"aQl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQn" = (
+"aQm" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQo" = (
+"aQn" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -23618,7 +22655,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQp" = (
+"aQo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -23628,7 +22665,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQq" = (
+"aQp" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1
@@ -23637,32 +22674,32 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQr" = (
-/obj/machinery/door/firedoor,
+"aQq" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQs" = (
+"aQr" = (
/obj/effect/landmark/lightsout,
/obj/machinery/holopad,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQt" = (
+"aQs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQu" = (
+"aQt" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -23673,7 +22710,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQv" = (
+"aQu" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -23684,13 +22721,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQw" = (
+"aQv" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQx" = (
+"aQw" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -23699,16 +22736,16 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aQy" = (
+/area/hallway/primary/starboard/fore)
+"aQx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aQz" = (
+/area/hallway/primary/starboard/fore)
+"aQy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
pixel_y = 0
@@ -23716,8 +22753,8 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aQA" = (
+/area/hallway/primary/starboard/fore)
+"aQz" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -23726,20 +22763,20 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aQB" = (
+/area/hallway/primary/starboard/fore)
+"aQA" = (
/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aQC" = (
+/area/hallway/primary/starboard/fore)
+"aQB" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aQD" = (
+/area/hallway/primary/starboard/fore)
+"aQC" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -23754,9 +22791,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aQE" = (
-/obj/machinery/door/firedoor,
+/area/hallway/primary/starboard/fore)
+"aQD" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -23768,21 +22804,22 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/quartermaster/office)
+"aQE" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
"aQF" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/quartermaster/office)
-"aQG" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -23793,7 +22830,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aQH" = (
+"aQG" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -23807,7 +22844,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aQI" = (
+"aQH" = (
/obj/machinery/door/airlock/maintenance{
name = "Fore Asteroid Maintenance Access";
req_access_txt = "12"
@@ -23820,10 +22857,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aQJ" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"aQI" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -23839,53 +22874,41 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aQK" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"aQJ" = (
/obj/structure/table,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aQL" = (
+/area/maintenance/asteroid/fore/com_west)
+"aQK" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aQM" = (
+/area/maintenance/asteroid/fore/com_north)
+"aQL" = (
/obj/structure/girder,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aQN" = (
+/area/maintenance/asteroid/fore/com_west)
+"aQM" = (
/obj/structure/girder,
/obj/structure/grille,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aQO" = (
+/area/maintenance/asteroid/fore/com_west)
+"aQN" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/item/weapon/stock_parts/cell/high,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aQP" = (
+/area/maintenance/asteroid/fore/com_west)
+"aQO" = (
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -23894,7 +22917,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQQ" = (
+"aQP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -23906,7 +22929,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQR" = (
+"aQQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -23919,7 +22942,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQS" = (
+"aQR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -23927,7 +22950,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQT" = (
+"aQS" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -23936,7 +22959,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQU" = (
+"aQT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -23944,7 +22967,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQV" = (
+"aQU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -23952,7 +22975,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQW" = (
+"aQV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -23978,7 +23001,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQX" = (
+"aQW" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -23986,7 +23009,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQY" = (
+"aQX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -23999,7 +23022,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQZ" = (
+"aQY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -24008,20 +23031,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRa" = (
+"aQZ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRb" = (
+"aRa" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRc" = (
+"aRb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -24033,8 +23056,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRd" = (
-/obj/machinery/door/firedoor,
+"aRc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -24044,11 +23066,12 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRe" = (
+"aRd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -24060,7 +23083,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRf" = (
+"aRe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -24078,7 +23101,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRg" = (
+"aRf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -24087,7 +23110,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRh" = (
+"aRg" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -24106,7 +23129,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRi" = (
+"aRh" = (
/obj/machinery/airalarm{
dir = 1;
pixel_y = -22
@@ -24118,7 +23141,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRj" = (
+"aRi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -24134,7 +23157,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRk" = (
+"aRj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -24160,7 +23183,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRl" = (
+"aRk" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=EngineeringMiddle";
@@ -24171,7 +23194,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRm" = (
+"aRl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -24186,7 +23209,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRn" = (
+"aRm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -24205,7 +23228,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRo" = (
+"aRn" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -24220,21 +23243,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
+"aRo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/fore)
"aRp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel/neutral/corner{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"aRq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -24252,7 +23275,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRr" = (
+"aRq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -24270,7 +23293,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRs" = (
+"aRr" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -24283,7 +23306,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRt" = (
+"aRs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -24291,40 +23314,40 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
+"aRt" = (
+/turf/open/floor/plasteel/neutral/corner{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/fore)
"aRu" = (
+/obj/machinery/light,
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
"aRv" = (
-/obj/machinery/light,
+/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
"aRw" = (
/obj/machinery/door/airlock/glass,
-/turf/open/floor/plasteel/neutral/corner{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"aRx" = (
-/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRy" = (
+"aRx" = (
/obj/machinery/light,
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aRz" = (
+/area/hallway/primary/starboard/fore)
+"aRy" = (
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -24334,15 +23357,15 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aRA" = (
+/area/hallway/primary/starboard/fore)
+"aRz" = (
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRB" = (
+"aRA" = (
/obj/machinery/camera{
c_tag = "Cargo Asteroid Hall 1";
dir = 1;
@@ -24354,8 +23377,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aRC" = (
+/area/hallway/primary/starboard/fore)
+"aRB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -24364,8 +23387,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aRD" = (
+/area/hallway/primary/starboard/fore)
+"aRC" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/obj/machinery/airalarm{
dir = 1;
@@ -24376,8 +23399,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aRE" = (
+/area/hallway/primary/starboard/fore)
+"aRD" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -24393,8 +23416,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aRF" = (
+/area/hallway/primary/starboard/fore)
+"aRE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -24405,8 +23428,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aRG" = (
+/area/hallway/primary/starboard/fore)
+"aRF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -24415,8 +23438,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aRH" = (
+/area/hallway/primary/starboard/fore)
+"aRG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -24429,8 +23452,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aRI" = (
+/area/hallway/primary/starboard/fore)
+"aRH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -24444,8 +23467,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aRJ" = (
+/area/hallway/primary/starboard/fore)
+"aRI" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -24471,8 +23494,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aRK" = (
+/area/hallway/primary/starboard/fore)
+"aRJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -24487,8 +23510,8 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aRL" = (
+/area/hallway/primary/starboard/fore)
+"aRK" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -24504,9 +23527,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aRM" = (
-/obj/machinery/door/firedoor,
+/area/hallway/primary/starboard/fore)
+"aRL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -24519,11 +23541,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aRN" = (
+"aRM" = (
/obj/structure/disposalpipe/segment,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -24532,30 +23555,24 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aRO" = (
+"aRN" = (
/obj/machinery/light/small,
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aRP" = (
+/area/maintenance/asteroid/fore/com_west)
+"aRO" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aRQ" = (
+/area/maintenance/asteroid/fore/com_west)
+"aRP" = (
/obj/structure/rack,
/turf/open/floor/plating/asteroid,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aRR" = (
+/area/maintenance/asteroid/fore/com_west)
+"aRQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -24570,25 +23587,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRS" = (
+"aRR" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Security Quantum Pad"
- })
-"aRT" = (
+/area/teleporter/quantum/security)
+"aRS" = (
/obj/structure/grille,
-/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Security Quantum Pad"
- })
-"aRU" = (
+/area/teleporter/quantum/security)
+"aRT" = (
/obj/machinery/door/airlock/glass{
name = "Security Quantum Pad"
},
@@ -24601,38 +23614,34 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/teleporter{
- name = "Security Quantum Pad"
- })
-"aRV" = (
+/area/teleporter/quantum/security)
+"aRU" = (
/obj/structure/grille,
-/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Security Quantum Pad"
- })
-"aRW" = (
+/area/teleporter/quantum/security)
+"aRV" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aRX" = (
+"aRW" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aRY" = (
+"aRX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aRZ" = (
+"aRY" = (
/obj/machinery/door/airlock{
name = "Custodial Closet";
req_access_txt = "26"
@@ -24648,7 +23657,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aSa" = (
+"aRZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -24656,7 +23665,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSb" = (
+"aSa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -24665,7 +23674,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSc" = (
+"aSb" = (
/obj/machinery/door/airlock/vault{
icon_state = "door_locked";
locked = 1;
@@ -24683,7 +23692,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSd" = (
+"aSc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -24692,18 +23701,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSe" = (
+"aSd" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSf" = (
+"aSe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/atmos{
name = "Command Atmospherics Checkpoint";
@@ -24716,7 +23725,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSg" = (
+"aSf" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -24732,7 +23741,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSh" = (
+"aSg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/maintenance/external{
name = "External Airlock Access";
@@ -24742,7 +23751,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSi" = (
+"aSh" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -24753,10 +23762,8 @@
/obj/structure/grille,
/obj/structure/window/reinforced,
/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"aSj" = (
+/area/hallway/secondary/bridges/cargo_ai)
+"aSi" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -24767,10 +23774,8 @@
/obj/structure/grille,
/obj/structure/window/reinforced,
/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"aSk" = (
+/area/hallway/secondary/bridges/cargo_ai)
+"aSj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/atmos{
name = "Cargo Atmospherics Checkpoint";
@@ -24779,8 +23784,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aSl" = (
+/area/hallway/primary/starboard/fore)
+"aSk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral/corner{
@@ -24789,8 +23794,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aSm" = (
+/area/hallway/primary/starboard/fore)
+"aSl" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -24800,25 +23805,25 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aSn" = (
-/obj/machinery/door/firedoor,
+/area/hallway/primary/starboard/fore)
+"aSm" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/brown/corner{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/quartermaster/office)
+"aSn" = (
/turf/open/floor/plasteel/brown/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
"aSo" = (
-/turf/open/floor/plasteel/brown/corner{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/quartermaster/office)
-"aSp" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -24827,7 +23832,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aSq" = (
+"aSp" = (
/obj/structure/disposalpipe/segment,
/obj/structure/rack,
/obj/item/weapon/storage/toolbox/electrical{
@@ -24837,10 +23842,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aSr" = (
+/area/maintenance/asteroid/fore/com_west)
+"aSq" = (
/obj/machinery/door/airlock/maintenance{
id_tag = "GulagCivExit2";
name = "Fore Asteroid Maintenance Access";
@@ -24849,10 +23852,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aSs" = (
+/area/maintenance/asteroid/fore/com_west)
+"aSr" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -24860,7 +23861,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSt" = (
+"aSs" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -24873,7 +23874,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSu" = (
+"aSt" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -24893,39 +23894,39 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSv" = (
-/obj/machinery/door/firedoor,
+"aSu" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSw" = (
-/obj/machinery/door/firedoor,
+"aSv" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSx" = (
-/obj/machinery/door/firedoor,
+"aSw" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSy" = (
+"aSx" = (
/obj/structure/table,
/obj/item/device/multitool,
/obj/item/device/radio/intercom{
@@ -24940,10 +23941,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/teleporter{
- name = "Security Quantum Pad"
- })
-"aSz" = (
+/area/teleporter/quantum/security)
+"aSy" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -24953,10 +23952,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/teleporter{
- name = "Security Quantum Pad"
- })
-"aSA" = (
+/area/teleporter/quantum/security)
+"aSz" = (
/obj/structure/noticeboard{
dir = 8;
pixel_x = 27;
@@ -24971,10 +23968,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/teleporter{
- name = "Security Quantum Pad"
- })
-"aSB" = (
+/area/teleporter/quantum/security)
+"aSA" = (
/obj/effect/turf_decal/stripes/asteroid/line{
icon_state = "ast_warn";
dir = 1
@@ -24992,10 +23987,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aSC" = (
+/area/maintenance/asteroid/fore/com_south)
+"aSB" = (
/obj/effect/turf_decal/stripes/asteroid/line{
icon_state = "ast_warn";
dir = 1
@@ -25008,10 +24001,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aSD" = (
+/area/maintenance/asteroid/fore/com_south)
+"aSC" = (
/obj/structure/cable/orange{
d2 = 8;
icon_state = "0-8"
@@ -25025,10 +24016,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aSE" = (
+/area/maintenance/asteroid/fore/com_south)
+"aSD" = (
/obj/structure/disposalpipe/trunk{
dir = 1
},
@@ -25039,7 +24028,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aSF" = (
+"aSE" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -25050,12 +24039,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aSG" = (
+"aSF" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aSH" = (
+"aSG" = (
/obj/structure/bed/dogbed,
/mob/living/simple_animal/hostile/lizard{
name = "Wags-His-Tail";
@@ -25065,7 +24054,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aSI" = (
+"aSH" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1
@@ -25075,7 +24064,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aSJ" = (
+"aSI" = (
/obj/vehicle/janicart,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -25087,7 +24076,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aSK" = (
+"aSJ" = (
/obj/structure/table,
/obj/item/weapon/storage/box/mousetraps,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -25103,7 +24092,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aSL" = (
+"aSK" = (
/obj/structure/table,
/obj/machinery/light{
dir = 1
@@ -25119,7 +24108,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aSM" = (
+"aSL" = (
/obj/machinery/light_switch{
pixel_y = 25
},
@@ -25130,7 +24119,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aSN" = (
+"aSM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/obj/structure/cable/orange{
@@ -25142,12 +24131,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aSO" = (
+"aSN" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/nuke_storage)
-"aSP" = (
+"aSO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/camera{
c_tag = "Vault Airlock";
@@ -25157,7 +24146,7 @@
/obj/machinery/holopad,
/turf/open/floor/plasteel/black,
/area/ai_monitored/nuke_storage)
-"aSQ" = (
+"aSP" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -25169,7 +24158,7 @@
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/nuke_storage)
-"aSR" = (
+"aSQ" = (
/obj/structure/table,
/obj/item/weapon/phone,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -25177,7 +24166,7 @@
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/nuke_storage)
-"aSS" = (
+"aSR" = (
/obj/structure/table,
/obj/item/weapon/wrench,
/obj/item/clothing/glasses/meson,
@@ -25188,7 +24177,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aST" = (
+"aSS" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
name = "Mix Output";
@@ -25201,7 +24190,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSU" = (
+"aST" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
},
@@ -25209,7 +24198,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSV" = (
+"aSU" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -25221,7 +24210,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSW" = (
+"aSV" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -25232,7 +24221,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSX" = (
+"aSW" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -25242,7 +24231,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSY" = (
+"aSX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -25250,7 +24239,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSZ" = (
+"aSY" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -25267,13 +24256,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTa" = (
+"aSZ" = (
/obj/structure/closet/firecloset/full,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTb" = (
+"aTa" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -25284,7 +24273,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTc" = (
+"aTb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -25292,7 +24281,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTd" = (
+"aTc" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 4
},
@@ -25303,7 +24292,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTe" = (
+"aTd" = (
/obj/machinery/light/small{
dir = 1
},
@@ -25315,7 +24304,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTf" = (
+"aTe" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
@@ -25323,14 +24312,14 @@
},
/turf/open/space,
/area/space)
-"aTg" = (
+"aTf" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
/turf/open/space,
/area/space)
-"aTh" = (
+"aTg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -25342,8 +24331,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aTi" = (
+/area/hallway/primary/starboard/fore)
+"aTh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -25354,8 +24343,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aTj" = (
+/area/hallway/primary/starboard/fore)
+"aTi" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -25365,8 +24354,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aTk" = (
+/area/hallway/primary/starboard/fore)
+"aTj" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
name = "Mix Input";
@@ -25378,8 +24367,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aTl" = (
+/area/hallway/primary/starboard/fore)
+"aTk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -25389,16 +24378,16 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aTm" = (
+/area/hallway/primary/starboard/fore)
+"aTl" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aTn" = (
+/area/hallway/primary/starboard/fore)
+"aTm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -25408,8 +24397,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aTo" = (
+/area/hallway/primary/starboard/fore)
+"aTn" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
name = "Mix Output";
@@ -25421,8 +24410,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aTp" = (
+/area/hallway/primary/starboard/fore)
+"aTo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -25430,8 +24419,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aTq" = (
+/area/hallway/primary/starboard/fore)
+"aTp" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -25444,10 +24433,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aTr" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"aTq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/camera{
c_tag = "Cargo Asteroid Hall 2";
@@ -25461,8 +24448,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aTs" = (
+/area/hallway/primary/starboard/fore)
+"aTr" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -25470,8 +24457,8 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aTt" = (
+/area/hallway/primary/starboard/fore)
+"aTs" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -25486,8 +24473,8 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aTu" = (
+/area/hallway/primary/starboard/fore)
+"aTt" = (
/obj/machinery/button/door{
id = "GulagCivExit2";
name = "Gulag Door Exit";
@@ -25501,10 +24488,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aTv" = (
+/area/maintenance/asteroid/fore/com_west)
+"aTu" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -25514,7 +24499,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTw" = (
+"aTv" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
@@ -25527,10 +24512,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Security Quantum Pad"
- })
-"aTx" = (
+/area/teleporter/quantum/security)
+"aTw" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -25542,10 +24525,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Security Quantum Pad"
- })
-"aTy" = (
+/area/teleporter/quantum/security)
+"aTx" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
},
@@ -25563,24 +24544,18 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Security Quantum Pad"
- })
-"aTz" = (
+/area/teleporter/quantum/security)
+"aTy" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aTA" = (
+/area/maintenance/asteroid/fore/com_east)
+"aTz" = (
/obj/structure/girder,
/obj/item/stack/sheet/metal,
/turf/open/floor/plating/asteroid,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aTB" = (
+/area/maintenance/asteroid/fore/com_north)
+"aTA" = (
/obj/structure/rack,
/obj/item/clothing/suit/space/fragile,
/obj/item/clothing/head/helmet/space/fragile,
@@ -25588,7 +24563,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aTC" = (
+"aTB" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -25597,7 +24572,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aTD" = (
+"aTC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
pixel_y = 0
@@ -25614,7 +24589,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aTE" = (
+"aTD" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -25627,7 +24602,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/nuke_storage)
-"aTF" = (
+"aTE" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -25642,7 +24617,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/nuke_storage)
-"aTG" = (
+"aTF" = (
/obj/machinery/light/small{
dir = 4
},
@@ -25656,7 +24631,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/nuke_storage)
-"aTH" = (
+"aTG" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
@@ -25672,7 +24647,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTI" = (
+"aTH" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -25680,7 +24655,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTJ" = (
+"aTI" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -25688,14 +24663,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTK" = (
+"aTJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/table,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTL" = (
+"aTK" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -25706,13 +24681,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTM" = (
+"aTL" = (
/obj/machinery/light/small,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTN" = (
+"aTM" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -25732,24 +24707,24 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aTO" = (
+/area/hallway/primary/starboard/fore)
+"aTN" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aTP" = (
+/area/hallway/primary/starboard/fore)
+"aTO" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aTQ" = (
+/area/hallway/primary/starboard/fore)
+"aTP" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -25764,26 +24739,22 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aTR" = (
+/area/hallway/primary/starboard/fore)
+"aTQ" = (
/obj/structure/disposalpipe/trunk{
dir = 1
},
/obj/structure/disposaloutlet,
/turf/open/floor/plating/airless,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aTS" = (
+/area/maintenance/asteroid/fore/com_west)
+"aTR" = (
/obj/machinery/light/small,
/obj/item/device/assembly/mousetrap/armed,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aTT" = (
+/area/maintenance/asteroid/fore/com_west)
+"aTS" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -25795,18 +24766,14 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Security Quantum Pad"
- })
-"aTU" = (
+/area/teleporter/quantum/security)
+"aTT" = (
/obj/machinery/quantumpad,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Security Quantum Pad"
- })
-"aTV" = (
+/area/teleporter/quantum/security)
+"aTU" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -25814,10 +24781,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Security Quantum Pad"
- })
-"aTW" = (
+/area/teleporter/quantum/security)
+"aTV" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -25825,10 +24790,8 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Security Quantum Pad"
- })
-"aTX" = (
+/area/teleporter/quantum/security)
+"aTW" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -25840,22 +24803,20 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aTY" = (
+/area/maintenance/asteroid/fore/com_south)
+"aTX" = (
/obj/structure/closet/jcloset,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aTZ" = (
+"aTY" = (
/obj/structure/chair/stool,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aUa" = (
+"aTZ" = (
/obj/item/weapon/mop,
/obj/item/weapon/reagent_containers/glass/bucket,
/obj/structure/disposalpipe/segment,
@@ -25863,7 +24824,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aUb" = (
+"aUa" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -25872,12 +24833,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/nuke_storage)
-"aUc" = (
+"aUb" = (
/turf/open/floor/plasteel/stairs{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/nuke_storage)
-"aUd" = (
+"aUc" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -25893,7 +24854,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/nuke_storage)
-"aUe" = (
+"aUd" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
@@ -25908,7 +24869,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUf" = (
+"aUe" = (
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
@@ -25919,7 +24880,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUg" = (
+"aUf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/table,
/obj/machinery/light/small{
@@ -25929,7 +24890,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUh" = (
+"aUg" = (
/obj/structure/table,
/obj/item/weapon/wrench,
/obj/item/clothing/glasses/meson,
@@ -25939,8 +24900,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aUi" = (
+/area/hallway/primary/starboard/fore)
+"aUh" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
},
@@ -25948,8 +24909,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aUj" = (
+/area/hallway/primary/starboard/fore)
+"aUi" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
},
@@ -25959,8 +24920,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aUk" = (
+/area/hallway/primary/starboard/fore)
+"aUj" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
},
@@ -25969,16 +24930,16 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aUl" = (
+/area/hallway/primary/starboard/fore)
+"aUk" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aUm" = (
+/area/hallway/primary/starboard/fore)
+"aUl" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -25990,8 +24951,8 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aUn" = (
+/area/hallway/primary/starboard/fore)
+"aUm" = (
/obj/machinery/camera{
c_tag = "Command Asteroid Hallway 1";
dir = 4;
@@ -26003,7 +24964,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUo" = (
+"aUn" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -26012,7 +24973,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUp" = (
+"aUo" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
@@ -26023,18 +24984,14 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Security Quantum Pad"
- })
-"aUq" = (
+/area/teleporter/quantum/security)
+"aUp" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Security Quantum Pad"
- })
-"aUr" = (
+/area/teleporter/quantum/security)
+"aUq" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
@@ -26051,10 +25008,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Security Quantum Pad"
- })
-"aUs" = (
+/area/teleporter/quantum/security)
+"aUr" = (
/obj/effect/turf_decal/stripes/asteroid/line,
/obj/structure/cable/orange{
d1 = 2;
@@ -26064,16 +25019,12 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aUt" = (
+/area/maintenance/asteroid/fore/com_south)
+"aUs" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating/asteroid,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aUu" = (
+/area/maintenance/asteroid/fore/com_south)
+"aUt" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -26091,7 +25042,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aUv" = (
+"aUu" = (
/obj/structure/table,
/obj/item/weapon/grenade/chem_grenade/cleaner,
/obj/item/weapon/grenade/chem_grenade/cleaner,
@@ -26109,7 +25060,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aUw" = (
+"aUv" = (
/obj/structure/table,
/obj/item/weapon/storage/box/lights/mixed,
/obj/item/weapon/storage/box/lights/mixed,
@@ -26120,13 +25071,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aUx" = (
+"aUw" = (
/obj/structure/reagent_dispensers/watertank/high,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aUy" = (
+"aUx" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -26135,7 +25086,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aUz" = (
+"aUy" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -26144,7 +25095,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aUA" = (
+"aUz" = (
/obj/structure/janitorialcart,
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -26154,13 +25105,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aUB" = (
+"aUA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/nuke_storage)
-"aUC" = (
+"aUB" = (
/obj/machinery/door/airlock/vault{
icon_state = "door_locked";
locked = 1;
@@ -26168,13 +25119,13 @@
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/nuke_storage)
-"aUD" = (
+"aUC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/nuke_storage)
-"aUE" = (
+"aUD" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
@@ -26186,13 +25137,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUF" = (
+"aUE" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUG" = (
+"aUF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -26203,7 +25154,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUH" = (
+"aUG" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -26214,7 +25165,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUI" = (
+"aUH" = (
/obj/machinery/camera{
c_tag = "Command Asteroid Hall 10";
dir = 8;
@@ -26224,13 +25175,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUJ" = (
+"aUI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUK" = (
+"aUJ" = (
/obj/structure/rack,
/obj/item/clothing/suit/space/fragile,
/obj/item/clothing/head/helmet/space/fragile,
@@ -26238,7 +25189,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUL" = (
+"aUK" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -26248,10 +25199,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aUM" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"aUL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 2;
@@ -26265,8 +25214,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aUN" = (
+/area/hallway/primary/starboard/fore)
+"aUM" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -26276,8 +25225,8 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aUO" = (
+/area/hallway/primary/starboard/fore)
+"aUN" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -26295,8 +25244,8 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aUP" = (
+/area/hallway/primary/starboard/fore)
+"aUO" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -26310,10 +25259,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aUQ" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"aUP" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -26328,10 +25275,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aUR" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"aUQ" = (
/obj/machinery/camera{
c_tag = "Cargo Bay SMES";
dir = 6;
@@ -26340,16 +25285,12 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aUS" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"aUR" = (
/obj/structure/closet,
/turf/open/floor/plating/asteroid,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aUT" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"aUS" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -26367,32 +25308,25 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUU" = (
+"aUT" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
-/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Security Quantum Pad"
- })
-"aUV" = (
+/area/teleporter/quantum/security)
+"aUU" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Command Asteroid Solar Maintenance"
- })
-"aUW" = (
+/area/maintenance/solars/asteroid/command)
+"aUV" = (
/turf/closed/wall/r_wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Command Asteroid Solar Maintenance"
- })
-"aUX" = (
+/area/maintenance/solars/asteroid/command)
+"aUW" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -26405,36 +25339,35 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Command Asteroid Solar Maintenance"
- })
-"aUY" = (
+/area/maintenance/solars/asteroid/command)
+"aUX" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aUZ" = (
+"aUY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
/area/ai_monitored/nuke_storage)
-"aVa" = (
+"aUZ" = (
/turf/open/floor/plasteel/black,
/area/ai_monitored/nuke_storage)
-"aVb" = (
+"aVa" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
/area/ai_monitored/nuke_storage)
-"aVc" = (
+"aVb" = (
/turf/open/space,
/area/mine/unexplored{
name = "Command Asteroid"
})
-"aVd" = (
+"aVc" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
@@ -26442,7 +25375,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVe" = (
+"aVd" = (
/obj/effect/turf_decal/stripes/line,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
@@ -26456,7 +25389,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVf" = (
+"aVe" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
name = "Mix Input";
@@ -26469,7 +25402,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVg" = (
+"aVf" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -26480,7 +25413,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVh" = (
+"aVg" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -26498,7 +25431,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVi" = (
+"aVh" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -26514,8 +25447,8 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aVj" = (
+/area/hallway/primary/starboard/fore)
+"aVi" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 2
},
@@ -26528,7 +25461,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVk" = (
+"aVj" = (
/obj/machinery/power/smes,
/obj/structure/cable/orange{
d2 = 4;
@@ -26537,10 +25470,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Command Asteroid Solar Maintenance"
- })
-"aVl" = (
+/area/maintenance/solars/asteroid/command)
+"aVk" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -26549,10 +25480,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Command Asteroid Solar Maintenance"
- })
-"aVm" = (
+/area/maintenance/solars/asteroid/command)
+"aVl" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -26569,10 +25498,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Command Asteroid Solar Maintenance"
- })
-"aVn" = (
+/area/maintenance/solars/asteroid/command)
+"aVm" = (
/obj/structure/closet/crate{
name = "Gold Crate"
},
@@ -26593,10 +25520,10 @@
},
/turf/open/floor/circuit,
/area/ai_monitored/nuke_storage)
-"aVo" = (
+"aVn" = (
/turf/open/floor/circuit,
/area/ai_monitored/nuke_storage)
-"aVp" = (
+"aVo" = (
/obj/structure/safe,
/obj/item/weapon/twohanded/fireaxe,
/obj/item/clothing/head/bearpelt,
@@ -26608,7 +25535,7 @@
},
/turf/open/floor/circuit,
/area/ai_monitored/nuke_storage)
-"aVq" = (
+"aVp" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 1
},
@@ -26617,7 +25544,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVr" = (
+"aVq" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 2
},
@@ -26632,7 +25559,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVs" = (
+"aVr" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -26643,10 +25570,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aVt" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"aVs" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line,
@@ -26663,21 +25588,21 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aVu" = (
-/obj/machinery/door/firedoor,
+/area/hallway/primary/starboard/fore)
+"aVt" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
icon_state = "neutralcorner";
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aVv" = (
+/area/hallway/primary/starboard/fore)
+"aVu" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -26689,10 +25614,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aVw" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"aVv" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -26706,7 +25629,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVx" = (
+"aVw" = (
/obj/machinery/power/terminal{
icon_state = "term";
dir = 1
@@ -26720,10 +25643,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Command Asteroid Solar Maintenance"
- })
-"aVy" = (
+/area/maintenance/solars/asteroid/command)
+"aVx" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -26732,10 +25653,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Command Asteroid Solar Maintenance"
- })
-"aVz" = (
+/area/maintenance/solars/asteroid/command)
+"aVy" = (
/obj/structure/cable/orange,
/obj/machinery/power/apc{
dir = 4;
@@ -26746,10 +25665,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Command Asteroid Solar Maintenance"
- })
-"aVA" = (
+/area/maintenance/solars/asteroid/command)
+"aVz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/light/small{
dir = 4
@@ -26758,7 +25675,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVB" = (
+"aVA" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -26773,21 +25690,17 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVC" = (
+"aVB" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Fore Asteroid Solar Maintenance"
- })
-"aVD" = (
+/area/maintenance/solars/asteroid/fore)
+"aVC" = (
/turf/closed/wall/r_wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Fore Asteroid Solar Maintenance"
- })
-"aVE" = (
+/area/maintenance/solars/asteroid/fore)
+"aVD" = (
/obj/machinery/door/airlock/maintenance{
name = "Fore Asteroid Solars";
req_access_txt = "10;11;12"
@@ -26800,10 +25713,8 @@
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Fore Asteroid Solar Maintenance"
- })
-"aVF" = (
+/area/maintenance/solars/asteroid/fore)
+"aVE" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -26814,8 +25725,8 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aVG" = (
+/area/hallway/primary/starboard/fore)
+"aVF" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -26829,35 +25740,27 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aVH" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"aVG" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aVI" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"aVH" = (
/obj/machinery/light/small,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aVJ" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"aVI" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aVK" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"aVJ" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 1
},
@@ -26870,7 +25773,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVL" = (
+"aVK" = (
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -26883,10 +25786,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Command Asteroid Solar Maintenance"
- })
-"aVM" = (
+/area/maintenance/solars/asteroid/command)
+"aVL" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -26900,23 +25801,19 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Command Asteroid Solar Maintenance"
- })
-"aVN" = (
+/area/maintenance/solars/asteroid/command)
+"aVM" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/electrical,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Command Asteroid Solar Maintenance"
- })
-"aVO" = (
+/area/maintenance/solars/asteroid/command)
+"aVN" = (
/obj/structure/grille,
/turf/open/space,
/area/space)
-"aVP" = (
+"aVO" = (
/obj/item/weapon/coin/silver{
pixel_x = 7;
pixel_y = 12
@@ -26945,11 +25842,11 @@
},
/turf/open/floor/circuit,
/area/ai_monitored/nuke_storage)
-"aVQ" = (
+"aVP" = (
/obj/machinery/nuclearbomb/selfdestruct,
/turf/open/floor/circuit,
/area/ai_monitored/nuke_storage)
-"aVR" = (
+"aVQ" = (
/obj/structure/filingcabinet,
/obj/item/weapon/folder/documents,
/obj/machinery/light{
@@ -26958,7 +25855,7 @@
},
/turf/open/floor/circuit,
/area/ai_monitored/nuke_storage)
-"aVS" = (
+"aVR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 1;
@@ -26969,7 +25866,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVT" = (
+"aVS" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 1
},
@@ -26984,7 +25881,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVU" = (
+"aVT" = (
/obj/machinery/power/smes,
/obj/structure/cable/orange{
d2 = 4;
@@ -26993,10 +25890,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Fore Asteroid Solar Maintenance"
- })
-"aVV" = (
+/area/maintenance/solars/asteroid/fore)
+"aVU" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -27005,10 +25900,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Fore Asteroid Solar Maintenance"
- })
-"aVW" = (
+/area/maintenance/solars/asteroid/fore)
+"aVV" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -27025,10 +25918,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Fore Asteroid Solar Maintenance"
- })
-"aVX" = (
+/area/maintenance/solars/asteroid/fore)
+"aVW" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -27043,8 +25934,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aVY" = (
+/area/hallway/primary/starboard/fore)
+"aVX" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -27061,8 +25952,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aVZ" = (
+/area/hallway/primary/starboard/fore)
+"aVY" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -27078,8 +25969,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aWa" = (
+/area/hallway/primary/starboard/fore)
+"aVZ" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -27088,10 +25979,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aWb" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"aWa" = (
/obj/machinery/power/terminal{
tag = "icon-term (EAST)";
icon_state = "term";
@@ -27107,10 +25996,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aWc" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"aWb" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 1;
@@ -27119,7 +26006,7 @@
},
/turf/open/space,
/area/space)
-"aWd" = (
+"aWc" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 4;
@@ -27136,10 +26023,8 @@
dir = 8
},
/turf/open/space,
-/area/construction/hallway{
- name = "Command-Service Bridge"
- })
-"aWe" = (
+/area/hallway/secondary/bridges/com_serv)
+"aWd" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 8
@@ -27150,20 +26035,15 @@
pixel_x = 0
},
/turf/open/space,
-/area/construction/hallway{
- name = "Command-Service Bridge"
- })
-"aWf" = (
+/area/hallway/secondary/bridges/com_serv)
+"aWe" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Command Asteroid Solar Maintenance"
- })
-"aWg" = (
+/area/maintenance/solars/asteroid/command)
+"aWf" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
name = "Solar Maintenance";
@@ -27178,10 +26058,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Command Asteroid Solar Maintenance"
- })
-"aWh" = (
+/area/maintenance/solars/asteroid/command)
+"aWg" = (
/obj/machinery/camera{
c_tag = "Vault";
dir = 5;
@@ -27189,11 +26067,11 @@
},
/turf/open/floor/circuit,
/area/ai_monitored/nuke_storage)
-"aWi" = (
+"aWh" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/black,
/area/ai_monitored/nuke_storage)
-"aWj" = (
+"aWi" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 4;
@@ -27207,10 +26085,8 @@
dir = 8
},
/turf/open/space,
-/area/construction/hallway{
- name = "Command-Engineering Bridge"
- })
-"aWk" = (
+/area/hallway/secondary/bridges/com_engi)
+"aWj" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 8
@@ -27229,10 +26105,8 @@
pixel_x = 0
},
/turf/open/space,
-/area/construction/hallway{
- name = "Command-Engineering Bridge"
- })
-"aWl" = (
+/area/hallway/secondary/bridges/com_engi)
+"aWk" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 1;
@@ -27244,7 +26118,7 @@
},
/turf/open/space,
/area/space)
-"aWm" = (
+"aWl" = (
/obj/machinery/power/terminal{
icon_state = "term";
dir = 1
@@ -27258,10 +26132,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Fore Asteroid Solar Maintenance"
- })
-"aWn" = (
+/area/maintenance/solars/asteroid/fore)
+"aWm" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -27270,10 +26142,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Fore Asteroid Solar Maintenance"
- })
-"aWo" = (
+/area/maintenance/solars/asteroid/fore)
+"aWn" = (
/obj/structure/cable/orange,
/obj/machinery/power/apc{
dir = 4;
@@ -27284,10 +26154,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Fore Asteroid Solar Maintenance"
- })
-"aWp" = (
+/area/maintenance/solars/asteroid/fore)
+"aWo" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -27297,8 +26165,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aWq" = (
+/area/hallway/primary/starboard/fore)
+"aWp" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -27311,23 +26179,21 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aWr" = (
+/area/hallway/primary/starboard/fore)
+"aWq" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aWs" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"aWr" = (
/obj/structure/girder,
/obj/structure/grille,
/turf/open/floor/plating/airless,
/area/space)
-"aWt" = (
+"aWs" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 4;
@@ -27344,10 +26210,8 @@
dir = 8
},
/turf/open/space,
-/area/construction/hallway{
- name = "Command-Service Bridge"
- })
-"aWu" = (
+/area/hallway/secondary/bridges/com_serv)
+"aWt" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -27356,28 +26220,26 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Command Asteroid Solar Maintenance"
- })
-"aWv" = (
+/area/maintenance/solars/asteroid/command)
+"aWu" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-09"
},
/turf/open/floor/circuit,
/area/ai_monitored/nuke_storage)
-"aWw" = (
+"aWv" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1
},
/turf/open/floor/circuit,
/area/ai_monitored/nuke_storage)
-"aWx" = (
+"aWw" = (
/obj/machinery/computer/bank_machine,
/obj/machinery/light,
/turf/open/floor/circuit,
/area/ai_monitored/nuke_storage)
-"aWy" = (
+"aWx" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 4;
@@ -27389,10 +26251,8 @@
dir = 8
},
/turf/open/space,
-/area/construction/hallway{
- name = "Command-Engineering Bridge"
- })
-"aWz" = (
+/area/hallway/secondary/bridges/com_engi)
+"aWy" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 8
@@ -27410,10 +26270,8 @@
pixel_x = 0
},
/turf/open/space,
-/area/construction/hallway{
- name = "Command-Engineering Bridge"
- })
-"aWA" = (
+/area/hallway/secondary/bridges/com_engi)
+"aWz" = (
/obj/machinery/power/solar_control{
id = "foresolar";
name = "Fore Asteroid Solar Control";
@@ -27426,10 +26284,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Fore Asteroid Solar Maintenance"
- })
-"aWB" = (
+/area/maintenance/solars/asteroid/fore)
+"aWA" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -27443,23 +26299,19 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Fore Asteroid Solar Maintenance"
- })
-"aWC" = (
+/area/maintenance/solars/asteroid/fore)
+"aWB" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Fore Asteroid Solar Maintenance"
- })
-"aWD" = (
+/area/maintenance/solars/asteroid/fore)
+"aWC" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aWE" = (
+/area/hallway/primary/starboard/fore)
+"aWD" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
@@ -27471,8 +26323,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aWF" = (
+/area/hallway/primary/starboard/fore)
+"aWE" = (
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -27482,8 +26334,8 @@
name = "Fore Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/space)
-"aWG" = (
+/area/solar/asteroid/command)
+"aWF" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 1;
@@ -27501,8 +26353,8 @@
icon_state = "2-4"
},
/turf/open/space,
-/area/space)
-"aWH" = (
+/area/solar/asteroid/command)
+"aWG" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -27512,8 +26364,8 @@
name = "Fore Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/space)
-"aWI" = (
+/area/solar/asteroid/command)
+"aWH" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -27522,17 +26374,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/nuke_storage)
-"aWJ" = (
+"aWI" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Fore Asteroid Solar Maintenance"
- })
-"aWK" = (
+/area/maintenance/solars/asteroid/fore)
+"aWJ" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
name = "Solar Maintenance";
@@ -27547,10 +26396,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Fore Asteroid Solar Maintenance"
- })
-"aWL" = (
+/area/maintenance/solars/asteroid/fore)
+"aWK" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 2
},
@@ -27563,8 +26410,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aWM" = (
+/area/hallway/primary/starboard/fore)
+"aWL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -27580,8 +26427,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aWN" = (
+/area/hallway/primary/starboard/fore)
+"aWM" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -27590,8 +26437,8 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aWO" = (
+/area/hallway/primary/starboard/fore)
+"aWN" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 1;
@@ -27599,8 +26446,8 @@
icon_state = "1-2"
},
/turf/open/space,
-/area/space)
-"aWP" = (
+/area/solar/asteroid/command)
+"aWO" = (
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -27610,8 +26457,8 @@
name = "Fore Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/space)
-"aWQ" = (
+/area/solar/asteroid/fore)
+"aWP" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 2;
@@ -27624,8 +26471,8 @@
icon_state = "2-4"
},
/turf/open/space,
-/area/space)
-"aWR" = (
+/area/solar/asteroid/fore)
+"aWQ" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -27635,8 +26482,8 @@
name = "Fore Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/space)
-"aWS" = (
+/area/solar/asteroid/fore)
+"aWR" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -27645,10 +26492,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Fore Asteroid Solar Maintenance"
- })
-"aWT" = (
+/area/maintenance/solars/asteroid/fore)
+"aWS" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -27662,8 +26507,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aWU" = (
+/area/hallway/primary/starboard/fore)
+"aWT" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -27675,8 +26520,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aWV" = (
+/area/hallway/primary/starboard/fore)
+"aWU" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 2;
@@ -27694,8 +26539,8 @@
icon_state = "1-2"
},
/turf/open/space,
-/area/space)
-"aWW" = (
+/area/solar/asteroid/fore)
+"aWV" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 1
},
@@ -27708,8 +26553,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"aWX" = (
+/area/hallway/primary/starboard/fore)
+"aWW" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 1;
@@ -27721,7 +26566,7 @@
},
/turf/open/space,
/area/space)
-"aWY" = (
+"aWX" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 4;
@@ -27740,10 +26585,8 @@
dir = 8
},
/turf/open/space,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"aWZ" = (
+/area/hallway/secondary/bridges/med_cargo)
+"aWY" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 8
@@ -27754,10 +26597,8 @@
dir = 4
},
/turf/open/space,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"aXa" = (
+/area/hallway/secondary/bridges/med_cargo)
+"aWZ" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 4;
@@ -27774,10 +26615,8 @@
dir = 8
},
/turf/open/space,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"aXb" = (
+/area/hallway/secondary/bridges/med_cargo)
+"aXa" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 4;
@@ -27785,22 +26624,22 @@
icon_state = "4-8"
},
/turf/open/space,
-/area/space)
-"aXc" = (
+/area/solar/asteroid/command)
+"aXb" = (
/obj/structure/lattice/catwalk,
/obj/item/stack/cable_coil{
amount = 2
},
/turf/open/space,
-/area/space)
-"aXd" = (
+/area/solar/asteroid/command)
+"aXc" = (
/obj/structure/lattice/catwalk,
/obj/item/stack/cable_coil{
amount = 30
},
/turf/open/space,
-/area/space)
-"aXe" = (
+/area/solar/asteroid/command)
+"aXd" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 4;
@@ -27813,8 +26652,8 @@
icon_state = "1-8"
},
/turf/open/space,
-/area/space)
-"aXf" = (
+/area/solar/asteroid/command)
+"aXe" = (
/obj/structure/lattice/catwalk,
/obj/machinery/power/tracker,
/obj/structure/cable{
@@ -27822,8 +26661,8 @@
icon_state = "0-8"
},
/turf/open/space,
-/area/space)
-"aXg" = (
+/area/solar/asteroid/command)
+"aXf" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 2;
@@ -27832,7 +26671,7 @@
},
/turf/open/space,
/area/space)
-"aXh" = (
+"aXg" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 4;
@@ -27841,8 +26680,8 @@
pixel_y = 0
},
/turf/open/space,
-/area/space)
-"aXi" = (
+/area/solar/asteroid/fore)
+"aXh" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 1;
@@ -27850,8 +26689,8 @@
icon_state = "1-8"
},
/turf/open/space,
-/area/space)
-"aXj" = (
+/area/solar/asteroid/fore)
+"aXi" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 1;
@@ -27869,16 +26708,16 @@
icon_state = "1-8"
},
/turf/open/space,
-/area/space)
-"aXk" = (
+/area/solar/asteroid/command)
+"aXj" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "0-4"
},
/obj/machinery/power/tracker,
/turf/open/space,
-/area/space)
-"aXl" = (
+/area/solar/asteroid/fore)
+"aXk" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 4;
@@ -27902,13 +26741,11 @@
icon_state = "2-4"
},
/turf/open/space,
-/area/space)
-"aXm" = (
+/area/solar/asteroid/fore)
+"aXl" = (
/turf/closed/wall,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aXn" = (
+/area/maintenance/asteroid/port/west)
+"aXm" = (
/obj/structure/disposalpipe/trunk,
/obj/machinery/disposal/deliveryChute{
tag = "icon-intake (NORTH)";
@@ -27916,15 +26753,13 @@
dir = 1
},
/turf/open/floor/plating/airless,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aXo" = (
+/area/maintenance/asteroid/port/west)
+"aXn" = (
/turf/closed/mineral,
/area/mine/unexplored{
name = "Civilian Asteroid"
})
-"aXp" = (
+"aXo" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 1;
@@ -27942,71 +26777,57 @@
icon_state = "1-2"
},
/turf/open/space,
-/area/space)
-"aXq" = (
+/area/solar/asteroid/fore)
+"aXp" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aXr" = (
+/area/maintenance/asteroid/port/west)
+"aXq" = (
/obj/structure/disposalpipe/trunk{
dir = 1
},
/obj/structure/disposaloutlet,
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aXs" = (
+/area/maintenance/asteroid/port/west)
+"aXr" = (
/turf/closed/mineral/random/labormineral,
/area/mine/unexplored{
name = "Civilian Asteroid"
})
-"aXt" = (
+"aXs" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
icon_state = "1-2"
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"aXu" = (
+/area/hallway/secondary/bridges/med_cargo)
+"aXt" = (
/obj/machinery/conveyor/auto{
tag = "icon-conveyor0 (EAST)";
icon_state = "conveyor0";
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aXv" = (
+/area/maintenance/asteroid/port/west)
+"aXu" = (
/obj/machinery/conveyor/auto{
tag = "icon-conveyor0 (SOUTHEAST)";
icon_state = "conveyor0";
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aXw" = (
+/area/maintenance/asteroid/port/west)
+"aXv" = (
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aXx" = (
+/area/maintenance/asteroid/port/west)
+"aXw" = (
/obj/machinery/conveyor/auto,
/obj/structure/plasticflaps,
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aXy" = (
+/area/maintenance/asteroid/port/west)
+"aXx" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 1;
@@ -28019,8 +26840,8 @@
icon_state = "1-8"
},
/turf/open/space,
-/area/space)
-"aXz" = (
+/area/solar/asteroid/fore)
+"aXy" = (
/obj/machinery/light/small{
dir = 8
},
@@ -28030,49 +26851,40 @@
verted = -1
},
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aXA" = (
+/area/maintenance/asteroid/port/west)
+"aXz" = (
/obj/machinery/conveyor/auto{
tag = "icon-conveyor0 (SOUTHWEST)";
icon_state = "conveyor0";
dir = 10
},
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aXB" = (
+/area/maintenance/asteroid/port/west)
+"aXA" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mine/unexplored{
name = "Civilian Asteroid"
})
-"aXC" = (
+"aXB" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aXD" = (
+/area/crew_quarters/rehab_dome)
+"aXC" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aXE" = (
+/area/crew_quarters/rehab_dome)
+"aXD" = (
/turf/open/floor/plating/asteroid/airless,
/area/mine/unexplored{
name = "Engineering Asteroid"
})
-"aXF" = (
+"aXE" = (
/obj/structure/disposalpipe/trunk{
dir = 4
},
@@ -28080,18 +26892,14 @@
dir = 8
},
/turf/open/floor/plating/airless,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aXG" = (
+/area/maintenance/asteroid/port/west)
+"aXF" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/closed/wall,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aXH" = (
+/area/maintenance/asteroid/port/west)
+"aXG" = (
/obj/structure/disposalpipe/trunk{
dir = 8
},
@@ -28099,19 +26907,15 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aXI" = (
+/area/maintenance/asteroid/port/west)
+"aXH" = (
/obj/machinery/conveyor/auto{
icon_state = "conveyor0";
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aXJ" = (
+/area/maintenance/asteroid/port/west)
+"aXI" = (
/obj/machinery/conveyor/auto{
icon_state = "conveyor0";
dir = 8
@@ -28120,59 +26924,43 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aXK" = (
+/area/maintenance/asteroid/port/west)
+"aXJ" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aXL" = (
+/area/maintenance/asteroid/port/west)
+"aXK" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aXM" = (
+/area/maintenance/asteroid/port/west)
+"aXL" = (
/turf/closed/mineral,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aXN" = (
+/area/maintenance/asteroid/port/west)
+"aXM" = (
/turf/closed/mineral/random/labormineral,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aXO" = (
+/area/maintenance/asteroid/port/neast)
+"aXN" = (
/obj/machinery/vending/hydronutrients,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aXP" = (
+/area/crew_quarters/rehab_dome)
+"aXO" = (
/obj/machinery/hydroponics/soil,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aXQ" = (
+/area/crew_quarters/rehab_dome)
+"aXP" = (
/obj/structure/flora/ausbushes/lavendergrass,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aXR" = (
+/area/crew_quarters/rehab_dome)
+"aXQ" = (
/obj/machinery/hydroponics/soil,
/obj/machinery/light{
dir = 1
@@ -28180,15 +26968,13 @@
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aXS" = (
+/area/crew_quarters/rehab_dome)
+"aXR" = (
/turf/closed/mineral,
/area/mine/unexplored{
name = "Engineering Asteroid"
})
-"aXT" = (
+"aXS" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
@@ -28201,18 +26987,14 @@
dir = 1
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aXU" = (
+/area/maintenance/asteroid/port/west)
+"aXT" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aXV" = (
+/area/maintenance/asteroid/port/west)
+"aXU" = (
/obj/effect/turf_decal/stripes/corner{
dir = 4
},
@@ -28220,19 +27002,15 @@
dir = 4
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aXW" = (
+/area/maintenance/asteroid/port/west)
+"aXV" = (
/obj/machinery/door/airlock/maintenance{
name = "Port Asteroid Maintenance";
req_access_txt = "12"
},
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aXX" = (
+/area/maintenance/asteroid/port/west)
+"aXW" = (
/obj/effect/turf_decal/stripes/asteroid/line{
icon_state = "ast_warn";
dir = 8
@@ -28240,36 +27018,26 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aXY" = (
+/area/maintenance/asteroid/port/west)
+"aXX" = (
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aXZ" = (
+/area/maintenance/asteroid/port/west)
+"aXY" = (
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aYa" = (
+/area/maintenance/asteroid/port/neast)
+"aXZ" = (
/obj/structure/closet/firecloset/full,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aYb" = (
+/area/maintenance/asteroid/port/west)
+"aYa" = (
/obj/structure/flora/ausbushes/fullgrass,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aYc" = (
+/area/crew_quarters/rehab_dome)
+"aYb" = (
/obj/structure/table/wood,
/obj/item/seeds/apple,
/obj/item/seeds/cherry,
@@ -28279,10 +27047,8 @@
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aYd" = (
+/area/crew_quarters/rehab_dome)
+"aYc" = (
/obj/structure/table/wood,
/obj/item/weapon/cultivator,
/obj/item/weapon/shovel/spade,
@@ -28291,18 +27057,14 @@
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aYe" = (
+/area/crew_quarters/rehab_dome)
+"aYd" = (
/obj/structure/flora/ausbushes/brflowers,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aYf" = (
+/area/crew_quarters/rehab_dome)
+"aYe" = (
/obj/machinery/hydroponics/soil,
/obj/machinery/airalarm{
dir = 8;
@@ -28317,47 +27079,39 @@
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aYg" = (
+/area/crew_quarters/rehab_dome)
+"aYf" = (
/turf/closed/mineral/random/labormineral,
/area/mine/unexplored{
name = "Engineering Asteroid"
})
-"aYh" = (
+"aYg" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mine/unexplored{
name = "Engineering Asteroid"
})
-"aYi" = (
+"aYh" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 2
},
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aYj" = (
+/area/maintenance/asteroid/port/west)
+"aYi" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aYk" = (
+/area/maintenance/asteroid/port/west)
+"aYj" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aYl" = (
+/area/maintenance/asteroid/port/west)
+"aYk" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 4;
@@ -28374,20 +27128,15 @@
dir = 8
},
/turf/open/space,
-/area/construction/hallway{
- name = "Command-Service Bridge"
- })
-"aYm" = (
+/area/hallway/secondary/bridges/com_serv)
+"aYl" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aYn" = (
+/area/crew_quarters/rehab_dome)
+"aYm" = (
/obj/structure/flora/ausbushes/fullgrass,
/obj/machinery/camera{
c_tag = "Rehabilitation Dome North";
@@ -28396,10 +27145,8 @@
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aYo" = (
+/area/crew_quarters/rehab_dome)
+"aYn" = (
/obj/structure/flora/ausbushes/ywflowers,
/obj/machinery/light{
dir = 1
@@ -28407,17 +27154,13 @@
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aYp" = (
+/area/crew_quarters/rehab_dome)
+"aYo" = (
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aYq" = (
+/area/crew_quarters/rehab_dome)
+"aYp" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -28425,10 +27168,8 @@
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aYr" = (
+/area/crew_quarters/rehab_dome)
+"aYq" = (
/obj/machinery/hydroponics/soil,
/obj/machinery/firealarm{
dir = 4;
@@ -28438,10 +27179,8 @@
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aYs" = (
+/area/crew_quarters/rehab_dome)
+"aYr" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 4;
@@ -28455,10 +27194,8 @@
dir = 8
},
/turf/open/space,
-/area/construction/hallway{
- name = "Command-Engineering Bridge"
- })
-"aYt" = (
+/area/hallway/secondary/bridges/com_engi)
+"aYs" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 8
@@ -28477,10 +27214,8 @@
pixel_x = 0
},
/turf/open/space,
-/area/construction/hallway{
- name = "Command-Engineering Bridge"
- })
-"aYu" = (
+/area/hallway/secondary/bridges/com_engi)
+"aYt" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 2;
@@ -28492,23 +27227,19 @@
},
/turf/open/space,
/area/space)
-"aYv" = (
+"aYu" = (
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aYw" = (
+/area/maintenance/asteroid/port/west)
+"aYv" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aYx" = (
+/area/maintenance/asteroid/port/west)
+"aYw" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"aYy" = (
+"aYx" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 2
},
@@ -28521,7 +27252,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"aYz" = (
+"aYy" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
@@ -28529,13 +27260,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"aYA" = (
+"aYz" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"aYB" = (
+"aYA" = (
/obj/machinery/door/airlock/glass,
/obj/structure/cable{
icon_state = "1-2"
@@ -28544,63 +27275,49 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"aYC" = (
+"aYB" = (
/obj/structure/closet/crate,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aYD" = (
+/area/maintenance/asteroid/port/neast)
+"aYC" = (
/obj/machinery/light/small{
dir = 4
},
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aYE" = (
+/area/maintenance/asteroid/port/neast)
+"aYD" = (
/obj/structure/flora/ausbushes/fullgrass,
/mob/living/simple_animal/butterfly,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aYF" = (
+/area/crew_quarters/rehab_dome)
+"aYE" = (
/obj/structure/flora/ausbushes/sparsegrass,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aYG" = (
+/area/crew_quarters/rehab_dome)
+"aYF" = (
/obj/structure/flora/ausbushes/pointybush,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aYH" = (
+/area/crew_quarters/rehab_dome)
+"aYG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aYI" = (
+/area/crew_quarters/rehab_dome)
+"aYH" = (
/obj/structure/flora/ausbushes/ywflowers,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aYJ" = (
+/area/crew_quarters/rehab_dome)
+"aYI" = (
/obj/structure/flora/ausbushes/fullgrass,
/obj/structure/sign/nosmoking_2{
pixel_x = 32
@@ -28608,15 +27325,13 @@
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aYK" = (
+/area/crew_quarters/rehab_dome)
+"aYJ" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"aYL" = (
+"aYK" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 1
},
@@ -28625,7 +27340,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"aYM" = (
+"aYL" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
@@ -28634,13 +27349,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"aYN" = (
+"aYM" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"aYO" = (
+"aYN" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
@@ -28649,7 +27364,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"aYP" = (
+"aYO" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 2
},
@@ -28664,7 +27379,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"aYQ" = (
+"aYP" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
@@ -28676,7 +27391,7 @@
},
/turf/open/space,
/area/space)
-"aYR" = (
+"aYQ" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 4;
@@ -28695,24 +27410,20 @@
dir = 8
},
/turf/open/space,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"aYS" = (
+/area/hallway/secondary/bridges/med_cargo)
+"aYR" = (
/obj/structure/disposalpipe/trunk{
dir = 1
},
/obj/structure/disposaloutlet,
/turf/open/floor/plating/airless,
/area/space)
-"aYT" = (
+"aYS" = (
/obj/structure/girder,
/obj/structure/grille,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aYU" = (
+/area/maintenance/asteroid/port/west)
+"aYT" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -28726,7 +27437,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"aYV" = (
+"aYU" = (
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
@@ -28737,12 +27448,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"aYW" = (
+"aYV" = (
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"aYX" = (
+"aYW" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -28753,7 +27464,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"aYY" = (
+"aYX" = (
/obj/machinery/door/airlock/maintenance{
name = "Port Asteroid Maintenance";
req_access_txt = "12"
@@ -28761,10 +27472,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aYZ" = (
+/area/maintenance/asteroid/port/neast)
+"aYY" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -28783,10 +27492,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aZa" = (
+/area/maintenance/asteroid/port/neast)
+"aYZ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -28802,10 +27509,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aZb" = (
+/area/maintenance/asteroid/port/neast)
+"aZa" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -28825,10 +27530,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aZc" = (
+/area/maintenance/asteroid/port/neast)
+"aZb" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -28845,10 +27548,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aZd" = (
+/area/maintenance/asteroid/port/neast)
+"aZc" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -28865,10 +27566,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aZe" = (
+/area/maintenance/asteroid/port/neast)
+"aZd" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -28884,10 +27583,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aZf" = (
+/area/maintenance/asteroid/port/neast)
+"aZe" = (
/obj/structure/flora/ausbushes/fullgrass,
/obj/machinery/light{
icon_state = "tube1";
@@ -28896,50 +27593,38 @@
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aZg" = (
+/area/crew_quarters/rehab_dome)
+"aZf" = (
/turf/open/floor/plasteel/redblue{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aZh" = (
+/area/crew_quarters/rehab_dome)
+"aZg" = (
/obj/structure/flora/ausbushes/leafybush,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aZi" = (
+/area/crew_quarters/rehab_dome)
+"aZh" = (
/obj/structure/flora/ausbushes/grassybush,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aZj" = (
+/area/crew_quarters/rehab_dome)
+"aZi" = (
/mob/living/simple_animal/chicken/rabbit/normal,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aZk" = (
+/area/crew_quarters/rehab_dome)
+"aZj" = (
/obj/structure/flora/ausbushes/reedbush,
/mob/living/simple_animal/butterfly,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aZl" = (
+/area/crew_quarters/rehab_dome)
+"aZk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/light/small{
dir = 4
@@ -28949,7 +27634,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"aZm" = (
+"aZl" = (
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
icon_state = "neutralcorner";
@@ -28957,12 +27642,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"aZn" = (
+"aZm" = (
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"aZo" = (
+"aZn" = (
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
icon_state = "neutralcorner";
@@ -28970,7 +27655,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"aZp" = (
+"aZo" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -28986,7 +27671,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"aZq" = (
+"aZp" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
@@ -28996,12 +27681,12 @@
},
/turf/open/space,
/area/space)
-"aZr" = (
+"aZq" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"aZs" = (
+"aZr" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
@@ -29010,13 +27695,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"aZt" = (
+"aZs" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"aZu" = (
+"aZt" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
@@ -29025,12 +27710,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"aZv" = (
+"aZu" = (
/turf/open/floor/plating/asteroid/airless,
/area/mine/unexplored{
name = "Medical Asteroid"
})
-"aZw" = (
+"aZv" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 1
},
@@ -29043,7 +27728,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"aZx" = (
+"aZw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -29059,7 +27744,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"aZy" = (
+"aZx" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -29073,7 +27758,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"aZz" = (
+"aZy" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -29092,7 +27777,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"aZA" = (
+"aZz" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -29112,10 +27797,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aZB" = (
+/area/maintenance/asteroid/port/neast)
+"aZA" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -29135,10 +27818,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aZC" = (
+/area/maintenance/asteroid/port/neast)
+"aZB" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -29155,10 +27836,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aZD" = (
+/area/maintenance/asteroid/port/neast)
+"aZC" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -29175,24 +27854,18 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aZE" = (
+/area/maintenance/asteroid/port/neast)
+"aZD" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aZF" = (
+/area/maintenance/asteroid/port/neast)
+"aZE" = (
/obj/structure/girder,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aZG" = (
+/area/maintenance/asteroid/port/neast)
+"aZF" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -29208,46 +27881,36 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aZH" = (
+/area/maintenance/asteroid/port/neast)
+"aZG" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aZI" = (
+/area/maintenance/asteroid/port/neast)
+"aZH" = (
/obj/structure/flora/ausbushes/reedbush,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aZJ" = (
+/area/crew_quarters/rehab_dome)
+"aZI" = (
/obj/structure/sink/puddle,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aZK" = (
+/area/crew_quarters/rehab_dome)
+"aZJ" = (
/obj/structure/flora/ausbushes/stalkybush,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"aZL" = (
+/area/crew_quarters/rehab_dome)
+"aZK" = (
/turf/closed/mineral,
/area/hallway/primary/central)
-"aZM" = (
+"aZL" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 1
},
@@ -29262,24 +27925,24 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"aZN" = (
+"aZM" = (
/turf/closed/mineral,
/area/mine/unexplored{
name = "Medical Asteroid"
})
-"aZO" = (
+"aZN" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mine/unexplored{
name = "Medical Asteroid"
})
-"aZP" = (
+"aZO" = (
/turf/closed/mineral/random/labormineral,
/area/mine/unexplored{
name = "Medical Asteroid"
})
-"aZQ" = (
+"aZP" = (
/obj/structure/sign/map/left/ceres{
pixel_x = -32
},
@@ -29294,12 +27957,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"aZR" = (
+"aZQ" = (
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"aZS" = (
+"aZR" = (
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
icon_state = "neutralcorner";
@@ -29307,13 +27970,11 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"aZT" = (
+"aZS" = (
/obj/structure/grille/broken,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"aZU" = (
+/area/maintenance/asteroid/port/west)
+"aZT" = (
/obj/structure/cable/orange{
d2 = 2;
icon_state = "0-2"
@@ -29330,13 +27991,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"aZV" = (
+"aZU" = (
/obj/structure/table,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"aZW" = (
+"aZV" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -29354,7 +28015,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"aZX" = (
+"aZW" = (
/obj/machinery/light{
dir = 8
},
@@ -29365,13 +28026,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"aZY" = (
+"aZX" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"aZZ" = (
+"aZY" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -29382,12 +28043,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"baa" = (
+"aZZ" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bab" = (
+"baa" = (
/obj/machinery/door/airlock/maintenance{
name = "Bar Backroom";
req_access_txt = "25"
@@ -29396,21 +28057,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bac" = (
+"bab" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bad" = (
+"bac" = (
/obj/effect/turf_decal/stripes/asteroid/line,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bae" = (
+/area/maintenance/asteroid/port/neast)
+"bad" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -29431,10 +28090,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"baf" = (
+/area/maintenance/asteroid/port/neast)
+"bae" = (
/obj/machinery/power/apc{
dir = 1;
name = "Port Asteroid Maintence APC";
@@ -29449,10 +28106,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bag" = (
+/area/maintenance/asteroid/port/neast)
+"baf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/sign/map/left/ceres{
pixel_x = 32;
@@ -29462,29 +28117,25 @@
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bah" = (
+/area/crew_quarters/rehab_dome)
+"bag" = (
/obj/structure/flora/ausbushes/sparsegrass,
/obj/machinery/light,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bai" = (
+/area/crew_quarters/rehab_dome)
+"bah" = (
/turf/open/floor/plating/asteroid,
/area/hallway/primary/central)
-"baj" = (
+"bai" = (
/obj/structure/table,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bak" = (
+"baj" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
@@ -29497,13 +28148,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bal" = (
+"bak" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bam" = (
+"bal" = (
/obj/machinery/camera{
c_tag = "Engineering Asteroid Hallway 7";
dir = 4;
@@ -29517,7 +28168,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"ban" = (
+"bam" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -29530,7 +28181,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bao" = (
+"ban" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -29554,13 +28205,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bap" = (
+"bao" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"baq" = (
+"bap" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 2
},
@@ -29574,7 +28225,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bar" = (
+"baq" = (
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
icon_state = "neutralcorner";
@@ -29582,7 +28233,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bas" = (
+"bar" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1
@@ -29591,7 +28242,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bat" = (
+"bas" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -29602,14 +28253,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bau" = (
+"bat" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bav" = (
+/area/maintenance/asteroid/port/west)
+"bau" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -29619,12 +28268,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"baw" = (
+"bav" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bax" = (
+"baw" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -29639,7 +28288,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bay" = (
+"bax" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/camera{
c_tag = "Service Asteroid Hallway 1";
@@ -29652,7 +28301,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"baz" = (
+"bay" = (
/obj/machinery/power/apc{
dir = 1;
name = "Bar APC";
@@ -29663,6 +28312,18 @@
d2 = 4;
icon_state = "0-4"
},
+/obj/structure/closet/gmcloset,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/crew_quarters/bar)
+"baz" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/table/wood,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -29674,6 +28335,7 @@
icon_state = "4-8"
},
/obj/structure/table/wood,
+/obj/machinery/reagentgrinder,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -29684,23 +28346,11 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/table/wood,
-/obj/machinery/reagentgrinder,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
"baC" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/bar)
-"baD" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -29719,7 +28369,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"baE" = (
+"baD" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -29733,7 +28383,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"baF" = (
+"baE" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -29748,12 +28398,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"baG" = (
+"baF" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"baH" = (
+"baG" = (
/obj/machinery/door/airlock/maintenance{
name = "Freezer";
req_access_txt = "28"
@@ -29762,7 +28412,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"baI" = (
+"baH" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -29774,18 +28424,14 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"baJ" = (
+/area/maintenance/asteroid/port/neast)
+"baI" = (
/obj/structure/flora/ausbushes/ppflowers,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"baK" = (
+/area/crew_quarters/rehab_dome)
+"baJ" = (
/obj/structure/flora/ausbushes/lavendergrass,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/camera{
@@ -29796,10 +28442,8 @@
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"baL" = (
+/area/crew_quarters/rehab_dome)
+"baK" = (
/obj/machinery/power/apc{
dir = 8;
name = "Rehabilitation Dome APC";
@@ -29813,26 +28457,24 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"baM" = (
+/area/crew_quarters/rehab_dome)
+"baL" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
/area/hallway/primary/central)
-"baN" = (
+"baM" = (
/obj/structure/table,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"baO" = (
+"baN" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"baP" = (
+"baO" = (
/obj/machinery/light{
dir = 4
},
@@ -29854,7 +28496,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"baQ" = (
+"baP" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -29871,7 +28513,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"baR" = (
+"baQ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -29881,7 +28523,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"baS" = (
+"baR" = (
/obj/machinery/power/apc{
dir = 4;
name = "Central Primary Hallway APC";
@@ -29896,12 +28538,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"baT" = (
+"baS" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"baU" = (
+"baT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -29916,7 +28558,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"baV" = (
+"baU" = (
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
@@ -29932,7 +28574,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"baW" = (
+"baV" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -29945,7 +28587,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"baX" = (
+"baW" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -29955,7 +28597,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"baY" = (
+"baX" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -29964,7 +28606,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"baZ" = (
+"baY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
@@ -29972,7 +28614,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bba" = (
+"baZ" = (
/obj/machinery/camera{
c_tag = "Bar Backroom";
dir = 5;
@@ -29982,12 +28624,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bbb" = (
+"bba" = (
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bbc" = (
+"bbb" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
@@ -29995,7 +28637,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bbd" = (
+"bbc" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -30004,7 +28646,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bbe" = (
+"bbd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -30012,7 +28654,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bbf" = (
+"bbe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -30025,14 +28667,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bbg" = (
+"bbf" = (
/obj/structure/kitchenspike,
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bbh" = (
+"bbg" = (
/obj/machinery/light/small{
dir = 1
},
@@ -30040,13 +28682,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bbi" = (
+"bbh" = (
/obj/structure/kitchenspike,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bbj" = (
+"bbi" = (
/obj/machinery/camera{
c_tag = "Freezer"
},
@@ -30054,7 +28696,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bbk" = (
+"bbj" = (
/obj/machinery/power/apc{
dir = 1;
name = "Kitchen APC";
@@ -30069,12 +28711,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bbl" = (
+"bbk" = (
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bbm" = (
+"bbl" = (
/obj/structure/flora/ausbushes/stalkybush,
/obj/machinery/camera{
c_tag = "Rehabilitation Dome West 1";
@@ -30084,33 +28726,27 @@
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bbn" = (
+/area/crew_quarters/rehab_dome)
+"bbm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bbo" = (
+/area/crew_quarters/rehab_dome)
+"bbn" = (
/obj/structure/grille,
-/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bbp" = (
+/area/crew_quarters/rehab_dome)
+"bbo" = (
/obj/structure/table,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -30121,10 +28757,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bbq" = (
+/area/crew_quarters/rehab_dome)
+"bbp" = (
/obj/machinery/light{
dir = 1
},
@@ -30138,10 +28772,8 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bbr" = (
+/area/crew_quarters/rehab_dome)
+"bbq" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -30151,13 +28783,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bbs" = (
+"bbr" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plating/asteroid,
/area/hallway/primary/central)
-"bbt" = (
+"bbs" = (
/obj/machinery/light/small{
dir = 4
},
@@ -30167,13 +28799,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bbu" = (
+"bbt" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bbv" = (
+"bbu" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -30185,7 +28817,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bbw" = (
+"bbv" = (
/obj/structure/rack,
/obj/item/clothing/suit/space/fragile,
/obj/item/clothing/head/helmet/space/fragile,
@@ -30193,7 +28825,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bbx" = (
+"bbw" = (
/obj/structure/table,
/obj/item/stack/sheet/rglass{
amount = 20
@@ -30202,7 +28834,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bby" = (
+"bbx" = (
/obj/machinery/camera{
c_tag = "EVA Equipment";
dir = 6;
@@ -30212,13 +28844,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bbz" = (
+"bby" = (
/obj/machinery/suit_storage_unit/standard_unit,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bbA" = (
+"bbz" = (
/obj/machinery/light{
dir = 1
},
@@ -30226,7 +28858,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bbB" = (
+"bbA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
@@ -30235,7 +28867,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bbC" = (
+"bbB" = (
/obj/structure/rack,
/obj/item/clothing/suit/space/fragile,
/obj/item/clothing/head/helmet/space/fragile,
@@ -30243,7 +28875,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bbD" = (
+"bbC" = (
/obj/structure/table/wood,
/obj/item/stack/packageWrap,
/obj/item/device/destTagger,
@@ -30251,7 +28883,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bbE" = (
+"bbD" = (
/obj/machinery/light/small,
/obj/structure/table/wood,
/obj/item/weapon/gun/ballistic/revolver/doublebarrel,
@@ -30260,13 +28892,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bbF" = (
+"bbE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bbG" = (
+"bbF" = (
/obj/structure/sign/poster/random{
name = "random contraband poster";
pixel_x = 0;
@@ -30277,13 +28909,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bbH" = (
+"bbG" = (
/obj/effect/landmark/blobstart,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bbI" = (
+"bbH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/orange{
d1 = 1;
@@ -30294,7 +28926,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bbJ" = (
+"bbI" = (
/mob/living/simple_animal/hostile/retaliate/goat{
name = "Pete"
},
@@ -30302,7 +28934,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bbK" = (
+"bbJ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -30316,7 +28948,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bbL" = (
+"bbK" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -30329,37 +28961,29 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bbM" = (
+/area/maintenance/asteroid/port/neast)
+"bbL" = (
/obj/structure/grille,
-/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bbN" = (
+/area/crew_quarters/rehab_dome)
+"bbM" = (
/obj/machinery/door/airlock/glass{
name = "Rehabilitation Dome"
},
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bbO" = (
+/area/crew_quarters/rehab_dome)
+"bbN" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bbP" = (
+/area/crew_quarters/rehab_dome)
+"bbO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/camera{
c_tag = "Rehabilitation Dome Lobby East";
@@ -30376,10 +29000,8 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bbQ" = (
+/area/crew_quarters/rehab_dome)
+"bbP" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -30395,7 +29017,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bbR" = (
+"bbQ" = (
/obj/effect/turf_decal/stripes/asteroid/line{
icon_state = "ast_warn";
dir = 4
@@ -30410,7 +29032,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bbS" = (
+"bbR" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -30425,7 +29047,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bbT" = (
+"bbS" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -30439,7 +29061,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bbU" = (
+"bbT" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -30450,7 +29072,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bbV" = (
+"bbU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -30467,7 +29089,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bbW" = (
+"bbV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -30486,7 +29108,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bbX" = (
+"bbW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -30503,7 +29125,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bbY" = (
+"bbX" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -30518,7 +29140,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bbZ" = (
+"bbY" = (
/obj/structure/table,
/obj/item/stack/sheet/plasteel/fifty{
amount = 20
@@ -30527,12 +29149,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bca" = (
+"bbZ" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bcb" = (
+"bca" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
@@ -30540,7 +29162,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bcc" = (
+"bcb" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -30549,13 +29171,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bcd" = (
+"bcc" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bce" = (
+"bcd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -30568,7 +29190,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bcf" = (
+"bce" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -30582,7 +29204,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bcg" = (
+"bcf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -30603,7 +29225,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bch" = (
+"bcg" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -30612,31 +29234,25 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bci" = (
+"bch" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bcj" = (
+/area/maintenance/asteroid/port/west)
+"bci" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bck" = (
+/area/maintenance/asteroid/port/west)
+"bcj" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bcl" = (
+/area/maintenance/asteroid/port/west)
+"bck" = (
/obj/machinery/power/terminal{
tag = "icon-term (EAST)";
icon_state = "term";
@@ -30649,10 +29265,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bcm" = (
+/area/maintenance/asteroid/port/west)
+"bcl" = (
/obj/machinery/door/airlock/maintenance{
name = "Serivce SMES Access";
req_access_txt = "10;11;12"
@@ -30665,16 +29279,14 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bcn" = (
+/area/maintenance/asteroid/port/west)
+"bcm" = (
/obj/structure/tank_dispenser/oxygen,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bco" = (
+"bcn" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
@@ -30687,19 +29299,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bcp" = (
-/obj/machinery/door/firedoor,
+"bco" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/obj/effect/turf_decal/stripes/line,
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bcq" = (
-/obj/machinery/door/firedoor,
+"bcp" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -30710,18 +29321,19 @@
dir = 1
},
/obj/effect/turf_decal/stripes/line,
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bcr" = (
+"bcq" = (
/obj/machinery/vending/boozeomat,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bcs" = (
+"bcr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock{
name = "Bar Backroom";
@@ -30736,7 +29348,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bct" = (
+"bcs" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
@@ -30744,13 +29356,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bcu" = (
+"bct" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bcv" = (
+"bcu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/orange{
d1 = 1;
@@ -30762,7 +29374,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bcw" = (
+"bcv" = (
/obj/machinery/gibber,
/obj/machinery/light/small{
dir = 4
@@ -30771,13 +29383,11 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bcx" = (
+"bcw" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bcy" = (
+/area/maintenance/asteroid/port/neast)
+"bcx" = (
/obj/structure/flora/ausbushes/reedbush,
/obj/machinery/light{
icon_state = "tube1";
@@ -30786,37 +29396,29 @@
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bcz" = (
+/area/crew_quarters/rehab_dome)
+"bcy" = (
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bcA" = (
+/area/crew_quarters/rehab_dome)
+"bcz" = (
/turf/open/floor/plasteel/neutral/side{
tag = "icon-neutral (SOUTHWEST)";
icon_state = "neutral";
dir = 10;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bcB" = (
+/area/crew_quarters/rehab_dome)
+"bcA" = (
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
icon_state = "neutralcorner";
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bcC" = (
+/area/crew_quarters/rehab_dome)
+"bcB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/firealarm{
dir = 4;
@@ -30828,16 +29430,14 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bcD" = (
-/obj/machinery/door/firedoor,
+/area/crew_quarters/rehab_dome)
+"bcC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/obj/effect/turf_decal/stripes/line,
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
icon_state = "neutralcorner";
@@ -30845,8 +29445,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bcE" = (
-/obj/machinery/door/firedoor,
+"bcD" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -30856,16 +29455,17 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bcF" = (
-/obj/machinery/door/firedoor,
+"bcE" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/obj/effect/turf_decal/stripes/line,
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
icon_state = "neutralcorner";
@@ -30873,7 +29473,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bcG" = (
+"bcF" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -30886,50 +29486,50 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bcH" = (
+"bcG" = (
/obj/machinery/light/small,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bcI" = (
+"bcH" = (
/obj/structure/tank_dispenser/oxygen,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bcJ" = (
+"bcI" = (
/obj/structure/closet/crate/rcd,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bcK" = (
+"bcJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bcL" = (
+"bcK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bcM" = (
+"bcL" = (
/obj/structure/table,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bcN" = (
+"bcM" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bcO" = (
+"bcN" = (
/obj/machinery/camera{
c_tag = "Medical SMES";
dir = 6;
@@ -30940,7 +29540,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bcP" = (
+"bcO" = (
/obj/machinery/computer/station_alert,
/obj/structure/cable/orange{
d2 = 2;
@@ -30950,7 +29550,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bcQ" = (
+"bcP" = (
/obj/machinery/light/small{
dir = 4
},
@@ -30958,7 +29558,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bcR" = (
+"bcQ" = (
/obj/structure/closet/emcloset,
/obj/machinery/light/small{
dir = 8
@@ -30967,7 +29567,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bcS" = (
+"bcR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -30978,12 +29578,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bcT" = (
+"bcS" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bcU" = (
+"bcT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/camera{
c_tag = "Medbay Asteroid Hallway 6";
@@ -30998,7 +29598,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bcV" = (
+"bcU" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -31008,10 +29608,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bcW" = (
+/area/maintenance/asteroid/port/west)
+"bcV" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -31020,17 +29618,13 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bcX" = (
+/area/maintenance/asteroid/port/west)
+"bcW" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bcY" = (
+/area/maintenance/asteroid/port/west)
+"bcX" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -31039,10 +29633,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bcZ" = (
+/area/maintenance/asteroid/port/west)
+"bcY" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -31057,7 +29649,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bda" = (
+"bcZ" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/drinks/shaker,
/obj/item/weapon/reagent_containers/glass/rag,
@@ -31068,7 +29660,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bdb" = (
+"bda" = (
/obj/structure/table,
/obj/item/weapon/book/manual/barman_recipes,
/obj/item/device/radio/intercom{
@@ -31082,21 +29674,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bdc" = (
+"bdb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/holopad,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bdd" = (
+"bdc" = (
/obj/structure/table,
/obj/machinery/chem_dispenser/drinks,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bde" = (
+"bdd" = (
/obj/structure/table,
/obj/machinery/chem_dispenser/drinks/beer,
/obj/structure/extinguisher_cabinet{
@@ -31106,7 +29698,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bdf" = (
+"bde" = (
/obj/structure/sign/securearea{
desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'";
icon_state = "monkey_painting";
@@ -31118,7 +29710,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bdg" = (
+"bdf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/orange{
d1 = 1;
@@ -31133,13 +29725,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bdh" = (
+"bdg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bdi" = (
+"bdh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/orange{
d1 = 1;
@@ -31150,13 +29742,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bdj" = (
+"bdi" = (
/obj/effect/decal/cleanable/blood/gibs/old,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bdk" = (
+"bdj" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1
@@ -31164,10 +29756,8 @@
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bdl" = (
+/area/crew_quarters/rehab_dome)
+"bdk" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -31175,10 +29765,8 @@
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bdm" = (
+/area/crew_quarters/rehab_dome)
+"bdl" = (
/obj/structure/table/wood,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -31186,10 +29774,8 @@
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bdn" = (
+/area/crew_quarters/rehab_dome)
+"bdm" = (
/obj/structure/flora/ausbushes/lavendergrass,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -31197,10 +29783,8 @@
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bdo" = (
+/area/crew_quarters/rehab_dome)
+"bdn" = (
/obj/structure/flora/ausbushes/fullgrass,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -31212,10 +29796,8 @@
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bdp" = (
+/area/crew_quarters/rehab_dome)
+"bdo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -31226,48 +29808,39 @@
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bdq" = (
+/area/crew_quarters/rehab_dome)
+"bdp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bdr" = (
+/area/crew_quarters/rehab_dome)
+"bdq" = (
/turf/open/floor/plasteel/neutral/side{
tag = "icon-neutral (NORTHEAST)";
icon_state = "neutral";
dir = 5;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bds" = (
-/obj/machinery/door/firedoor,
+/area/crew_quarters/rehab_dome)
+"bdr" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral/side{
tag = "icon-neutral (SOUTHWEST)";
icon_state = "neutral";
dir = 10;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bdt" = (
-/obj/machinery/door/firedoor,
+/area/crew_quarters/rehab_dome)
+"bds" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -31275,15 +29848,13 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bdu" = (
+/area/crew_quarters/rehab_dome)
+"bdt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -31291,16 +29862,15 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
icon_state = "neutralcorner";
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bdv" = (
+/area/crew_quarters/rehab_dome)
+"bdu" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -31309,7 +29879,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bdw" = (
+"bdv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
@@ -31318,7 +29888,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bdx" = (
+"bdw" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -31332,7 +29902,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bdy" = (
+"bdx" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -31351,14 +29921,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bdz" = (
+"bdy" = (
/obj/structure/rack,
/obj/item/weapon/tank/jetpack/carbondioxide,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bdA" = (
+"bdz" = (
/obj/structure/rack,
/obj/structure/window/reinforced{
dir = 4;
@@ -31370,7 +29940,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bdB" = (
+"bdA" = (
/obj/structure/rack,
/obj/structure/window/reinforced{
dir = 8
@@ -31380,14 +29950,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bdC" = (
+"bdB" = (
/obj/structure/rack,
/obj/item/clothing/shoes/magboots,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bdD" = (
+"bdC" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -31402,7 +29972,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bdE" = (
+"bdD" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -31417,7 +29987,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bdF" = (
+"bdE" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -31427,7 +29997,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bdG" = (
+"bdF" = (
/obj/structure/rack,
/obj/item/clothing/suit/space/fragile,
/obj/item/clothing/head/helmet/space/fragile,
@@ -31435,8 +30005,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bdH" = (
-/obj/machinery/door/firedoor,
+"bdG" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -31452,7 +30021,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bdI" = (
+"bdH" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -31462,8 +30031,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bdJ" = (
-/obj/machinery/door/firedoor,
+"bdI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -31476,7 +30044,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bdK" = (
+"bdJ" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -31486,10 +30054,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bdL" = (
+/area/maintenance/asteroid/port/west)
+"bdK" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -31498,10 +30064,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bdM" = (
+/area/maintenance/asteroid/port/west)
+"bdL" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -31517,7 +30081,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bdN" = (
+"bdM" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -31532,7 +30096,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bdO" = (
+"bdN" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -31546,7 +30110,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bdP" = (
+"bdO" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -31558,7 +30122,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bdQ" = (
+"bdP" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -31578,7 +30142,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bdR" = (
+"bdQ" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -31587,7 +30151,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bdS" = (
+"bdR" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -31596,7 +30160,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bdT" = (
+"bdS" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -31604,7 +30168,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bdU" = (
+"bdT" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -31615,7 +30179,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bdV" = (
+"bdU" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -31626,7 +30190,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bdW" = (
+"bdV" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -31639,94 +30203,82 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bdX" = (
+"bdW" = (
/obj/machinery/icecream_vat,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bdY" = (
+"bdX" = (
/obj/structure/closet/secure_closet/freezer/meat,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bdZ" = (
+"bdY" = (
/obj/structure/closet/chefcloset,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bea" = (
+"bdZ" = (
/obj/machinery/chem_master/condimaster,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"beb" = (
+"bea" = (
/obj/structure/chair/stool,
/mob/living/simple_animal/butterfly,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bec" = (
+/area/crew_quarters/rehab_dome)
+"beb" = (
/obj/structure/table/wood,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bed" = (
+/area/crew_quarters/rehab_dome)
+"bec" = (
/obj/structure/chair/stool,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bee" = (
+/area/crew_quarters/rehab_dome)
+"bed" = (
/obj/structure/grille,
-/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bef" = (
-/obj/machinery/door/firedoor,
+/area/crew_quarters/rehab_dome)
+"bee" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral/side{
tag = "icon-neutral (NORTHEAST)";
icon_state = "neutral";
dir = 5;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"beg" = (
-/obj/machinery/door/firedoor,
+/area/crew_quarters/rehab_dome)
+"bef" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"beh" = (
+/area/crew_quarters/rehab_dome)
+"beg" = (
/turf/open/floor/plasteel/neutral/side{
tag = "icon-neutral (SOUTHWEST)";
icon_state = "neutral";
@@ -31734,7 +30286,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bei" = (
+"beh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
@@ -31742,7 +30294,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bej" = (
+"bei" = (
/obj/machinery/light{
dir = 1
},
@@ -31753,7 +30305,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bek" = (
+"bej" = (
/obj/structure/sign/map/left/ceres{
pixel_y = 32
},
@@ -31764,7 +30316,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bel" = (
+"bek" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -31777,7 +30329,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bem" = (
+"bel" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -31795,7 +30347,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"ben" = (
+"bem" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -31813,7 +30365,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"beo" = (
+"ben" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -31824,7 +30376,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bep" = (
+"beo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -31835,7 +30387,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"beq" = (
+"bep" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -31850,7 +30402,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"ber" = (
+"beq" = (
/obj/machinery/light{
dir = 1
},
@@ -31864,7 +30416,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bes" = (
+"ber" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -31875,12 +30427,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bet" = (
+"bes" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"beu" = (
+"bet" = (
/obj/structure/cable{
icon_state = "0-2";
d2 = 2
@@ -31892,7 +30444,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bev" = (
+"beu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/glass_command{
name = "EVA";
@@ -31902,7 +30454,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bew" = (
+"bev" = (
/obj/structure/cable{
icon_state = "0-2";
d2 = 2
@@ -31913,7 +30465,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bex" = (
+"bew" = (
/obj/machinery/power/apc{
dir = 8;
name = "Starboard Hallway APC";
@@ -31930,7 +30482,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bey" = (
+"bex" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -31941,7 +30493,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bez" = (
+"bey" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -31957,7 +30509,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"beA" = (
+"bez" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -31974,20 +30526,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"beB" = (
+"beA" = (
/obj/machinery/power/smes/engineering,
/obj/structure/cable/orange,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"beC" = (
+"beB" = (
/obj/structure/closet/crate,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"beD" = (
+"beC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -31999,80 +30551,70 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"beE" = (
+"beD" = (
/obj/machinery/light/small,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"beF" = (
+"beE" = (
/obj/structure/tank_dispenser/oxygen,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"beG" = (
+"beF" = (
/turf/closed/mineral/random/labormineral,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"beH" = (
+/area/maintenance/asteroid/starboard)
+"beG" = (
/turf/closed/mineral,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"beI" = (
+/area/maintenance/asteroid/starboard)
+"beH" = (
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"beJ" = (
+/area/maintenance/asteroid/starboard)
+"beI" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"beK" = (
+/area/maintenance/asteroid/starboard)
+"beJ" = (
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"beL" = (
+"beK" = (
/obj/machinery/power/smes/engineering,
/obj/structure/cable/orange,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"beM" = (
+/area/maintenance/asteroid/port/west)
+"beL" = (
/obj/structure/disposalpipe/segment,
/obj/effect/landmark/start/bartender,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"beN" = (
+"beM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/firedoor,
/obj/structure/table/wood/poker,
/obj/item/clothing/head/collectable/tophat,
+/obj/machinery/door/firedoor,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"beO" = (
+"beN" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"beP" = (
+"beO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock{
name = "Bar Access";
@@ -32087,13 +30629,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"beQ" = (
+"beP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"beR" = (
+"beQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock{
name = "Freezer";
@@ -32108,16 +30650,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"beS" = (
+"beR" = (
/obj/structure/flora/ausbushes/sparsegrass,
/mob/living/simple_animal/chicken/rabbit/normal,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"beT" = (
+/area/crew_quarters/rehab_dome)
+"beS" = (
/obj/structure/flora/ausbushes/fullgrass,
/obj/machinery/light{
dir = 4;
@@ -32126,10 +30666,8 @@
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"beU" = (
+/area/crew_quarters/rehab_dome)
+"beT" = (
/obj/structure/table,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
@@ -32138,10 +30676,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"beV" = (
+/area/crew_quarters/rehab_dome)
+"beU" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -32153,10 +30689,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"beW" = (
+/area/crew_quarters/rehab_dome)
+"beV" = (
/turf/open/floor/plasteel/neutral/side{
tag = "icon-neutral (NORTHEAST)";
icon_state = "neutral";
@@ -32164,19 +30698,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"beX" = (
+"beW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"beY" = (
+"beX" = (
/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"beZ" = (
+"beY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -32196,7 +30730,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bfa" = (
+"beZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -32211,7 +30745,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bfb" = (
+"bfa" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -32225,7 +30759,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bfc" = (
+"bfb" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -32243,7 +30777,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bfd" = (
+"bfc" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -32257,7 +30791,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bfe" = (
+"bfd" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -32271,7 +30805,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bff" = (
+"bfe" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -32291,7 +30825,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bfg" = (
+"bff" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -32302,7 +30836,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bfh" = (
+"bfg" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -32314,7 +30848,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bfi" = (
+"bfh" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/blue/side{
tag = "icon-blue (NORTHWEST)";
@@ -32323,7 +30857,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bfj" = (
+"bfi" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -32337,7 +30871,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bfk" = (
+"bfj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/blue/side{
tag = "icon-blue (NORTH)";
@@ -32346,7 +30880,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bfl" = (
+"bfk" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -32359,7 +30893,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bfm" = (
+"bfl" = (
/obj/structure/tank_dispenser/oxygen,
/turf/open/floor/plasteel/blue/side{
tag = "icon-blue (NORTHEAST)";
@@ -32368,7 +30902,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bfn" = (
+"bfm" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -32384,7 +30918,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bfo" = (
+"bfn" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -32394,7 +30928,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bfp" = (
+"bfo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -32409,7 +30943,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bfq" = (
+"bfp" = (
/obj/machinery/door/airlock/maintenance{
name = "Starboard Asteroid Maintenance Access";
req_access_txt = "12"
@@ -32418,59 +30952,43 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bfr" = (
+"bfq" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bfs" = (
+/area/maintenance/asteroid/starboard)
+"bfr" = (
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bft" = (
+/area/maintenance/asteroid/starboard)
+"bfs" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating/asteroid,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bfu" = (
+/area/maintenance/asteroid/starboard)
+"bft" = (
/turf/open/floor/plating/asteroid,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bfv" = (
+/area/maintenance/asteroid/starboard)
+"bfu" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating/asteroid,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bfw" = (
+/area/maintenance/asteroid/starboard)
+"bfv" = (
/obj/structure/grille/broken,
/turf/open/floor/plating/asteroid,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bfx" = (
+/area/maintenance/asteroid/starboard)
+"bfw" = (
/obj/structure/grille,
/turf/open/floor/plating/asteroid,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bfy" = (
+/area/maintenance/asteroid/starboard)
+"bfx" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating/asteroid,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bfz" = (
+/area/maintenance/asteroid/starboard)
+"bfy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -32478,7 +30996,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"bfA" = (
+"bfz" = (
/obj/structure/window{
tag = "icon-window (EAST)";
icon_state = "window";
@@ -32491,7 +31009,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"bfB" = (
+"bfA" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -32502,10 +31020,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bfC" = (
+/area/maintenance/asteroid/port/west)
+"bfB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -32513,7 +31029,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"bfD" = (
+"bfC" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -32523,7 +31039,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bfE" = (
+"bfD" = (
/obj/structure/sign/poster/random{
name = "random official poster";
pixel_x = -32;
@@ -32535,7 +31051,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bfF" = (
+"bfE" = (
/obj/structure/disposalpipe/segment,
/obj/structure/table/wood/poker,
/obj/item/toy/cards/deck,
@@ -32544,7 +31060,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bfG" = (
+"bfF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/table/wood/poker,
/obj/machinery/door/firedoor,
@@ -32552,13 +31068,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bfH" = (
+"bfG" = (
/obj/structure/chair/stool/bar,
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bfI" = (
+"bfH" = (
/obj/machinery/newscaster{
pixel_y = 32
},
@@ -32566,7 +31082,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bfJ" = (
+"bfI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/orange{
d1 = 1;
@@ -32586,7 +31102,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bfK" = (
+"bfJ" = (
/obj/structure/table,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/item/stack/packageWrap,
@@ -32595,7 +31111,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bfL" = (
+"bfK" = (
/obj/structure/table,
/obj/structure/table,
/obj/machinery/reagentgrinder,
@@ -32608,7 +31124,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bfM" = (
+"bfL" = (
/obj/machinery/processor,
/obj/machinery/camera{
c_tag = "Kitchen"
@@ -32617,7 +31133,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bfN" = (
+"bfM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/orange{
d1 = 1;
@@ -32628,7 +31144,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bfO" = (
+"bfN" = (
/obj/structure/sink/kitchen{
pixel_y = 32
},
@@ -32636,7 +31152,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bfP" = (
+"bfO" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 32
},
@@ -32644,7 +31160,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bfQ" = (
+"bfP" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -32657,10 +31173,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bfR" = (
+/area/maintenance/asteroid/port/neast)
+"bfQ" = (
/obj/structure/flora/ausbushes/fullgrass,
/obj/machinery/camera{
c_tag = "Rehabilitation Dome South 2";
@@ -32669,10 +31183,8 @@
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bfS" = (
+/area/crew_quarters/rehab_dome)
+"bfR" = (
/obj/structure/flora/ausbushes/fullgrass,
/obj/machinery/airalarm{
dir = 1;
@@ -32682,10 +31194,8 @@
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bfT" = (
+/area/crew_quarters/rehab_dome)
+"bfS" = (
/obj/structure/flora/ausbushes/sparsegrass,
/obj/machinery/firealarm{
dir = 1;
@@ -32695,10 +31205,8 @@
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bfU" = (
+/area/crew_quarters/rehab_dome)
+"bfT" = (
/obj/structure/flora/ausbushes/grassybush,
/obj/structure/sign/nosmoking_2{
pixel_y = -32
@@ -32706,18 +31214,14 @@
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bfV" = (
+/area/crew_quarters/rehab_dome)
+"bfU" = (
/obj/machinery/light,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bfW" = (
+/area/crew_quarters/rehab_dome)
+"bfV" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -32731,10 +31235,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bfX" = (
+/area/crew_quarters/rehab_dome)
+"bfW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -32751,10 +31253,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bfY" = (
+/area/crew_quarters/rehab_dome)
+"bfX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -32763,14 +31263,11 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bfZ" = (
+/area/crew_quarters/rehab_dome)
+"bfY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -32778,15 +31275,14 @@
dir = 8
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"bga" = (
+/area/crew_quarters/rehab_dome)
+"bfZ" = (
/obj/structure/sign/securearea{
pixel_x = 32;
pixel_y = -32
@@ -32796,7 +31292,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bgb" = (
+"bga" = (
/obj/machinery/camera{
c_tag = "Engineering Asteroid Hallway 3";
dir = 1;
@@ -32809,7 +31305,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bgc" = (
+"bgb" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -32822,14 +31318,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bgd" = (
+"bgc" = (
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bge" = (
+"bgd" = (
/obj/machinery/light,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
@@ -32839,7 +31335,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bgf" = (
+"bge" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -32853,12 +31349,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bgg" = (
+"bgf" = (
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bgh" = (
+"bgg" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -32869,7 +31365,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bgi" = (
+"bgh" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -32881,7 +31377,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bgj" = (
+"bgi" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -32905,7 +31401,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bgk" = (
+"bgj" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -32922,7 +31418,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bgl" = (
+"bgk" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -32940,7 +31436,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bgm" = (
+"bgl" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -32956,7 +31452,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bgn" = (
+"bgm" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -32975,7 +31471,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bgo" = (
+"bgn" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -32986,7 +31482,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bgp" = (
+"bgo" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -33006,7 +31502,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bgq" = (
+"bgp" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -33024,13 +31520,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bgr" = (
+"bgq" = (
/obj/machinery/vending/coffee,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bgs" = (
+"bgr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -33040,7 +31536,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bgt" = (
+"bgs" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -33060,7 +31556,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bgu" = (
+"bgt" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -33080,7 +31576,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bgv" = (
+"bgu" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -33104,7 +31600,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bgw" = (
+"bgv" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -33126,26 +31622,26 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
+"bgw" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ tag = "icon-neutralcorner (NORTH)";
+ icon_state = "neutralcorner";
+ dir = 1;
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard)
"bgx" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/corner{
- tag = "icon-neutralcorner (NORTH)";
- icon_state = "neutralcorner";
- dir = 1;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/starboard)
-"bgy" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -33170,7 +31666,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bgz" = (
+"bgy" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -33192,7 +31688,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bgA" = (
+"bgz" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -33213,7 +31709,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bgB" = (
+"bgA" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -33233,7 +31729,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bgC" = (
+"bgB" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -33243,7 +31739,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bgD" = (
+"bgC" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -33257,7 +31753,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bgE" = (
+"bgD" = (
/obj/machinery/door/airlock/maintenance{
name = "Starboard Asteroid Maintenance Access";
req_access_txt = "12"
@@ -33271,7 +31767,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bgF" = (
+"bgE" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -33281,10 +31777,8 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bgG" = (
+/area/maintenance/asteroid/starboard)
+"bgF" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -33293,10 +31787,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bgH" = (
+/area/maintenance/asteroid/starboard)
+"bgG" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -33310,10 +31802,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bgI" = (
+/area/maintenance/asteroid/starboard)
+"bgH" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -33323,10 +31813,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bgJ" = (
+/area/maintenance/asteroid/starboard)
+"bgI" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -33335,16 +31823,12 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bgK" = (
+/area/maintenance/asteroid/starboard)
+"bgJ" = (
/obj/structure/closet/crate,
/turf/open/floor/plating/asteroid,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bgL" = (
+/area/maintenance/asteroid/starboard)
+"bgK" = (
/obj/structure/window{
tag = "icon-window (EAST)";
icon_state = "window";
@@ -33354,7 +31838,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"bgM" = (
+"bgL" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -33364,7 +31848,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bgN" = (
+"bgM" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -33377,7 +31861,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bgO" = (
+"bgN" = (
/obj/machinery/camera{
c_tag = "Bar";
dir = 5;
@@ -33391,7 +31875,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bgP" = (
+"bgO" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j2";
dir = 2
@@ -33401,7 +31885,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bgQ" = (
+"bgP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -33411,7 +31895,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bgR" = (
+"bgQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -33419,7 +31903,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bgS" = (
+"bgR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -33430,7 +31914,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bgT" = (
+"bgS" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/cable/orange{
d1 = 1;
@@ -33449,7 +31933,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bgU" = (
+"bgT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -33469,7 +31953,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bgV" = (
+"bgU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -33486,7 +31970,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bgW" = (
+"bgV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -33502,7 +31986,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bgX" = (
+"bgW" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -33518,7 +32002,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bgY" = (
+"bgX" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -33526,7 +32010,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bgZ" = (
+"bgY" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -33538,7 +32022,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bha" = (
+"bgZ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -33554,10 +32038,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bhb" = (
+/area/maintenance/asteroid/port/neast)
+"bha" = (
/obj/machinery/door/airlock/atmos{
name = "Service Atmospherics Checkpoint";
req_access_txt = "24"
@@ -33565,10 +32047,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bhc" = (
+/area/maintenance/asteroid/port/neast)
+"bhb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
@@ -33577,7 +32057,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bhd" = (
+"bhc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
@@ -33586,12 +32066,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bhe" = (
+"bhd" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bhf" = (
+"bhe" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -33607,7 +32087,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bhg" = (
+"bhf" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -33623,7 +32103,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bhh" = (
+"bhg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -33634,13 +32114,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bhi" = (
+"bhh" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bhj" = (
+"bhi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -33648,7 +32128,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bhk" = (
+"bhj" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -33659,7 +32139,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bhl" = (
+"bhk" = (
/obj/machinery/camera{
c_tag = "EVA Storage";
dir = 9;
@@ -33672,13 +32152,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bhm" = (
+"bhl" = (
/obj/machinery/vending/cola/random,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bhn" = (
+"bhm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
@@ -33686,7 +32166,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bho" = (
+"bhn" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -33698,7 +32178,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bhp" = (
+"bho" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -33708,7 +32188,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bhq" = (
+"bhp" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -33719,7 +32199,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bhr" = (
+"bhq" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -33735,7 +32215,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bhs" = (
+"bhr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -33752,7 +32232,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bht" = (
+"bhs" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -33767,23 +32247,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bhu" = (
+"bht" = (
/obj/machinery/light/small{
dir = 8
},
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bhv" = (
+/area/maintenance/asteroid/starboard)
+"bhu" = (
/obj/structure/girder,
/turf/open/floor/plating/asteroid,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bhw" = (
+/area/maintenance/asteroid/starboard)
+"bhv" = (
/obj/machinery/power/apc{
dir = 2;
name = "Surgery APC";
@@ -33799,16 +32275,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bhx" = (
+"bhw" = (
/obj/machinery/light/small,
/obj/structure/closet,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bhy" = (
+/area/maintenance/asteroid/starboard)
+"bhx" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -33816,10 +32290,8 @@
},
/obj/structure/grille/broken,
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bhz" = (
+/area/maintenance/asteroid/starboard)
+"bhy" = (
/obj/structure/rack,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -33830,7 +32302,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"bhA" = (
+"bhz" = (
/obj/structure/window{
tag = "icon-window (EAST)";
icon_state = "window";
@@ -33846,7 +32318,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"bhB" = (
+"bhA" = (
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
@@ -33855,7 +32327,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bhC" = (
+"bhB" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -33867,7 +32339,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bhD" = (
+"bhC" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -33875,37 +32347,37 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bhE" = (
+"bhD" = (
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bhF" = (
+"bhE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bhG" = (
+"bhF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bhH" = (
+"bhG" = (
/obj/effect/landmark/start/cook,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bhI" = (
+"bhH" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/condiment/peppermill,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bhJ" = (
+"bhI" = (
/obj/structure/table,
/obj/item/weapon/book/manual/chef_recipes,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -33916,18 +32388,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bhK" = (
+"bhJ" = (
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bhL" = (
+"bhK" = (
/obj/machinery/vending/dinnerware,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bhM" = (
+"bhL" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
@@ -33946,20 +32418,16 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bhN" = (
+/area/maintenance/asteroid/port/neast)
+"bhM" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bhO" = (
+/area/maintenance/asteroid/port/neast)
+"bhN" = (
/obj/structure/table,
/obj/item/weapon/wrench,
/obj/item/clothing/glasses/meson,
@@ -33969,39 +32437,37 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bhP" = (
+/area/maintenance/asteroid/port/neast)
+"bhO" = (
/turf/open/floor/plating/asteroid/airless,
/area/mine/unexplored{
name = "Civilian Asteroid"
})
-"bhQ" = (
+"bhP" = (
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
dir = 6
},
/obj/structure/lattice,
/turf/open/space,
/area/space)
-"bhR" = (
+"bhQ" = (
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
dir = 4
},
/obj/structure/lattice,
/turf/open/space,
/area/space)
-"bhS" = (
+"bhR" = (
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
dir = 10
},
/obj/structure/lattice,
/turf/open/space,
/area/space)
-"bhT" = (
+"bhS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/camera{
- c_tag = "SEngineering Asteroid Hallway 5";
+ c_tag = "Engineering Asteroid Hallway 5";
dir = 4;
icon_state = "camera"
},
@@ -34012,7 +32478,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bhU" = (
+"bhT" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -34023,7 +32489,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bhV" = (
+"bhU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
@@ -34032,7 +32498,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bhW" = (
+"bhV" = (
/obj/structure/table,
/obj/item/stack/rods{
amount = 50
@@ -34045,21 +32511,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bhX" = (
+"bhW" = (
/obj/structure/table,
/obj/item/stack/sheet/glass/fifty,
/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bhY" = (
+"bhX" = (
/obj/machinery/light,
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bhZ" = (
+"bhY" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/electrical{
pixel_x = 1;
@@ -34069,7 +32535,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bia" = (
+"bhZ" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
/turf/open/floor/plasteel/blue/side{
@@ -34079,13 +32545,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bib" = (
+"bia" = (
/obj/machinery/vending/snack/random,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bic" = (
+"bib" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -34093,7 +32559,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bid" = (
+"bic" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -34101,7 +32567,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bie" = (
+"bid" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -34115,13 +32581,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bif" = (
+"bie" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"big" = (
+"bif" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -34130,7 +32596,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bih" = (
+"big" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -34144,7 +32610,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bii" = (
+"bih" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -34156,7 +32622,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bij" = (
+"bii" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -34167,26 +32633,26 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bik" = (
+"bij" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bil" = (
+"bik" = (
/obj/machinery/door/airlock/maintenance{
- name = "Surgey Observation";
+ name = "Surgery Observation";
req_access_txt = "5"
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bim" = (
+"bil" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bin" = (
+"bim" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -34195,18 +32661,14 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bio" = (
+/area/maintenance/asteroid/starboard)
+"bin" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bip" = (
+/area/maintenance/asteroid/port/west)
+"bio" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -34215,10 +32677,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"biq" = (
+/area/maintenance/asteroid/port/west)
+"bip" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/camera{
c_tag = "Service Asteroid Hallway 2";
@@ -34234,7 +32694,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bir" = (
+"biq" = (
/obj/machinery/light{
dir = 8
},
@@ -34247,7 +32707,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bis" = (
+"bir" = (
/obj/structure/chair{
dir = 4
},
@@ -34256,7 +32716,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bit" = (
+"bis" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -34266,7 +32726,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"biu" = (
+"bit" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -34278,7 +32738,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"biv" = (
+"biu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -34289,7 +32749,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"biw" = (
+"biv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -34302,7 +32762,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bix" = (
+"biw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -34314,7 +32774,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"biy" = (
+"bix" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -34327,26 +32787,26 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"biz" = (
+"biy" = (
/obj/structure/table/reinforced,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters/preopen{
id = "kitchen"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"biA" = (
+"biz" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"biB" = (
+"biA" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -34356,21 +32816,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"biC" = (
+"biB" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/condiment/saltshaker,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"biD" = (
+"biC" = (
/obj/structure/table,
/obj/item/weapon/kitchen/rollingpin,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"biE" = (
+"biD" = (
/obj/structure/table,
/obj/machinery/microwave,
/obj/machinery/light{
@@ -34381,7 +32841,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"biF" = (
+"biE" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -34403,10 +32863,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"biG" = (
+/area/maintenance/asteroid/port/neast)
+"biF" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -34414,10 +32872,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"biH" = (
+/area/maintenance/asteroid/port/neast)
+"biG" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
icon_state = "connector_map";
dir = 8
@@ -34428,52 +32884,50 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"biI" = (
+/area/maintenance/asteroid/port/neast)
+"biH" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
/turf/open/space,
/area/space)
-"biJ" = (
+"biI" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
dir = 6
},
/turf/open/space,
/area/space)
-"biK" = (
+"biJ" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
dir = 4
},
/turf/open/space,
/area/space)
-"biL" = (
+"biK" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
dir = 10
},
/turf/open/space,
/area/space)
-"biM" = (
+"biL" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"biN" = (
+"biM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"biO" = (
+"biN" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/morgue)
-"biP" = (
+"biO" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -34482,26 +32936,26 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/morgue)
-"biQ" = (
+"biP" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"biR" = (
+"biQ" = (
/obj/structure/table,
/obj/item/weapon/surgicaldrill,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"biS" = (
+"biR" = (
/obj/structure/table,
/obj/item/weapon/hemostat,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"biT" = (
+"biS" = (
/obj/structure/table,
/obj/item/weapon/scalpel{
pixel_y = 12
@@ -34514,14 +32968,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"biU" = (
+"biT" = (
/obj/structure/table,
/obj/item/weapon/retractor,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"biV" = (
+"biU" = (
/obj/structure/table,
/obj/item/weapon/cautery{
pixel_x = 4
@@ -34530,7 +32984,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"biW" = (
+"biV" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -34538,7 +32992,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"biX" = (
+"biW" = (
/obj/structure/chair{
dir = 8
},
@@ -34546,7 +33000,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"biY" = (
+"biX" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -34555,7 +33009,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"biZ" = (
+"biY" = (
/obj/structure/chair{
dir = 8
},
@@ -34566,27 +33020,23 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bja" = (
+"biZ" = (
/obj/structure/closet/crate,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bjb" = (
+/area/maintenance/asteroid/starboard)
+"bja" = (
/obj/structure/grille,
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bjc" = (
+/area/maintenance/asteroid/starboard)
+"bjb" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bjd" = (
+"bjc" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -34595,10 +33045,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bje" = (
+/area/maintenance/asteroid/starboard)
+"bjd" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -34608,10 +33056,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bjf" = (
+/area/maintenance/asteroid/starboard)
+"bje" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -34625,10 +33071,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bjg" = (
+/area/maintenance/asteroid/port/west)
+"bjf" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -34640,10 +33084,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bjh" = (
+/area/maintenance/asteroid/port/west)
+"bjg" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -34656,10 +33098,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bji" = (
+/area/maintenance/asteroid/port/west)
+"bjh" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -34675,10 +33115,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bjj" = (
+/area/maintenance/asteroid/port/west)
+"bji" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -34694,10 +33132,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bjk" = (
+/area/maintenance/asteroid/port/west)
+"bjj" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -34714,10 +33150,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bjl" = (
+/area/maintenance/asteroid/port/west)
+"bjk" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -34734,7 +33168,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bjm" = (
+"bjl" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -34749,7 +33183,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bjn" = (
+"bjm" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -34769,40 +33203,40 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bjo" = (
+"bjn" = (
/obj/structure/grille,
-/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bjp" = (
+"bjo" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bjq" = (
+"bjp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bjr" = (
+"bjq" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bjs" = (
+"bjr" = (
/obj/effect/landmark/xmastree,
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bjt" = (
+"bjs" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -34812,17 +33246,17 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bju" = (
+"bjt" = (
/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters/preopen{
id = "kitchen"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bjv" = (
+"bju" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/glass/beaker,
/obj/item/weapon/reagent_containers/food/condiment/enzyme,
@@ -34830,21 +33264,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bjw" = (
+"bjv" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/snacks/mint,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bjx" = (
+"bjw" = (
/obj/structure/table,
/obj/machinery/microwave,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bjy" = (
+"bjx" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -34858,20 +33292,16 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bjz" = (
+/area/maintenance/asteroid/port/neast)
+"bjy" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bjA" = (
+/area/maintenance/asteroid/port/neast)
+"bjz" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
icon_state = "connector_map";
dir = 8
@@ -34886,10 +33316,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bjB" = (
+/area/maintenance/asteroid/port/neast)
+"bjA" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -32
},
@@ -34901,24 +33329,24 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bjC" = (
+"bjB" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
dir = 5
},
/turf/open/space,
/area/space)
-"bjD" = (
+"bjC" = (
/turf/closed/wall/r_wall,
/area/engine/engineering)
-"bjE" = (
+"bjD" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
dir = 9
},
/turf/open/space,
/area/space)
-"bjF" = (
+"bjE" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 24
},
@@ -34930,16 +33358,15 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bjG" = (
+"bjF" = (
/obj/structure/tank_dispenser/oxygen,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bjH" = (
+"bjG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/firedoor,
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -34957,14 +33384,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bjI" = (
+"bjH" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
pixel_y = 0
},
-/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -34975,9 +33401,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bjJ" = (
+"bjI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -34987,7 +33412,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bjK" = (
+"bjJ" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 24
},
@@ -34999,7 +33424,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bjL" = (
+"bjK" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1
@@ -35007,15 +33432,15 @@
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo)
-"bjM" = (
+/area/crew_quarters/heads/cmo)
+"bjL" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo)
-"bjN" = (
+/area/crew_quarters/heads/cmo)
+"bjM" = (
/obj/structure/table,
/obj/item/weapon/cartridge/medical{
pixel_x = -2;
@@ -35035,8 +33460,8 @@
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo)
-"bjO" = (
+/area/crew_quarters/heads/cmo)
+"bjN" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet,
/obj/machinery/airalarm{
@@ -35048,7 +33473,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"bjP" = (
+"bjO" = (
/obj/machinery/light/small{
dir = 1
},
@@ -35060,13 +33485,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"bjQ" = (
+"bjP" = (
/obj/structure/closet/secure_closet/personal/patient,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"bjR" = (
+"bjQ" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet,
/obj/machinery/firealarm{
@@ -35076,7 +33501,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"bjS" = (
+"bjR" = (
/obj/structure/table,
/obj/item/clothing/gloves/color/latex,
/obj/item/clothing/mask/surgical,
@@ -35085,12 +33510,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bjT" = (
+"bjS" = (
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bjU" = (
+"bjT" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -35099,7 +33524,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bjV" = (
+"bjU" = (
/obj/structure/table,
/obj/item/weapon/surgical_drapes,
/obj/item/weapon/razor,
@@ -35107,13 +33532,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bjW" = (
+"bjV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bjX" = (
+"bjW" = (
/obj/structure/chair{
dir = 8
},
@@ -35124,18 +33549,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bjY" = (
+"bjX" = (
/obj/structure/table,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bjZ" = (
+"bjY" = (
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bka" = (
+"bjZ" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -35145,18 +33570,14 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bkb" = (
+/area/maintenance/asteroid/starboard)
+"bka" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plating/asteroid,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bkc" = (
+/area/maintenance/asteroid/starboard)
+"bkb" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -35164,10 +33585,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bkd" = (
+/area/maintenance/asteroid/port/west)
+"bkc" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -35185,10 +33604,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bke" = (
+/area/maintenance/asteroid/port/west)
+"bkd" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -35201,10 +33618,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bkf" = (
+/area/maintenance/asteroid/port/west)
+"bke" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -35216,10 +33631,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bkg" = (
+/area/maintenance/asteroid/port/west)
+"bkf" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -35234,10 +33647,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bkh" = (
+/area/maintenance/asteroid/port/west)
+"bkg" = (
/obj/machinery/door/airlock/maintenance{
name = "Port Asteroid Maintenance";
req_access_txt = "12"
@@ -35253,10 +33664,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bki" = (
+/area/maintenance/asteroid/port/west)
+"bkh" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -35272,7 +33681,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bkj" = (
+"bki" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -35291,7 +33700,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bkk" = (
+"bkj" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -35308,7 +33717,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bkl" = (
+"bkk" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -35317,12 +33726,11 @@
/obj/machinery/door/airlock/glass{
name = "Bar"
},
-/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bkm" = (
+"bkl" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -35332,7 +33740,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bkn" = (
+"bkm" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -35346,7 +33754,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bko" = (
+"bkn" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -35358,7 +33766,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bkp" = (
+"bko" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -35375,7 +33783,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bkq" = (
+"bkp" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -35388,7 +33796,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bkr" = (
+"bkq" = (
/obj/structure/table/wood,
/obj/structure/cable/orange{
d1 = 4;
@@ -35399,7 +33807,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bks" = (
+"bkr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/orange{
d1 = 4;
@@ -35413,7 +33821,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bkt" = (
+"bks" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -35423,20 +33831,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bku" = (
+"bkt" = (
/obj/machinery/deepfryer,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bkv" = (
+"bku" = (
/obj/structure/table,
/obj/item/weapon/storage/box/donkpockets,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bkw" = (
+"bkv" = (
/obj/structure/closet/secure_closet/freezer/fridge,
/obj/machinery/airalarm{
dir = 8;
@@ -35447,7 +33855,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bkx" = (
+"bkw" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
@@ -35464,19 +33872,15 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bky" = (
+/area/maintenance/asteroid/port/neast)
+"bkx" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bkz" = (
+/area/maintenance/asteroid/port/neast)
+"bky" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
icon_state = "connector_map";
dir = 8
@@ -35488,10 +33892,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bkA" = (
+/area/maintenance/asteroid/port/neast)
+"bkz" = (
/obj/machinery/light/small{
dir = 4
},
@@ -35499,12 +33901,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bkB" = (
+"bkA" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"bkC" = (
+/area/engine/engineering)
+"bkB" = (
/obj/structure/cable{
icon_state = "0-2";
pixel_y = 1;
@@ -35522,8 +33924,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"bkD" = (
+/area/engine/engineering)
+"bkC" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -35533,18 +33935,31 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
+/area/engine/engineering)
+"bkD" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/power/emitter{
+ anchored = 1;
+ state = 2
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/engine/engineering)
"bkE" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
/obj/machinery/power/emitter{
anchored = 1;
state = 2
@@ -35552,21 +33967,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
+/area/engine/engineering)
"bkF" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/emitter{
- anchored = 1;
- state = 2
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/engine/supermatter)
-"bkG" = (
/obj/machinery/light/small{
dir = 8
},
@@ -35574,18 +33976,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bkH" = (
+"bkG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bkI" = (
+"bkH" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/morgue)
-"bkJ" = (
+"bkI" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -35594,8 +33996,8 @@
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo)
-"bkK" = (
+/area/crew_quarters/heads/cmo)
+"bkJ" = (
/obj/structure/table,
/obj/item/weapon/folder/red{
pixel_x = 8;
@@ -35605,7 +34007,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"bkL" = (
+"bkK" = (
/obj/structure/chair/office/light{
dir = 8
},
@@ -35614,7 +34016,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"bkM" = (
+"bkL" = (
/obj/machinery/vending/wallmed{
pixel_x = 24
},
@@ -35622,20 +34024,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"bkN" = (
+"bkM" = (
/obj/structure/table,
/obj/item/weapon/folder/white,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"bkO" = (
+"bkN" = (
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bkP" = (
+"bkO" = (
/obj/structure/table/optable,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/landmark/blobstart,
@@ -35643,13 +34045,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bkQ" = (
+"bkP" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bkR" = (
+"bkQ" = (
/obj/structure/chair{
dir = 8
},
@@ -35662,13 +34064,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bkS" = (
+"bkR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bkT" = (
+"bkS" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -35681,10 +34083,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bkU" = (
+/area/maintenance/asteroid/port/west)
+"bkT" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -35692,15 +34092,13 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bkV" = (
+/area/maintenance/asteroid/port/west)
+"bkU" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bkW" = (
+"bkV" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -35710,7 +34108,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bkX" = (
+"bkW" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -35724,14 +34122,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bkY" = (
+"bkX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/door/airlock/glass{
name = "Bar"
},
-/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/bar{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/crew_quarters/bar)
+"bkY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -35740,20 +34145,12 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
"bla" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/bar{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/bar)
-"blb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -35762,13 +34159,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"blc" = (
+"blb" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bld" = (
+"blc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -35776,20 +34173,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"ble" = (
+"bld" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"blf" = (
+"ble" = (
/obj/structure/closet/secure_closet/freezer/kitchen,
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"blg" = (
+"blf" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -35817,10 +34214,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"blh" = (
+/area/maintenance/asteroid/port/neast)
+"blg" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -35836,7 +34231,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bli" = (
+"blh" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -35850,7 +34245,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"blj" = (
+"bli" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -35867,7 +34262,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"blk" = (
+"blj" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -35886,7 +34281,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bll" = (
+"blk" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -35904,7 +34299,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"blm" = (
+"bll" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -35917,7 +34312,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bln" = (
+"blm" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -35928,7 +34323,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"blo" = (
+"bln" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -35937,8 +34332,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"blp" = (
+/area/engine/engineering)
+"blo" = (
/obj/machinery/light,
/obj/structure/cable{
d1 = 4;
@@ -35949,8 +34344,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"blq" = (
+/area/engine/engineering)
+"blp" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -35959,8 +34354,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"blr" = (
+/area/engine/engineering)
+"blq" = (
/obj/machinery/computer/station_alert,
/obj/machinery/requests_console{
announcementConsole = 1;
@@ -35973,14 +34368,14 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"bls" = (
+/area/crew_quarters/heads/chief)
+"blr" = (
/obj/machinery/light,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"blt" = (
+/area/engine/engineering)
+"bls" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -35993,7 +34388,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"blu" = (
+"blt" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -36012,7 +34407,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"blv" = (
+"blu" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -36032,7 +34427,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"blw" = (
+"blv" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -36054,7 +34449,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"blx" = (
+"blw" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -36074,7 +34469,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bly" = (
+"blx" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -36091,7 +34486,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"blz" = (
+"bly" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -36109,7 +34504,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"blA" = (
+"blz" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -36123,7 +34518,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"blB" = (
+"blA" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -36147,7 +34542,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"blC" = (
+"blB" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -36169,7 +34564,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"blD" = (
+"blC" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -36183,7 +34578,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"blE" = (
+"blD" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -36203,7 +34598,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"blF" = (
+"blE" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -36224,7 +34619,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"blG" = (
+"blF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -36242,7 +34637,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"blH" = (
+"blG" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -36265,7 +34660,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"blI" = (
+"blH" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -36282,7 +34677,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"blJ" = (
+"blI" = (
/obj/structure/cable/orange{
d2 = 8;
icon_state = "0-8"
@@ -36296,8 +34691,8 @@
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo)
-"blK" = (
+/area/crew_quarters/heads/cmo)
+"blJ" = (
/obj/machinery/button/door{
id = "medp1";
name = "Privacy Shutters";
@@ -36307,13 +34702,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"blL" = (
+"blK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"blM" = (
+"blL" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -36323,7 +34718,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"blN" = (
+"blM" = (
/obj/machinery/button/door{
id = "medp2";
name = "Privacy Shutters";
@@ -36333,27 +34728,27 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"blO" = (
+"blN" = (
/obj/machinery/computer/operating,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"blP" = (
+"blO" = (
/obj/structure/closet/crate/freezer/surplus_limbs,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"blQ" = (
+"blP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"blR" = (
+"blQ" = (
/obj/structure/chair{
dir = 8
},
@@ -36366,7 +34761,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"blS" = (
+"blR" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -36375,7 +34770,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"blT" = (
+"blS" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -36383,7 +34778,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"blU" = (
+"blT" = (
/obj/machinery/door/airlock/glass_virology{
name = "Isolation A";
req_access_txt = "39"
@@ -36393,29 +34788,29 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"blV" = (
+"blU" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"blW" = (
+"blV" = (
/obj/structure/bed,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"blX" = (
+"blW" = (
/obj/structure/table,
/obj/item/weapon/storage/box/donkpockets,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"blY" = (
+"blX" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -36425,7 +34820,7 @@
/area/mine/unexplored{
name = "Civilian Asteroid"
})
-"blZ" = (
+"blY" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -36435,10 +34830,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bma" = (
+/area/maintenance/asteroid/port/west)
+"blZ" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -36447,15 +34840,15 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
+"bma" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/storage/primary)
"bmb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/storage/primary)
-"bmc" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -36464,7 +34857,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bmd" = (
+"bmc" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -36474,7 +34867,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bme" = (
+"bmd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -36486,7 +34879,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bmf" = (
+"bme" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -36495,7 +34888,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bmg" = (
+"bmf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -36504,7 +34897,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bmh" = (
+"bmg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -36512,19 +34905,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bmi" = (
+"bmh" = (
/obj/machinery/light,
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bmj" = (
+"bmi" = (
/obj/machinery/vending/coffee,
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bmk" = (
+"bmj" = (
/obj/machinery/vending/cola,
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -36541,7 +34934,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bml" = (
+"bmk" = (
/obj/machinery/food_cart,
/obj/machinery/light_switch{
pixel_x = -25
@@ -36555,7 +34948,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bmm" = (
+"bml" = (
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -36564,7 +34957,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bmn" = (
+"bmm" = (
/obj/structure/disposaloutlet{
dir = 8
},
@@ -36578,7 +34971,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bmo" = (
+"bmn" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -36586,7 +34979,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bmp" = (
+"bmo" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -36604,10 +34997,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bmq" = (
+/area/maintenance/asteroid/port/neast)
+"bmp" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 4
},
@@ -36623,10 +35014,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bmr" = (
+/area/maintenance/asteroid/port/neast)
+"bmq" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -36641,10 +35030,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bms" = (
+/area/maintenance/asteroid/port/neast)
+"bmr" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -36662,10 +35049,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bmt" = (
+/area/maintenance/asteroid/port/neast)
+"bms" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 2;
@@ -36677,7 +35062,7 @@
},
/turf/open/space,
/area/space)
-"bmu" = (
+"bmt" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 2;
@@ -36690,7 +35075,7 @@
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/space)
-"bmv" = (
+"bmu" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 4
},
@@ -36707,7 +35092,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bmw" = (
+"bmv" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -36723,7 +35108,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bmx" = (
+"bmw" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -36740,7 +35125,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bmy" = (
+"bmx" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -36761,7 +35146,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bmz" = (
+"bmy" = (
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
@@ -36774,7 +35159,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bmA" = (
+"bmz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/camera{
c_tag = "Engineering Asteroid Hallway 2";
@@ -36788,7 +35173,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bmB" = (
+"bmA" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -36798,8 +35183,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"bmC" = (
+/area/engine/engineering)
+"bmB" = (
/obj/structure/reflector/single{
anchored = 1;
dir = 4;
@@ -36809,16 +35194,16 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"bmD" = (
+/area/engine/engineering)
+"bmC" = (
/obj/structure/reflector/box{
anchored = 1
},
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"bmE" = (
+/area/engine/engineering)
+"bmD" = (
/obj/structure/reflector/single{
anchored = 1;
dir = 1;
@@ -36828,8 +35213,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"bmF" = (
+/area/engine/engineering)
+"bmE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral/corner{
@@ -36839,7 +35224,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bmG" = (
+"bmF" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -36852,7 +35237,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bmH" = (
+"bmG" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -36861,7 +35246,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bmI" = (
+"bmH" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -36869,7 +35254,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bmJ" = (
+"bmI" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -36885,7 +35270,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bmK" = (
+"bmJ" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 4
},
@@ -36905,7 +35290,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bmL" = (
+"bmK" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -36924,7 +35309,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bmM" = (
+"bmL" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -36944,7 +35329,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bmN" = (
+"bmM" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 2;
@@ -36960,7 +35345,7 @@
},
/turf/open/space,
/area/space)
-"bmO" = (
+"bmN" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 2;
@@ -36976,7 +35361,7 @@
},
/turf/open/space,
/area/space)
-"bmP" = (
+"bmO" = (
/obj/structure/lattice/catwalk,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -36991,7 +35376,7 @@
},
/turf/open/space,
/area/space)
-"bmQ" = (
+"bmP" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 4
},
@@ -37011,7 +35396,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bmR" = (
+"bmQ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -37029,7 +35414,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bmS" = (
+"bmR" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -37049,7 +35434,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bmT" = (
+"bmS" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -37066,7 +35451,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bmU" = (
+"bmT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -37075,7 +35460,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bmV" = (
+"bmU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -37085,7 +35470,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bmW" = (
+"bmV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -37097,7 +35482,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bmX" = (
+"bmW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -37105,13 +35490,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/morgue)
-"bmY" = (
+"bmX" = (
/obj/machinery/light,
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo)
-"bmZ" = (
+/area/crew_quarters/heads/cmo)
+"bmY" = (
/obj/machinery/camera{
c_tag = "Chief Medical Officer's Office";
dir = 1;
@@ -37128,25 +35513,25 @@
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo)
-"bna" = (
+/area/crew_quarters/heads/cmo)
+"bmZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo)
-"bnb" = (
+/area/crew_quarters/heads/cmo)
+"bna" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters/preopen{
id = "medp1"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"bnc" = (
+"bnb" = (
/obj/machinery/door/airlock/medical{
name = "Patient Room";
req_access_txt = "5"
@@ -37156,7 +35541,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"bnd" = (
+"bnc" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -37164,22 +35549,23 @@
/obj/machinery/door/poddoor/shutters/preopen{
id = "medp1"
},
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/medical/patients_rooms)
+"bnd" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "medp2"
+ },
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
"bne" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "medp2"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/patients_rooms)
-"bnf" = (
/obj/machinery/door/airlock/medical{
name = "Patient Room 2";
req_access_txt = "5"
@@ -37189,25 +35575,25 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"bng" = (
+"bnf" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/poddoor/shutters/preopen{
id = "medp2"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"bnh" = (
+"bng" = (
/obj/structure/closet/secure_closet/medical2,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bni" = (
+"bnh" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -37224,13 +35610,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bnj" = (
+"bni" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bnk" = (
+"bnj" = (
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -37239,7 +35625,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bnl" = (
+"bnk" = (
/obj/structure/closet/crate/freezer,
/obj/item/weapon/reagent_containers/blood/empty,
/obj/item/weapon/reagent_containers/blood/empty,
@@ -37265,7 +35651,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bnm" = (
+"bnl" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -37275,13 +35661,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bnn" = (
+"bnm" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bno" = (
+"bnn" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -37289,7 +35675,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bnp" = (
+"bno" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -37302,7 +35688,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bnq" = (
+"bnp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -37310,7 +35696,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bnr" = (
+"bnq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -37324,7 +35710,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bns" = (
+"bnr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -37332,7 +35718,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bnt" = (
+"bns" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -37342,14 +35728,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bnu" = (
+"bnt" = (
/obj/structure/table,
/obj/machinery/microwave,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bnv" = (
+"bnu" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -37357,10 +35743,8 @@
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bnw" = (
+/area/maintenance/asteroid/starboard)
+"bnv" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -37368,7 +35752,7 @@
/area/mine/unexplored{
name = "Medical Asteroid"
})
-"bnx" = (
+"bnw" = (
/obj/structure/disposaloutlet{
dir = 4
},
@@ -37379,7 +35763,7 @@
/area/mine/unexplored{
name = "Medical Asteroid"
})
-"bny" = (
+"bnx" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -37388,7 +35772,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bnz" = (
+"bny" = (
/obj/structure/table,
/obj/machinery/camera{
c_tag = "Primary Tool Storage North";
@@ -37399,7 +35783,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bnA" = (
+"bnz" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -37409,7 +35793,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bnB" = (
+"bnA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -37427,6 +35811,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
+"bnB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/storage/primary)
"bnC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -37436,6 +35833,10 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -37450,34 +35851,17 @@
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Primary Tool Storage"
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
"bnE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/glass{
- name = "Primary Tool Storage"
- },
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/storage/primary)
-"bnF" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -37494,7 +35878,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bnG" = (
+"bnF" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -37515,7 +35899,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bnH" = (
+"bnG" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -37532,33 +35916,31 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bnI" = (
+"bnH" = (
/obj/machinery/door/airlock/glass{
name = "Bar"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/bar{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/crew_quarters/bar)
+"bnI" = (
+/obj/machinery/door/airlock/glass{
+ name = "Bar"
+ },
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
"bnJ" = (
-/obj/machinery/door/airlock/glass{
- name = "Bar"
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/bar{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/bar)
-"bnK" = (
/obj/structure/sign/barsign,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bnL" = (
+"bnK" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -37567,15 +35949,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bnM" = (
+"bnL" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bnN" = (
+/area/maintenance/asteroid/port/neast)
+"bnM" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced,
/obj/structure/cable{
@@ -37591,10 +35971,8 @@
dir = 1
},
/turf/open/space,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"bnO" = (
+/area/hallway/secondary/bridges/serv_engi)
+"bnN" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced,
/obj/structure/cable{
@@ -37611,10 +35989,8 @@
dir = 1
},
/turf/open/space,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"bnP" = (
+/area/hallway/secondary/bridges/serv_engi)
+"bnO" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced,
/obj/structure/cable{
@@ -37630,10 +36006,8 @@
dir = 1
},
/turf/open/space,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"bnQ" = (
+/area/hallway/secondary/bridges/serv_engi)
+"bnP" = (
/obj/machinery/light{
dir = 4
},
@@ -37645,15 +36019,15 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bnR" = (
+"bnQ" = (
/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
tag = "icon-intact (NORTH)";
icon_state = "intact";
dir = 1
},
/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"bnS" = (
+/area/engine/engineering)
+"bnR" = (
/obj/machinery/door/airlock/glass_engineering{
name = "Laser Room";
req_access_txt = "10"
@@ -37667,8 +36041,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"bnT" = (
+/area/engine/engineering)
+"bnS" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -37676,7 +36050,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bnU" = (
+"bnT" = (
/obj/machinery/door/airlock/glass_engineering{
name = "Laser Room";
req_access_txt = "10"
@@ -37684,8 +36058,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"bnV" = (
+/area/engine/engineering)
+"bnU" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -37699,7 +36073,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bnW" = (
+"bnV" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced,
/obj/structure/cable{
@@ -37719,10 +36093,8 @@
dir = 1
},
/turf/open/space,
-/area/construction/hallway{
- name = "Engineering-Medical Bridge"
- })
-"bnX" = (
+/area/hallway/secondary/bridges/engi_med)
+"bnW" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced,
/obj/structure/cable{
@@ -37742,10 +36114,8 @@
dir = 1
},
/turf/open/space,
-/area/construction/hallway{
- name = "Engineering-Medical Bridge"
- })
-"bnY" = (
+/area/hallway/secondary/bridges/engi_med)
+"bnX" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced,
/obj/structure/cable{
@@ -37765,10 +36135,8 @@
dir = 1
},
/turf/open/space,
-/area/construction/hallway{
- name = "Engineering-Medical Bridge"
- })
-"bnZ" = (
+/area/hallway/secondary/bridges/engi_med)
+"bnY" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -37778,7 +36146,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"boa" = (
+"bnZ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -37788,7 +36156,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bob" = (
+"boa" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -37804,24 +36172,24 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"boc" = (
+"bob" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"bod" = (
+"boc" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/poddoor/shutters/preopen{
id = "cmooffice"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo)
-"boe" = (
+/area/crew_quarters/heads/cmo)
+"bod" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/glass_medical{
id_tag = null;
@@ -37837,13 +36205,13 @@
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo)
-"bof" = (
+/area/crew_quarters/heads/cmo)
+"boe" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bog" = (
+/area/medical/medbay/central)
+"bof" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -37855,8 +36223,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"boh" = (
+/area/medical/medbay/central)
+"bog" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whiteblue/side{
tag = "icon-whiteblue (NORTH)";
@@ -37864,8 +36232,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"boi" = (
+/area/medical/medbay/central)
+"boh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/side{
tag = "icon-whiteblue (NORTH)";
@@ -37873,8 +36241,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"boj" = (
+/area/medical/medbay/central)
+"boi" = (
/obj/machinery/power/apc{
dir = 1;
name = "Morgue APC";
@@ -37892,21 +36260,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"bok" = (
+"boj" = (
/turf/open/floor/plasteel/whiteblue/side{
tag = "icon-whiteblue (NORTH)";
icon_state = "whiteblue";
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bol" = (
+/area/medical/medbay/central)
+"bok" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bom" = (
+"bol" = (
/obj/machinery/door/airlock/medical{
name = "Operating Theatre";
req_access_txt = "45"
@@ -37916,7 +36284,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bon" = (
+"bom" = (
/obj/machinery/door/airlock/glass_medical{
id_tag = "";
name = "Surgery Observation";
@@ -37927,7 +36295,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"boo" = (
+"bon" = (
/obj/structure/sink{
icon_state = "sink";
dir = 8;
@@ -37938,7 +36306,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bop" = (
+"boo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -37946,7 +36314,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"boq" = (
+"bop" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -37955,7 +36323,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bor" = (
+"boq" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -37964,7 +36332,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bos" = (
+"bor" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -37976,7 +36344,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bot" = (
+"bos" = (
/obj/machinery/door/airlock/virology{
name = "Break Room";
req_access_txt = "39"
@@ -37991,7 +36359,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bou" = (
+"bot" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -38002,7 +36370,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bov" = (
+"bou" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -38015,7 +36383,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bow" = (
+"bov" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -38023,7 +36391,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"box" = (
+"bow" = (
/obj/structure/table,
/obj/machinery/reagentgrinder,
/obj/machinery/light{
@@ -38037,7 +36405,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"boy" = (
+"box" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -38045,7 +36413,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"boz" = (
+"boy" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -38057,10 +36425,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"boA" = (
+/area/maintenance/asteroid/starboard)
+"boz" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -38068,17 +36434,13 @@
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"boB" = (
+/area/maintenance/asteroid/starboard)
+"boA" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"boC" = (
+/area/maintenance/asteroid/port/west)
+"boB" = (
/obj/structure/table,
/obj/machinery/light{
dir = 8
@@ -38088,7 +36450,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"boD" = (
+"boC" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -38098,24 +36460,24 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"boE" = (
+"boD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"boF" = (
+"boE" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"boG" = (
+"boF" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"boH" = (
+"boG" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -38125,7 +36487,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"boI" = (
+"boH" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -38151,8 +36513,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"boJ" = (
-/obj/machinery/door/firedoor,
+"boI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -38175,7 +36536,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"boK" = (
+"boJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -38188,7 +36549,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"boL" = (
+"boK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -38206,7 +36567,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"boM" = (
+"boL" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -38223,7 +36584,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"boN" = (
+"boM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -38231,7 +36592,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"boO" = (
+"boN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -38245,7 +36606,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"boP" = (
+"boO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -38256,7 +36617,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"boQ" = (
+"boP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -38267,7 +36628,22 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
+"boQ" = (
+/turf/open/floor/plasteel/neutral/corner{
+ tag = "icon-neutralcorner (NORTH)";
+ icon_state = "neutralcorner";
+ dir = 1;
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/port)
"boR" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
icon_state = "neutralcorner";
@@ -38276,21 +36652,6 @@
},
/area/hallway/primary/port)
"boS" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral/corner{
- tag = "icon-neutralcorner (NORTH)";
- icon_state = "neutralcorner";
- dir = 1;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/port)
-"boT" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -38305,7 +36666,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"boU" = (
+"boT" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -38317,7 +36678,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"boV" = (
+"boU" = (
/obj/structure/sign/map/left/ceres{
pixel_y = 32
},
@@ -38332,7 +36693,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"boW" = (
+"boV" = (
/obj/machinery/door/airlock/glass,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -38344,7 +36705,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"boX" = (
+"boW" = (
/obj/machinery/camera{
c_tag = "Engineering Asteroid Hallway 1"
},
@@ -38355,14 +36716,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"boY" = (
-/obj/machinery/door/firedoor,
+"boX" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
icon_state = "neutralcorner";
@@ -38370,7 +36731,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"boZ" = (
+"boY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -38381,7 +36742,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bpa" = (
+"boZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -38392,7 +36753,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bpb" = (
+"bpa" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
@@ -38406,22 +36767,12 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/power/apc{
- dir = 8;
- name = "Supermatter Containment Room APC";
- pixel_x = -23;
- pixel_y = 2
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
/turf/open/floor/engine{
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bpc" = (
+/area/engine/engineering)
+"bpb" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -38435,8 +36786,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bpd" = (
+/area/engine/engineering)
+"bpc" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -38453,8 +36804,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bpe" = (
+/area/engine/engineering)
+"bpd" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -38465,8 +36816,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bpf" = (
+/area/engine/engineering)
+"bpe" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -38477,8 +36828,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bpg" = (
+/area/engine/engineering)
+"bpf" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
},
@@ -38489,8 +36840,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bph" = (
+/area/engine/engineering)
+"bpg" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
@@ -38498,8 +36849,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"bpi" = (
+/area/engine/engineering)
+"bph" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
@@ -38510,14 +36861,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bpj" = (
+/area/engine/engineering)
+"bpi" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 10
},
/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"bpk" = (
+/area/engine/engineering)
+"bpj" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -38532,7 +36883,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bpl" = (
+"bpk" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -38561,7 +36912,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bpm" = (
+"bpl" = (
/obj/machinery/camera{
c_tag = "Engineering Asteroid Hallway 6"
},
@@ -38573,14 +36924,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bpn" = (
-/obj/machinery/door/firedoor,
+"bpm" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
icon_state = "neutralcorner";
@@ -38588,7 +36939,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bpo" = (
+"bpn" = (
/obj/structure/sign/map/left/ceres{
pixel_y = 32
},
@@ -38599,7 +36950,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bpp" = (
+"bpo" = (
/obj/machinery/light{
dir = 1
},
@@ -38610,14 +36961,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bpq" = (
-/obj/machinery/door/firedoor,
+"bpp" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
icon_state = "neutralcorner";
@@ -38625,7 +36976,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bpr" = (
+"bpq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/sign/directions/security{
dir = 1;
@@ -38638,7 +36989,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bps" = (
+"bpr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -38656,7 +37007,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bpt" = (
+"bps" = (
/obj/machinery/disposal/deliveryChute{
desc = "A chute for big and small criminals alike!";
name = "Criminal Delivery Chute"
@@ -38673,7 +37024,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"bpu" = (
+"bpt" = (
/obj/structure/table,
/obj/machinery/airalarm{
frequency = 1439;
@@ -38694,7 +37045,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"bpv" = (
+"bpu" = (
/obj/machinery/recharger,
/obj/structure/table,
/obj/machinery/light{
@@ -38709,7 +37060,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"bpw" = (
+"bpv" = (
/obj/structure/filingcabinet,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
@@ -38728,7 +37079,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"bpx" = (
+"bpw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -38740,10 +37091,9 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"bpy" = (
+"bpx" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d2 = 2;
icon_state = "0-2"
@@ -38751,11 +37101,12 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"bpz" = (
+"bpy" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/side{
tag = "icon-whiteblue (NORTH)";
@@ -38763,8 +37114,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bpA" = (
+/area/medical/medbay/central)
+"bpz" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -38781,16 +37132,16 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bpB" = (
+/area/medical/medbay/central)
+"bpA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bpC" = (
+/area/medical/medbay/central)
+"bpB" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -38804,8 +37155,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bpD" = (
+/area/medical/medbay/central)
+"bpC" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -38818,8 +37169,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bpE" = (
+/area/medical/medbay/central)
+"bpD" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -38829,8 +37180,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bpF" = (
+/area/medical/medbay/central)
+"bpE" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -38847,8 +37198,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bpG" = (
+/area/medical/medbay/central)
+"bpF" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -38860,8 +37211,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bpH" = (
+/area/medical/medbay/central)
+"bpG" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -38876,8 +37227,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bpI" = (
+/area/medical/medbay/central)
+"bpH" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -38894,8 +37245,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bpJ" = (
+/area/medical/medbay/central)
+"bpI" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -38905,8 +37256,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bpK" = (
+/area/medical/medbay/central)
+"bpJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -38914,8 +37265,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bpL" = (
+/area/medical/medbay/central)
+"bpK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -38925,33 +37276,33 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bpM" = (
+/area/medical/medbay/central)
+"bpL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bpN" = (
+/area/medical/medbay/central)
+"bpM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bpO" = (
+/area/medical/medbay/central)
+"bpN" = (
/obj/machinery/vending/medical,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bpP" = (
+/area/medical/medbay/central)
+"bpO" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bpQ" = (
+/area/medical/medbay/central)
+"bpP" = (
/obj/structure/table,
/obj/item/weapon/book/manual/wiki/infections,
/obj/machinery/camera{
@@ -38964,7 +37315,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bpR" = (
+"bpQ" = (
/obj/structure/table,
/obj/item/clothing/suit/straight_jacket,
/obj/item/clothing/mask/muzzle,
@@ -38972,7 +37323,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bpS" = (
+"bpR" = (
/obj/structure/table/glass,
/obj/item/clothing/gloves/color/latex,
/obj/item/device/healthanalyzer,
@@ -38996,14 +37347,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bpT" = (
+"bpS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bpU" = (
+"bpT" = (
/obj/machinery/smartfridge/chemistry/virology/preloaded,
/turf/open/floor/plasteel/whitegreen/side{
tag = "icon-whitegreen (EAST)";
@@ -39012,19 +37363,17 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bpV" = (
+"bpU" = (
/obj/structure/closet/wardrobe/virology_white,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bpW" = (
+"bpV" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bpX" = (
+/area/maintenance/asteroid/starboard)
+"bpW" = (
/obj/structure/shuttle/engine/propulsion/burst{
tag = "icon-propulsion (WEST)";
icon_state = "propulsion";
@@ -39032,20 +37381,20 @@
},
/turf/open/floor/plating,
/area/shuttle/pod_3)
-"bpY" = (
+"bpX" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/pod_3)
-"bpZ" = (
+"bpY" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bqa" = (
+"bpZ" = (
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bqb" = (
+"bqa" = (
/obj/machinery/light/small{
dir = 4
},
@@ -39058,10 +37407,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bqc" = (
+/area/maintenance/asteroid/port/west)
+"bqb" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
/obj/structure/sign/poster/random{
@@ -39073,14 +37420,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bqd" = (
+"bqc" = (
/obj/structure/table,
/obj/item/clothing/gloves/color/yellow,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bqe" = (
+"bqd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -39094,7 +37441,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bqf" = (
+"bqe" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -39104,7 +37451,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bqg" = (
+"bqf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -39119,8 +37466,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bqh" = (
-/obj/machinery/door/firedoor,
+"bqg" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -39135,7 +37481,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bqi" = (
+"bqh" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -39143,7 +37489,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bqj" = (
+"bqi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/junction{
tag = "icon-pipe-j2 (WEST)";
@@ -39154,7 +37500,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bqk" = (
+"bqj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -39169,7 +37515,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bql" = (
+"bqk" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -39178,37 +37524,37 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bqm" = (
-/obj/machinery/door/firedoor,
+"bql" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bqn" = (
-/obj/machinery/door/firedoor,
+"bqm" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bqo" = (
+"bqn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bqp" = (
+"bqo" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
@@ -39216,7 +37562,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bqq" = (
+"bqp" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -39231,7 +37577,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bqr" = (
+"bqq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
@@ -39245,7 +37591,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bqs" = (
+"bqr" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -39267,8 +37613,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bqt" = (
+/area/engine/engineering)
+"bqs" = (
/obj/effect/turf_decal/stripes/corner,
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 1
@@ -39277,22 +37623,23 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bqu" = (
+/area/engine/engineering)
+"bqt" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/components/trinary/filter/flipped{
dir = 8;
filter_type = "co2";
icon_state = "filter_off_f";
name = "gas filter (CO2)";
+ on = 1;
tag = "icon-filter_off_f (WEST)"
},
/turf/open/floor/engine{
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bqv" = (
+/area/engine/engineering)
+"bqu" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
@@ -39302,22 +37649,23 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bqw" = (
+/area/engine/engineering)
+"bqv" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/components/trinary/filter/flipped{
dir = 8;
filter_type = "o2";
icon_state = "filter_off_f";
name = "gas filter (O2)";
+ on = 1;
tag = "icon-filter_off_f (WEST)"
},
/turf/open/floor/engine{
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bqx" = (
+/area/engine/engineering)
+"bqw" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
@@ -39335,8 +37683,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bqy" = (
+/area/engine/engineering)
+"bqx" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
@@ -39348,36 +37696,38 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bqz" = (
+/area/engine/engineering)
+"bqy" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/components/trinary/filter/flipped{
dir = 8;
filter_type = "plasma";
icon_state = "filter_off_f";
name = "gas filter (Plasma)";
+ on = 1;
tag = "icon-filter_off_f (WEST)"
},
/turf/open/floor/engine{
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bqA" = (
+/area/engine/engineering)
+"bqz" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/components/trinary/filter/flipped{
dir = 8;
filter_type = "";
icon_state = "filter_off_f";
name = "gas filter (Custom)";
+ on = 1;
tag = "icon-filter_off_f (WEST)"
},
/turf/open/floor/engine{
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bqB" = (
+/area/engine/engineering)
+"bqA" = (
/obj/effect/turf_decal/stripes/corner{
dir = 1
},
@@ -39388,8 +37738,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bqC" = (
+/area/engine/engineering)
+"bqB" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -39400,14 +37750,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bqD" = (
+/area/engine/engineering)
+"bqC" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 5
},
/turf/closed/wall/r_wall,
/area/engine/supermatter)
-"bqE" = (
+"bqD" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 8;
frequency = 1441;
@@ -39415,8 +37765,8 @@
pixel_y = 1
},
/turf/open/floor/plating/airless,
-/area/engine/supermatter)
-"bqF" = (
+/area/engine/engineering)
+"bqE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/obj/item/device/radio/intercom{
@@ -39432,8 +37782,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bqG" = (
-/obj/machinery/door/firedoor,
+"bqF" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -39443,12 +37792,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bqH" = (
-/obj/machinery/door/firedoor,
+"bqG" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -39458,11 +37807,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bqI" = (
+"bqH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -39471,7 +37821,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bqJ" = (
+"bqI" = (
/obj/machinery/holopad,
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
@@ -39481,7 +37831,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bqK" = (
+"bqJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -39493,7 +37843,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bqL" = (
+"bqK" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -39515,7 +37865,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"bqM" = (
+"bqL" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -39528,7 +37878,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"bqN" = (
+"bqM" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -39542,7 +37892,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"bqO" = (
+"bqN" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -39562,7 +37912,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"bqP" = (
+"bqO" = (
/obj/machinery/door/airlock/glass_security{
name = "Security Office";
req_access_txt = "63"
@@ -39589,7 +37939,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"bqQ" = (
+"bqP" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -39601,8 +37951,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bqR" = (
+/area/medical/medbay/central)
+"bqQ" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -39618,8 +37968,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bqS" = (
+/area/medical/medbay/central)
+"bqR" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -39632,22 +37982,22 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bqT" = (
+/area/medical/medbay/central)
+"bqS" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bqU" = (
+/area/medical/medbay/central)
+"bqT" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bqV" = (
+/area/medical/medbay/central)
+"bqU" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -39655,8 +38005,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bqW" = (
+/area/medical/medbay/central)
+"bqV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -39670,22 +38020,22 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bqX" = (
+/area/medical/medbay/central)
+"bqW" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bqY" = (
+/area/medical/medbay/central)
+"bqX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bqZ" = (
+/area/medical/medbay/central)
+"bqY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -39701,8 +38051,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bra" = (
+/area/medical/medbay/central)
+"bqZ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -39715,8 +38065,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"brb" = (
+/area/medical/medbay/central)
+"bra" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -39724,16 +38074,16 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"brc" = (
+/area/medical/medbay/central)
+"brb" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"brd" = (
+/area/medical/medbay/central)
+"brc" = (
/obj/structure/table,
/obj/item/stack/packageWrap,
/obj/machinery/light{
@@ -39743,8 +38093,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bre" = (
+/area/medical/medbay/central)
+"brd" = (
/obj/structure/closet/l3closet/virology,
/turf/open/floor/plasteel/whitegreen/side{
tag = "icon-whitegreen (NORTHWEST)";
@@ -39753,7 +38103,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"brf" = (
+"bre" = (
/obj/machinery/shower{
pixel_y = 24
},
@@ -39764,7 +38114,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"brg" = (
+"brf" = (
/obj/machinery/shower{
pixel_y = 24
},
@@ -39775,7 +38125,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"brh" = (
+"brg" = (
/obj/structure/closet/l3closet/virology,
/obj/machinery/light{
dir = 1
@@ -39787,7 +38137,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bri" = (
+"brh" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -39796,7 +38146,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"brj" = (
+"bri" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/box/beakers{
pixel_x = 2;
@@ -39819,14 +38169,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"brk" = (
+"brj" = (
/obj/structure/chair/stool,
/obj/effect/landmark/start/virologist,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"brl" = (
+"brk" = (
/obj/machinery/computer/pandemic,
/turf/open/floor/plasteel/whitegreen/side{
tag = "icon-whitegreen (EAST)";
@@ -39835,7 +38185,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"brm" = (
+"brl" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 4;
name = "Medical Escape Pod"
@@ -39843,24 +38193,18 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"brn" = (
+/area/maintenance/asteroid/starboard)
+"brm" = (
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bro" = (
+/area/maintenance/asteroid/starboard)
+"brn" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 4;
name = "Medical Escape Pod"
},
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"brp" = (
+/area/maintenance/asteroid/starboard)
+"bro" = (
/obj/machinery/door/airlock/shuttle{
name = "Escape Pod Airlock"
},
@@ -39872,7 +38216,7 @@
},
/turf/open/floor/plating,
/area/shuttle/pod_3)
-"brq" = (
+"brp" = (
/obj/structure/chair{
dir = 4
},
@@ -39881,7 +38225,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_3)
-"brr" = (
+"brq" = (
/obj/structure/chair{
dir = 4
},
@@ -39903,12 +38247,12 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_3)
-"brs" = (
+"brr" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
/turf/open/floor/plating,
/area/shuttle/pod_3)
-"brt" = (
+"brs" = (
/obj/docking_port/stationary/random{
dir = 4;
id = "pod_lavaland3";
@@ -39916,25 +38260,25 @@
},
/turf/open/space,
/area/space)
-"bru" = (
+"brt" = (
/obj/item/stack/rods,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"brv" = (
+"bru" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"brw" = (
+"brv" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"brx" = (
+"brw" = (
/obj/machinery/vending/tool,
/obj/structure/sign/map/left/ceres{
pixel_x = -32
@@ -39943,7 +38287,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bry" = (
+"brx" = (
/obj/structure/table,
/obj/item/weapon/wrench,
/obj/item/weapon/screwdriver,
@@ -39951,15 +38295,15 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"brz" = (
+"bry" = (
/obj/structure/grille,
-/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"brA" = (
+"brz" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -39969,13 +38313,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"brB" = (
+"brA" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"brC" = (
+"brB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -40008,8 +38352,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"brD" = (
-/obj/machinery/door/firedoor,
+"brC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -40027,7 +38370,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"brE" = (
+"brD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -40035,14 +38378,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"brF" = (
+"brE" = (
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"brG" = (
+"brF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -40060,7 +38403,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"brH" = (
+"brG" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -40072,7 +38415,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"brI" = (
+"brH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -40083,7 +38426,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"brJ" = (
+"brI" = (
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -40098,7 +38441,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"brK" = (
+"brJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -40108,8 +38451,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"brL" = (
-/obj/machinery/door/firedoor,
+"brK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -40119,13 +38461,14 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"brM" = (
+"brL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -40141,7 +38484,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"brN" = (
+"brM" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -40152,7 +38495,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"brO" = (
+"brN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -40162,7 +38505,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"brP" = (
+"brO" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/firealarm{
dir = 1;
@@ -40174,7 +38517,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"brQ" = (
+"brP" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
@@ -40182,7 +38525,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"brR" = (
+"brQ" = (
/obj/machinery/door/airlock/glass,
/obj/structure/cable{
d1 = 4;
@@ -40196,7 +38539,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"brS" = (
+"brR" = (
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
pixel_x = 0;
@@ -40214,7 +38557,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"brT" = (
+"brS" = (
/obj/machinery/light,
/obj/structure/cable{
d1 = 4;
@@ -40228,7 +38571,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"brU" = (
+"brT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -40244,8 +38587,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"brV" = (
-/obj/machinery/door/firedoor,
+"brU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -40261,13 +38603,14 @@
icon_state = "4-8";
pixel_x = 0
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"brW" = (
+"brV" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/obj/structure/cable{
d1 = 4;
@@ -40281,7 +38624,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"brX" = (
+"brW" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -40295,7 +38638,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"brY" = (
+"brX" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -40314,7 +38657,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"brZ" = (
+"brY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -40325,7 +38668,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bsa" = (
+"brZ" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -40339,8 +38682,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bsb" = (
+/area/engine/engineering)
+"bsa" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -40353,15 +38696,15 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bsc" = (
+/area/engine/engineering)
+"bsb" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bsd" = (
+"bsc" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -40370,8 +38713,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bse" = (
+/area/engine/engineering)
+"bsd" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -40379,8 +38722,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bsf" = (
+/area/engine/engineering)
+"bse" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -40392,7 +38735,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bsg" = (
+"bsf" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -40413,7 +38756,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bsh" = (
+"bsg" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -40430,7 +38773,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bsi" = (
+"bsh" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -40447,8 +38790,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bsj" = (
-/obj/machinery/door/firedoor,
+"bsi" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -40466,11 +38808,12 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bsk" = (
+"bsj" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -40493,7 +38836,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bsl" = (
+"bsk" = (
/obj/machinery/light,
/obj/structure/cable{
d1 = 4;
@@ -40505,7 +38848,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bsm" = (
+"bsl" = (
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
pixel_x = 0;
@@ -40521,7 +38864,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bsn" = (
+"bsm" = (
/obj/machinery/door/airlock/glass,
/obj/structure/cable{
d1 = 4;
@@ -40533,7 +38876,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bso" = (
+"bsn" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
@@ -40541,14 +38884,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bsp" = (
+"bso" = (
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bsq" = (
+"bsp" = (
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -40559,21 +38902,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bsr" = (
-/obj/machinery/door/firedoor,
+"bsq" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bss" = (
+"bsr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/sign/directions/engineering{
dir = 8;
@@ -40597,7 +38940,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bst" = (
+"bss" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/firealarm{
dir = 4;
@@ -40613,7 +38956,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bsu" = (
+"bst" = (
/obj/machinery/power/apc{
dir = 8;
name = "Medbay Security Checkpoint APC";
@@ -40627,7 +38970,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"bsv" = (
+"bsu" = (
/obj/structure/chair/office/dark{
dir = 8
},
@@ -40636,12 +38979,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"bsw" = (
+"bsv" = (
/turf/open/floor/plasteel/red/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"bsx" = (
+"bsw" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1
@@ -40650,7 +38993,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"bsy" = (
+"bsx" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -40662,21 +39005,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"bsz" = (
+"bsy" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable/orange,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"bsA" = (
+"bsz" = (
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bsB" = (
+/area/medical/medbay/central)
+"bsA" = (
/obj/machinery/light,
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -40686,27 +39029,27 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bsC" = (
+/area/medical/medbay/central)
+"bsB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
+/area/medical/medbay/central)
+"bsC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/delivery{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/medical/medbay/central)
"bsD" = (
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/delivery{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bsE" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/delivery{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/medbay)
-"bsF" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -40718,24 +39061,24 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bsG" = (
+/area/medical/medbay/central)
+"bsF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bsH" = (
+/area/medical/medbay/central)
+"bsG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bsI" = (
+/area/medical/medbay/central)
+"bsH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -40745,8 +39088,8 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bsJ" = (
+/area/medical/medbay/central)
+"bsI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -40754,7 +39097,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bsK" = (
+"bsJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -40771,7 +39114,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bsL" = (
+"bsK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -40782,7 +39125,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bsM" = (
+"bsL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -40793,7 +39136,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bsN" = (
+"bsM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -40801,7 +39144,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bsO" = (
+"bsN" = (
/obj/structure/table/glass,
/obj/item/weapon/book/manual/wiki/infections{
pixel_y = 7
@@ -40820,13 +39163,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bsP" = (
+"bsO" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bsQ" = (
+"bsP" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -40836,7 +39179,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bsR" = (
+"bsQ" = (
/obj/structure/table,
/obj/item/weapon/hand_labeler,
/obj/item/device/radio/headset/headset_med,
@@ -40854,19 +39197,15 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bsS" = (
+"bsR" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating/asteroid,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bsT" = (
+/area/maintenance/asteroid/starboard)
+"bsS" = (
/obj/machinery/light/small,
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bsU" = (
+/area/maintenance/asteroid/starboard)
+"bsT" = (
/obj/machinery/gateway{
dir = 9
},
@@ -40874,7 +39213,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bsV" = (
+"bsU" = (
/obj/machinery/gateway{
dir = 1
},
@@ -40882,7 +39221,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bsW" = (
+"bsV" = (
/obj/machinery/gateway{
dir = 5
},
@@ -40890,19 +39229,17 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bsX" = (
+"bsW" = (
/obj/item/weapon/crowbar,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bsY" = (
+"bsX" = (
/obj/item/clothing/head/cone,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bsZ" = (
+/area/maintenance/asteroid/port/west)
+"bsY" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -40913,10 +39250,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bta" = (
+/area/maintenance/asteroid/port/west)
+"bsZ" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/electrical{
pixel_x = 1;
@@ -40932,21 +39267,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"btb" = (
+"bta" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"btc" = (
+"btb" = (
/obj/structure/table,
/obj/item/weapon/storage/belt/utility,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"btd" = (
+"btc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -40958,12 +39293,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bte" = (
+"btd" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"btf" = (
+"bte" = (
/turf/open/floor/plasteel/green/corner{
tag = "icon-greencorner (WEST)";
icon_state = "greencorner";
@@ -40971,14 +39306,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"btg" = (
+"btf" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bth" = (
+"btg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/orange{
d1 = 1;
@@ -40989,19 +39324,17 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bti" = (
+"bth" = (
/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
/obj/machinery/door/window/eastleft{
name = "Hydroponics Desk";
req_access_txt = "35"
},
-/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"btj" = (
+"bti" = (
/obj/structure/window/reinforced/fulltile,
/obj/structure/grille,
/obj/structure/disposalpipe/segment{
@@ -41012,13 +39345,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"btk" = (
+"btj" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"btl" = (
+"btk" = (
/obj/machinery/door/airlock/maintenance{
name = "Port Asteroid Maintenance";
req_access_txt = "12"
@@ -41030,18 +39363,14 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"btm" = (
+/area/maintenance/asteroid/port/east)
+"btl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"btn" = (
+/area/hallway/secondary/bridges/serv_engi)
+"btm" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -41052,10 +39381,8 @@
/obj/structure/grille,
/obj/structure/window/reinforced,
/turf/open/space,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"bto" = (
+/area/hallway/secondary/bridges/serv_engi)
+"btn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/airlock/maintenance/external{
name = "External Airlock Access";
@@ -41065,7 +39392,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"btp" = (
+"bto" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -41077,7 +39404,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"btq" = (
+"btp" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 5
},
@@ -41085,16 +39412,16 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"btr" = (
+/area/engine/engineering)
+"btq" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"bts" = (
+/area/engine/engineering)
+"btr" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -41113,8 +39440,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"btt" = (
+/area/engine/engineering)
+"bts" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -41131,8 +39458,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"btu" = (
+/area/engine/engineering)
+"btt" = (
/obj/effect/turf_decal/stripes/end{
tag = "icon-warn_end (EAST)";
icon_state = "warn_end";
@@ -41151,7 +39478,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"btv" = (
+"btu" = (
/obj/machinery/power/rad_collector{
anchored = 1
},
@@ -41164,7 +39491,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"btw" = (
+"btv" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/general/visible{
@@ -41176,7 +39503,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"btx" = (
+"btw" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -41187,13 +39514,13 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bty" = (
+"btx" = (
/turf/open/floor/engine{
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
/area/engine/supermatter)
-"btz" = (
+"bty" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -41203,7 +39530,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"btA" = (
+"btz" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/general/visible{
@@ -41214,7 +39541,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"btB" = (
+"btA" = (
/obj/machinery/power/rad_collector{
anchored = 1
},
@@ -41227,7 +39554,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"btC" = (
+"btB" = (
/obj/effect/turf_decal/stripes/end{
tag = "icon-warn_end (WEST)";
icon_state = "warn_end";
@@ -41246,7 +39573,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"btD" = (
+"btC" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -41262,8 +39589,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"btE" = (
+/area/engine/engineering)
+"btD" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -41276,16 +39603,16 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"btF" = (
+/area/engine/engineering)
+"btE" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 1
},
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"btG" = (
+/area/engine/engineering)
+"btF" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
icon_state = "connector_map";
dir = 8
@@ -41299,8 +39626,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"btH" = (
+/area/engine/engineering)
+"btG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -41312,7 +39639,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"btI" = (
+"btH" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -41328,7 +39655,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"btJ" = (
+"btI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -41339,7 +39666,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"btK" = (
+"btJ" = (
/obj/machinery/door/airlock/maintenance{
name = "Central Asteroid Maintenance";
req_access_txt = "12"
@@ -41354,10 +39681,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"btL" = (
+/area/maintenance/asteroid/central)
+"btK" = (
/obj/machinery/door/airlock/maintenance{
name = "Central Asteroid Maintenance";
req_access_txt = "12"
@@ -41365,10 +39690,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"btM" = (
+/area/maintenance/asteroid/central)
+"btL" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -41383,10 +39706,8 @@
/obj/structure/grille,
/obj/structure/window/reinforced,
/turf/open/space,
-/area/construction/hallway{
- name = "Engineering-Medical Bridge"
- })
-"btN" = (
+/area/hallway/secondary/bridges/engi_med)
+"btM" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -41400,10 +39721,8 @@
/obj/structure/grille,
/obj/structure/window/reinforced,
/turf/open/space,
-/area/construction/hallway{
- name = "Engineering-Medical Bridge"
- })
-"btO" = (
+/area/hallway/secondary/bridges/engi_med)
+"btN" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -41418,10 +39737,8 @@
/obj/structure/grille,
/obj/structure/window/reinforced,
/turf/open/space,
-/area/construction/hallway{
- name = "Engineering-Medical Bridge"
- })
-"btP" = (
+/area/hallway/secondary/bridges/engi_med)
+"btO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -41436,7 +39753,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"btQ" = (
+"btP" = (
/obj/machinery/computer/secure_data,
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -41450,7 +39767,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"btR" = (
+"btQ" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -41458,16 +39775,16 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"btS" = (
+/area/medical/medbay/central)
+"btR" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"btT" = (
+/area/medical/medbay/central)
+"btS" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -41475,8 +39792,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"btU" = (
+/area/medical/medbay/central)
+"btT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -41484,8 +39801,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"btV" = (
+/area/medical/medbay/central)
+"btU" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -41493,13 +39810,13 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"btW" = (
+/area/medical/medbay/central)
+"btV" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"btX" = (
+/area/medical/medbay/central)
+"btW" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -41509,16 +39826,16 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"btY" = (
+/area/medical/medbay/central)
+"btX" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/open/floor/plasteel/whiteblue/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"btZ" = (
+/area/medical/medbay/central)
+"btY" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -41527,14 +39844,14 @@
/turf/open/floor/plasteel/whiteblue/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bua" = (
+/area/medical/medbay/central)
+"btZ" = (
/obj/machinery/iv_drip,
/turf/open/floor/plasteel/whiteblue/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bub" = (
+/area/medical/medbay/central)
+"bua" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -41542,8 +39859,8 @@
/turf/open/floor/plasteel/whiteblue/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"buc" = (
+/area/medical/medbay/central)
+"bub" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -41553,8 +39870,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bud" = (
+/area/medical/medbay/central)
+"buc" = (
/obj/machinery/doorButtons/access_button{
idDoor = "virology_airlock_exterior";
idSelf = "virology_airlock_control";
@@ -41572,8 +39889,8 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bue" = (
+/area/medical/medbay/central)
+"bud" = (
/obj/machinery/door/airlock/virology{
autoclose = 0;
frequency = 1449;
@@ -41590,7 +39907,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"buf" = (
+"bue" = (
/obj/machinery/doorButtons/access_button{
idDoor = "virology_airlock_exterior";
idSelf = "virology_airlock_control";
@@ -41609,7 +39926,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bug" = (
+"buf" = (
/obj/machinery/doorButtons/access_button{
idDoor = "virology_airlock_interior";
idSelf = "virology_airlock_control";
@@ -41628,7 +39945,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"buh" = (
+"bug" = (
/obj/machinery/door/airlock/virology{
autoclose = 0;
frequency = 1449;
@@ -41645,7 +39962,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bui" = (
+"buh" = (
/obj/machinery/doorButtons/airlock_controller{
idExterior = "virology_airlock_exterior";
idInterior = "virology_airlock_interior";
@@ -41665,7 +39982,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"buj" = (
+"bui" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -41673,7 +39990,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"buk" = (
+"buj" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = -2;
@@ -41690,18 +40007,16 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bul" = (
+"buk" = (
/turf/closed/wall,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bum" = (
+/area/maintenance/asteroid/starboard)
+"bul" = (
/obj/item/weapon/computer_hardware/recharger/APC,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bun" = (
+"bum" = (
/obj/machinery/gateway{
dir = 8
},
@@ -41709,13 +40024,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"buo" = (
+"bun" = (
/obj/machinery/gateway/centerstation,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bup" = (
+"buo" = (
/obj/machinery/gateway{
dir = 4
},
@@ -41723,7 +40038,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"buq" = (
+"bup" = (
/obj/effect/turf_decal/stripes/asteroid/line{
icon_state = "ast_warn";
dir = 4
@@ -41732,13 +40047,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bur" = (
+"buq" = (
/obj/structure/barricade/wooden,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bus" = (
+"bur" = (
/obj/item/weapon/paper{
info = "
Nanotrasen Exploration and Colonization Program
Due to recent shutdowns of the Exploration and Colonization department shortly after this gateway was delievered on-site during station construction, this room has been condemmed and an engineering team will be on-site within the next few months to recollect the gate. Thank you for your cooperation.";
name = "NOTICE - GATEWAY STATUS"
@@ -41750,10 +40065,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"but" = (
+/area/maintenance/asteroid/port/west)
+"bus" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -41764,10 +40077,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"buu" = (
+/area/maintenance/asteroid/port/west)
+"but" = (
/obj/structure/table,
/obj/machinery/power/apc{
dir = 8;
@@ -41784,7 +40095,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"buv" = (
+"buu" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -41795,7 +40106,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"buw" = (
+"buv" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -41804,14 +40115,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bux" = (
+"buw" = (
/obj/structure/table,
/obj/item/device/multitool,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"buy" = (
+"bux" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -41827,12 +40138,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"buz" = (
+"buy" = (
/turf/open/floor/plasteel/darkgreen{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"buA" = (
+"buz" = (
/obj/machinery/camera{
c_tag = "Hydroponics North 1"
},
@@ -41843,13 +40154,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"buB" = (
+"buA" = (
/obj/machinery/hydroponics/constructable,
/turf/open/floor/plasteel/darkgreen{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"buC" = (
+"buB" = (
/obj/structure/beebox,
/obj/item/queen_bee/bought,
/obj/structure/cable/orange{
@@ -41861,7 +40172,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"buD" = (
+"buC" = (
/obj/structure/flora/ausbushes/ywflowers,
/obj/structure/cable/orange{
d1 = 4;
@@ -41872,7 +40183,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"buE" = (
+"buD" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -41882,7 +40193,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"buF" = (
+"buE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -41900,7 +40211,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"buG" = (
+"buF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -41915,10 +40226,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"buH" = (
+/area/maintenance/asteroid/port/east)
+"buG" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -41930,10 +40239,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"buI" = (
+/area/maintenance/asteroid/port/east)
+"buH" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -41948,10 +40255,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"buJ" = (
+/area/maintenance/asteroid/port/east)
+"buI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -41968,10 +40273,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"buK" = (
+/area/maintenance/asteroid/port/east)
+"buJ" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -41981,17 +40284,15 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"buL" = (
+/area/maintenance/asteroid/port/east)
+"buK" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
/turf/open/space,
/area/space)
-"buM" = (
+"buL" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -42002,7 +40303,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"buN" = (
+"buM" = (
/obj/machinery/light/small{
dir = 1
},
@@ -42013,7 +40314,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"buO" = (
+"buN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -42021,7 +40322,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"buP" = (
+"buO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -42032,7 +40333,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"buQ" = (
+"buP" = (
/obj/machinery/airalarm{
dir = 4;
icon_state = "alarm0";
@@ -42043,7 +40344,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"buR" = (
+"buQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -42060,7 +40361,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"buS" = (
+"buR" = (
/turf/open/floor/plasteel/yellow/corner{
tag = "icon-yellowcorner (WEST)";
icon_state = "yellowcorner";
@@ -42068,7 +40369,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"buT" = (
+"buS" = (
/obj/structure/closet/firecloset,
/obj/machinery/light/small{
dir = 8
@@ -42076,14 +40377,14 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"buU" = (
+/area/engine/engineering)
+"buT" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"buV" = (
+/area/engine/engineering)
+"buU" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -42100,8 +40401,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"buW" = (
+/area/engine/engineering)
+"buV" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -42120,8 +40421,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"buX" = (
+/area/engine/engineering)
+"buW" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/manifold/general/visible{
@@ -42132,14 +40433,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"buY" = (
+"buX" = (
/obj/machinery/power/supermatter_shard/crystal,
/turf/open/floor/engine{
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
/area/engine/supermatter)
-"buZ" = (
+"buY" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/manifold/general/visible{
@@ -42151,7 +40452,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bva" = (
+"buZ" = (
/obj/machinery/power/rad_collector{
anchored = 1
},
@@ -42165,7 +40466,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bvb" = (
+"bva" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -42184,8 +40485,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bvc" = (
+/area/engine/engineering)
+"bvb" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
@@ -42193,8 +40494,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"bvd" = (
+/area/engine/engineering)
+"bvc" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
dir = 8
},
@@ -42204,15 +40505,15 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"bve" = (
+/area/engine/engineering)
+"bvd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/yellow/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bvf" = (
+"bve" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -42230,7 +40531,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bvg" = (
+"bvf" = (
/obj/machinery/airalarm{
dir = 8;
icon_state = "alarm0";
@@ -42243,17 +40544,15 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bvh" = (
+"bvg" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bvi" = (
+/area/maintenance/asteroid/central)
+"bvh" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -42272,10 +40571,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bvj" = (
+/area/maintenance/asteroid/central)
+"bvi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -42294,16 +40591,14 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bvk" = (
+/area/maintenance/asteroid/central)
+"bvj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/power/apc{
dir = 1;
- name = "Central Asteroid Maintence APC";
+ name = "Central Asteroid Maintenance APC";
pixel_x = 0;
pixel_y = 24
},
@@ -42317,10 +40612,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bvl" = (
+/area/maintenance/asteroid/central)
+"bvk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -42330,10 +40623,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bvm" = (
+/area/maintenance/asteroid/central)
+"bvl" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 4
},
@@ -42346,10 +40637,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bvn" = (
+/area/maintenance/asteroid/central)
+"bvm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -42363,10 +40652,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bvo" = (
+/area/maintenance/asteroid/central)
+"bvn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -42377,7 +40664,7 @@
},
/turf/open/space,
/area/space)
-"bvp" = (
+"bvo" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -42388,7 +40675,7 @@
},
/turf/open/space,
/area/space)
-"bvq" = (
+"bvp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -42398,7 +40685,7 @@
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/space)
-"bvr" = (
+"bvq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -42414,7 +40701,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bvs" = (
+"bvr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -42428,7 +40715,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bvt" = (
+"bvs" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -42442,7 +40729,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bvu" = (
+"bvt" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
name = "Mix Input";
@@ -42458,7 +40745,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bvv" = (
+"bvu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -42472,7 +40759,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bvw" = (
+"bvv" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -42483,7 +40770,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bvx" = (
+"bvw" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -42494,29 +40781,29 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bvy" = (
+"bvx" = (
/obj/structure/grille,
-/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bvz" = (
+/area/medical/medbay/central)
+"bvy" = (
/obj/structure/chair{
dir = 4
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bvA" = (
+/area/medical/medbay/central)
+"bvz" = (
/obj/structure/reagent_dispensers/water_cooler,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bvB" = (
+/area/medical/medbay/central)
+"bvA" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular{
pixel_x = -3;
@@ -42525,15 +40812,15 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bvC" = (
+/area/medical/medbay/central)
+"bvB" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bvD" = (
+/area/medical/medbay/central)
+"bvC" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -42541,20 +40828,20 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bvE" = (
+/area/medical/medbay/central)
+"bvD" = (
/obj/structure/table/reinforced,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bvF" = (
+/area/medical/medbay/central)
+"bvE" = (
/obj/machinery/computer/med_data,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bvG" = (
+/area/medical/medbay/central)
+"bvF" = (
/obj/machinery/sleeper{
dir = 4;
icon_state = "sleeper-open"
@@ -42562,14 +40849,14 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bvH" = (
+/area/medical/medbay/central)
+"bvG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bvI" = (
+/area/medical/medbay/central)
+"bvH" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 6
},
@@ -42577,8 +40864,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bvJ" = (
+/area/medical/medbay/central)
+"bvI" = (
/obj/machinery/atmospherics/components/unary/cryo_cell{
dir = 8;
icon_state = "cell-off"
@@ -42586,8 +40873,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bvK" = (
+/area/medical/medbay/central)
+"bvJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/bed/roller,
/turf/open/floor/plasteel/whiteblue/side{
@@ -42596,18 +40883,18 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bvL" = (
+/area/medical/medbay/central)
+"bvK" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/genetics_cloning)
-"bvM" = (
+/area/medical/genetics/cloning)
+"bvL" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/genetics_cloning)
-"bvN" = (
+/area/medical/genetics/cloning)
+"bvM" = (
/obj/machinery/door/airlock/glass_virology{
name = "Monkey Pen";
req_access_txt = "39"
@@ -42617,7 +40904,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bvO" = (
+"bvN" = (
/obj/machinery/power/apc{
dir = 8;
name = "Virology APC";
@@ -42637,7 +40924,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bvP" = (
+"bvO" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -42647,10 +40934,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bvQ" = (
+/area/maintenance/asteroid/starboard)
+"bvP" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -42664,10 +40949,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bvR" = (
+/area/maintenance/asteroid/starboard)
+"bvQ" = (
/obj/machinery/gateway{
dir = 10
},
@@ -42675,7 +40958,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bvS" = (
+"bvR" = (
/obj/machinery/gateway,
/obj/structure/cable/orange{
d2 = 2;
@@ -42685,7 +40968,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bvT" = (
+"bvS" = (
/obj/machinery/gateway{
dir = 6
},
@@ -42693,7 +40976,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bvU" = (
+"bvT" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -42707,7 +40990,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bvV" = (
+"bvU" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/structure/window/reinforced,
@@ -42715,7 +40998,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bvW" = (
+"bvV" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
@@ -42723,7 +41006,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bvX" = (
+"bvW" = (
/obj/structure/table,
/obj/item/device/assembly/igniter,
/obj/item/device/assembly/igniter,
@@ -42731,7 +41014,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bvY" = (
+"bvX" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -42747,7 +41030,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bvZ" = (
+"bvY" = (
/obj/machinery/camera{
c_tag = "Hydroponics Front Desk";
dir = 4
@@ -42759,7 +41042,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bwa" = (
+"bvZ" = (
/obj/structure/chair/office/dark{
dir = 8
},
@@ -42768,7 +41051,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bwb" = (
+"bwa" = (
/turf/open/floor/plasteel/darkgreen/side{
tag = "icon-darkgreen (WEST)";
icon_state = "darkgreen";
@@ -42776,12 +41059,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bwc" = (
+"bwb" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bwd" = (
+"bwc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -42790,7 +41073,7 @@
dir = 4
},
/area/hydroponics)
-"bwe" = (
+"bwd" = (
/obj/structure/window/reinforced/fulltile,
/obj/structure/grille,
/obj/machinery/door/firedoor,
@@ -42798,18 +41081,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bwf" = (
+"bwe" = (
/turf/open/floor/plasteel/hydrofloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bwg" = (
+"bwf" = (
/obj/machinery/hydroponics/constructable,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bwh" = (
+"bwg" = (
/obj/machinery/door/airlock/maintenance{
name = "Port Asteroid Maintenance";
req_access_txt = "12"
@@ -42827,10 +41110,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bwi" = (
+/area/maintenance/asteroid/port/east)
+"bwh" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
@@ -42843,25 +41124,26 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bwj" = (
+"bwi" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bwk" = (
+"bwj" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/poddoor/preopen{
id = "engineeringlockdown";
+ layer = 2.6;
name = "Emergency Lockdown Blastdoor"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bwl" = (
+"bwk" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -42869,33 +41151,35 @@
pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/poddoor/preopen{
+ id = "engineeringlockdown";
+ layer = 2.6;
+ name = "Emergency Lockdown Blastdoor"
+ },
/obj/machinery/door/airlock/engineering{
cyclelinkeddir = null;
name = "Engineering Foyer";
req_access_txt = "0";
req_one_access_txt = "10;24"
},
-/obj/machinery/door/poddoor/preopen{
- id = "engineeringlockdown";
- name = "Emergency Lockdown Blastdoor"
- },
/turf/open/floor/plasteel/yellow{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bwm" = (
+"bwl" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/preopen{
id = "engineeringlockdown";
+ layer = 2.6;
name = "Emergency Lockdown Blastdoor"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bwn" = (
+"bwm" = (
/obj/structure/table,
/obj/item/weapon/pipe_dispenser,
/obj/machinery/camera{
@@ -42907,8 +41191,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"bwo" = (
+/area/engine/engineering)
+"bwn" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -42923,8 +41207,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bwp" = (
+/area/engine/engineering)
+"bwo" = (
/obj/machinery/power/rad_collector{
anchored = 1
},
@@ -42938,7 +41222,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bwq" = (
+"bwp" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -42959,8 +41243,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bwr" = (
+/area/engine/engineering)
+"bwq" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -42973,36 +41257,37 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bws" = (
+/area/engine/engineering)
+"bwr" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"bwt" = (
+/area/engine/engineering)
+"bws" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
dir = 8
},
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"bwu" = (
+/area/engine/engineering)
+"bwt" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/poddoor/preopen{
id = "engineeringlockdown";
+ layer = 2.6;
name = "Emergency Lockdown Blastdoor"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bwv" = (
+"bwu" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -43011,41 +41296,36 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
+/obj/machinery/door/poddoor/preopen{
+ id = "engineeringlockdown";
+ layer = 2.6;
+ name = "Emergency Lockdown Blastdoor"
+ },
/obj/machinery/door/airlock/engineering{
cyclelinkeddir = null;
name = "Engineering Foyer";
req_access_txt = "0";
req_one_access_txt = "10;24"
},
-/obj/machinery/door/poddoor/preopen{
- id = "engineeringlockdown";
- name = "Emergency Lockdown Blastdoor"
- },
/turf/open/floor/plasteel/yellow{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bww" = (
+"bwv" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bwx" = (
+/area/maintenance/asteroid/central)
+"bww" = (
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bwy" = (
+/area/maintenance/asteroid/central)
+"bwx" = (
/turf/open/floor/plating/asteroid,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bwz" = (
+/area/maintenance/asteroid/central)
+"bwy" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
@@ -43057,17 +41337,13 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bwA" = (
+/area/maintenance/asteroid/central)
+"bwz" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bwB" = (
+/area/maintenance/asteroid/central)
+"bwA" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -43080,7 +41356,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bwC" = (
+"bwB" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -43088,7 +41364,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bwD" = (
+"bwC" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -43096,7 +41372,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bwE" = (
+"bwD" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
name = "Mix Output";
@@ -43109,7 +41385,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bwF" = (
+"bwE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -43124,7 +41400,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bwG" = (
+"bwF" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -43138,7 +41414,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bwH" = (
+"bwG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -43150,21 +41426,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bwI" = (
+"bwH" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bwJ" = (
+/area/medical/medbay/central)
+"bwI" = (
/turf/open/floor/plasteel/whiteblue/side{
tag = "icon-whiteblue (EAST)";
icon_state = "whiteblue";
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bwK" = (
+/area/medical/medbay/central)
+"bwJ" = (
/obj/structure/chair/office/light{
dir = 8
},
@@ -43172,8 +41448,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bwL" = (
+/area/medical/medbay/central)
+"bwK" = (
/obj/machinery/door/airlock/glass_medical{
id_tag = null;
name = "Medbay";
@@ -43182,8 +41458,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bwM" = (
+/area/medical/medbay/central)
+"bwL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/camera{
c_tag = "Medbay East";
@@ -43198,8 +41474,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bwN" = (
+/area/medical/medbay/central)
+"bwM" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,
/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,
@@ -43210,8 +41486,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bwO" = (
+/area/medical/medbay/central)
+"bwN" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -43220,8 +41496,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bwP" = (
+/area/medical/medbay/central)
+"bwO" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
},
@@ -43229,8 +41505,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bwQ" = (
+/area/medical/medbay/central)
+"bwP" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
icon_state = "connector_map";
dir = 8
@@ -43244,8 +41520,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bwR" = (
+/area/medical/medbay/central)
+"bwQ" = (
/obj/machinery/power/apc{
dir = 8;
name = "Medbay APC";
@@ -43265,8 +41541,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bwS" = (
+/area/medical/medbay/central)
+"bwR" = (
/obj/structure/bed/roller,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whiteblue/side{
@@ -43275,8 +41551,8 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bwT" = (
+/area/medical/medbay/central)
+"bwS" = (
/obj/machinery/shower{
dir = 4
},
@@ -43286,8 +41562,8 @@
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/genetics_cloning)
-"bwU" = (
+/area/medical/genetics/cloning)
+"bwT" = (
/obj/structure/mirror{
pixel_y = 32
},
@@ -43297,8 +41573,8 @@
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/genetics_cloning)
-"bwV" = (
+/area/medical/genetics/cloning)
+"bwU" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -43312,8 +41588,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/genetics_cloning)
-"bwW" = (
+/area/medical/genetics/cloning)
+"bwV" = (
/obj/structure/cable/orange{
d2 = 2;
icon_state = "0-2"
@@ -43327,8 +41603,8 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/genetics_cloning)
-"bwX" = (
+/area/medical/genetics/cloning)
+"bwW" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1
@@ -43338,7 +41614,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bwY" = (
+"bwX" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -43347,13 +41623,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bwZ" = (
+"bwY" = (
/mob/living/carbon/monkey,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bxa" = (
+"bwZ" = (
/obj/item/wallframe/apc,
/obj/structure/cable/orange{
d2 = 4;
@@ -43363,7 +41639,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bxb" = (
+"bxa" = (
/obj/item/stack/rods,
/obj/structure/cable/orange{
d1 = 4;
@@ -43374,7 +41650,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bxc" = (
+"bxb" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -43389,7 +41665,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bxd" = (
+"bxc" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -43399,7 +41675,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bxe" = (
+"bxd" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -43410,15 +41686,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bxf" = (
+"bxe" = (
/obj/item/clothing/head/cone,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bxg" = (
+/area/maintenance/asteroid/port/west)
+"bxf" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/portable_atmospherics/scrubber,
/turf/open/floor/plasteel/vault{
@@ -43426,20 +41700,20 @@
dir = 5
},
/area/storage/primary)
-"bxh" = (
+"bxg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bxi" = (
+"bxh" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bxj" = (
+"bxi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/camera{
c_tag = "Service Asteroid Hallway 3";
@@ -43452,7 +41726,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bxk" = (
+"bxj" = (
/obj/machinery/door/airlock/glass{
name = "Hydroponics";
req_access_txt = "35"
@@ -43463,21 +41737,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bxl" = (
+"bxk" = (
/obj/structure/window/reinforced/fulltile,
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bxm" = (
+"bxl" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -43487,7 +41761,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bxn" = (
+"bxm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/orange{
d1 = 4;
@@ -43498,7 +41772,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bxo" = (
+"bxn" = (
/obj/structure/table,
/obj/item/seeds/chili,
/obj/item/seeds/grape,
@@ -43514,20 +41788,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bxp" = (
+"bxo" = (
/obj/structure/window/reinforced/fulltile,
/obj/structure/grille,
-/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bxq" = (
+"bxp" = (
/obj/structure/flora/ausbushes/ywflowers,
/obj/structure/cable/orange{
d1 = 1;
@@ -43538,7 +41812,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bxr" = (
+"bxq" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
@@ -43546,7 +41820,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bxs" = (
+"bxr" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -43555,7 +41829,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bxt" = (
+"bxs" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -43571,10 +41845,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bxu" = (
+/area/maintenance/asteroid/port/east)
+"bxt" = (
/obj/machinery/power/apc{
dir = 8;
name = "Engineering Foyer APC";
@@ -43596,7 +41868,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bxv" = (
+"bxu" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -43618,7 +41890,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bxw" = (
+"bxv" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -43632,7 +41904,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bxx" = (
+"bxw" = (
/obj/item/weapon/twohanded/required/kirbyplants{
tag = "icon-plant-22";
icon_state = "plant-22"
@@ -43644,7 +41916,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bxy" = (
+"bxx" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -43664,15 +41936,15 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bxz" = (
+/area/engine/engineering)
+"bxy" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 10
},
/obj/machinery/meter,
/turf/closed/wall/r_wall,
/area/engine/supermatter)
-"bxA" = (
+"bxz" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/glass_engineering{
heat_proof = 1;
@@ -43684,7 +41956,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bxB" = (
+"bxA" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
icon_state = "intact";
dir = 6
@@ -43692,13 +41964,13 @@
/obj/machinery/meter,
/turf/closed/wall/r_wall,
/area/engine/supermatter)
-"bxC" = (
+"bxB" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 9
},
/turf/closed/wall/r_wall,
/area/engine/supermatter)
-"bxD" = (
+"bxC" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -43718,8 +41990,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bxE" = (
+/area/engine/engineering)
+"bxD" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -43731,14 +42003,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bxF" = (
+/area/engine/engineering)
+"bxE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"bxG" = (
+/area/engine/engineering)
+"bxF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/item/weapon/twohanded/required/kirbyplants{
tag = "icon-plant-22";
@@ -43752,7 +42024,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bxH" = (
+"bxG" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -43767,7 +42039,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bxI" = (
+"bxH" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -43785,7 +42057,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bxJ" = (
+"bxI" = (
/obj/machinery/power/apc{
dir = 4;
name = "Engineering Foyer APC";
@@ -43805,27 +42077,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bxK" = (
+"bxJ" = (
/turf/closed/mineral,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bxL" = (
+/area/maintenance/asteroid/central)
+"bxK" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bxM" = (
+/area/maintenance/asteroid/central)
+"bxL" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating/asteroid,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bxN" = (
+/area/maintenance/asteroid/central)
+"bxM" = (
/obj/structure/table,
/obj/item/weapon/wrench,
/obj/item/clothing/glasses/meson,
@@ -43836,7 +42102,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bxO" = (
+"bxN" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
},
@@ -43845,7 +42111,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bxP" = (
+"bxO" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
},
@@ -43856,7 +42122,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bxQ" = (
+"bxP" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
},
@@ -43866,7 +42132,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bxR" = (
+"bxQ" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
@@ -43874,7 +42140,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bxS" = (
+"bxR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral/corner{
@@ -43883,14 +42149,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bxT" = (
+"bxS" = (
/obj/structure/table/reinforced,
/obj/item/weapon/reagent_containers/food/drinks/britcup,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bxU" = (
+/area/medical/medbay/central)
+"bxT" = (
/obj/machinery/button/door{
id = "medmain";
name = "Medbay Foyer Doors";
@@ -43909,30 +42175,30 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bxV" = (
+/area/medical/medbay/central)
+"bxU" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/item/weapon/wrench/medical,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bxW" = (
+/area/medical/medbay/central)
+"bxV" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bxX" = (
+/area/medical/medbay/central)
+"bxW" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
dir = 8
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bxY" = (
+/area/medical/medbay/central)
+"bxX" = (
/obj/structure/bed/roller,
/obj/machinery/light{
icon_state = "tube1";
@@ -43945,8 +42211,8 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bxZ" = (
+/area/medical/medbay/central)
+"bxY" = (
/obj/machinery/shower{
dir = 4
},
@@ -43956,18 +42222,18 @@
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/genetics_cloning)
-"bya" = (
+/area/medical/genetics/cloning)
+"bxZ" = (
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/genetics_cloning)
-"byb" = (
+/area/medical/genetics/cloning)
+"bya" = (
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/genetics_cloning)
-"byc" = (
+/area/medical/genetics/cloning)
+"byb" = (
/obj/machinery/dna_scannernew,
/obj/structure/cable/orange{
d1 = 1;
@@ -43983,34 +42249,32 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/genetics_cloning)
-"byd" = (
+/area/medical/genetics/cloning)
+"byc" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bye" = (
+/area/maintenance/asteroid/starboard)
+"byd" = (
/obj/machinery/light,
/mob/living/carbon/monkey,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"byf" = (
+"bye" = (
/obj/item/weapon/screwdriver,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"byg" = (
+"byf" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"byh" = (
+"byg" = (
/obj/structure/table,
/obj/item/weapon/paper/pamphlet,
/obj/item/weapon/coin/silver,
@@ -44018,7 +42282,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"byi" = (
+"byh" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/portable_atmospherics/scrubber,
/obj/machinery/camera{
@@ -44031,13 +42295,13 @@
dir = 5
},
/area/storage/primary)
-"byj" = (
+"byi" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"byk" = (
+"byj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/newscaster{
pixel_x = -28;
@@ -44049,7 +42313,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"byl" = (
+"byk" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -44058,7 +42322,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bym" = (
+"byl" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -44070,7 +42334,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"byn" = (
+"bym" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -44089,7 +42353,7 @@
dir = 4
},
/area/hydroponics)
-"byo" = (
+"byn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -44102,13 +42366,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"byp" = (
+"byo" = (
/turf/open/floor/plasteel/darkgreen/side{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 4
},
/area/hydroponics)
-"byq" = (
+"byp" = (
/obj/machinery/camera{
c_tag = "Hydroponics North 2"
},
@@ -44121,7 +42385,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"byr" = (
+"byq" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -44138,7 +42402,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bys" = (
+"byr" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=8";
dir = 8;
@@ -44149,10 +42413,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"byt" = (
+/area/maintenance/asteroid/port/east)
+"bys" = (
/obj/structure/disposalpipe/trunk{
dir = 4
},
@@ -44162,29 +42424,27 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"byu" = (
+/area/maintenance/asteroid/port/east)
+"byt" = (
/obj/structure/rack,
/obj/item/weapon/storage/bag/ore,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"byv" = (
+"byu" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"byw" = (
+"byv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"byx" = (
+"byw" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -44195,13 +42455,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"byy" = (
+"byx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"byz" = (
+"byy" = (
/obj/machinery/light{
dir = 4
},
@@ -44209,7 +42469,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"byA" = (
+"byz" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -44223,16 +42483,16 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"byB" = (
+/area/engine/engineering)
+"byA" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/portable_atmospherics/canister,
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"byC" = (
+/area/engine/engineering)
+"byB" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/binary/pump{
dir = 2;
@@ -44244,14 +42504,14 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"byD" = (
+"byC" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/engine{
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
/area/engine/supermatter)
-"byE" = (
+"byD" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
name = "Gas To Chamber";
@@ -44262,7 +42522,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"byF" = (
+"byE" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
@@ -44270,8 +42530,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"byG" = (
+/area/engine/engineering)
+"byF" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -44285,12 +42545,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"byH" = (
+/area/engine/engineering)
+"byG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"byI" = (
+/area/engine/engineering)
+"byH" = (
/obj/machinery/light{
dir = 8
},
@@ -44303,14 +42563,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"byJ" = (
+"byI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"byK" = (
+"byJ" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 24
},
@@ -44318,20 +42578,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"byL" = (
+"byK" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"byM" = (
+"byL" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plating/asteroid,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"byN" = (
+/area/maintenance/asteroid/central)
+"byM" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -44346,7 +42604,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"byO" = (
+"byN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -44354,7 +42612,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"byP" = (
+"byO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -44369,7 +42627,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"byQ" = (
+"byP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -44380,8 +42638,8 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"byR" = (
+/area/medical/medbay/central)
+"byQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -44390,15 +42648,15 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"byS" = (
+/area/medical/medbay/central)
+"byR" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/machinery/holopad,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"byT" = (
+/area/medical/medbay/central)
+"byS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -44408,8 +42666,8 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"byU" = (
+/area/medical/medbay/central)
+"byT" = (
/obj/structure/table/reinforced,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -44420,15 +42678,15 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"byV" = (
+/area/medical/medbay/central)
+"byU" = (
/obj/structure/table/reinforced,
/obj/machinery/cell_charger,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"byW" = (
+/area/medical/medbay/central)
+"byV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -44440,8 +42698,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"byX" = (
+/area/medical/medbay/central)
+"byW" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,
/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,
@@ -44454,14 +42712,14 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"byY" = (
+/area/medical/medbay/central)
+"byX" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"byZ" = (
+/area/medical/medbay/central)
+"byY" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
icon_state = "connector_map";
dir = 8
@@ -44474,8 +42732,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bza" = (
+/area/medical/medbay/central)
+"byZ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -44491,8 +42749,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bzb" = (
+/area/medical/medbay/central)
+"bza" = (
/obj/machinery/shower{
dir = 4
},
@@ -44501,8 +42759,8 @@
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/genetics_cloning)
-"bzc" = (
+/area/medical/genetics/cloning)
+"bzb" = (
/obj/structure/chair{
dir = 4
},
@@ -44510,8 +42768,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/genetics_cloning)
-"bzd" = (
+/area/medical/genetics/cloning)
+"bzc" = (
/obj/machinery/computer/cloning,
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -44533,8 +42791,8 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/genetics_cloning)
-"bze" = (
+/area/medical/genetics/cloning)
+"bzd" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/portable_atmospherics/pump,
/obj/machinery/light{
@@ -44545,7 +42803,7 @@
dir = 5
},
/area/storage/primary)
-"bzf" = (
+"bze" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/portable_atmospherics/pump,
/turf/open/floor/plasteel/vault{
@@ -44553,7 +42811,7 @@
dir = 5
},
/area/storage/primary)
-"bzg" = (
+"bzf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -44561,27 +42819,27 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
+"bzg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/storage/primary)
"bzh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Primary Tool Storage"
+ },
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
"bzi" = (
-/obj/machinery/door/airlock/glass{
- name = "Primary Tool Storage"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/storage/primary)
-"bzj" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -44589,7 +42847,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bzk" = (
+"bzj" = (
/obj/structure/closet/secure_closet/hydroponics,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
@@ -44598,7 +42856,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bzl" = (
+"bzk" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -44607,7 +42865,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bzm" = (
+"bzl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 4
@@ -44617,7 +42875,7 @@
dir = 4
},
/area/hydroponics)
-"bzn" = (
+"bzm" = (
/obj/machinery/hydroponics/constructable,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
@@ -44627,22 +42885,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bzo" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plasteel/darkgreen{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bzp" = (
+"bzn" = (
/obj/effect/landmark/start/botanist,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bzq" = (
+"bzo" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -44651,7 +42900,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bzr" = (
+"bzp" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -44659,12 +42908,10 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bzs" = (
+"bzq" = (
/turf/closed/mineral/random/labormineral,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bzt" = (
+/area/maintenance/asteroid/central)
+"bzr" = (
/obj/machinery/door/airlock/maintenance/external{
name = "External Airlock Access";
req_access_txt = "12"
@@ -44672,10 +42919,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bzu" = (
+/area/maintenance/asteroid/central)
+"bzs" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (SOUTHEAST)";
icon_state = "intact";
@@ -44685,7 +42930,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bzv" = (
+"bzt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (EAST)";
@@ -44696,7 +42941,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bzw" = (
+"bzu" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -44712,7 +42957,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bzx" = (
+"bzv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (EAST)";
@@ -44723,7 +42968,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bzy" = (
+"bzw" = (
/obj/structure/table,
/obj/item/weapon/storage/box/donkpockets,
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
@@ -44743,7 +42988,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bzz" = (
+"bzx" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (SOUTHWEST)";
icon_state = "intact";
@@ -44753,29 +42998,34 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bzA" = (
+"bzy" = (
/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 5;
+ icon_state = "intact";
+ tag = "icon-intact (SOUTHEAST)"
},
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"bzB" = (
+/area/engine/engineering)
+"bzz" = (
/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ tag = "icon-manifold (EAST)";
+ name = "scrubbers pipe";
+ icon_state = "manifold";
dir = 4
},
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"bzC" = (
+/area/engine/engineering)
+"bzA" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/closed/wall/r_wall,
/area/engine/supermatter)
-"bzD" = (
+"bzB" = (
/obj/machinery/door/airlock/glass_engineering{
heat_proof = 1;
name = "Supermatter Chamber";
@@ -44786,14 +43036,14 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bzE" = (
+"bzC" = (
/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/machinery/atmospherics/components/binary/pump,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"bzF" = (
+/area/engine/engineering)
+"bzD" = (
/obj/structure/table,
/obj/item/weapon/storage/box/donkpockets,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -44811,7 +43061,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bzG" = (
+"bzE" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -44823,12 +43073,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bzH" = (
+"bzF" = (
/turf/open/floor/plasteel/red/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bzI" = (
+"bzG" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
@@ -44848,7 +43098,7 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plating/airless,
/area/security/checkpoint/engineering)
-"bzJ" = (
+"bzH" = (
/obj/structure/closet/secure_closet/security/engine,
/obj/machinery/newscaster/security_unit{
pixel_y = 32
@@ -44860,7 +43110,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bzK" = (
+"bzI" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -44876,7 +43126,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bzL" = (
+"bzJ" = (
/obj/machinery/power/apc{
dir = 4;
name = "Engineering Security Checkpoint APC";
@@ -44897,7 +43147,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bzM" = (
+"bzK" = (
/obj/structure/janitorialcart,
/obj/item/weapon/mop,
/obj/item/weapon/reagent_containers/glass/bucket,
@@ -44905,7 +43155,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bzN" = (
+"bzL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
@@ -44917,7 +43167,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bzO" = (
+"bzM" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -44925,7 +43175,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bzP" = (
+"bzN" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -44942,22 +43192,22 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bzQ" = (
+"bzO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white/side{
tag = "icon-whitehall (EAST)";
icon_state = "whitehall";
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bzR" = (
+/area/medical/medbay/central)
+"bzP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -44967,8 +43217,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bzS" = (
+/area/medical/medbay/central)
+"bzQ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -44978,8 +43228,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bzT" = (
+/area/medical/medbay/central)
+"bzR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -44990,8 +43240,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bzU" = (
+/area/medical/medbay/central)
+"bzS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -45001,8 +43251,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bzV" = (
+/area/medical/medbay/central)
+"bzT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -45015,8 +43265,8 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bzW" = (
+/area/medical/medbay/central)
+"bzU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -45029,24 +43279,25 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bzX" = (
-/obj/machinery/door/airlock/glass_medical{
- id_tag = "medmain";
- name = "Medbay";
- req_access_txt = "5"
- },
+/area/medical/medbay/central)
+"bzV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = "medmain";
+ name = "Medbay";
+ req_access_txt = "5"
+ },
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bzY" = (
+/area/medical/medbay/central)
+"bzW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -45058,8 +43309,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bzZ" = (
+/area/medical/medbay/central)
+"bzX" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -45068,16 +43319,16 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bAa" = (
+/area/medical/medbay/central)
+"bzY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bAb" = (
+/area/medical/medbay/central)
+"bzZ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -45086,15 +43337,15 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bAc" = (
+/area/medical/medbay/central)
+"bAa" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bAd" = (
+/area/medical/medbay/central)
+"bAb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whiteblue/side{
tag = "icon-whiteblue (EAST)";
@@ -45102,24 +43353,24 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bAe" = (
+/area/medical/medbay/central)
+"bAc" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/genetics_cloning)
-"bAf" = (
+/area/medical/genetics/cloning)
+"bAd" = (
/obj/machinery/disposal/bin,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/trunk,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/genetics_cloning)
-"bAg" = (
+/area/medical/genetics/cloning)
+"bAe" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -45127,8 +43378,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/genetics_cloning)
-"bAh" = (
+/area/medical/genetics/cloning)
+"bAf" = (
/obj/machinery/clonepod,
/obj/machinery/light{
icon_state = "tube1";
@@ -45145,8 +43396,8 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/genetics_cloning)
-"bAi" = (
+/area/medical/genetics/cloning)
+"bAg" = (
/obj/structure/bodycontainer/morgue,
/obj/machinery/light/small{
brightness = 3;
@@ -45158,7 +43409,7 @@
dir = 5
},
/area/medical/morgue)
-"bAj" = (
+"bAh" = (
/obj/machinery/light/small{
dir = 8
},
@@ -45169,20 +43420,16 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bAk" = (
+/area/maintenance/asteroid/port/west)
+"bAi" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bAl" = (
+/area/maintenance/asteroid/port/west)
+"bAj" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -45190,10 +43437,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bAm" = (
+/area/maintenance/asteroid/port/west)
+"bAk" = (
/obj/machinery/light/small{
dir = 1
},
@@ -45203,10 +43448,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bAn" = (
+/area/maintenance/asteroid/port/west)
+"bAl" = (
/obj/machinery/airalarm{
dir = 1;
icon_state = "alarm0";
@@ -45216,7 +43459,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bAo" = (
+"bAm" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -45228,7 +43471,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bAp" = (
+"bAn" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -45239,7 +43482,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bAq" = (
+"bAo" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -45249,13 +43492,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bAr" = (
+"bAp" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/darkgreen{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bAs" = (
+"bAq" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -45263,7 +43506,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bAt" = (
+"bAr" = (
/obj/machinery/door/airlock/glass{
name = "Bee Reserve";
req_access_txt = "35"
@@ -45276,7 +43519,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bAu" = (
+"bAs" = (
/obj/structure/flora/ausbushes/ywflowers,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
@@ -45286,7 +43529,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bAv" = (
+"bAt" = (
/obj/machinery/power/apc{
dir = 8;
name = "Port Asteroid Maintenance APC";
@@ -45305,10 +43548,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bAw" = (
+/area/maintenance/asteroid/port/east)
+"bAu" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -45317,10 +43558,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bAx" = (
+/area/maintenance/asteroid/port/west)
+"bAv" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -45335,10 +43574,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bAy" = (
+/area/maintenance/asteroid/port/east)
+"bAw" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -45347,10 +43584,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bAz" = (
+/area/maintenance/asteroid/port/west)
+"bAx" = (
/obj/machinery/light/small{
dir = 8
},
@@ -45358,30 +43593,22 @@
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bAA" = (
+/area/maintenance/asteroid/central)
+"bAy" = (
/obj/structure/girder,
/turf/open/floor/plating/asteroid,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bAB" = (
+/area/maintenance/asteroid/central)
+"bAz" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating/asteroid,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bAC" = (
+/area/maintenance/asteroid/central)
+"bAA" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating/asteroid,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bAD" = (
+/area/maintenance/asteroid/central)
+"bAB" = (
/obj/effect/turf_decal/stripes/asteroid/line{
icon_state = "ast_warn";
dir = 1
@@ -45389,10 +43616,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bAE" = (
+/area/maintenance/asteroid/central)
+"bAC" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (SOUTHEAST)";
icon_state = "intact";
@@ -45405,10 +43630,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bAF" = (
+/area/maintenance/asteroid/central)
+"bAD" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (EAST)";
icon_state = "intact";
@@ -45418,7 +43641,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bAG" = (
+"bAE" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (NORTHWEST)";
icon_state = "intact";
@@ -45428,7 +43651,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bAH" = (
+"bAF" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -45445,7 +43668,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bAI" = (
+"bAG" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -45462,7 +43685,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bAJ" = (
+"bAH" = (
/obj/structure/table,
/obj/machinery/microwave,
/turf/open/floor/plasteel/yellow/side{
@@ -45472,13 +43695,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bAK" = (
+"bAI" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bAL" = (
+"bAJ" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -45496,8 +43719,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bAM" = (
+/area/engine/engineering)
+"bAK" = (
/obj/effect/turf_decal/stripes/corner{
dir = 8
},
@@ -45520,8 +43743,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bAN" = (
+/area/engine/engineering)
+"bAL" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -45538,15 +43761,16 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bAO" = (
+/area/engine/engineering)
+"bAM" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/obj/machinery/atmospherics/components/trinary/filter{
- tag = "icon-filter_off (WEST)";
+ dir = 8;
icon_state = "filter_off";
- dir = 8
+ on = 1;
+ tag = "icon-filter_off (WEST)"
},
/obj/structure/cable{
d1 = 4;
@@ -45558,8 +43782,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bAP" = (
+/area/engine/engineering)
+"bAN" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -45579,8 +43803,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bAQ" = (
+/area/engine/engineering)
+"bAO" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -45601,14 +43825,14 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bAR" = (
+"bAP" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
name = "Gas To Filter";
- on = 0
+ on = 1
},
/obj/structure/cable{
d1 = 2;
@@ -45619,8 +43843,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bAS" = (
+/area/engine/engineering)
+"bAQ" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -45629,8 +43853,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bAT" = (
+/area/engine/engineering)
+"bAR" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -45645,8 +43869,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bAU" = (
+/area/engine/engineering)
+"bAS" = (
/obj/effect/turf_decal/stripes/corner{
dir = 4
},
@@ -45660,8 +43884,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bAV" = (
+/area/engine/engineering)
+"bAT" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -45675,8 +43899,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bAW" = (
+/area/engine/engineering)
+"bAU" = (
/obj/structure/table,
/obj/machinery/microwave,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -45690,7 +43914,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bAX" = (
+"bAV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -45700,7 +43924,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bAY" = (
+"bAW" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -45722,7 +43946,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bAZ" = (
+"bAX" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -45735,7 +43959,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bBa" = (
+"bAY" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
@@ -45761,7 +43985,7 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plating/airless,
/area/security/checkpoint/engineering)
-"bBb" = (
+"bAZ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -45774,7 +43998,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bBc" = (
+"bBa" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -45786,7 +44010,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bBd" = (
+"bBb" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -45798,7 +44022,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bBe" = (
+"bBc" = (
/obj/structure/sink{
icon_state = "sink";
dir = 8;
@@ -45809,7 +44033,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bBf" = (
+"bBd" = (
/obj/machinery/door/airlock/maintenance{
name = "Broom Closet";
req_access_txt = "0"
@@ -45818,7 +44042,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bBg" = (
+"bBe" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -45832,7 +44056,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bBh" = (
+"bBf" = (
/obj/structure/chair{
dir = 4
},
@@ -45843,8 +44067,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bBi" = (
+/area/medical/medbay/central)
+"bBg" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1
@@ -45852,8 +44076,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bBj" = (
+/area/medical/medbay/central)
+"bBh" = (
/obj/machinery/camera{
c_tag = "Medbay Lobby";
dir = 1;
@@ -45863,16 +44087,16 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bBk" = (
+/area/medical/medbay/central)
+"bBi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bBl" = (
+/area/medical/medbay/central)
+"bBj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -45884,8 +44108,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bBm" = (
+/area/medical/medbay/central)
+"bBk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -45896,48 +44120,49 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bBn" = (
+/area/medical/medbay/central)
+"bBl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_medical{
id_tag = "medmain";
name = "Medbay";
req_access_txt = "5"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bBo" = (
+/area/medical/medbay/central)
+"bBm" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bBp" = (
+/area/medical/medbay/central)
+"bBn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bBq" = (
+/area/medical/medbay/central)
+"bBo" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bBr" = (
+/area/medical/medbay/central)
+"bBp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bBs" = (
+/area/medical/medbay/central)
+"bBq" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 5
},
@@ -45945,8 +44170,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bBt" = (
+/area/medical/medbay/central)
+"bBr" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -45960,8 +44185,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bBu" = (
+/area/medical/medbay/central)
+"bBs" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -45973,8 +44198,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bBv" = (
+/area/medical/medbay/central)
+"bBt" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -45992,8 +44217,8 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bBw" = (
+/area/medical/medbay/central)
+"bBu" = (
/obj/machinery/door/airlock/glass_medical{
id_tag = "cloningmain";
name = "Genetics";
@@ -46014,8 +44239,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/genetics_cloning)
-"bBx" = (
+/area/medical/genetics/cloning)
+"bBv" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -46032,8 +44257,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/genetics_cloning)
-"bBy" = (
+/area/medical/genetics/cloning)
+"bBw" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -46053,8 +44278,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/genetics_cloning)
-"bBz" = (
+/area/medical/genetics/cloning)
+"bBx" = (
/obj/structure/table,
/obj/item/weapon/book/manual/medical_cloning{
pixel_y = 6
@@ -46074,8 +44299,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/genetics_cloning)
-"bBA" = (
+/area/medical/genetics/cloning)
+"bBy" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -46084,10 +44309,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bBB" = (
+/area/maintenance/asteroid/starboard)
+"bBz" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -46096,10 +44319,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bBC" = (
+/area/maintenance/asteroid/starboard)
+"bBA" = (
/obj/structure/disposaloutlet{
icon_state = "outlet";
dir = 1
@@ -46107,7 +44328,7 @@
/obj/structure/disposalpipe/trunk,
/turf/open/floor/plating/airless,
/area/space)
-"bBD" = (
+"bBB" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -46120,10 +44341,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bBE" = (
+/area/maintenance/asteroid/port/west)
+"bBC" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -46136,19 +44355,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bBF" = (
-/obj/structure/closet/secure_closet/hydroponics,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/hydrofloor{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bBG" = (
+/area/maintenance/asteroid/port/west)
+"bBD" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -46157,13 +44365,11 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bBH" = (
+"bBE" = (
/obj/structure/grille,
/turf/open/floor/plating/asteroid,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bBI" = (
+/area/maintenance/asteroid/central)
+"bBF" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (SOUTHEAST)";
icon_state = "intact";
@@ -46172,10 +44378,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bBJ" = (
+/area/maintenance/asteroid/central)
+"bBG" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (EAST)";
icon_state = "intact";
@@ -46184,10 +44388,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bBK" = (
+/area/maintenance/asteroid/central)
+"bBH" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (NORTHWEST)";
icon_state = "intact";
@@ -46196,16 +44398,14 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bBL" = (
+/area/maintenance/asteroid/central)
+"bBI" = (
/obj/machinery/vending/coffee,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bBM" = (
+"bBJ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -46220,7 +44420,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bBN" = (
+"bBK" = (
/obj/structure/table,
/obj/item/weapon/storage/box/cups,
/turf/open/floor/plasteel/yellow/side{
@@ -46230,7 +44430,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bBO" = (
+"bBL" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden,
/obj/machinery/status_display{
density = 0;
@@ -46240,7 +44440,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bBP" = (
+"bBM" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
@@ -46249,8 +44449,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bBQ" = (
+/area/engine/engineering)
+"bBN" = (
/obj/effect/turf_decal/stripes/line,
/obj/structure/cable/yellow{
icon_state = "1-4";
@@ -46261,8 +44461,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bBR" = (
+/area/engine/engineering)
+"bBO" = (
/obj/effect/turf_decal/stripes/corner{
dir = 1
},
@@ -46276,8 +44476,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bBS" = (
+/area/engine/engineering)
+"bBP" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -46288,8 +44488,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bBT" = (
+/area/engine/engineering)
+"bBQ" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -46306,8 +44506,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bBU" = (
+/area/engine/engineering)
+"bBR" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -46323,8 +44523,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bBV" = (
+/area/engine/engineering)
+"bBS" = (
/obj/effect/turf_decal/stripes/corner,
/obj/structure/cable/yellow{
d1 = 4;
@@ -46336,8 +44536,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bBW" = (
+/area/engine/engineering)
+"bBT" = (
/obj/effect/turf_decal/stripes/line,
/obj/structure/cable/yellow{
d1 = 1;
@@ -46348,8 +44548,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bBX" = (
+/area/engine/engineering)
+"bBU" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
@@ -46362,8 +44562,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bBY" = (
+/area/engine/engineering)
+"bBV" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -46372,7 +44572,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bBZ" = (
+"bBW" = (
/obj/structure/table,
/obj/item/weapon/storage/box/cups,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -46390,7 +44590,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bCa" = (
+"bBX" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -46399,7 +44599,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bCb" = (
+"bBY" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -46414,14 +44614,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bCc" = (
+"bBZ" = (
/turf/open/floor/plasteel/red/side{
icon_state = "red";
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bCd" = (
+"bCa" = (
/obj/structure/table/reinforced,
/obj/structure/cable{
d1 = 1;
@@ -46433,7 +44633,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bCe" = (
+"bCb" = (
/obj/structure/chair/office/dark{
dir = 8
},
@@ -46444,13 +44644,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bCf" = (
+"bCc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bCg" = (
+"bCd" = (
/obj/structure/table,
/obj/machinery/recharger,
/obj/machinery/camera{
@@ -46473,7 +44673,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bCh" = (
+"bCe" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -46482,7 +44682,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bCi" = (
+"bCf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -46500,23 +44700,22 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bCj" = (
+"bCg" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bCk" = (
+"bCh" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/northleft{
name = "Chemistry Desk";
req_access_txt = "33"
},
-/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bCl" = (
+"bCi" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -46524,13 +44723,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bCm" = (
+"bCj" = (
/obj/machinery/smartfridge/chemistry/preloaded,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bCn" = (
+"bCk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/button/door{
id = "medmain";
@@ -46541,22 +44740,22 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bCo" = (
-/obj/machinery/door/firedoor,
+/area/medical/medbay/central)
+"bCl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/delivery{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/medbay)
-"bCp" = (
/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/delivery{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bCq" = (
+/area/medical/medbay/central)
+"bCm" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/delivery{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/medical/medbay/central)
+"bCn" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -46564,16 +44763,16 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bCr" = (
+/area/medical/medbay/central)
+"bCo" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bCs" = (
+/area/medical/medbay/central)
+"bCp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -46583,19 +44782,19 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bCt" = (
+/area/medical/medbay/central)
+"bCq" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/genetics_cloning)
-"bCu" = (
+/area/medical/genetics/cloning)
+"bCr" = (
/obj/structure/closet/wardrobe/white,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
@@ -46603,8 +44802,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/genetics_cloning)
-"bCv" = (
+/area/medical/genetics/cloning)
+"bCs" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -46615,8 +44814,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/genetics_cloning)
-"bCw" = (
+/area/medical/genetics/cloning)
+"bCt" = (
/obj/machinery/button/door{
id = "cloningmain";
name = "Cloning Door";
@@ -46639,8 +44838,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/genetics_cloning)
-"bCx" = (
+/area/medical/genetics/cloning)
+"bCu" = (
/obj/structure/table,
/obj/item/weapon/storage/box/rxglasses{
pixel_x = 3;
@@ -46661,18 +44860,16 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/genetics_cloning)
-"bCy" = (
+/area/medical/genetics/cloning)
+"bCv" = (
/turf/closed/wall/rust,
/area/space)
-"bCz" = (
+"bCw" = (
/obj/structure/closet/emcloset,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bCA" = (
+/area/maintenance/asteroid/port/west)
+"bCx" = (
/obj/machinery/light/small{
dir = 1
},
@@ -46683,10 +44880,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bCB" = (
+/area/maintenance/asteroid/port/west)
+"bCy" = (
/obj/machinery/door/airlock/maintenance{
name = "Port Asteroid Maintenance";
req_access_txt = "12"
@@ -46694,10 +44889,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bCC" = (
+/area/maintenance/asteroid/port/west)
+"bCz" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -46706,7 +44899,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bCD" = (
+"bCA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 4
@@ -46718,7 +44911,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bCE" = (
+"bCB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -46726,12 +44919,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bCF" = (
-/turf/open/floor/grass{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bCG" = (
+"bCC" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -46740,53 +44928,41 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bCH" = (
+/area/maintenance/asteroid/port/west)
+"bCD" = (
/obj/structure/closet,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bCI" = (
+/area/maintenance/asteroid/port/east)
+"bCE" = (
/obj/machinery/light/small{
dir = 8
},
/turf/open/floor/plating/asteroid,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bCJ" = (
+/area/maintenance/asteroid/central)
+"bCF" = (
/obj/structure/closet/firecloset/full,
/turf/open/floor/plating/asteroid,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bCK" = (
+/area/maintenance/asteroid/central)
+"bCG" = (
/obj/effect/turf_decal/stripes/asteroid/line,
/obj/machinery/atmospherics/pipe/simple/orange/visible,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bCL" = (
+/area/maintenance/asteroid/central)
+"bCH" = (
/obj/structure/rack,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bCM" = (
+/area/maintenance/asteroid/central)
+"bCI" = (
/obj/machinery/vending/snack,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bCN" = (
+"bCJ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -46800,7 +44976,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bCO" = (
+"bCK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -46808,7 +44984,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bCP" = (
+"bCL" = (
/obj/structure/reagent_dispensers/water_cooler,
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (EAST)";
@@ -46817,7 +44993,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bCQ" = (
+"bCM" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (NORTHEAST)";
icon_state = "intact";
@@ -46827,26 +45003,26 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bCR" = (
+"bCN" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 4
},
/turf/closed/wall/r_wall,
/area/engine/engineering)
-"bCS" = (
+"bCO" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"bCT" = (
+/area/engine/engineering)
+"bCP" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 10
},
/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"bCU" = (
+/area/engine/engineering)
+"bCQ" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
@@ -46855,31 +45031,31 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bCV" = (
+/area/engine/engineering)
+"bCR" = (
/obj/effect/turf_decal/stripes/line,
/obj/structure/closet/radiation,
/turf/open/floor/engine{
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bCW" = (
+/area/engine/engineering)
+"bCS" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/light,
/turf/open/floor/engine{
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bCX" = (
+/area/engine/engineering)
+"bCT" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/engine{
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bCY" = (
+/area/engine/engineering)
+"bCU" = (
/obj/effect/turf_decal/stripes/line,
/obj/structure/cable{
d1 = 1;
@@ -46897,8 +45073,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bCZ" = (
+/area/engine/engineering)
+"bCV" = (
/obj/effect/turf_decal/stripes/line,
/obj/structure/cable/yellow{
d1 = 1;
@@ -46909,8 +45085,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bDa" = (
+/area/engine/engineering)
+"bCW" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
@@ -46919,22 +45095,22 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"bDb" = (
+/area/engine/engineering)
+"bCX" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible{
tag = "icon-intact (SOUTHEAST)";
icon_state = "intact";
dir = 6
},
/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"bDc" = (
+/area/engine/engineering)
+"bCY" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 9
},
/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"bDd" = (
+/area/engine/engineering)
+"bCZ" = (
/obj/structure/reagent_dispensers/water_cooler,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
@@ -46945,7 +45121,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bDe" = (
+"bDa" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -46958,7 +45134,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bDf" = (
+"bDb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -46968,7 +45144,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bDg" = (
+"bDc" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -46986,7 +45162,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bDh" = (
+"bDd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -46996,7 +45172,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bDi" = (
+"bDe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -47004,7 +45180,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bDj" = (
+"bDf" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
@@ -47020,14 +45196,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bDk" = (
+"bDg" = (
/obj/structure/disposalpipe/segment,
/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bDl" = (
+"bDh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -47044,7 +45220,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bDm" = (
+"bDi" = (
/obj/machinery/chem_master,
/turf/open/floor/plasteel/whiteyellow/side{
tag = "icon-whiteyellow (NORTHWEST)";
@@ -47053,7 +45229,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bDn" = (
+"bDj" = (
/obj/structure/chair/office/light{
dir = 1
},
@@ -47065,7 +45241,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bDo" = (
+"bDk" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/box/beakers{
pixel_x = 2;
@@ -47080,7 +45256,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bDp" = (
+"bDl" = (
/turf/open/floor/plasteel/whiteyellow/side{
tag = "icon-whiteyellow (NORTH)";
icon_state = "whiteyellow";
@@ -47088,7 +45264,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bDq" = (
+"bDm" = (
/obj/machinery/chem_master,
/turf/open/floor/plasteel/whiteyellow/side{
tag = "icon-whiteyellow (NORTH)";
@@ -47097,7 +45273,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bDr" = (
+"bDn" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -47110,7 +45286,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bDs" = (
+"bDo" = (
/obj/structure/chair{
dir = 4
},
@@ -47121,17 +45297,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bDt" = (
+"bDp" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/eastleft{
name = "Chemistry Desk";
req_access_txt = "33"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bDu" = (
+"bDq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -47143,8 +45320,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bDv" = (
+/area/medical/medbay/central)
+"bDr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -47153,16 +45330,16 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bDw" = (
+/area/medical/medbay/central)
+"bDs" = (
/obj/machinery/light{
dir = 1
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bDx" = (
+/area/medical/medbay/central)
+"bDt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -47170,8 +45347,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bDy" = (
+/area/medical/medbay/central)
+"bDu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -47183,8 +45360,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bDz" = (
+/area/medical/medbay/central)
+"bDv" = (
/obj/machinery/light{
dir = 1
},
@@ -47194,8 +45371,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bDA" = (
+/area/medical/medbay/central)
+"bDw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -47203,8 +45380,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bDB" = (
+/area/medical/medbay/central)
+"bDx" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -47212,16 +45389,16 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bDC" = (
+"bDy" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bDD" = (
+"bDz" = (
/obj/machinery/door/airlock/glass_research{
name = "Genetics Research";
req_access_txt = "0";
@@ -47238,12 +45415,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bDE" = (
+"bDA" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bDF" = (
+"bDB" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -47255,29 +45432,23 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bDG" = (
+/area/maintenance/asteroid/starboard)
+"bDC" = (
/obj/item/weapon/storage/toolbox/mechanical/old,
/turf/open/floor/plating,
/area/space)
-"bDH" = (
+"bDD" = (
/obj/structure/girder,
/obj/item/stack/sheet/metal,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bDI" = (
+/area/maintenance/asteroid/port/west)
+"bDE" = (
/obj/machinery/light/small,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bDJ" = (
+/area/maintenance/asteroid/port/west)
+"bDF" = (
/obj/effect/turf_decal/stripes/asteroid/line{
icon_state = "ast_warn";
dir = 4
@@ -47285,10 +45456,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bDK" = (
+/area/maintenance/asteroid/port/west)
+"bDG" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -47297,7 +45466,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bDL" = (
+"bDH" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -47311,7 +45480,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bDM" = (
+"bDI" = (
/obj/structure/table,
/obj/machinery/reagentgrinder,
/obj/machinery/camera{
@@ -47326,13 +45495,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bDN" = (
+"bDJ" = (
/obj/machinery/chem_master/condimaster,
/turf/open/floor/plasteel/hydrofloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bDO" = (
+"bDK" = (
/obj/structure/closet/crate/hydroponics,
/obj/item/weapon/shovel/spade,
/obj/item/weapon/wrench,
@@ -47349,19 +45518,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bDP" = (
+"bDL" = (
/obj/machinery/biogenerator,
/turf/open/floor/plasteel/darkgreen{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bDQ" = (
+"bDM" = (
/obj/machinery/seed_extractor,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bDR" = (
+"bDN" = (
/obj/structure/table,
/obj/item/weapon/storage/bag/plants/portaseeder,
/obj/item/weapon/storage/bag/plants/portaseeder,
@@ -47372,13 +45541,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bDS" = (
+"bDO" = (
/obj/structure/closet/wardrobe/botanist,
/turf/open/floor/plasteel/darkgreen{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bDT" = (
+"bDP" = (
/obj/structure/beebox,
/obj/item/queen_bee/bought,
/obj/machinery/camera{
@@ -47391,7 +45560,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bDU" = (
+"bDQ" = (
/obj/structure/table,
/obj/item/weapon/book/manual/hydroponics_pod_people,
/obj/item/weapon/paper/hydroponics,
@@ -47401,12 +45570,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bDV" = (
+"bDR" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bDW" = (
+/area/engine/atmos)
+"bDS" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -47417,8 +45586,8 @@
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bDX" = (
+/area/engine/atmos)
+"bDT" = (
/obj/machinery/door/airlock/maintenance{
name = "Atmospehrics Maintenance";
req_access_txt = "12;24"
@@ -47430,33 +45599,24 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bDY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bDZ" = (
+/area/engine/atmos)
+"bDU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bEa" = (
+/area/engine/atmos)
+"bDV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bEb" = (
+/area/engine/atmos)
+"bDW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/light{
dir = 8
@@ -47465,7 +45625,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bEc" = (
+"bDX" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -47477,12 +45637,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bEd" = (
+"bDY" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bEe" = (
+"bDZ" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -47494,7 +45654,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bEf" = (
+"bEa" = (
/obj/machinery/light{
dir = 1
},
@@ -47503,7 +45663,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bEg" = (
+"bEb" = (
/obj/machinery/power/apc{
dir = 1;
name = "Engineering APC";
@@ -47519,20 +45679,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bEh" = (
+"bEc" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bEi" = (
+"bEd" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 5
},
/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"bEj" = (
+/area/engine/engineering)
+"bEe" = (
/obj/machinery/door/airlock/glass_engineering{
name = "Supermatter Engine Room";
req_access_txt = "10"
@@ -47543,8 +45703,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"bEk" = (
+/area/engine/engineering)
+"bEf" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/orange/visible{
@@ -47565,8 +45725,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"bEl" = (
+/area/engine/engineering)
+"bEg" = (
/obj/machinery/door/airlock/glass_engineering{
name = "Supermatter Engine Room";
req_access_txt = "10"
@@ -47582,14 +45742,14 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"bEm" = (
+/area/engine/engineering)
+"bEh" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bEn" = (
+"bEi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/sign/map/left/ceres{
pixel_y = 32
@@ -47598,7 +45758,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bEo" = (
+"bEj" = (
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
@@ -47612,7 +45772,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bEp" = (
+"bEk" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -47625,7 +45785,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bEq" = (
+"bEl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -47636,7 +45796,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bEr" = (
+"bEm" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
@@ -47650,13 +45810,13 @@
icon_state = "0-8"
},
/obj/structure/cable,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating/airless,
/area/security/checkpoint/engineering)
-"bEs" = (
+"bEn" = (
/obj/machinery/computer/secure_data,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -47671,7 +45831,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bEt" = (
+"bEo" = (
/obj/machinery/airalarm{
dir = 1;
icon_state = "alarm0";
@@ -47685,7 +45845,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bEu" = (
+"bEp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -47699,13 +45859,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bEv" = (
+"bEq" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bEw" = (
+"bEr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -47716,7 +45876,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bEx" = (
+"bEs" = (
/obj/machinery/chem_dispenser,
/turf/open/floor/plasteel/whiteyellow/side{
tag = "icon-whiteyellow (WEST)";
@@ -47725,24 +45885,24 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bEy" = (
+"bEt" = (
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bEz" = (
+"bEu" = (
/obj/machinery/chem_heater,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bEA" = (
+"bEv" = (
/obj/machinery/chem_dispenser,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bEB" = (
+"bEw" = (
/turf/open/floor/plasteel/whiteyellow/side{
tag = "icon-whiteyellow (EAST)";
icon_state = "whiteyellow";
@@ -47750,7 +45910,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bEC" = (
+"bEx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -47762,8 +45922,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bED" = (
+/area/medical/medbay/central)
+"bEy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
@@ -47772,16 +45932,16 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bEE" = (
+/area/medical/medbay/central)
+"bEz" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bEF" = (
+/area/medical/medbay/central)
+"bEA" = (
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -47792,8 +45952,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bEG" = (
+/area/medical/medbay/central)
+"bEB" = (
/obj/structure/extinguisher_cabinet{
pixel_y = -32
},
@@ -47804,8 +45964,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bEH" = (
+/area/medical/medbay/central)
+"bEC" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -47813,8 +45973,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bEI" = (
+/area/medical/medbay/central)
+"bED" = (
/obj/machinery/disposal/bin,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/trunk{
@@ -47824,7 +45984,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bEJ" = (
+"bEE" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -47836,7 +45996,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bEK" = (
+"bEF" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -47849,7 +46009,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bEL" = (
+"bEG" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -47857,12 +46017,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bEM" = (
+"bEH" = (
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bEN" = (
+"bEI" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -47876,37 +46036,31 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bEO" = (
+/area/maintenance/asteroid/starboard)
+"bEJ" = (
/obj/item/weapon/coin/gold,
/turf/open/floor/plating,
/area/space)
-"bEP" = (
+"bEK" = (
/obj/machinery/light/small{
dir = 8
},
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bEQ" = (
+/area/maintenance/asteroid/port/west)
+"bEL" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/obj/item/weapon/electronics/airlock,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bER" = (
+/area/maintenance/asteroid/port/west)
+"bEM" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bES" = (
+"bEN" = (
/obj/machinery/door/airlock/maintenance{
name = "Port Asteroid Maintenance";
req_access_txt = "12"
@@ -47914,10 +46068,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bET" = (
+/area/maintenance/asteroid/port/west)
+"bEO" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -47926,8 +46078,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bEU" = (
-/obj/machinery/door/firedoor,
+"bEP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -47940,8 +46091,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bEV" = (
-/obj/machinery/door/firedoor,
+"bEQ" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -47950,8 +46100,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bEW" = (
-/obj/machinery/door/firedoor,
+"bER" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -47967,7 +46116,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bEX" = (
+"bES" = (
/obj/structure/disposalpipe/sortjunction{
dir = 2;
icon_state = "pipe-j1s";
@@ -47978,39 +46127,39 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bEY" = (
+"bET" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/portable_atmospherics/canister/air,
/turf/open/floor/plasteel/vault{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/atmos)
-"bEZ" = (
+/area/engine/atmos)
+"bEU" = (
/obj/machinery/portable_atmospherics/canister/freon,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel/vault{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/atmos)
-"bFa" = (
+/area/engine/atmos)
+"bEV" = (
/obj/machinery/portable_atmospherics/canister/toxins,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel/vault{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/atmos)
-"bFb" = (
+/area/engine/atmos)
+"bEW" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel/vault{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/atmos)
-"bFc" = (
+/area/engine/atmos)
+"bEX" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -48022,15 +46171,15 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bFd" = (
+/area/engine/atmos)
+"bEY" = (
/obj/structure/closet/firecloset/full,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bFe" = (
+/area/engine/atmos)
+"bEZ" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -48038,8 +46187,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bFf" = (
+/area/engine/atmos)
+"bFa" = (
/obj/structure/table,
/obj/item/stack/sheet/metal/fifty,
/obj/item/stack/rods{
@@ -48048,8 +46197,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bFg" = (
+/area/engine/atmos)
+"bFb" = (
/obj/structure/table,
/obj/item/stack/sheet/glass/fifty,
/obj/machinery/power/apc{
@@ -48066,8 +46215,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bFh" = (
+/area/engine/atmos)
+"bFc" = (
/obj/structure/table,
/obj/item/weapon/grenade/chem_grenade/metalfoam,
/obj/item/weapon/grenade/chem_grenade/metalfoam,
@@ -48079,8 +46228,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bFi" = (
+/area/engine/atmos)
+"bFd" = (
/obj/structure/rack,
/obj/item/clothing/mask/gas,
/obj/item/clothing/mask/gas,
@@ -48089,8 +46238,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bFj" = (
+/area/engine/atmos)
+"bFe" = (
/obj/structure/tank_dispenser,
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (EAST)";
@@ -48098,18 +46247,19 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bFk" = (
+/area/engine/atmos)
+"bFf" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bFl" = (
+/area/engine/atmos)
+"bFg" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (WEST)";
@@ -48118,7 +46268,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bFm" = (
+"bFh" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -48133,7 +46283,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bFn" = (
+"bFi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -48141,7 +46291,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bFo" = (
+"bFj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -48152,18 +46302,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bFp" = (
+"bFk" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bFq" = (
+"bFl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -48171,7 +46321,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bFr" = (
+"bFm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -48185,13 +46335,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bFs" = (
+"bFn" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bFt" = (
+"bFo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -48206,7 +46356,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bFu" = (
+"bFp" = (
/obj/structure/table,
/obj/item/stack/sheet/glass/fifty,
/obj/item/stack/sheet/glass/fifty,
@@ -48217,7 +46367,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bFv" = (
+"bFq" = (
/obj/structure/table,
/obj/item/stack/sheet/metal/fifty,
/obj/item/stack/sheet/metal/fifty,
@@ -48228,7 +46378,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bFw" = (
+"bFr" = (
/obj/structure/table,
/obj/item/stack/rods{
amount = 50
@@ -48243,7 +46393,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bFx" = (
+"bFs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -48256,7 +46406,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bFy" = (
+"bFt" = (
/obj/structure/table,
/obj/item/stack/sheet/plasteel/fifty,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -48276,7 +46426,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bFz" = (
+"bFu" = (
/obj/structure/table,
/obj/item/stack/sheet/rglass{
amount = 50
@@ -48293,7 +46443,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bFA" = (
+"bFv" = (
/obj/structure/table,
/obj/item/stack/cable_coil,
/obj/item/stack/cable_coil,
@@ -48309,7 +46459,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bFB" = (
+"bFw" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -48321,7 +46471,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bFC" = (
+"bFx" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -48333,7 +46483,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bFD" = (
+"bFy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -48348,21 +46498,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bFE" = (
+"bFz" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bFF" = (
+"bFA" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -48375,7 +46525,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bFG" = (
+"bFB" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -48388,7 +46538,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bFH" = (
+"bFC" = (
/obj/machinery/vending/cola,
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (EAST)";
@@ -48397,9 +46547,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bFI" = (
+"bFD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -48412,8 +46561,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bFJ" = (
-/obj/machinery/door/firedoor,
+"bFE" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -48424,9 +46572,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bFK" = (
+"bFF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -48441,7 +46588,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bFL" = (
+"bFG" = (
/obj/machinery/requests_console{
department = "Chemistry";
departmentType = 2;
@@ -48459,7 +46606,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bFM" = (
+"bFH" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -48468,7 +46615,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bFN" = (
+"bFI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -48476,7 +46623,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bFO" = (
+"bFJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -48485,7 +46632,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bFP" = (
+"bFK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -48497,7 +46644,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bFQ" = (
+"bFL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -48508,7 +46655,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bFR" = (
+"bFM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -48522,7 +46669,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bFS" = (
+"bFN" = (
/obj/machinery/door/airlock/glass_medical{
id_tag = null;
name = "Chemistry Lab";
@@ -48538,7 +46685,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bFT" = (
+"bFO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -48552,8 +46699,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bFU" = (
+/area/medical/medbay/central)
+"bFP" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -48564,13 +46711,13 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bFV" = (
+/area/medical/medbay/central)
+"bFQ" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bFW" = (
+/area/medical/medbay/zone2)
+"bFR" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -48578,14 +46725,14 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bFX" = (
+/area/medical/medbay/zone2)
+"bFS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bFY" = (
+"bFT" = (
/obj/structure/chair/office/light{
dir = 4
},
@@ -48601,7 +46748,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bFZ" = (
+"bFU" = (
/obj/machinery/computer/scan_consolenew,
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (EAST)";
@@ -48610,7 +46757,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bGa" = (
+"bFV" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -48619,31 +46766,27 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bGb" = (
+"bFW" = (
/obj/structure/flora/tree/palm,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bGc" = (
+"bFX" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bGd" = (
+/area/maintenance/asteroid/starboard)
+"bFY" = (
/obj/structure/rack,
/obj/item/clothing/suit/space/fragile,
/obj/item/clothing/head/helmet/space/fragile,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bGe" = (
+/area/maintenance/asteroid/starboard)
+"bFZ" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -48651,20 +46794,16 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bGf" = (
+/area/maintenance/asteroid/starboard)
+"bGa" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bGg" = (
+/area/maintenance/asteroid/starboard)
+"bGb" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -48672,20 +46811,16 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bGh" = (
+/area/maintenance/asteroid/starboard)
+"bGc" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bGi" = (
+/area/maintenance/asteroid/starboard)
+"bGd" = (
/obj/structure/disposaloutlet{
dir = 4
},
@@ -48693,10 +46828,8 @@
dir = 8
},
/turf/open/floor/plating/airless,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bGj" = (
+/area/maintenance/asteroid/starboard)
+"bGe" = (
/obj/machinery/disposal/deliveryChute{
dir = 8
},
@@ -48705,7 +46838,7 @@
},
/turf/open/floor/plating/airless,
/area/space)
-"bGk" = (
+"bGf" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -48713,14 +46846,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/space)
-"bGl" = (
+"bGg" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
/turf/open/floor/plating,
/area/space)
-"bGm" = (
+"bGh" = (
/obj/machinery/airalarm{
dir = 4;
icon_state = "alarm0";
@@ -48733,12 +46866,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bGn" = (
+"bGi" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bGo" = (
+"bGj" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -48748,13 +46881,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bGp" = (
+"bGk" = (
/turf/open/floor/plasteel/vault{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
/area/crew_quarters/fitness)
-"bGq" = (
+"bGl" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -48766,7 +46899,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bGr" = (
+"bGm" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -48783,7 +46916,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bGs" = (
+"bGn" = (
/mob/living/simple_animal/crab{
desc = "The local trainer hired to keep the crew in shape by aggressively snipping at them.";
name = "Crabohydrates"
@@ -48793,7 +46926,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bGt" = (
+"bGo" = (
/obj/structure/sign/poster/random{
name = "random official poster";
pixel_x = 0;
@@ -48814,7 +46947,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bGu" = (
+"bGp" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -48825,12 +46958,12 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bGv" = (
+"bGq" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bGw" = (
+"bGr" = (
/obj/structure/bookcase{
name = "Forbidden Knowledge"
},
@@ -48841,7 +46974,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bGx" = (
+"bGs" = (
/obj/structure/table/wood,
/obj/item/device/taperecorder{
pixel_y = 0
@@ -48854,7 +46987,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bGy" = (
+"bGt" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -48870,7 +47003,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bGz" = (
+"bGu" = (
/obj/structure/disposalpipe/trunk{
dir = 1
},
@@ -48880,7 +47013,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bGA" = (
+"bGv" = (
/obj/structure/table/wood,
/obj/structure/window/reinforced{
dir = 8
@@ -48889,7 +47022,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bGB" = (
+"bGw" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -48902,7 +47035,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bGC" = (
+"bGx" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 24
},
@@ -48920,22 +47053,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bGD" = (
+"bGy" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bGE" = (
+/area/library/lounge)
+"bGz" = (
/obj/machinery/vending/coffee,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bGF" = (
+/area/library/lounge)
+"bGA" = (
/obj/structure/chair/comfy/black{
dir = 4
},
@@ -48945,35 +47074,27 @@
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bGG" = (
+/area/library/lounge)
+"bGB" = (
/obj/machinery/computer/security/telescreen/entertainment{
pixel_y = 32
},
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bGH" = (
+/area/library/lounge)
+"bGC" = (
/obj/structure/fireplace,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bGI" = (
+/area/library/lounge)
+"bGD" = (
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bGJ" = (
+/area/library/lounge)
+"bGE" = (
/obj/structure/chair/comfy/black{
dir = 8
},
@@ -48983,10 +47104,8 @@
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bGK" = (
+/area/library/lounge)
+"bGF" = (
/obj/structure/rack,
/obj/item/weapon/grown/log,
/obj/item/weapon/grown/log,
@@ -49001,26 +47120,22 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bGL" = (
+/area/library/lounge)
+"bGG" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bGM" = (
+/area/library/lounge)
+"bGH" = (
/obj/machinery/portable_atmospherics/canister/water_vapor,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel/vault{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/atmos)
-"bGN" = (
+/area/engine/atmos)
+"bGI" = (
/obj/machinery/camera{
c_tag = "Atmospherics North-West";
dir = 4;
@@ -49030,25 +47145,25 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bGO" = (
+/area/engine/atmos)
+"bGJ" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bGP" = (
+/area/engine/atmos)
+"bGK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bGQ" = (
+/area/engine/atmos)
+"bGL" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bGR" = (
+/area/engine/atmos)
+"bGM" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -49062,8 +47177,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bGS" = (
+/area/engine/atmos)
+"bGN" = (
/obj/structure/chair/office/dark{
dir = 4
},
@@ -49078,8 +47193,8 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bGT" = (
+/area/engine/atmos)
+"bGO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/table/reinforced,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -49093,11 +47208,12 @@
icon_state = "intact";
dir = 8
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/yellow{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bGU" = (
+/area/engine/atmos)
+"bGP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 8
@@ -49109,7 +47225,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bGV" = (
+"bGQ" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -49130,7 +47246,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bGW" = (
+"bGR" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -49147,7 +47263,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bGX" = (
+"bGS" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -49168,7 +47284,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bGY" = (
+"bGT" = (
/obj/machinery/door/airlock/engineering{
cyclelinkeddir = null;
name = "Engine Room";
@@ -49190,7 +47306,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bGZ" = (
+"bGU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -49210,7 +47326,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bHa" = (
+"bGV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -49234,7 +47350,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bHb" = (
+"bGW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -49248,7 +47364,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bHc" = (
+"bGX" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -49267,7 +47383,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bHd" = (
+"bGY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -49291,7 +47407,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bHe" = (
+"bGZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -49306,7 +47422,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bHf" = (
+"bHa" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -49330,7 +47446,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bHg" = (
+"bHb" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -49347,7 +47463,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bHh" = (
+"bHc" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -49366,7 +47482,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bHi" = (
+"bHd" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -49382,7 +47498,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bHj" = (
+"bHe" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -49402,7 +47518,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bHk" = (
+"bHf" = (
/obj/machinery/door/airlock/engineering{
cyclelinkeddir = null;
name = "Engine Room";
@@ -49427,7 +47543,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bHl" = (
+"bHg" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -49448,7 +47564,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bHm" = (
+"bHh" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -49466,7 +47582,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bHn" = (
+"bHi" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -49484,7 +47600,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bHo" = (
+"bHj" = (
/obj/machinery/vending/cigarette,
/obj/machinery/light{
dir = 4
@@ -49499,12 +47615,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bHp" = (
+"bHk" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bHq" = (
+"bHl" = (
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
@@ -49513,14 +47629,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bHr" = (
+"bHm" = (
/obj/structure/disposalpipe/segment,
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bHs" = (
+"bHn" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1
@@ -49529,7 +47645,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bHt" = (
+"bHo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -49537,7 +47653,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bHu" = (
+"bHp" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 24
},
@@ -49551,7 +47667,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bHv" = (
+"bHq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -49559,7 +47675,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bHw" = (
+"bHr" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -49569,20 +47685,20 @@
dir = 10;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bHx" = (
+/area/medical/medbay/central)
+"bHs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/whiteblue/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bHy" = (
+/area/medical/medbay/central)
+"bHt" = (
/turf/open/floor/plasteel/whiteblue/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"bHz" = (
+/area/medical/medbay/central)
+"bHu" = (
/obj/structure/table,
/obj/item/weapon/folder/white,
/obj/item/weapon/gun/syringe,
@@ -49594,8 +47710,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bHA" = (
+/area/medical/medbay/zone2)
+"bHv" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/o2{
pixel_x = 3;
@@ -49614,8 +47730,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bHB" = (
+/area/medical/medbay/zone2)
+"bHw" = (
/obj/structure/table,
/obj/item/device/radio/intercom,
/obj/item/weapon/storage/firstaid/toxin{
@@ -49630,8 +47746,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bHC" = (
+/area/medical/medbay/zone2)
+"bHx" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/fire{
pixel_x = 3;
@@ -49650,8 +47766,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bHD" = (
+/area/medical/medbay/zone2)
+"bHy" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/brute{
pixel_x = 3;
@@ -49672,15 +47788,15 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bHE" = (
+/area/medical/medbay/zone2)
+"bHz" = (
/obj/structure/disposalpipe/trunk,
/obj/structure/disposaloutlet,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bHF" = (
+/area/medical/medbay/zone2)
+"bHA" = (
/obj/structure/closet/secure_closet/medical1,
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -49692,7 +47808,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bHG" = (
+"bHB" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1
@@ -49701,7 +47817,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bHH" = (
+"bHC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -49714,7 +47830,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bHI" = (
+"bHD" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -49729,7 +47845,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bHJ" = (
+"bHE" = (
/obj/machinery/dna_scannernew,
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (EAST)";
@@ -49738,15 +47854,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bHK" = (
+"bHF" = (
/obj/machinery/light/small{
dir = 8
},
/turf/open/floor/plating/asteroid,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bHL" = (
+/area/maintenance/asteroid/starboard)
+"bHG" = (
/obj/structure/disposalpipe/junction{
tag = "icon-pipe-j2 (WEST)";
icon_state = "pipe-j2";
@@ -49755,10 +47869,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bHM" = (
+/area/maintenance/asteroid/starboard)
+"bHH" = (
/obj/structure/disposalpipe/sortjunction{
dir = 1;
icon_state = "pipe-j2s";
@@ -49769,17 +47881,13 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bHN" = (
+/area/maintenance/asteroid/starboard)
+"bHI" = (
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bHO" = (
+/area/maintenance/asteroid/starboard)
+"bHJ" = (
/obj/item/chair,
/obj/machinery/light/small{
dir = 4
@@ -49787,10 +47895,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bHP" = (
+/area/maintenance/asteroid/starboard)
+"bHK" = (
/obj/structure/weightlifter,
/obj/structure/extinguisher_cabinet{
pixel_x = -24
@@ -49799,18 +47905,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bHQ" = (
+"bHL" = (
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bHR" = (
+"bHM" = (
/obj/structure/stacklifter,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bHS" = (
+"bHN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -49818,7 +47924,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bHT" = (
+"bHO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -49827,7 +47933,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bHU" = (
+"bHP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -49837,7 +47943,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bHV" = (
+"bHQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -49846,7 +47952,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bHW" = (
+"bHR" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/chair/office/dark,
/obj/effect/landmark/start/assistant,
@@ -49855,7 +47961,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bHX" = (
+"bHS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -49868,7 +47974,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bHY" = (
+"bHT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -49876,7 +47982,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bHZ" = (
+"bHU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -49887,7 +47993,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bIa" = (
+"bHV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -49895,7 +48001,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bIb" = (
+"bHW" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -49906,7 +48012,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bIc" = (
+"bHX" = (
/obj/structure/chair/comfy/brown{
dir = 1
},
@@ -49914,7 +48020,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bId" = (
+"bHY" = (
/obj/structure/destructible/cult/tome,
/obj/item/clothing/under/suit_jacket/red,
/obj/item/weapon/book/codex_gigas,
@@ -49922,12 +48028,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bIe" = (
+"bHZ" = (
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bIf" = (
+"bIa" = (
/obj/machinery/door/window{
dir = 8;
icon_state = "right";
@@ -49940,7 +48046,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bIg" = (
+"bIb" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -49959,22 +48065,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bIh" = (
+"bIc" = (
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bIi" = (
+/area/library/lounge)
+"bId" = (
/obj/structure/table/wood,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bIj" = (
+/area/library/lounge)
+"bIe" = (
/obj/structure/chair/comfy/black{
tag = "icon-comfychair (NORTH)";
icon_state = "comfychair";
@@ -49983,30 +48085,23 @@
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bIk" = (
+/area/library/lounge)
+"bIf" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 28
},
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bIl" = (
+/area/library/lounge)
+"bIg" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bIm" = (
+/area/maintenance/asteroid/port/east)
+"bIh" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -50015,14 +48110,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/atmos)
-"bIn" = (
+/area/engine/atmos)
+"bIi" = (
/turf/open/floor/plasteel/vault{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/atmos)
-"bIo" = (
+/area/engine/atmos)
+"bIj" = (
/obj/machinery/door/airlock/engineering{
cyclelinkeddir = null;
name = "Atmospherics Storage";
@@ -50032,8 +48127,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/atmos)
-"bIp" = (
+/area/engine/atmos)
+"bIk" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -50042,8 +48137,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bIq" = (
+/area/engine/atmos)
+"bIl" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -50052,8 +48147,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bIr" = (
+/area/engine/atmos)
+"bIm" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -50062,8 +48157,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bIs" = (
+/area/engine/atmos)
+"bIn" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -50080,14 +48175,14 @@
/turf/open/floor/plasteel/yellow/side{
dir = 6
},
-/area/atmos)
-"bIt" = (
+/area/engine/atmos)
+"bIo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bIu" = (
+/area/engine/atmos)
+"bIp" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/machinery/portable_atmospherics/scrubber,
/turf/open/floor/plasteel/yellow/side{
@@ -50097,7 +48192,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bIv" = (
+"bIq" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -50109,7 +48204,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bIw" = (
+"bIr" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
},
@@ -50118,7 +48213,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bIx" = (
+"bIs" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -50130,7 +48225,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bIy" = (
+"bIt" = (
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (WEST)";
icon_state = "yellow";
@@ -50138,20 +48233,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bIz" = (
+"bIu" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bIA" = (
+"bIv" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bIB" = (
+"bIw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -50163,12 +48258,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bIC" = (
+"bIx" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bID" = (
+"bIy" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -50180,7 +48275,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bIE" = (
+"bIz" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -50191,7 +48286,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bIF" = (
+"bIA" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
d1 = 1;
@@ -50202,7 +48297,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bIG" = (
+"bIB" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/electrical{
pixel_x = -4;
@@ -50216,7 +48311,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bIH" = (
+"bIC" = (
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (EAST)";
icon_state = "yellow";
@@ -50224,7 +48319,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bII" = (
+"bID" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -50236,7 +48331,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bIJ" = (
+"bIE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -50244,7 +48339,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bIK" = (
+"bIF" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -50257,7 +48352,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bIL" = (
+"bIG" = (
/obj/structure/table,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/item/stack/packageWrap,
@@ -50269,7 +48364,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bIM" = (
+"bIH" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -50279,22 +48374,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bIN" = (
+"bII" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bIO" = (
+"bIJ" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bIP" = (
+/area/maintenance/asteroid/central)
+"bIK" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -50309,13 +48402,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bIQ" = (
+"bIL" = (
/obj/structure/closet/secure_closet/chemical,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bIR" = (
+"bIM" = (
/obj/structure/table/glass,
/obj/item/hand_labeler_refill,
/obj/item/hand_labeler_refill,
@@ -50326,7 +48419,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bIS" = (
+"bIN" = (
/obj/structure/table/glass,
/obj/item/stack/cable_coil/random,
/obj/item/stack/cable_coil/random,
@@ -50335,7 +48428,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bIT" = (
+"bIO" = (
/obj/structure/table/glass,
/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,
/obj/item/stack/sheet/mineral/plasma{
@@ -50355,7 +48448,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bIU" = (
+"bIP" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -50364,14 +48457,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bIV" = (
+"bIQ" = (
/obj/structure/table/glass,
/obj/machinery/reagentgrinder,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bIW" = (
+"bIR" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/box/syringes,
/obj/item/clothing/glasses/science{
@@ -50383,7 +48476,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bIX" = (
+"bIS" = (
/obj/structure/table/glass,
/obj/item/weapon/grenade/chem_grenade,
/obj/item/weapon/grenade/chem_grenade,
@@ -50398,22 +48491,22 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bIY" = (
+"bIT" = (
/obj/structure/closet/wardrobe/chemistry_white,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bIZ" = (
+"bIU" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bJa" = (
+/area/medical/medbay/zone2)
+"bIV" = (
/obj/machinery/door/airlock/glass_medical{
id_tag = null;
name = "Medbay Storage";
@@ -50424,16 +48517,16 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bJb" = (
+/area/medical/medbay/zone2)
+"bIW" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bJc" = (
+/area/medical/medbay/zone2)
+"bIX" = (
/obj/structure/table,
/obj/structure/bedsheetbin{
pixel_x = 2
@@ -50446,19 +48539,19 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bJd" = (
+/area/medical/medbay/zone2)
+"bIY" = (
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bJe" = (
+/area/medical/medbay/zone2)
+"bIZ" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bJf" = (
+/area/medical/medbay/zone2)
+"bJa" = (
/obj/structure/closet/secure_closet/personal/patient,
/obj/machinery/requests_console{
department = "Genetics";
@@ -50471,18 +48564,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bJg" = (
+"bJb" = (
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bJh" = (
+"bJc" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bJi" = (
+"bJd" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -50496,7 +48589,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bJj" = (
+"bJe" = (
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (EAST)";
icon_state = "whitepurple";
@@ -50504,7 +48597,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bJk" = (
+"bJf" = (
/obj/machinery/door/window/westleft{
name = "Monkey Pen";
req_access_txt = "9"
@@ -50514,17 +48607,15 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bJl" = (
+"bJg" = (
/obj/structure/disposalpipe/segment,
/obj/structure/girder,
/obj/structure/grille,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bJm" = (
+/area/maintenance/asteroid/starboard)
+"bJh" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
dir = 1
@@ -50534,10 +48625,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bJn" = (
+/area/maintenance/asteroid/starboard)
+"bJi" = (
/obj/structure/disposalpipe/sortjunction{
dir = 1;
icon_state = "pipe-j2s";
@@ -50549,35 +48638,27 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bJo" = (
+/area/maintenance/asteroid/starboard)
+"bJj" = (
/obj/structure/grille/broken,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bJp" = (
+/area/maintenance/asteroid/starboard)
+"bJk" = (
/obj/structure/table,
/obj/item/weapon/storage/fancy/cigarettes,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/airless,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bJq" = (
+/area/maintenance/asteroid/starboard)
+"bJl" = (
/obj/structure/disposalpipe/segment,
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bJr" = (
+/area/maintenance/asteroid/port/west)
+"bJm" = (
/obj/structure/sign/poster/random{
name = "random official poster";
pixel_x = -32;
@@ -50587,26 +48668,26 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bJs" = (
+"bJn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bJt" = (
+"bJo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bJu" = (
+"bJp" = (
/obj/structure/table,
/turf/open/floor/plasteel/vault{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
/area/crew_quarters/fitness)
-"bJv" = (
+"bJq" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -50618,15 +48699,15 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bJw" = (
+"bJr" = (
/obj/structure/grille,
-/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bJx" = (
+"bJs" = (
/obj/machinery/light/small,
/turf/open/floor/plasteel/chapel{
tag = "icon-chapel (WEST)";
@@ -50635,23 +48716,23 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bJy" = (
+"bJt" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bJz" = (
+"bJu" = (
/turf/open/floor/plasteel/chapel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bJA" = (
+"bJv" = (
/obj/structure/table/wood,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bJB" = (
+"bJw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -50659,7 +48740,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bJC" = (
+"bJx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -50672,41 +48753,35 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bJD" = (
-/obj/machinery/door/airlock/glass{
- name = "Library"
- },
+"bJy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Library"
+ },
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bJE" = (
+/area/library/lounge)
+"bJz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bJF" = (
+/area/library/lounge)
+"bJA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bJG" = (
+/area/library/lounge)
+"bJB" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -50718,10 +48793,8 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bJH" = (
+/area/library/lounge)
+"bJC" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -50731,10 +48804,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bJI" = (
+/area/maintenance/asteroid/port/east)
+"bJD" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/camera{
c_tag = "Atmospherics Storage";
@@ -50747,32 +48818,32 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/atmos)
-"bJJ" = (
+/area/engine/atmos)
+"bJE" = (
/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel/vault{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/atmos)
-"bJK" = (
+/area/engine/atmos)
+"bJF" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel/vault{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/atmos)
-"bJL" = (
+/area/engine/atmos)
+"bJG" = (
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel/vault{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/atmos)
-"bJM" = (
+/area/engine/atmos)
+"bJH" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -50782,30 +48853,22 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bJN" = (
+/area/engine/atmos)
+"bJI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bJO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bJP" = (
+/area/engine/atmos)
+"bJJ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bJQ" = (
+/area/engine/atmos)
+"bJK" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -50823,8 +48886,8 @@
/turf/open/floor/plasteel/yellow{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bJR" = (
+/area/engine/atmos)
+"bJL" = (
/obj/machinery/camera{
c_tag = "Engineering West";
dir = 4;
@@ -50839,14 +48902,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bJS" = (
+"bJM" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bJT" = (
+"bJN" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/electrical{
pixel_x = -4;
@@ -50867,7 +48930,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bJU" = (
+"bJO" = (
/obj/structure/table,
/obj/item/weapon/book/manual/wiki/engineering_construction,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -50878,7 +48941,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bJV" = (
+"bJP" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -50887,7 +48950,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bJW" = (
+"bJQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -50899,7 +48962,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bJX" = (
+"bJR" = (
/obj/structure/disposalpipe/segment,
/obj/structure/table,
/obj/structure/cable/yellow{
@@ -50912,13 +48975,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bJY" = (
+"bJS" = (
/obj/structure/table,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bJZ" = (
+"bJT" = (
/obj/structure/table,
/obj/item/clothing/head/welding,
/obj/item/clothing/head/welding,
@@ -50927,7 +48990,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bKa" = (
+"bJU" = (
/obj/structure/closet/secure_closet/engineering_personal,
/obj/item/weapon/pickaxe/mini,
/obj/machinery/camera{
@@ -50943,7 +49006,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bKb" = (
+"bJV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -50959,13 +49022,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bKc" = (
+"bJW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bKd" = (
+"bJX" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -50976,7 +49039,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bKe" = (
+"bJY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -50984,8 +49047,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bKf" = (
+/area/medical/medbay/zone2)
+"bJZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -50994,16 +49057,16 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bKg" = (
+/area/medical/medbay/zone2)
+"bKa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bKh" = (
+/area/medical/medbay/zone2)
+"bKb" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -51012,8 +49075,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bKi" = (
+/area/medical/medbay/zone2)
+"bKc" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -51021,8 +49084,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bKj" = (
+/area/medical/medbay/zone2)
+"bKd" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -51030,8 +49093,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bKk" = (
+/area/medical/medbay/zone2)
+"bKe" = (
/obj/structure/sink{
dir = 4;
icon_state = "sink";
@@ -51049,8 +49112,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bKl" = (
+/area/medical/medbay/zone2)
+"bKf" = (
/obj/structure/closet/wardrobe/genetics_white,
/obj/machinery/light{
icon_state = "tube1";
@@ -51060,7 +49123,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bKm" = (
+"bKg" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -51069,7 +49132,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bKn" = (
+"bKh" = (
/obj/structure/chair/office/light{
dir = 4
},
@@ -51087,7 +49150,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bKo" = (
+"bKi" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/light/small{
dir = 8
@@ -51099,10 +49162,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bKp" = (
+/area/maintenance/asteroid/starboard)
+"bKj" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
dir = 1
@@ -51111,10 +49172,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bKq" = (
+/area/maintenance/asteroid/starboard)
+"bKk" = (
/obj/structure/disposalpipe/sortjunction{
dir = 1;
icon_state = "pipe-j2s";
@@ -51125,16 +49184,12 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bKr" = (
+/area/maintenance/asteroid/starboard)
+"bKl" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bKs" = (
+/area/maintenance/asteroid/port/west)
+"bKm" = (
/obj/structure/weightlifter,
/obj/machinery/camera{
c_tag = "Fitness West";
@@ -51145,14 +49200,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bKt" = (
+"bKn" = (
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bKu" = (
+"bKo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
@@ -51160,7 +49215,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bKv" = (
+"bKp" = (
/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
@@ -51169,16 +49224,16 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bKw" = (
+"bKq" = (
+/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Fitness Area"
},
-/obj/machinery/door/firedoor,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bKx" = (
+"bKr" = (
/obj/machinery/door/morgue{
name = "Private Study";
req_access_txt = "37"
@@ -51187,13 +49242,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bKy" = (
+"bKs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bKz" = (
+"bKt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -51206,10 +49261,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bKA" = (
-/obj/machinery/door/airlock/glass{
- name = "Library"
- },
+"bKu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -51219,13 +49271,14 @@
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Library"
+ },
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bKB" = (
+/area/library/lounge)
+"bKv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -51237,10 +49290,8 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bKC" = (
+/area/library/lounge)
+"bKw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -51252,10 +49303,8 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bKD" = (
+/area/library/lounge)
+"bKx" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -51264,10 +49313,8 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bKE" = (
+/area/library/lounge)
+"bKy" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/orange{
d1 = 4;
@@ -51277,17 +49324,15 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bKF" = (
+/area/library/lounge)
+"bKz" = (
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/visible,
/obj/machinery/meter,
/turf/open/floor/plasteel/yellow/corner{
dir = 8
},
-/area/atmos)
-"bKG" = (
+/area/engine/atmos)
+"bKA" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
icon_state = "intact";
@@ -51296,8 +49341,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bKH" = (
+/area/engine/atmos)
+"bKB" = (
/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 10;
@@ -51307,15 +49352,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bKI" = (
-/obj/effect/landmark/lightsout,
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bKJ" = (
+/area/engine/atmos)
+"bKC" = (
/mob/living/simple_animal/pet/dog/pug{
desc = "It's Spaghetti, the official pug of Atmospherics. Appropriately named after the jumbled mess of piping.";
name = "Spaghetti"
@@ -51323,8 +49361,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bKK" = (
+/area/engine/atmos)
+"bKD" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -51342,8 +49380,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bKL" = (
+/area/engine/atmos)
+"bKE" = (
/obj/machinery/space_heater,
/obj/effect/turf_decal/stripes/line{
dir = 9
@@ -51351,16 +49389,16 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bKM" = (
+/area/engine/atmos)
+"bKF" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bKN" = (
+/area/engine/atmos)
+"bKG" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -51374,8 +49412,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bKO" = (
+/area/engine/atmos)
+"bKH" = (
/obj/structure/reagent_dispensers/watertank/high,
/obj/effect/turf_decal/stripes/line{
dir = 5
@@ -51383,14 +49421,14 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bKP" = (
+/area/engine/atmos)
+"bKI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bKQ" = (
+/area/engine/atmos)
+"bKJ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -51404,7 +49442,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bKR" = (
+"bKK" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -51413,13 +49451,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bKS" = (
+"bKL" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bKT" = (
+"bKM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -51427,13 +49465,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bKU" = (
+"bKN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bKV" = (
+"bKO" = (
/obj/structure/closet/radiation,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
@@ -51445,7 +49483,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bKW" = (
+"bKP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -51459,7 +49497,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bKX" = (
+"bKQ" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -51470,7 +49508,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bKY" = (
+"bKR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -51478,7 +49516,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bKZ" = (
+"bKS" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -51492,19 +49530,17 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bLa" = (
+"bKT" = (
/obj/machinery/gravity_generator/main/station,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bLb" = (
+"bKU" = (
/obj/structure/closet/crate,
/turf/open/floor/plating/asteroid,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bLc" = (
+/area/maintenance/asteroid/central)
+"bKV" = (
/obj/machinery/light/small{
dir = 8
},
@@ -51512,7 +49548,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bLd" = (
+"bKW" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -51520,7 +49556,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bLe" = (
+"bKX" = (
/obj/machinery/door/airlock/maintenance/external{
name = "External Airlock Access";
req_access_txt = "12"
@@ -51529,7 +49565,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bLf" = (
+"bKY" = (
/obj/machinery/light/small{
dir = 1
},
@@ -51539,10 +49575,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bLg" = (
+/area/maintenance/asteroid/starboard)
+"bKZ" = (
/obj/machinery/power/apc{
dir = 1;
name = "Chemistry APC";
@@ -51558,18 +49592,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bLh" = (
+"bLa" = (
/obj/structure/plasticflaps,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bLi" = (
+/area/medical/medbay/zone2)
+"bLb" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bLj" = (
+/area/medical/medbay/zone2)
+"bLc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -51580,8 +49614,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bLk" = (
+/area/medical/medbay/zone2)
+"bLd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -51591,8 +49625,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bLl" = (
+/area/medical/medbay/zone2)
+"bLe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -51603,8 +49637,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bLm" = (
+/area/medical/medbay/zone2)
+"bLf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -51615,8 +49649,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bLn" = (
+/area/medical/medbay/zone2)
+"bLg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -51627,8 +49661,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bLo" = (
+/area/medical/medbay/zone2)
+"bLh" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -51646,8 +49680,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bLp" = (
+/area/medical/medbay/zone2)
+"bLi" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/box/disks{
pixel_x = 2;
@@ -51657,7 +49691,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bLq" = (
+"bLj" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/box/rxglasses,
/obj/machinery/firealarm{
@@ -51668,7 +49702,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bLr" = (
+"bLk" = (
/obj/structure/table/glass,
/obj/item/weapon/folder/white,
/obj/item/device/radio/headset/headset_medsci,
@@ -51688,7 +49722,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bLs" = (
+"bLl" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -51699,7 +49733,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bLt" = (
+"bLm" = (
/obj/machinery/dna_scannernew,
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (SOUTHEAST)";
@@ -51708,7 +49742,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bLu" = (
+"bLn" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -51721,29 +49755,23 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bLv" = (
+/area/maintenance/asteroid/starboard)
+"bLo" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bLw" = (
+/area/maintenance/asteroid/starboard)
+"bLp" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/grille/broken,
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bLx" = (
+/area/maintenance/asteroid/starboard)
+"bLq" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -51751,10 +49779,8 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bLy" = (
+/area/maintenance/asteroid/starboard)
+"bLr" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -51766,7 +49792,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bLz" = (
+"bLs" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -51777,10 +49803,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bLA" = (
+/area/maintenance/asteroid/starboard)
+"bLt" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
dir = 1
@@ -51788,10 +49812,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bLB" = (
+/area/maintenance/asteroid/starboard)
+"bLu" = (
/obj/structure/disposalpipe/sortjunction{
dir = 1;
icon_state = "pipe-j2s";
@@ -51802,19 +49824,15 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bLC" = (
+/area/maintenance/asteroid/starboard)
+"bLv" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bLD" = (
+/area/maintenance/asteroid/starboard)
+"bLw" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -51829,10 +49847,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bLE" = (
+/area/maintenance/asteroid/port/west)
+"bLx" = (
/obj/machinery/power/apc{
dir = 4;
name = "Fitness APC";
@@ -51852,7 +49868,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bLF" = (
+"bLy" = (
/obj/machinery/light{
dir = 8
},
@@ -51863,13 +49879,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bLG" = (
+"bLz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bLH" = (
+"bLA" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -51877,7 +49893,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bLI" = (
+"bLB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -51885,7 +49901,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bLJ" = (
+"bLC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -51894,18 +49910,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bLK" = (
+"bLD" = (
/obj/structure/grille,
-/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bLL" = (
+"bLE" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -51918,7 +49934,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bLM" = (
+"bLF" = (
/obj/structure/table/wood,
/obj/machinery/computer/libraryconsole/bookmanagement{
pixel_y = 0
@@ -51930,7 +49946,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bLN" = (
+"bLG" = (
/obj/machinery/light{
dir = 1
},
@@ -51939,64 +49955,54 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bLO" = (
+"bLH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bLP" = (
+"bLI" = (
/obj/machinery/light{
dir = 8
},
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bLQ" = (
+/area/library/lounge)
+"bLJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bLR" = (
+/area/library/lounge)
+"bLK" = (
/obj/structure/chair/office/dark,
/obj/effect/landmark/start/assistant,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bLS" = (
+/area/library/lounge)
+"bLL" = (
/obj/structure/chair/office/dark,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bLT" = (
+/area/library/lounge)
+"bLM" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
},
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bLU" = (
+/area/library/lounge)
+"bLN" = (
/obj/structure/grille,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bLV" = (
+/area/engine/atmos)
+"bLO" = (
/obj/machinery/door/window/eastright{
dir = 1;
name = "Interior Pipe Access";
@@ -52005,13 +50011,13 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bLW" = (
+/area/engine/atmos)
+"bLP" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bLX" = (
+/area/engine/atmos)
+"bLQ" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
name = "Mix To Engine";
@@ -52021,22 +50027,8 @@
/turf/open/floor/plasteel/yellow/corner{
dir = 8
},
-/area/atmos)
-"bLY" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "Canister To Waste";
- on = 0;
- target_pressure = 101
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (WEST)";
- icon_state = "yellow";
- dir = 8;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bLZ" = (
+/area/engine/atmos)
+"bLR" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -52055,8 +50047,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bMa" = (
+/area/engine/atmos)
+"bLS" = (
/obj/machinery/space_heater,
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -52070,15 +50062,15 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bMb" = (
+/area/engine/atmos)
+"bLT" = (
/obj/machinery/light/small,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bMc" = (
+/area/engine/atmos)
+"bLU" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -52090,8 +50082,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bMd" = (
+/area/engine/atmos)
+"bLV" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/turf_decal/stripes/line{
dir = 6
@@ -52099,8 +50091,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bMe" = (
+/area/engine/atmos)
+"bLW" = (
/obj/machinery/vending/engivend,
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (SOUTHWEST)";
@@ -52109,10 +50101,9 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bMf" = (
+"bLX" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable{
icon_state = "0-4"
},
@@ -52120,14 +50111,14 @@
/obj/machinery/door/poddoor/shutters/preopen{
id = "ceoffice"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"bMg" = (
+/area/crew_quarters/heads/chief)
+"bLY" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable{
icon_state = "0-4"
},
@@ -52140,14 +50131,14 @@
/obj/machinery/door/poddoor/shutters/preopen{
id = "ceoffice"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"bMh" = (
+/area/crew_quarters/heads/chief)
+"bLZ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -52168,11 +50159,12 @@
/obj/machinery/door/poddoor/shutters/preopen{
id = "ceoffice"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"bMi" = (
+/area/crew_quarters/heads/chief)
+"bMa" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -52180,10 +50172,9 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bMj" = (
+"bMb" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -52192,15 +50183,16 @@
/obj/machinery/door/poddoor/shutters/preopen{
id = "ceoffice"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"bMk" = (
+/area/crew_quarters/heads/chief)
+"bMc" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall,
-/area/crew_quarters/chief)
-"bMl" = (
+/area/crew_quarters/heads/chief)
+"bMd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -52222,7 +50214,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bMm" = (
+"bMe" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -52238,7 +50230,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bMn" = (
+"bMf" = (
/obj/machinery/light,
/obj/structure/rack,
/obj/item/weapon/pickaxe/mini,
@@ -52254,7 +50246,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bMo" = (
+"bMg" = (
/obj/structure/rack,
/obj/item/clothing/gloves/color/black,
/obj/item/clothing/gloves/color/black,
@@ -52277,7 +50269,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bMp" = (
+"bMh" = (
/obj/structure/rack,
/obj/item/clothing/glasses/meson/engine,
/obj/item/clothing/glasses/meson/engine,
@@ -52290,7 +50282,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bMq" = (
+"bMi" = (
/obj/structure/rack,
/obj/item/weapon/storage/belt/utility,
/obj/item/weapon/storage/belt/utility,
@@ -52305,7 +50297,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bMr" = (
+"bMj" = (
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -52318,7 +50310,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bMs" = (
+"bMk" = (
/obj/structure/closet/firecloset/full,
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (SOUTHEAST)";
@@ -52327,7 +50319,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bMt" = (
+"bMl" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -52342,7 +50334,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bMu" = (
+"bMm" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -52354,7 +50346,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bMv" = (
+"bMn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -52368,7 +50360,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bMw" = (
+"bMo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -52387,7 +50379,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bMx" = (
+"bMp" = (
/obj/effect/turf_decal/stripes/corner{
dir = 8
},
@@ -52410,7 +50402,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bMy" = (
+"bMq" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -52427,7 +50419,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bMz" = (
+"bMr" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -52446,7 +50438,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bMA" = (
+"bMs" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -52464,13 +50456,11 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bMB" = (
+"bMt" = (
/obj/structure/grille/broken,
/turf/open/floor/plating/asteroid,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bMC" = (
+/area/maintenance/asteroid/central)
+"bMu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -52485,7 +50475,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bMD" = (
+"bMv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -52500,7 +50490,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bME" = (
+"bMw" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -52514,7 +50504,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bMF" = (
+"bMx" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -52523,7 +50513,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bMG" = (
+"bMy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -52539,7 +50529,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bMH" = (
+"bMz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -52560,7 +50550,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bMI" = (
+"bMA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -52579,7 +50569,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bMJ" = (
+"bMB" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -52587,7 +50577,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bMK" = (
+"bMC" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -52598,7 +50588,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bML" = (
+"bMD" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -52608,10 +50598,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bMM" = (
+/area/maintenance/asteroid/starboard)
+"bME" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -52623,10 +50611,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bMN" = (
+/area/maintenance/asteroid/starboard)
+"bMF" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -52639,10 +50625,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bMO" = (
+/area/maintenance/asteroid/starboard)
+"bMG" = (
/obj/structure/table,
/obj/item/weapon/storage/box/beakers{
pixel_x = 2;
@@ -52664,8 +50648,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bMP" = (
+/area/medical/medbay/zone2)
+"bMH" = (
/obj/structure/table,
/obj/item/weapon/storage/belt/medical{
pixel_x = 0;
@@ -52687,16 +50671,16 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bMQ" = (
+/area/medical/medbay/zone2)
+"bMI" = (
/obj/structure/table,
/obj/item/weapon/hand_labeler,
/obj/item/weapon/gun/syringe,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bMR" = (
+/area/medical/medbay/zone2)
+"bMJ" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/spray/cleaner,
/obj/item/clothing/glasses/hud/health,
@@ -52705,8 +50689,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bMS" = (
+/area/medical/medbay/zone2)
+"bMK" = (
/obj/structure/table,
/obj/item/weapon/storage/box/bodybags{
pixel_x = 3;
@@ -52718,8 +50702,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bMT" = (
+/area/medical/medbay/zone2)
+"bML" = (
/obj/structure/closet/l3closet,
/obj/machinery/camera{
c_tag = "Medbay Storage";
@@ -52730,14 +50714,14 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bMU" = (
+/area/medical/medbay/zone2)
+"bMM" = (
/obj/structure/closet/wardrobe/white/medical,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bMV" = (
+/area/medical/medbay/zone2)
+"bMN" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -52745,8 +50729,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bMW" = (
+/area/medical/medbay/zone2)
+"bMO" = (
/obj/machinery/door/airlock/maintenance{
name = "Genetics Research";
req_access_txt = "9"
@@ -52761,7 +50745,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bMX" = (
+"bMP" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -52769,10 +50753,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bMY" = (
+/area/maintenance/asteroid/starboard)
+"bMQ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -52785,10 +50767,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bMZ" = (
+/area/maintenance/asteroid/starboard)
+"bMR" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -52796,10 +50776,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bNa" = (
+/area/maintenance/asteroid/starboard)
+"bMS" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -52810,10 +50788,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bNb" = (
+/area/maintenance/asteroid/starboard)
+"bMT" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -52821,10 +50797,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bNc" = (
+/area/maintenance/asteroid/starboard)
+"bMU" = (
/obj/structure/disposalpipe/sortjunction{
dir = 1;
icon_state = "pipe-j2s";
@@ -52836,10 +50810,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bNd" = (
+/area/maintenance/asteroid/starboard)
+"bMV" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/orange{
d1 = 1;
@@ -52849,16 +50821,14 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bNe" = (
+/area/maintenance/asteroid/port/west)
+"bMW" = (
/obj/structure/weightlifter,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bNf" = (
+"bMX" = (
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
icon_state = "neutralcorner";
@@ -52866,7 +50836,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bNg" = (
+"bMY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
@@ -52875,7 +50845,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bNh" = (
+"bMZ" = (
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
icon_state = "neutralcorner";
@@ -52883,66 +50853,60 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bNi" = (
+"bNa" = (
/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bNj" = (
+"bNb" = (
/obj/machinery/libraryscanner,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bNk" = (
+"bNc" = (
/obj/structure/chair/office/dark,
/obj/effect/landmark/start/librarian,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bNl" = (
+"bNd" = (
/obj/machinery/holopad,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bNm" = (
+"bNe" = (
/obj/structure/table/wood,
/obj/item/device/camera_film,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bNn" = (
+"bNf" = (
/obj/structure/table/wood,
/obj/machinery/computer/libraryconsole,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bNo" = (
+/area/library/lounge)
+"bNg" = (
/obj/structure/table/wood,
/obj/item/toy/cards/deck,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bNp" = (
+/area/library/lounge)
+"bNh" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/blue,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bNq" = (
+/area/library/lounge)
+"bNi" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -52952,10 +50916,8 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bNr" = (
+/area/library/lounge)
+"bNj" = (
/obj/machinery/camera{
c_tag = "Library East";
dir = 9;
@@ -52964,10 +50926,8 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bNs" = (
+/area/library/lounge)
+"bNk" = (
/obj/machinery/power/apc{
dir = 8;
name = "Lounge APC";
@@ -52988,21 +50948,19 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bNt" = (
+/area/library/lounge)
+"bNl" = (
/turf/open/floor/engine/n2,
-/area/atmos)
-"bNu" = (
+/area/engine/atmos)
+"bNm" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 4;
frequency = 1441;
id = "n2_in"
},
/turf/open/floor/engine/n2,
-/area/atmos)
-"bNv" = (
+/area/engine/atmos)
+"bNn" = (
/obj/machinery/meter,
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/green/visible{
@@ -53011,30 +50969,16 @@
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bNw" = (
+/area/engine/atmos)
+"bNo" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bNx" = (
-/obj/machinery/atmospherics/components/trinary/filter{
- dir = 2;
- filter_type = "n2";
- name = "nitogren filter";
- on = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bNy" = (
+/area/engine/atmos)
+"bNp" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (WEST)";
@@ -53042,25 +50986,14 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bNz" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "Atmos To Chamber";
- on = 0;
- target_pressure = 101
- },
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bNA" = (
+/area/engine/atmos)
+"bNq" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bNB" = (
+/area/engine/atmos)
+"bNr" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -53076,8 +51009,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bNC" = (
+/area/engine/atmos)
+"bNs" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -53092,8 +51025,8 @@
/turf/open/floor/plasteel/yellow{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bND" = (
+/area/engine/atmos)
+"bNt" = (
/obj/machinery/computer/card/minor/ce,
/obj/machinery/button/door{
id = "engiestoragesmes";
@@ -53119,15 +51052,15 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"bNE" = (
+/area/crew_quarters/heads/chief)
+"bNu" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"bNF" = (
+/area/crew_quarters/heads/chief)
+"bNv" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -53137,8 +51070,8 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"bNG" = (
+/area/crew_quarters/heads/chief)
+"bNw" = (
/obj/machinery/door/airlock/engineering{
cyclelinkeddir = null;
name = "SMES Room";
@@ -53156,12 +51089,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bNH" = (
+"bNx" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bNI" = (
+"bNy" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable/yellow{
@@ -53173,7 +51106,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bNJ" = (
+"bNz" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable/yellow{
@@ -53190,7 +51123,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bNK" = (
+"bNA" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable/yellow{
@@ -53202,7 +51135,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/door/firedoor,
/obj/structure/cable/yellow{
icon_state = "1-4";
d1 = 1;
@@ -53214,14 +51146,14 @@
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bNL" = (
+"bNB" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/yellow{
@@ -53233,11 +51165,12 @@
d2 = 8;
icon_state = "0-8"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bNM" = (
+"bNC" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -53246,19 +51179,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bNN" = (
+"bND" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bNO" = (
+"bNE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bNP" = (
+"bNF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -53268,7 +51201,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bNQ" = (
+"bNG" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -53277,7 +51210,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bNR" = (
+"bNH" = (
/obj/structure/table,
/obj/machinery/light/small{
dir = 4
@@ -53286,15 +51219,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bNS" = (
+"bNI" = (
/obj/structure/closet/firecloset/full,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bNT" = (
+/area/maintenance/asteroid/starboard)
+"bNJ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -53305,10 +51236,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bNU" = (
+/area/maintenance/asteroid/starboard)
+"bNK" = (
/obj/machinery/door/airlock/maintenance{
name = "Medical Storage";
req_access_txt = "45"
@@ -53317,8 +51246,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bNV" = (
+/area/medical/medbay/zone2)
+"bNL" = (
/obj/machinery/power/apc{
dir = 1;
name = "Genetics APC";
@@ -53334,7 +51263,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bNW" = (
+"bNM" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -53352,28 +51281,22 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bNX" = (
+/area/maintenance/asteroid/starboard)
+"bNN" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bNY" = (
+/area/maintenance/asteroid/starboard)
+"bNO" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bNZ" = (
+/area/maintenance/asteroid/starboard)
+"bNP" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -53383,10 +51306,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bOa" = (
+/area/maintenance/asteroid/starboard)
+"bNQ" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -53395,19 +51316,15 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bOb" = (
+/area/maintenance/asteroid/starboard)
+"bNR" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/closet/firecloset/full,
/turf/open/floor/plating/airless,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bOc" = (
+/area/maintenance/asteroid/starboard)
+"bNS" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j2";
dir = 1
@@ -53415,10 +51332,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bOd" = (
+/area/maintenance/asteroid/starboard)
+"bNT" = (
/obj/machinery/light/small{
dir = 4
},
@@ -53431,10 +51346,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bOe" = (
+/area/maintenance/asteroid/port/west)
+"bNU" = (
/obj/structure/window/reinforced{
dir = 1;
layer = 2.9
@@ -53446,7 +51359,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bOf" = (
+"bNV" = (
/obj/structure/window/reinforced{
dir = 1;
layer = 2.9
@@ -53455,7 +51368,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bOg" = (
+"bNW" = (
/obj/structure/window/reinforced{
dir = 1;
layer = 2.9
@@ -53465,7 +51378,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bOh" = (
+"bNX" = (
/obj/structure/table/wood,
/obj/machinery/camera{
c_tag = "Library West";
@@ -53476,21 +51389,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bOi" = (
+"bNY" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bOj" = (
+"bNZ" = (
/obj/structure/table/wood,
/obj/item/weapon/pen/fourcolor,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bOk" = (
+"bOa" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -53501,7 +51414,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bOl" = (
+"bOb" = (
/obj/structure/chair/office/dark{
dir = 1
},
@@ -53511,10 +51424,8 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bOm" = (
+/area/library/lounge)
+"bOc" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -53524,67 +51435,57 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bOn" = (
+/area/library/lounge)
+"bOd" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/pill_bottle/dice,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bOo" = (
+/area/library/lounge)
+"bOe" = (
/obj/structure/table/wood,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bOp" = (
+/area/library/lounge)
+"bOf" = (
/obj/structure/table/wood,
/obj/item/toy/cards/deck/cas,
/obj/item/toy/cards/deck/cas/black,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bOq" = (
+/area/library/lounge)
+"bOg" = (
/obj/machinery/photocopier,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bOr" = (
+/area/library/lounge)
+"bOh" = (
/obj/machinery/light/small{
dir = 8
},
/turf/open/floor/engine/n2,
-/area/atmos)
-"bOs" = (
+/area/engine/atmos)
+"bOi" = (
/obj/machinery/portable_atmospherics/canister/nitrogen,
/turf/open/floor/engine/n2,
-/area/atmos)
-"bOt" = (
+/area/engine/atmos)
+"bOj" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "n2_sensor"
},
/turf/open/floor/engine/n2,
-/area/atmos)
-"bOu" = (
+/area/engine/atmos)
+"bOk" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/atmos)
-"bOv" = (
+/area/engine/atmos)
+"bOl" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/machinery/meter,
/turf/open/floor/plasteel/yellow/side{
@@ -53593,8 +51494,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bOw" = (
+/area/engine/atmos)
+"bOm" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 5
},
@@ -53602,8 +51503,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bOx" = (
+/area/engine/atmos)
+"bOn" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 10;
pixel_x = 0;
@@ -53612,8 +51513,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bOy" = (
+/area/engine/atmos)
+"bOo" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (WEST)";
@@ -53621,8 +51522,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bOz" = (
+/area/engine/atmos)
+"bOp" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -53636,8 +51537,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bOA" = (
+/area/engine/atmos)
+"bOq" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -53652,8 +51553,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bOB" = (
+/area/engine/atmos)
+"bOr" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -53671,8 +51572,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bOC" = (
+/area/engine/atmos)
+"bOs" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -53687,8 +51588,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bOD" = (
+/area/engine/atmos)
+"bOt" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -53702,23 +51603,14 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bOE" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bOF" = (
+/area/engine/atmos)
+"bOu" = (
/obj/machinery/suit_storage_unit/atmos,
/turf/open/floor/plasteel/delivery{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bOG" = (
+/area/engine/atmos)
+"bOv" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -53738,7 +51630,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bOH" = (
+"bOw" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -53766,7 +51658,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bOI" = (
+"bOx" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -53783,7 +51675,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bOJ" = (
+"bOy" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -53801,7 +51693,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bOK" = (
+"bOz" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -53816,7 +51708,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bOL" = (
+"bOA" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -53831,7 +51723,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bOM" = (
+"bOB" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -53851,7 +51743,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bON" = (
+"bOC" = (
/obj/machinery/power/smes/engineering,
/obj/structure/cable{
icon_state = "0-4";
@@ -53870,7 +51762,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bOO" = (
+"bOD" = (
/obj/machinery/power/smes/engineering,
/obj/structure/cable{
d1 = 4;
@@ -53886,7 +51778,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bOP" = (
+"bOE" = (
/obj/machinery/power/smes/engineering,
/obj/structure/cable{
d1 = 4;
@@ -53905,7 +51797,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bOQ" = (
+"bOF" = (
/obj/machinery/power/smes/engineering,
/obj/structure/cable{
d1 = 4;
@@ -53924,7 +51816,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bOR" = (
+"bOG" = (
/obj/machinery/computer/station_alert,
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -53946,7 +51838,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bOS" = (
+"bOH" = (
/obj/machinery/modular_computer/console/preset/engineering,
/obj/structure/cable{
d2 = 8;
@@ -53956,7 +51848,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bOT" = (
+"bOI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/obj/structure/sign/securearea{
@@ -53971,29 +51863,29 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bOU" = (
-/obj/machinery/door/firedoor,
+"bOJ" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bOV" = (
-/obj/machinery/door/firedoor,
+"bOK" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bOW" = (
+"bOL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -54012,14 +51904,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bOX" = (
+"bOM" = (
/obj/structure/table,
/obj/structure/table,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bOY" = (
+"bON" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -54032,10 +51924,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bOZ" = (
+/area/maintenance/asteroid/starboard)
+"bOO" = (
/obj/machinery/power/apc{
dir = 1;
name = "Medbay Storage APC";
@@ -54050,8 +51940,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"bPa" = (
+/area/medical/medbay/zone2)
+"bOP" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -54059,18 +51949,14 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bPb" = (
+/area/maintenance/asteroid/starboard)
+"bOQ" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bPc" = (
+/area/maintenance/asteroid/starboard)
+"bOR" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -54083,10 +51969,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bPd" = (
+/area/maintenance/asteroid/starboard)
+"bOS" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -54094,18 +51978,14 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bPe" = (
+/area/maintenance/asteroid/starboard)
+"bOT" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bPf" = (
+/area/maintenance/asteroid/starboard)
+"bOU" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -54113,18 +51993,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bPg" = (
+"bOV" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bPh" = (
+"bOW" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bPi" = (
+"bOX" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -54132,7 +52012,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bPj" = (
+"bOY" = (
/obj/structure/chair{
dir = 8
},
@@ -54140,7 +52020,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bPk" = (
+"bOZ" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -54149,7 +52029,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bPl" = (
+"bPa" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -24
},
@@ -54162,7 +52042,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bPm" = (
+"bPb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -54170,7 +52050,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bPn" = (
+"bPc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -54185,23 +52065,23 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bPo" = (
+"bPd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/door/airlock/glass{
- name = "Library"
- },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/glass{
+ name = "Library"
+ },
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bPp" = (
+"bPe" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -54209,7 +52089,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bPq" = (
+"bPf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -54218,7 +52098,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bPr" = (
+"bPg" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -54235,7 +52115,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bPs" = (
+"bPh" = (
/obj/structure/sign/poster/random{
name = "random official poster";
pixel_x = 0;
@@ -54245,20 +52125,16 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bPt" = (
+/area/library/lounge)
+"bPi" = (
/obj/structure/chair/office/dark{
dir = 1
},
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bPu" = (
+/area/library/lounge)
+"bPj" = (
/obj/structure/chair/office/dark{
dir = 1
},
@@ -54266,19 +52142,15 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bPv" = (
+/area/library/lounge)
+"bPk" = (
/obj/machinery/light,
/obj/machinery/bookbinder,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bPw" = (
+/area/library/lounge)
+"bPl" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -54287,10 +52159,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bPx" = (
+/area/maintenance/asteroid/port/west)
+"bPm" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -54299,18 +52169,14 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bPy" = (
+/area/maintenance/asteroid/port/east)
+"bPn" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bPz" = (
+/area/maintenance/asteroid/port/east)
+"bPo" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
external_pressure_bound = 0;
@@ -54324,8 +52190,8 @@
pump_direction = 0
},
/turf/open/floor/engine/n2,
-/area/atmos)
-"bPA" = (
+/area/engine/atmos)
+"bPp" = (
/obj/machinery/meter,
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/general/visible{
@@ -54334,16 +52200,16 @@
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bPB" = (
+/area/engine/atmos)
+"bPq" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 1
},
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bPC" = (
+/area/engine/atmos)
+"bPr" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
@@ -54354,8 +52220,8 @@
dir = 8
},
/turf/open/floor/plasteel/red,
-/area/atmos)
-"bPD" = (
+/area/engine/atmos)
+"bPs" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
@@ -54366,19 +52232,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bPE" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (WEST)";
- icon_state = "yellow";
- dir = 8;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bPF" = (
+/area/engine/atmos)
+"bPt" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 10;
initialize_directions = 10
@@ -54387,37 +52242,21 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bPG" = (
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (EAST)";
- icon_state = "yellow";
- dir = 4;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bPH" = (
+/area/engine/atmos)
+"bPu" = (
/obj/machinery/status_display{
density = 0;
layer = 4
},
/turf/closed/wall,
-/area/atmos)
-"bPI" = (
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (WEST)";
- icon_state = "yellow";
- dir = 8;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bPJ" = (
+/area/engine/atmos)
+"bPv" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bPK" = (
+/area/engine/atmos)
+"bPw" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -54425,16 +52264,16 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bPL" = (
+/area/engine/atmos)
+"bPx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bPM" = (
+/area/engine/atmos)
+"bPy" = (
/obj/machinery/light/small{
dir = 4
},
@@ -54442,15 +52281,15 @@
/turf/open/floor/plasteel/delivery{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bPN" = (
+/area/engine/atmos)
+"bPz" = (
/obj/machinery/computer/apc_control,
/obj/machinery/light,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"bPO" = (
+/area/crew_quarters/heads/chief)
+"bPA" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -54464,8 +52303,8 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"bPP" = (
+/area/crew_quarters/heads/chief)
+"bPB" = (
/obj/machinery/suit_storage_unit/ce,
/obj/machinery/airalarm{
dir = 1;
@@ -54475,8 +52314,8 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"bPQ" = (
+/area/crew_quarters/heads/chief)
+"bPC" = (
/obj/effect/landmark/event_spawn,
/obj/structure/cable{
d1 = 4;
@@ -54487,8 +52326,8 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"bPR" = (
+/area/crew_quarters/heads/chief)
+"bPD" = (
/obj/item/weapon/twohanded/required/kirbyplants{
tag = "icon-plant-21";
icon_state = "plant-21"
@@ -54506,8 +52345,8 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"bPS" = (
+/area/crew_quarters/heads/chief)
+"bPE" = (
/obj/structure/table,
/obj/item/weapon/book/manual/engineering_particle_accelerator,
/turf/open/floor/plasteel/yellow/side{
@@ -54517,7 +52356,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bPT" = (
+"bPF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -54529,12 +52368,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bPU" = (
+"bPG" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bPV" = (
+"bPH" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -54543,7 +52382,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bPW" = (
+"bPI" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -54551,7 +52390,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bPX" = (
+"bPJ" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
@@ -54566,7 +52405,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bPY" = (
+"bPK" = (
/obj/machinery/power/terminal{
icon_state = "term";
dir = 1
@@ -54584,7 +52423,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bPZ" = (
+"bPL" = (
/obj/machinery/power/terminal{
icon_state = "term";
dir = 1
@@ -54597,7 +52436,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bQa" = (
+"bPM" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -54611,7 +52450,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bQb" = (
+"bPN" = (
/obj/machinery/power/apc{
dir = 4;
name = "Engineering SMES Storage APC";
@@ -54626,7 +52465,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bQc" = (
+"bPO" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 2
},
@@ -54636,12 +52475,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bQd" = (
+"bPP" = (
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bQe" = (
+"bPQ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -54654,10 +52493,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bQf" = (
+/area/maintenance/asteroid/starboard)
+"bPR" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -54669,10 +52506,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bQg" = (
+/area/maintenance/asteroid/starboard)
+"bPS" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -54685,10 +52520,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bQh" = (
+/area/maintenance/asteroid/starboard)
+"bPT" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -54701,10 +52534,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bQi" = (
+/area/maintenance/asteroid/starboard)
+"bPU" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -54716,10 +52547,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bQj" = (
+/area/maintenance/asteroid/starboard)
+"bPV" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -54737,10 +52566,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bQk" = (
+/area/maintenance/asteroid/starboard)
+"bPW" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -54753,10 +52580,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bQl" = (
+/area/maintenance/asteroid/starboard)
+"bPX" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -54771,10 +52596,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bQm" = (
+/area/maintenance/asteroid/starboard)
+"bPY" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -54789,10 +52612,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bQn" = (
+/area/maintenance/asteroid/starboard)
+"bPZ" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -54809,10 +52630,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bQo" = (
+/area/maintenance/asteroid/starboard)
+"bQa" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -54825,10 +52644,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bQp" = (
+/area/maintenance/asteroid/starboard)
+"bQb" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -54846,19 +52663,15 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bQq" = (
+/area/maintenance/asteroid/starboard)
+"bQc" = (
/obj/machinery/disposal/deliveryChute,
/obj/structure/disposalpipe/trunk{
dir = 1
},
/turf/open/floor/plating/airless,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bQr" = (
+/area/maintenance/asteroid/starboard)
+"bQd" = (
/obj/machinery/newscaster{
pixel_x = -28;
pixel_y = 4
@@ -54870,7 +52683,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bQs" = (
+"bQe" = (
/obj/structure/chair{
dir = 8
},
@@ -54879,7 +52692,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bQt" = (
+"bQf" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -54888,7 +52701,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bQu" = (
+"bQg" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -54898,20 +52711,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bQv" = (
+"bQh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Library"
},
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bQw" = (
+"bQi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -54919,13 +52732,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bQx" = (
+"bQj" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bQy" = (
+"bQk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -54934,7 +52747,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bQz" = (
+"bQl" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -54949,17 +52762,15 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bQA" = (
+"bQm" = (
/obj/machinery/door/morgue{
name = "Explicit Section"
},
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bQB" = (
+/area/library/lounge)
+"bQn" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -54967,10 +52778,8 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bQC" = (
+/area/library/lounge)
+"bQo" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -54978,17 +52787,13 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bQD" = (
+/area/library/lounge)
+"bQp" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bQE" = (
+/area/maintenance/asteroid/central)
+"bQq" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 5
},
@@ -55004,21 +52809,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bQF" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- name = "N2 to Pure"
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bQG" = (
+/area/engine/atmos)
+"bQr" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
},
@@ -55029,14 +52821,14 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bQH" = (
+/area/engine/atmos)
+"bQs" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bQI" = (
+/area/engine/atmos)
+"bQt" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
name = "North Canister to Waste"
@@ -55044,16 +52836,15 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bQJ" = (
+/area/engine/atmos)
+"bQu" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bQK" = (
+/area/engine/atmos)
+"bQv" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 1
},
@@ -55061,8 +52852,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bQL" = (
+/area/engine/atmos)
+"bQw" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
icon_state = "intact";
dir = 10
@@ -55070,8 +52861,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bQM" = (
+/area/engine/atmos)
+"bQx" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
name = "Canister To Waste";
@@ -55081,8 +52872,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bQN" = (
+/area/engine/atmos)
+"bQy" = (
/obj/structure/fireaxecabinet{
pixel_x = 32
},
@@ -55090,41 +52881,41 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bQO" = (
+/area/engine/atmos)
+"bQz" = (
/turf/closed/wall,
-/area/atmos)
-"bQP" = (
+/area/engine/atmos)
+"bQA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
/turf/closed/wall,
-/area/crew_quarters/chief)
-"bQQ" = (
+/area/crew_quarters/heads/chief)
+"bQB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"bQR" = (
+/area/crew_quarters/heads/chief)
+"bQC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"bQS" = (
+/area/crew_quarters/heads/chief)
+"bQD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"bQT" = (
+/area/crew_quarters/heads/chief)
+"bQE" = (
/obj/structure/table,
/obj/item/weapon/book/manual/wiki/engineering_construction,
/obj/item/weapon/book/manual/wiki/engineering_guide,
@@ -55138,7 +52929,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bQU" = (
+"bQF" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -55150,7 +52941,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bQV" = (
+"bQG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -55158,7 +52949,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bQW" = (
+"bQH" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -55168,7 +52959,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bQX" = (
+"bQI" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1
@@ -55177,7 +52968,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bQY" = (
+"bQJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -55189,7 +52980,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bQZ" = (
+"bQK" = (
/obj/machinery/airalarm{
dir = 1;
icon_state = "alarm0";
@@ -55208,7 +52999,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bRa" = (
+"bQL" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -55216,7 +53007,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bRb" = (
+"bQM" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -55236,7 +53027,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bRc" = (
+"bQN" = (
/obj/structure/disposalpipe/trunk{
dir = 8
},
@@ -55247,15 +53038,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bRd" = (
+"bQO" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bRe" = (
+/area/maintenance/asteroid/central)
+"bQP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/light/small{
dir = 4
@@ -55266,7 +53055,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bRf" = (
+"bQQ" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -55279,7 +53068,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bRg" = (
+"bQR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -55294,7 +53083,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bRh" = (
+"bQS" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -55302,13 +53091,12 @@
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
+/obj/item/weapon/pickaxe,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bRi" = (
+/area/maintenance/asteroid/starboard)
+"bQT" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
dir = 8
@@ -55316,18 +53104,14 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bRj" = (
+/area/maintenance/asteroid/starboard)
+"bQU" = (
/obj/machinery/light/small,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bRk" = (
+/area/maintenance/asteroid/starboard)
+"bQV" = (
/obj/effect/decal/cleanable/cobweb,
/obj/machinery/light/small{
dir = 8
@@ -55335,19 +53119,15 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bRl" = (
+/area/maintenance/asteroid/port/west)
+"bQW" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bRm" = (
+/area/maintenance/asteroid/port/west)
+"bQX" = (
/obj/structure/table,
/obj/item/weapon/storage/box/cups,
/turf/open/floor/plasteel/vault{
@@ -55355,7 +53135,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bRn" = (
+"bQY" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -55365,7 +53145,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bRo" = (
+"bQZ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -55376,20 +53156,20 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bRp" = (
+"bRa" = (
/obj/structure/window/reinforced,
/obj/machinery/door/window/westright,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bRq" = (
+"bRb" = (
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bRr" = (
+"bRc" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
dir = 4
@@ -55398,14 +53178,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bRs" = (
+"bRd" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/brute,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bRt" = (
+"bRe" = (
/obj/structure/noticeboard{
dir = 8;
icon_state = "nboard00";
@@ -55417,7 +53197,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bRu" = (
+"bRf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -55432,7 +53212,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bRv" = (
+"bRg" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -55441,7 +53221,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bRw" = (
+"bRh" = (
/obj/machinery/light{
dir = 8
},
@@ -55456,7 +53236,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bRx" = (
+"bRi" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -55464,7 +53244,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bRy" = (
+"bRj" = (
/obj/item/weapon/twohanded/required/kirbyplants{
tag = "icon-plant-21";
icon_state = "plant-21"
@@ -55476,7 +53256,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bRz" = (
+"bRk" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1
@@ -55492,7 +53272,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bRA" = (
+"bRl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -55503,7 +53283,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bRB" = (
+"bRm" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -55512,41 +53292,35 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bRC" = (
+"bRn" = (
/obj/machinery/light/small{
dir = 8
},
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bRD" = (
+/area/library/lounge)
+"bRo" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bRE" = (
+/area/library/lounge)
+"bRp" = (
/obj/machinery/light/small{
dir = 4
},
/obj/structure/closet/crate,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bRF" = (
+/area/maintenance/asteroid/port/east)
+"bRq" = (
/turf/open/floor/engine/o2{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bRG" = (
+/area/engine/atmos)
+"bRr" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 4;
frequency = 1441;
@@ -55555,46 +53329,16 @@
/turf/open/floor/engine/o2{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bRH" = (
-/obj/machinery/atmospherics/components/trinary/filter{
- dir = 2;
- filter_type = "o2";
- name = "oxygen filter";
- on = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bRI" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 1
- },
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bRJ" = (
-/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
- dir = 4
- },
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bRK" = (
+/area/engine/atmos)
+"bRs" = (
/obj/machinery/light{
dir = 1
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bRL" = (
+/area/engine/atmos)
+"bRt" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
tag = "icon-connector_map (EAST)";
icon_state = "connector_map";
@@ -55604,8 +53348,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bRM" = (
+/area/engine/atmos)
+"bRu" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
tag = "icon-intact (WEST)";
icon_state = "intact";
@@ -55618,8 +53362,8 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bRN" = (
+/area/engine/atmos)
+"bRv" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 10;
initialize_directions = 10
@@ -55630,8 +53374,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bRO" = (
+/area/engine/atmos)
+"bRw" = (
/obj/machinery/portable_atmospherics/canister,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/yellow/side{
@@ -55640,16 +53384,16 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bRP" = (
+/area/engine/atmos)
+"bRx" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 6
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bRQ" = (
+/area/engine/atmos)
+"bRy" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
name = "Filter to Waste";
@@ -55658,8 +53402,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bRR" = (
+/area/engine/atmos)
+"bRz" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
tag = "icon-manifold (NORTH)";
name = "scrubbers pipe";
@@ -55669,8 +53413,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bRS" = (
+/area/engine/atmos)
+"bRA" = (
/obj/machinery/meter{
frequency = 1441;
id_tag = "waste_meter";
@@ -55685,14 +53429,14 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bRT" = (
+/area/engine/atmos)
+"bRB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bRU" = (
+/area/engine/atmos)
+"bRC" = (
/obj/effect/turf_decal/stripes/line,
/obj/structure/cable{
d1 = 2;
@@ -55706,7 +53450,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bRV" = (
+"bRD" = (
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Engineering Power Storage 2";
@@ -55723,7 +53467,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bRW" = (
+"bRE" = (
/obj/machinery/button/door{
id = "engiestoragesmes";
name = "Engineering SMES Blast Door Control";
@@ -55735,13 +53479,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bRX" = (
+"bRF" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/yellow/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bRY" = (
+"bRG" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
/obj/item/weapon/storage/toolbox/electrical{
@@ -55757,19 +53501,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bRZ" = (
+"bRH" = (
/obj/machinery/portable_atmospherics/pump,
/turf/open/floor/plasteel/yellow/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bSa" = (
+"bRI" = (
/obj/structure/tank_dispenser,
/turf/open/floor/plasteel/yellow/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bSb" = (
+"bRJ" = (
/obj/machinery/portable_atmospherics/scrubber,
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
@@ -55783,7 +53527,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bSc" = (
+"bRK" = (
/obj/machinery/suit_storage_unit/engine,
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (SOUTHWEST)";
@@ -55792,13 +53536,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bSd" = (
+"bRL" = (
/obj/machinery/suit_storage_unit/engine,
/turf/open/floor/plasteel/yellow/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bSe" = (
+"bRM" = (
/obj/machinery/suit_storage_unit/engine,
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (SOUTHEAST)";
@@ -55807,7 +53551,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bSf" = (
+"bRN" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -55818,7 +53562,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bSg" = (
+"bRO" = (
/obj/machinery/camera{
c_tag = "Medbay Asteroid Hallway 1";
dir = 8;
@@ -55829,7 +53573,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bSh" = (
+"bRP" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 1
},
@@ -55843,7 +53587,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bSi" = (
+"bRQ" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -55853,43 +53597,33 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bSj" = (
+/area/maintenance/asteroid/starboard)
+"bRR" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bSk" = (
+/area/maintenance/asteroid/port/west)
+"bRS" = (
/obj/structure/chair,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bSl" = (
+/area/maintenance/asteroid/port/west)
+"bRT" = (
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bSm" = (
+/area/maintenance/asteroid/port/west)
+"bRU" = (
/obj/structure/closet/crate,
/obj/effect/decal/cleanable/cobweb,
/obj/item/weapon/coin/silver,
/obj/item/weapon/coin/silver,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bSn" = (
+/area/maintenance/asteroid/port/west)
+"bRV" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -55902,10 +53636,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bSo" = (
+/area/maintenance/asteroid/port/west)
+"bRW" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -55918,10 +53650,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bSp" = (
+/area/maintenance/asteroid/port/west)
+"bRX" = (
/obj/structure/reagent_dispensers/water_cooler,
/obj/machinery/light{
dir = 8
@@ -55931,7 +53661,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bSq" = (
+"bRY" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -55940,7 +53670,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bSr" = (
+"bRZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -55950,7 +53680,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bSs" = (
+"bSa" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -55961,7 +53691,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bSt" = (
+"bSb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
pixel_y = 0
@@ -55970,58 +53700,54 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bSu" = (
+"bSc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bSv" = (
+"bSd" = (
/obj/structure/bookcase/random/fiction,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bSw" = (
+"bSe" = (
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bSx" = (
+"bSf" = (
/obj/structure/bookcase/random/nonfiction,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bSy" = (
+"bSg" = (
/obj/structure/bookcase/random/reference,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bSz" = (
+"bSh" = (
/obj/structure/bookcase/random/religion,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bSA" = (
+"bSi" = (
/obj/structure/bookcase/random/adult,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bSB" = (
+/area/library/lounge)
+"bSj" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bSC" = (
+/area/library/lounge)
+"bSk" = (
/obj/structure/sign/poster/random{
name = "random contraband poster";
pixel_x = 32;
@@ -56030,30 +53756,26 @@
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bSD" = (
+/area/library/lounge)
+"bSl" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating/asteroid,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bSE" = (
+/area/maintenance/asteroid/central)
+"bSm" = (
/obj/machinery/light/small{
dir = 8
},
/turf/open/floor/engine/o2{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bSF" = (
+/area/engine/atmos)
+"bSn" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/engine/o2{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bSG" = (
+/area/engine/atmos)
+"bSo" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "o2_sensor"
@@ -56061,43 +53783,14 @@
/turf/open/floor/engine/o2{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bSH" = (
-/obj/machinery/computer/atmos_control/tank{
- frequency = 1441;
- input_tag = "o2_in";
- name = "Oxygen Supply Control";
- output_tag = "o2_out";
- sensors = list("o2_sensor" = "Tank")
- },
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bSI" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1
- },
-/turf/open/floor/plasteel/delivery{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bSJ" = (
+/area/engine/atmos)
+"bSp" = (
/obj/machinery/pipedispenser/disposal,
/turf/open/floor/plasteel/yellow/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bSK" = (
-/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
- dir = 1
- },
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bSL" = (
+/area/engine/atmos)
+"bSq" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
name = "Pure To Canisters";
@@ -56106,8 +53799,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bSM" = (
+/area/engine/atmos)
+"bSr" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
},
@@ -56117,8 +53810,8 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bSN" = (
+/area/engine/atmos)
+"bSs" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
},
@@ -56130,15 +53823,15 @@
/turf/open/floor/plasteel/yellow{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bSO" = (
+/area/engine/atmos)
+"bSt" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible,
/obj/machinery/meter,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bSP" = (
+/area/engine/atmos)
+"bSu" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
dir = 1;
min_temperature = 80;
@@ -56148,8 +53841,8 @@
/turf/open/floor/plasteel/delivery{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bSQ" = (
+/area/engine/atmos)
+"bSv" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
name = "Distro to Waste";
@@ -56158,14 +53851,14 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bSR" = (
+/area/engine/atmos)
+"bSw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bSS" = (
+/area/engine/atmos)
+"bSx" = (
/obj/machinery/door/airlock/maintenance{
name = "Central Asteroid Maintenance";
req_access_txt = "10"
@@ -56179,10 +53872,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bST" = (
+/area/maintenance/asteroid/central)
+"bSy" = (
/obj/machinery/door/poddoor{
id = "engiestoragesmes";
name = "Engineering SMES Storage"
@@ -56191,7 +53882,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bSU" = (
+"bSz" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -56200,13 +53891,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bSV" = (
+"bSA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/space)
-"bSW" = (
+"bSB" = (
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
@@ -56217,7 +53908,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bSX" = (
+"bSC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -56227,33 +53918,27 @@
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/space)
-"bSY" = (
+"bSD" = (
/obj/structure/table,
/obj/item/weapon/paper_bin,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bSZ" = (
+/area/maintenance/asteroid/port/west)
+"bSE" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bTa" = (
+/area/maintenance/asteroid/port/west)
+"bSF" = (
/obj/structure/disposalpipe/segment,
/obj/structure/grille/broken,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bTb" = (
+/area/maintenance/asteroid/port/west)
+"bSG" = (
/obj/machinery/light/small{
dir = 4
},
@@ -56267,10 +53952,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bTc" = (
+/area/maintenance/asteroid/port/west)
+"bSH" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -56280,7 +53963,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bTd" = (
+"bSI" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -56290,7 +53973,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bTe" = (
+"bSJ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -56302,7 +53985,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bTf" = (
+"bSK" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -56320,7 +54003,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bTg" = (
+"bSL" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -56330,7 +54013,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bTh" = (
+"bSM" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -56345,7 +54028,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bTi" = (
+"bSN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -56356,26 +54039,26 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bTj" = (
+"bSO" = (
/obj/structure/punching_bag,
/obj/machinery/light,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bTk" = (
+"bSP" = (
/obj/structure/punching_bag,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bTl" = (
+"bSQ" = (
/obj/structure/closet/boxinggloves,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bTm" = (
+"bSR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/sign/map/left/ceres{
pixel_x = -32
@@ -56386,21 +54069,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bTn" = (
+"bSS" = (
/obj/machinery/light/small,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bTo" = (
+"bST" = (
/obj/effect/landmark/blobstart,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bTp" = (
+/area/library/lounge)
+"bSU" = (
/obj/machinery/camera{
c_tag = "Library Explicits";
dir = 9;
@@ -56409,16 +54090,12 @@
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"bTq" = (
+/area/library/lounge)
+"bSV" = (
/obj/structure/grille,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bTr" = (
+/area/maintenance/asteroid/port/east)
+"bSW" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
external_pressure_bound = 0;
@@ -56434,8 +54111,8 @@
/turf/open/floor/engine/o2{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bTs" = (
+/area/engine/atmos)
+"bSX" = (
/obj/machinery/meter,
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
@@ -56445,22 +54122,8 @@
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bTt" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- name = "O2 to Airmix";
- on = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bTu" = (
+/area/engine/atmos)
+"bSY" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -56471,8 +54134,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bTv" = (
+/area/engine/atmos)
+"bSZ" = (
/obj/machinery/atmospherics/components/trinary/mixer{
dir = 2;
name = "air mixer";
@@ -56486,22 +54149,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bTw" = (
-/obj/machinery/camera{
- c_tag = "Atmospherics South";
- dir = 4;
- icon_state = "camera";
- network = list("SS13","CE")
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (WEST)";
- icon_state = "yellow";
- dir = 8;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bTx" = (
+/area/engine/atmos)
+"bTa" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
name = "Mix To Canisters";
@@ -56510,8 +54159,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bTy" = (
+/area/engine/atmos)
+"bTb" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
icon_state = "intact";
dir = 10
@@ -56522,8 +54171,8 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bTz" = (
+/area/engine/atmos)
+"bTc" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -56531,8 +54180,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bTA" = (
+/area/engine/atmos)
+"bTd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (WEST)";
@@ -56540,8 +54189,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bTB" = (
+/area/engine/atmos)
+"bTe" = (
/obj/machinery/atmospherics/components/unary/thermomachine/heater{
dir = 4;
on = 1
@@ -56549,8 +54198,8 @@
/turf/open/floor/plasteel/delivery{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bTC" = (
+/area/engine/atmos)
+"bTf" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/visible,
/obj/machinery/meter{
frequency = 1441;
@@ -56560,16 +54209,16 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bTD" = (
+/area/engine/atmos)
+"bTg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bTE" = (
+/area/engine/atmos)
+"bTh" = (
/obj/machinery/light/small{
dir = 8
},
@@ -56585,10 +54234,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bTF" = (
+/area/maintenance/asteroid/central)
+"bTi" = (
/obj/effect/turf_decal/stripes/corner{
dir = 8
},
@@ -56596,7 +54243,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bTG" = (
+"bTj" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -56604,7 +54251,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bTH" = (
+"bTk" = (
/obj/machinery/button/door{
id = "engiestoragesmes";
name = "Engineering SMES Blast Door Control";
@@ -56618,7 +54265,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bTI" = (
+"bTl" = (
/obj/structure/closet/crate,
/obj/item/stack/sheet/metal{
amount = 50
@@ -56637,55 +54284,47 @@
},
/turf/open/floor/plating,
/area/engine/engine_smes)
-"bTJ" = (
+"bTm" = (
/obj/machinery/field/generator,
/turf/open/floor/plating,
/area/engine/engine_smes)
-"bTK" = (
+"bTn" = (
/obj/machinery/power/emitter,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plating,
/area/engine/engine_smes)
-"bTL" = (
+"bTo" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bTM" = (
+/area/maintenance/asteroid/port/west)
+"bTp" = (
/obj/item/stack/sheet/mineral/wood,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bTN" = (
+/area/maintenance/asteroid/port/west)
+"bTq" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bTO" = (
+/area/maintenance/asteroid/port/west)
+"bTr" = (
/obj/effect/decal/cleanable/cobweb,
/obj/structure/closet/emcloset,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bTP" = (
+/area/maintenance/asteroid/port/west)
+"bTs" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bTQ" = (
+"bTt" = (
/obj/machinery/door/airlock{
name = "Bathroom"
},
@@ -56696,7 +54335,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bTR" = (
+"bTu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -56704,16 +54343,16 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bTS" = (
+"bTv" = (
/obj/structure/grille,
-/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bTT" = (
+"bTw" = (
/obj/machinery/door/airlock/glass{
name = "Holodeck Arena"
},
@@ -56721,7 +54360,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bTU" = (
+"bTx" = (
/obj/machinery/door/airlock{
name = "Private Study"
},
@@ -56729,38 +54368,22 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bTV" = (
+"bTy" = (
/obj/machinery/light/small,
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bTW" = (
+/area/maintenance/asteroid/central)
+"bTz" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 5
},
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bTX" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- name = "O2 to Pure"
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bTY" = (
+/area/engine/atmos)
+"bTA" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 4
},
@@ -56770,8 +54393,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bTZ" = (
+/area/engine/atmos)
+"bTB" = (
/obj/effect/landmark/event_spawn,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
@@ -56782,8 +54405,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bUa" = (
+/area/engine/atmos)
+"bTC" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -56794,8 +54417,8 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bUb" = (
+/area/engine/atmos)
+"bTD" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
},
@@ -56806,8 +54429,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bUc" = (
+/area/engine/atmos)
+"bTE" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
name = "Pure to Mix";
@@ -56819,8 +54442,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bUd" = (
+/area/engine/atmos)
+"bTF" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
tag = "icon-intact (SOUTHWEST)";
icon_state = "intact";
@@ -56829,16 +54452,16 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bUe" = (
+/area/engine/atmos)
+"bTG" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 8
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bUf" = (
+/area/engine/atmos)
+"bTH" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
name = "Mix to Distro";
@@ -56847,8 +54470,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bUg" = (
+/area/engine/atmos)
+"bTI" = (
/obj/machinery/atmospherics/pipe/manifold/supply/visible{
tag = "icon-manifold (EAST)";
icon_state = "manifold";
@@ -56863,24 +54486,24 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bUh" = (
+/area/engine/atmos)
+"bTJ" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bUi" = (
+"bTK" = (
/obj/machinery/portable_atmospherics/canister/toxins,
/turf/open/floor/plating,
/area/engine/engine_smes)
-"bUj" = (
+"bTL" = (
/obj/machinery/power/emitter,
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plating,
/area/engine/engine_smes)
-"bUk" = (
+"bTM" = (
/obj/structure/sign/map/left/ceres{
pixel_x = -32
},
@@ -56890,15 +54513,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bUl" = (
+"bTN" = (
/obj/structure/closet/crate,
/obj/item/weapon/pickaxe/emergency,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bUm" = (
+/area/maintenance/asteroid/starboard)
+"bTO" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 2
},
@@ -56910,10 +54531,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bUn" = (
+/area/maintenance/asteroid/starboard)
+"bTP" = (
/obj/machinery/light/small{
dir = 8
},
@@ -56922,10 +54541,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bUo" = (
+/area/maintenance/asteroid/port/west)
+"bTQ" = (
/obj/structure/barricade/wooden,
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -56933,20 +54550,16 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bUp" = (
+/area/maintenance/asteroid/port/west)
+"bTR" = (
/obj/structure/girder,
/obj/structure/grille,
/obj/structure/barricade/wooden,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bUq" = (
+/area/maintenance/asteroid/port/west)
+"bTS" = (
/obj/effect/turf_decal/stripes/asteroid/line{
icon_state = "ast_warn";
dir = 8
@@ -56955,10 +54568,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bUr" = (
+/area/maintenance/asteroid/port/west)
+"bTT" = (
/obj/machinery/airalarm{
dir = 4;
icon_state = "alarm0";
@@ -56970,7 +54581,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bUs" = (
+"bTU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -56978,7 +54589,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bUt" = (
+"bTV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -56986,7 +54597,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bUu" = (
+"bTW" = (
/obj/structure/sink{
dir = 4;
icon_state = "sink";
@@ -57003,7 +54614,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bUv" = (
+"bTX" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -57012,7 +54623,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bUw" = (
+"bTY" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -57020,7 +54631,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bUx" = (
+"bTZ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -57034,7 +54645,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bUy" = (
+"bUa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -57048,7 +54659,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bUz" = (
+"bUb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -57068,7 +54679,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bUA" = (
+"bUc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -57079,7 +54690,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bUB" = (
+"bUd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -57096,7 +54707,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bUC" = (
+"bUe" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -57109,7 +54720,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bUD" = (
+"bUf" = (
/obj/machinery/door/airlock/maintenance{
name = "Broom Closet";
req_access_txt = "0"
@@ -57119,7 +54730,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bUE" = (
+"bUg" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/structure/sink{
dir = 4;
@@ -57131,7 +54742,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bUF" = (
+"bUh" = (
/obj/machinery/newscaster{
pixel_x = -28;
pixel_y = 4
@@ -57140,7 +54751,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bUG" = (
+"bUi" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/obj/item/device/radio/intercom{
@@ -57152,12 +54763,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bUH" = (
+"bUj" = (
/turf/open/floor/engine/air{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bUI" = (
+/area/engine/atmos)
+"bUk" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 4;
frequency = 1441;
@@ -57166,8 +54777,8 @@
/turf/open/floor/engine/air{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bUJ" = (
+/area/engine/atmos)
+"bUl" = (
/obj/machinery/meter{
name = "Mixed Air Tank In"
},
@@ -57178,8 +54789,8 @@
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bUK" = (
+/area/engine/atmos)
+"bUm" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
tag = "icon-intact (WEST)";
icon_state = "intact";
@@ -57188,8 +54799,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bUL" = (
+/area/engine/atmos)
+"bUn" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
tag = "icon-intact (WEST)";
@@ -57202,52 +54813,32 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bUM" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- tag = "icon-intact (WEST)";
- icon_state = "intact";
- dir = 8
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (SOUTHWEST)";
- icon_state = "yellow";
- dir = 10;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bUN" = (
+/area/engine/atmos)
+"bUo" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 5
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bUO" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bUP" = (
+/area/engine/atmos)
+"bUp" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 1
},
/turf/open/floor/plasteel/yellow/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bUQ" = (
+/area/engine/atmos)
+"bUq" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
},
/turf/open/floor/plasteel/yellow/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bUR" = (
+/area/engine/atmos)
+"bUr" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 4
},
@@ -57257,8 +54848,8 @@
dir = 6;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bUS" = (
+/area/engine/atmos)
+"bUs" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 6
},
@@ -57268,8 +54859,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bUT" = (
+/area/engine/atmos)
+"bUt" = (
/obj/machinery/atmospherics/pipe/manifold/green/visible{
tag = "icon-manifold (EAST)";
icon_state = "manifold";
@@ -57279,8 +54870,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bUU" = (
+/area/engine/atmos)
+"bUu" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
name = "Air to Distro";
@@ -57298,14 +54889,14 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bUV" = (
+/area/engine/atmos)
+"bUv" = (
/obj/machinery/power/port_gen/pacman,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bUW" = (
+"bUw" = (
/obj/structure/closet/crate,
/obj/item/stack/sheet/mineral/plasma{
amount = 5
@@ -57314,40 +54905,38 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bUX" = (
+"bUx" = (
/obj/machinery/shieldgen,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bUY" = (
+"bUy" = (
/obj/machinery/shieldgen,
/turf/open/floor/plating,
/area/engine/engine_smes)
-"bUZ" = (
+"bUz" = (
/obj/machinery/the_singularitygen{
anchored = 0
},
/obj/machinery/light/small,
/turf/open/floor/plating,
/area/engine/engine_smes)
-"bVa" = (
+"bUA" = (
/obj/machinery/power/emitter,
/turf/open/floor/plating,
/area/engine/engine_smes)
-"bVb" = (
+"bUB" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating/asteroid,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bVc" = (
+/area/maintenance/asteroid/central)
+"bUC" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bVd" = (
+"bUD" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -57356,17 +54945,15 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bVe" = (
+/area/maintenance/asteroid/starboard)
+"bUE" = (
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bVf" = (
+"bUF" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -24
},
@@ -57374,7 +54961,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bVg" = (
+"bUG" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -57383,7 +54970,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bVh" = (
+"bUH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -57391,7 +54978,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bVi" = (
+"bUI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -57399,7 +54986,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bVj" = (
+"bUJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/table,
/obj/structure/disposalpipe/segment,
@@ -57407,7 +54994,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bVk" = (
+"bUK" = (
/obj/structure/janitorialcart,
/obj/item/weapon/mop,
/obj/item/weapon/reagent_containers/glass/bucket,
@@ -57415,7 +55002,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bVl" = (
+"bUL" = (
/obj/structure/chair/comfy/brown{
dir = 4
},
@@ -57426,7 +55013,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bVm" = (
+"bUM" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -57437,12 +55024,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bVn" = (
+"bUN" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bVo" = (
+"bUO" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -57451,7 +55038,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bVp" = (
+"bUP" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -57460,21 +55047,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bVq" = (
+"bUQ" = (
/obj/machinery/light/small{
dir = 8
},
/turf/open/floor/engine/air{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bVr" = (
+/area/engine/atmos)
+"bUR" = (
/obj/machinery/portable_atmospherics/canister/air,
/turf/open/floor/engine/air{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bVs" = (
+/area/engine/atmos)
+"bUS" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "air_sensor"
@@ -57482,8 +55069,8 @@
/turf/open/floor/engine/air{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bVt" = (
+/area/engine/atmos)
+"bUT" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 8
},
@@ -57493,8 +55080,8 @@
dir = 10;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bVu" = (
+/area/engine/atmos)
+"bUU" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
icon_state = "intact";
dir = 8
@@ -57502,59 +55089,8 @@
/turf/open/floor/plasteel/yellow/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bVv" = (
-/obj/machinery/atmospherics/components/trinary/filter{
- dir = 4;
- filter_type = "co2";
- name = "co2 filter";
- on = 1
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bVw" = (
-/obj/machinery/computer/atmos_control/tank{
- frequency = 1441;
- input_tag = "co2_in";
- name = "Carbon Dioxide Supply Control";
- output_tag = "co2_out";
- sensors = list("co2_sensor" = "Tank")
- },
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bVx" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "CO2 to Pure";
- on = 0
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bVy" = (
+/area/engine/atmos)
+"bUV" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
},
@@ -57562,132 +55098,14 @@
/turf/open/floor/plasteel/yellow/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bVz" = (
-/obj/machinery/atmospherics/components/trinary/filter{
- dir = 4;
- filter_type = "plasma";
- name = "plasma filter";
- on = 1
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bVA" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/machinery/computer/atmos_control/tank{
- frequency = 1441;
- input_tag = "tox_in";
- name = "Plasma Supply Control";
- output_tag = "tox_out";
- sensors = list("tox_sensor" = "Tank")
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bVB" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "Plasma to Pure";
- on = 0
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bVC" = (
-/obj/machinery/atmospherics/components/trinary/filter{
- dir = 2;
- filter_type = "n2";
- name = "nitogren filter";
- on = 1
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bVD" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/machinery/computer/atmos_control/tank{
- frequency = 1441;
- input_tag = "n2o_in";
- name = "Nitrous Oxide Supply Control";
- output_tag = "n2o_out";
- sensors = list("n2o_sensor" = "Tank")
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bVE" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "N2O to Pure";
- on = 0
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bVF" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bVG" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 2;
- name = "Unfiltered & Air to Mix";
- on = 1
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (WEST)";
- icon_state = "yellow";
- dir = 8;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bVH" = (
+/area/engine/atmos)
+"bUW" = (
/obj/machinery/atmospherics/pipe/manifold/green/visible,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bVI" = (
+/area/engine/atmos)
+"bUX" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
@@ -57696,8 +55114,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bVJ" = (
+/area/engine/atmos)
+"bUY" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
dir = 1;
initialize_directions = 11
@@ -57706,8 +55124,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bVK" = (
+/area/engine/atmos)
+"bUZ" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
tag = "icon-intact (NORTHWEST)";
icon_state = "intact";
@@ -57716,16 +55134,14 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bVL" = (
+/area/engine/atmos)
+"bVa" = (
/obj/machinery/light/small,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bVM" = (
+/area/maintenance/asteroid/central)
+"bVb" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 4;
@@ -57743,10 +55159,8 @@
dir = 8
},
/turf/open/space,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"bVN" = (
+/area/hallway/secondary/bridges/dock_med)
+"bVc" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 8
@@ -57765,10 +55179,8 @@
dir = 4
},
/turf/open/space,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"bVO" = (
+/area/hallway/secondary/bridges/dock_med)
+"bVd" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
@@ -57780,7 +55192,7 @@
},
/turf/open/space,
/area/space)
-"bVP" = (
+"bVe" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 1
},
@@ -57792,10 +55204,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bVQ" = (
+/area/maintenance/asteroid/starboard)
+"bVf" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -57808,10 +55218,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bVR" = (
+/area/maintenance/asteroid/port/west)
+"bVg" = (
/obj/machinery/power/apc{
dir = 4;
name = "Fitness Bathroom APC";
@@ -57833,7 +55241,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bVS" = (
+"bVh" = (
/obj/machinery/camera{
c_tag = "Fitness Bathrooms";
dir = 4;
@@ -57853,7 +55261,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bVT" = (
+"bVi" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -57863,20 +55271,20 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bVU" = (
+"bVj" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bVV" = (
+"bVk" = (
/obj/structure/table,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bVW" = (
+"bVl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/table,
/obj/item/weapon/storage/firstaid/brute,
@@ -57891,7 +55299,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bVX" = (
+"bVm" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -57901,12 +55309,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bVY" = (
+"bVn" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bVZ" = (
+"bVo" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -57916,7 +55324,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bWa" = (
+"bVp" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 24
},
@@ -57924,13 +55332,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bWb" = (
+"bVq" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bWc" = (
+"bVr" = (
/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{
dir = 4;
external_pressure_bound = 0;
@@ -57945,8 +55353,8 @@
/turf/open/floor/engine/air{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bWd" = (
+/area/engine/atmos)
+"bVs" = (
/obj/machinery/meter{
name = "Mixed Air Tank Out"
},
@@ -57957,8 +55365,8 @@
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bWe" = (
+/area/engine/atmos)
+"bVt" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 10;
initialize_directions = 10
@@ -57966,8 +55374,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bWf" = (
+/area/engine/atmos)
+"bVu" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
tag = "icon-intact (NORTHEAST)";
icon_state = "intact";
@@ -57983,8 +55391,8 @@
pixel_y = 7
},
/turf/open/floor/plasteel/barber,
-/area/atmos)
-"bWg" = (
+/area/engine/atmos)
+"bVv" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
tag = "icon-intact (WEST)";
icon_state = "intact";
@@ -57997,8 +55405,8 @@
on = 0
},
/turf/open/floor/plasteel/barber,
-/area/atmos)
-"bWh" = (
+/area/engine/atmos)
+"bVw" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
@@ -58016,8 +55424,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bWi" = (
+/area/engine/atmos)
+"bVx" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 4;
filter_type = "co2";
@@ -58029,8 +55437,8 @@
initial_gas_mix = "n2=100;TEMP=80";
temperature = 80
},
-/area/atmos)
-"bWj" = (
+/area/engine/atmos)
+"bVy" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
input_tag = "co2_in";
@@ -58047,8 +55455,8 @@
initial_gas_mix = "n2=500;TEMP=80";
temperature = 80
},
-/area/atmos)
-"bWk" = (
+/area/engine/atmos)
+"bVz" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
@@ -58062,8 +55470,8 @@
initial_gas_mix = "n2=100;TEMP=80";
temperature = 80
},
-/area/atmos)
-"bWl" = (
+/area/engine/atmos)
+"bVA" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 4;
filter_type = "plasma";
@@ -58072,8 +55480,8 @@
},
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/purple,
-/area/atmos)
-"bWm" = (
+/area/engine/atmos)
+"bVB" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
@@ -58088,8 +55496,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bWn" = (
+/area/engine/atmos)
+"bVC" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 24
},
@@ -58101,8 +55509,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bWo" = (
+/area/engine/atmos)
+"bVD" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 4;
@@ -58115,10 +55523,8 @@
dir = 8
},
/turf/open/space,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"bWp" = (
+/area/hallway/secondary/bridges/dock_med)
+"bVE" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 8
@@ -58135,10 +55541,8 @@
dir = 4
},
/turf/open/space,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"bWq" = (
+/area/hallway/secondary/bridges/dock_med)
+"bVF" = (
/obj/machinery/light{
dir = 8
},
@@ -58151,7 +55555,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bWr" = (
+"bVG" = (
/obj/machinery/door/airlock{
id_tag = "fb1"
},
@@ -58162,7 +55566,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bWs" = (
+"bVH" = (
/obj/machinery/light/small,
/obj/structure/toilet{
icon_state = "toilet00";
@@ -58181,13 +55585,13 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bWt" = (
+"bVI" = (
/turf/open/floor/engine{
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "Holodeck Projector Floor"
},
/area/holodeck/rec_center)
-"bWu" = (
+"bVJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/table,
/obj/machinery/light{
@@ -58200,7 +55604,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bWv" = (
+"bVK" = (
/obj/machinery/camera{
c_tag = "Chapel West";
dir = 5;
@@ -58213,7 +55617,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bWw" = (
+"bVL" = (
/obj/machinery/light{
dir = 1
},
@@ -58224,7 +55628,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bWx" = (
+"bVM" = (
/turf/open/floor/plasteel/chapel{
tag = "icon-chapel (NORTH)";
icon_state = "chapel";
@@ -58232,7 +55636,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bWy" = (
+"bVN" = (
/turf/open/floor/plasteel/chapel{
tag = "icon-chapel (EAST)";
icon_state = "chapel";
@@ -58240,7 +55644,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bWz" = (
+"bVO" = (
/obj/machinery/newscaster{
pixel_y = 32
},
@@ -58248,7 +55652,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bWA" = (
+"bVP" = (
/obj/structure/chair{
dir = 4
},
@@ -58256,7 +55660,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bWB" = (
+"bVQ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -58265,7 +55669,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bWC" = (
+"bVR" = (
/obj/machinery/light{
dir = 1
},
@@ -58276,12 +55680,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bWD" = (
+"bVS" = (
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bWE" = (
+"bVT" = (
/obj/machinery/light{
dir = 4
},
@@ -58289,7 +55693,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bWF" = (
+"bVU" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
tag = "icon-intact (NORTHEAST)";
icon_state = "intact";
@@ -58301,8 +55705,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bWG" = (
+/area/engine/atmos)
+"bVV" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -58310,16 +55714,16 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bWH" = (
+/area/engine/atmos)
+"bVW" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bWI" = (
+/area/engine/atmos)
+"bVX" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -58327,10 +55731,10 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bWJ" = (
+/area/engine/atmos)
+"bVY" = (
/obj/machinery/camera{
- c_tag = "Atmoshperic Tanks 1";
+ c_tag = "Atmospheric Tanks 1";
dir = 1;
icon_state = "camera";
network = list("SS13","CE")
@@ -58339,8 +55743,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bWK" = (
+/area/engine/atmos)
+"bVZ" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
@@ -58348,18 +55752,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bWL" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/machinery/pipedispenser,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bWM" = (
+/area/engine/atmos)
+"bWa" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible,
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -58367,8 +55761,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bWN" = (
+/area/engine/atmos)
+"bWb" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -58379,8 +55773,8 @@
dir = 10;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bWO" = (
+/area/engine/atmos)
+"bWc" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
input_tag = "mix_in";
@@ -58394,8 +55788,8 @@
/turf/open/floor/plasteel/yellow/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bWP" = (
+/area/engine/atmos)
+"bWd" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -58403,8 +55797,8 @@
/turf/open/floor/plasteel/yellow/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bWQ" = (
+/area/engine/atmos)
+"bWe" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible,
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
@@ -58414,36 +55808,30 @@
/turf/open/floor/plasteel/yellow/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bWR" = (
+/area/engine/atmos)
+"bWf" = (
/obj/machinery/atmospherics/components/unary/thermomachine/heater{
dir = 8
},
/turf/open/floor/plasteel/delivery{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bWS" = (
+/area/engine/atmos)
+"bWg" = (
/turf/closed/wall,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bWT" = (
+/area/maintenance/asteroid/central)
+"bWh" = (
/turf/closed/wall,
-/area/maintenance/disposal{
- name = "Eastern External Waste Belt"
- })
-"bWU" = (
+/area/maintenance/asteroid/disposal/east)
+"bWi" = (
/obj/structure/disposaloutlet{
icon_state = "outlet";
dir = 1
},
/obj/structure/disposalpipe/trunk,
/turf/open/floor/plating/airless,
-/area/maintenance/disposal{
- name = "Eastern External Waste Belt"
- })
-"bWV" = (
+/area/maintenance/asteroid/disposal/east)
+"bWj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/camera{
c_tag = "Service Asteroid Hallway 5";
@@ -58456,16 +55844,16 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bWW" = (
+"bWk" = (
/obj/structure/grille,
-/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bWX" = (
+"bWl" = (
/turf/open/floor/plasteel/chapel{
tag = "icon-chapel (WEST)";
icon_state = "chapel";
@@ -58473,58 +55861,52 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bWY" = (
+"bWm" = (
/turf/open/floor/plasteel/chapel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bWZ" = (
+"bWn" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bXa" = (
+"bWo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bXb" = (
+"bWp" = (
/obj/structure/table/wood,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bXc" = (
+"bWq" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bXd" = (
+/area/maintenance/asteroid/port/east)
+"bWr" = (
/obj/machinery/light/small,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bXe" = (
+/area/maintenance/asteroid/port/west)
+"bWs" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bXf" = (
+/area/maintenance/asteroid/central)
+"bWt" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -58536,43 +55918,37 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bXg" = (
+/area/maintenance/asteroid/central)
+"bWu" = (
/obj/machinery/meter,
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/green/visible,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bXh" = (
+/area/engine/atmos)
+"bWv" = (
/obj/machinery/meter,
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bXi" = (
+/area/engine/atmos)
+"bWw" = (
/obj/structure/grille,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bXj" = (
+/area/maintenance/asteroid/central)
+"bWx" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/electrical,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bXk" = (
+/area/maintenance/asteroid/central)
+"bWy" = (
/obj/structure/table,
/obj/machinery/light/small{
dir = 1
@@ -58580,21 +55956,15 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bXl" = (
+/area/maintenance/asteroid/central)
+"bWz" = (
/turf/closed/wall/rust,
-/area/maintenance/disposal{
- name = "Eastern External Waste Belt"
- })
-"bXm" = (
+/area/maintenance/asteroid/disposal/east)
+"bWA" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall/rust,
-/area/maintenance/disposal{
- name = "Eastern External Waste Belt"
- })
-"bXn" = (
+/area/maintenance/asteroid/disposal/east)
+"bWB" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -58607,7 +55977,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bXo" = (
+"bWC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -58618,7 +55988,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bXp" = (
+"bWD" = (
/obj/machinery/door/airlock{
id_tag = "fb2"
},
@@ -58631,7 +56001,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bXq" = (
+"bWE" = (
/obj/machinery/light/small,
/obj/structure/toilet{
icon_state = "toilet00";
@@ -58649,7 +56019,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bXr" = (
+"bWF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/firealarm{
dir = 4;
@@ -58660,7 +56030,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bXs" = (
+"bWG" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -58674,17 +56044,17 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bXt" = (
+"bWH" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Chapel"
},
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bXu" = (
+"bWI" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
@@ -58692,19 +56062,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bXv" = (
+"bWJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bXw" = (
+"bWK" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bXx" = (
+"bWL" = (
/obj/machinery/camera{
c_tag = "Chapel East";
dir = 9;
@@ -58714,7 +56084,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bXy" = (
+"bWM" = (
/obj/machinery/power/apc{
dir = 8;
name = "Chapel APC";
@@ -58736,7 +56106,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bXz" = (
+"bWN" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1;
frequency = 1441;
@@ -58746,8 +56116,8 @@
/turf/open/floor/engine/co2{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bXA" = (
+/area/engine/atmos)
+"bWO" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "co2_sensor"
@@ -58755,8 +56125,8 @@
/turf/open/floor/engine/co2{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bXB" = (
+/area/engine/atmos)
+"bWP" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
external_pressure_bound = 0;
@@ -58772,8 +56142,8 @@
/turf/open/floor/engine/co2{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bXC" = (
+/area/engine/atmos)
+"bWQ" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1;
frequency = 1441;
@@ -58783,8 +56153,8 @@
/turf/open/floor/engine/plasma{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bXD" = (
+/area/engine/atmos)
+"bWR" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "tox_sensor"
@@ -58792,8 +56162,8 @@
/turf/open/floor/engine/plasma{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bXE" = (
+/area/engine/atmos)
+"bWS" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
external_pressure_bound = 0;
@@ -58810,8 +56180,8 @@
/turf/open/floor/engine/plasma{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bXF" = (
+/area/engine/atmos)
+"bWT" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1;
frequency = 1441;
@@ -58821,8 +56191,8 @@
/turf/open/floor/engine/n2o{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bXG" = (
+/area/engine/atmos)
+"bWU" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "n2o_sensor"
@@ -58830,8 +56200,8 @@
/turf/open/floor/engine/n2o{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bXH" = (
+/area/engine/atmos)
+"bWV" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
external_pressure_bound = 0;
@@ -58847,8 +56217,8 @@
/turf/open/floor/engine/n2o{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bXI" = (
+/area/engine/atmos)
+"bWW" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1;
frequency = 1441;
@@ -58858,8 +56228,8 @@
/turf/open/floor/engine/vacuum{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bXJ" = (
+/area/engine/atmos)
+"bWX" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "mix_sensor"
@@ -58867,8 +56237,8 @@
/turf/open/floor/engine/vacuum{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bXK" = (
+/area/engine/atmos)
+"bWY" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
external_pressure_bound = 0;
@@ -58884,32 +56254,26 @@
/turf/open/floor/engine/vacuum{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bXL" = (
+/area/engine/atmos)
+"bWZ" = (
/obj/structure/girder,
/obj/structure/grille,
/turf/open/floor/plating/asteroid,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bXM" = (
+/area/maintenance/asteroid/central)
+"bXa" = (
/obj/structure/girder,
/obj/structure/grille,
/obj/structure/barricade/wooden,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bXN" = (
+/area/maintenance/asteroid/central)
+"bXb" = (
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bXO" = (
+/area/maintenance/asteroid/central)
+"bXc" = (
/obj/structure/chair/stool,
/obj/structure/sign/poster/contraband/hacking_guide{
pixel_x = 32
@@ -58917,10 +56281,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bXP" = (
+/area/maintenance/asteroid/central)
+"bXd" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable/orange{
d1 = 1;
@@ -58929,7 +56291,7 @@
},
/turf/open/space,
/area/space)
-"bXQ" = (
+"bXe" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -58939,10 +56301,8 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "Eastern External Waste Belt"
- })
-"bXR" = (
+/area/maintenance/asteroid/disposal/east)
+"bXf" = (
/obj/machinery/light/small,
/obj/structure/cable/orange{
d1 = 4;
@@ -58950,20 +56310,16 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "Eastern External Waste Belt"
- })
-"bXS" = (
+/area/maintenance/asteroid/disposal/east)
+"bXg" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "Eastern External Waste Belt"
- })
-"bXT" = (
+/area/maintenance/asteroid/disposal/east)
+"bXh" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -58971,10 +56327,8 @@
},
/obj/effect/turf_decal/stripes/corner,
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/disposal{
- name = "Eastern External Waste Belt"
- })
-"bXU" = (
+/area/maintenance/asteroid/disposal/east)
+"bXi" = (
/obj/effect/turf_decal/stripes/end,
/obj/structure/cable/orange{
d2 = 8;
@@ -58987,20 +56341,16 @@
pixel_y = 24
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "Eastern External Waste Belt"
- })
-"bXV" = (
+/area/maintenance/asteroid/disposal/east)
+"bXj" = (
/obj/machinery/conveyor/auto{
tag = "icon-conveyor0 (NORTHEAST)";
icon_state = "conveyor0";
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "Eastern External Waste Belt"
- })
-"bXW" = (
+/area/maintenance/asteroid/disposal/east)
+"bXk" = (
/obj/structure/disposalpipe/trunk{
dir = 1
},
@@ -59008,10 +56358,8 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "Eastern External Waste Belt"
- })
-"bXX" = (
+/area/maintenance/asteroid/disposal/east)
+"bXl" = (
/obj/machinery/door/airlock{
name = "Shower Room"
},
@@ -59021,7 +56369,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bXY" = (
+"bXm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -59029,7 +56377,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bXZ" = (
+"bXn" = (
/obj/machinery/door/airlock/glass{
name = "Holodeck Arena"
},
@@ -59037,7 +56385,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bYa" = (
+"bXo" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -59046,13 +56394,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bYb" = (
+"bXp" = (
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bYc" = (
+"bXq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -59067,20 +56415,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bYd" = (
+"bXr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Chapel"
},
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bYe" = (
+"bXs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -59088,7 +56436,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bYf" = (
+"bXt" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -59096,60 +56444,58 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bYg" = (
+"bXu" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bYh" = (
+"bXv" = (
/turf/open/floor/engine/co2{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bYi" = (
+/area/engine/atmos)
+"bXw" = (
/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
/turf/open/floor/engine/co2{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bYj" = (
+/area/engine/atmos)
+"bXx" = (
/turf/open/floor/engine/plasma{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bYk" = (
+/area/engine/atmos)
+"bXy" = (
/obj/machinery/portable_atmospherics/canister/toxins,
/turf/open/floor/engine/plasma{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bYl" = (
+/area/engine/atmos)
+"bXz" = (
/turf/open/floor/engine/n2o{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bYm" = (
+/area/engine/atmos)
+"bXA" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide{
valve_open = 1
},
/turf/open/floor/engine/n2o{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bYn" = (
+/area/engine/atmos)
+"bXB" = (
/turf/open/floor/engine/vacuum{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bYo" = (
+/area/engine/atmos)
+"bXC" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bYp" = (
+/area/maintenance/asteroid/central)
+"bXD" = (
/obj/machinery/light/small{
dir = 1
},
@@ -59157,41 +56503,31 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bYq" = (
+/area/maintenance/asteroid/central)
+"bXE" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bYr" = (
+/area/maintenance/asteroid/central)
+"bXF" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 24
},
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bYs" = (
+/area/maintenance/asteroid/central)
+"bXG" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/disposal{
- name = "Eastern External Waste Belt"
- })
-"bYt" = (
+/area/maintenance/asteroid/disposal/east)
+"bXH" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/disposal{
- name = "Eastern External Waste Belt"
- })
-"bYu" = (
+/area/maintenance/asteroid/disposal/east)
+"bXI" = (
/obj/machinery/light/small{
dir = 4
},
@@ -59202,20 +56538,16 @@
verted = -1
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "Eastern External Waste Belt"
- })
-"bYv" = (
+/area/maintenance/asteroid/disposal/east)
+"bXJ" = (
/obj/structure/rack,
/obj/item/weapon/pickaxe/emergency,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bYw" = (
+/area/maintenance/asteroid/port/west)
+"bXK" = (
/obj/machinery/shower{
dir = 4
},
@@ -59225,7 +56557,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bYx" = (
+"bXL" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -59233,7 +56565,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bYy" = (
+"bXM" = (
/obj/machinery/shower{
dir = 8
},
@@ -59243,14 +56575,14 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bYz" = (
+"bXN" = (
/obj/machinery/computer/holodeck,
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bYA" = (
+"bXO" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -59258,7 +56590,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bYB" = (
+"bXP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -59268,19 +56600,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bYC" = (
+"bXQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Holodeck Arena"
},
-/obj/machinery/door/firedoor,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bYD" = (
+"bXR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -59289,7 +56621,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bYE" = (
+"bXS" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -59304,19 +56636,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bYF" = (
+"bXT" = (
/obj/structure/grille,
-/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bYG" = (
+"bXU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -59331,7 +56663,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bYH" = (
+"bXV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -59342,7 +56674,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bYI" = (
+"bXW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -59350,7 +56682,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bYJ" = (
+"bXX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -59361,7 +56693,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bYK" = (
+"bXY" = (
/obj/structure/chair{
dir = 4
},
@@ -59372,7 +56704,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bYL" = (
+"bXZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -59381,7 +56713,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bYM" = (
+"bYa" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -59389,72 +56721,62 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bYN" = (
+"bYb" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/bar{
- name = "Gambler's Den"
- })
-"bYO" = (
+/area/crew_quarters/abandoned_gambling_den)
+"bYc" = (
/obj/machinery/light/small,
/turf/open/floor/engine/co2{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bYP" = (
+/area/engine/atmos)
+"bYd" = (
/obj/machinery/light/small,
/turf/open/floor/engine/plasma{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bYQ" = (
+/area/engine/atmos)
+"bYe" = (
/obj/machinery/light/small,
/turf/open/floor/engine/n2o{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bYR" = (
+/area/engine/atmos)
+"bYf" = (
/obj/machinery/light/small,
/turf/open/floor/engine/vacuum{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"bYS" = (
+/area/engine/atmos)
+"bYg" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bYT" = (
+/area/maintenance/asteroid/central)
+"bYh" = (
/obj/structure/grille/broken,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bYU" = (
+/area/maintenance/asteroid/central)
+"bYi" = (
/obj/structure/closet/toolcloset,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"bYV" = (
+/area/maintenance/asteroid/central)
+"bYj" = (
/obj/structure/disposalpipe/trunk,
/obj/structure/disposaloutlet{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "Eastern External Waste Belt"
- })
-"bYW" = (
+/area/maintenance/asteroid/disposal/east)
+"bYk" = (
/obj/machinery/conveyor/auto{
tag = "icon-conveyor0 (EAST)";
icon_state = "conveyor0";
@@ -59462,10 +56784,8 @@
},
/obj/machinery/light/small,
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "Eastern External Waste Belt"
- })
-"bYX" = (
+/area/maintenance/asteroid/disposal/east)
+"bYl" = (
/obj/machinery/conveyor/auto{
dir = 10;
icon_state = "conveyor0";
@@ -59473,10 +56793,8 @@
verted = -1
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "Eastern External Waste Belt"
- })
-"bYY" = (
+/area/maintenance/asteroid/disposal/east)
+"bYm" = (
/obj/structure/rack,
/obj/item/weapon/pickaxe/emergency,
/obj/effect/spawner/lootdrop/maintenance,
@@ -59484,10 +56802,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bYZ" = (
+/area/maintenance/asteroid/port/west)
+"bYn" = (
/obj/item/weapon/bikehorn/rubberducky,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -59495,7 +56811,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bZa" = (
+"bYo" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -59506,18 +56822,18 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bZb" = (
+"bYp" = (
/obj/structure/table,
/obj/item/weapon/paper{
desc = "";
- info = "Brusies sustained in the holodeck can be healed simply by sleeping.";
+ info = "Bruises sustained in the holodeck can be healed simply by sleeping.";
name = "Holodeck Disclaimer"
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bZc" = (
+"bYq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -59528,7 +56844,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bZd" = (
+"bYr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/junction{
dir = 4;
@@ -59538,19 +56854,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bZe" = (
-/obj/machinery/door/airlock/glass{
- name = "Holodeck Arena"
- },
+"bYs" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Holodeck Arena"
+ },
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bZf" = (
+"bYt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -59559,7 +56875,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bZg" = (
+"bYu" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
dir = 4
@@ -59568,7 +56884,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bZh" = (
+"bYv" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -59587,7 +56903,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bZi" = (
+"bYw" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -59599,19 +56915,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bZj" = (
+"bYx" = (
/obj/machinery/light,
/turf/open/floor/plasteel/chapel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bZk" = (
+"bYy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bZl" = (
+"bYz" = (
/obj/machinery/light,
/turf/open/floor/plasteel/chapel{
tag = "icon-chapel (WEST)";
@@ -59620,7 +56936,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bZm" = (
+"bYA" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -59632,17 +56948,13 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bZn" = (
+/area/maintenance/asteroid/port/east)
+"bYB" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/bar{
- name = "Gambler's Den"
- })
-"bZo" = (
+/area/crew_quarters/abandoned_gambling_den)
+"bYC" = (
/obj/structure/toilet{
icon_state = "toilet00";
dir = 8
@@ -59653,22 +56965,16 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/bar{
- name = "Gambler's Den"
- })
-"bZp" = (
+/area/crew_quarters/abandoned_gambling_den)
+"bYD" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall,
-/area/maintenance/disposal{
- name = "Eastern External Waste Belt"
- })
-"bZq" = (
+/area/maintenance/asteroid/disposal/east)
+"bYE" = (
/obj/item/stack/sheet/metal,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bZr" = (
+/area/maintenance/asteroid/port/west)
+"bYF" = (
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -59676,7 +56982,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bZs" = (
+"bYG" = (
/obj/item/weapon/soap/nanotrasen,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/freezer{
@@ -59685,20 +56991,20 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bZt" = (
+"bYH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bZu" = (
+"bYI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bZv" = (
+"bYJ" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -59707,7 +57013,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bZw" = (
+"bYK" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -59725,7 +57031,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bZx" = (
+"bYL" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -59733,7 +57039,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bZy" = (
+"bYM" = (
/obj/machinery/door/morgue{
name = "Confession Room"
},
@@ -59744,7 +57050,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bZz" = (
+"bYN" = (
/obj/machinery/door/morgue{
name = "Confession Room";
req_access_txt = "22"
@@ -59756,7 +57062,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bZA" = (
+"bYO" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -59764,7 +57070,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"bZB" = (
+"bYP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -59773,7 +57079,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"bZC" = (
+"bYQ" = (
/obj/structure/disposalpipe/sortjunction{
dir = 8;
icon_state = "pipe-j2s";
@@ -59784,7 +57090,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"bZD" = (
+"bYR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock{
name = "Chaplain's Office";
@@ -59797,7 +57103,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"bZE" = (
+"bYS" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -59806,32 +57112,26 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"bZF" = (
+"bYT" = (
/obj/structure/mineral_door/wood,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/bar{
- name = "Gambler's Den"
- })
-"bZG" = (
+/area/crew_quarters/abandoned_gambling_den)
+"bYU" = (
/obj/structure/sign/barsign,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/bar{
- name = "Gambler's Den"
- })
-"bZH" = (
+/area/crew_quarters/abandoned_gambling_den)
+"bYV" = (
/obj/machinery/disposal/deliveryChute,
/obj/structure/disposalpipe/trunk{
dir = 1
},
/turf/open/floor/plating/airless,
-/area/maintenance/disposal{
- name = "Eastern External Waste Belt"
- })
-"bZI" = (
+/area/maintenance/asteroid/disposal/east)
+"bYW" = (
/obj/machinery/light,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -59839,7 +57139,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bZJ" = (
+"bYX" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1
@@ -59850,7 +57150,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bZK" = (
+"bYY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -59861,7 +57161,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bZL" = (
+"bYZ" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -59871,10 +57171,10 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bZM" = (
+"bZa" = (
/turf/closed/mineral,
/area/chapel/main)
-"bZN" = (
+"bZb" = (
/obj/structure/chair{
dir = 4
},
@@ -59883,14 +57183,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bZO" = (
+"bZc" = (
/obj/structure/grille,
/obj/structure/window/reinforced/tinted/fulltile,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bZP" = (
+"bZd" = (
/obj/structure/chair{
dir = 8
},
@@ -59899,7 +57199,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bZQ" = (
+"bZe" = (
/obj/machinery/door/morgue{
name = "Confession Room";
req_access_txt = "22"
@@ -59908,7 +57208,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"bZR" = (
+"bZf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/item/weapon/twohanded/required/kirbyplants{
tag = "icon-applebush";
@@ -59918,7 +57218,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"bZS" = (
+"bZg" = (
/obj/machinery/light_switch{
pixel_y = 24
},
@@ -59927,13 +57227,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"bZT" = (
+"bZh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"bZU" = (
+"bZi" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -59943,12 +57243,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"bZV" = (
+"bZj" = (
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"bZW" = (
+"bZk" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -59957,7 +57257,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"bZX" = (
+"bZl" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -59969,7 +57269,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bZY" = (
+"bZm" = (
/obj/machinery/door/window/northleft{
name = "Casket Storage";
req_access_txt = "22"
@@ -59981,7 +57281,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bZZ" = (
+"bZn" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -59990,24 +57290,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"caa" = (
+"bZo" = (
/obj/machinery/computer/arcade,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless;
icon_state = "wood-broken"
},
-/area/crew_quarters/bar{
- name = "Gambler's Den"
- })
-"cab" = (
+/area/crew_quarters/abandoned_gambling_den)
+"bZp" = (
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless;
icon_state = "wood-broken"
},
-/area/crew_quarters/bar{
- name = "Gambler's Den"
- })
-"cac" = (
+/area/crew_quarters/abandoned_gambling_den)
+"bZq" = (
/obj/item/chair/stool,
/obj/structure/sign/poster/random{
name = "random contraband poster";
@@ -60018,46 +57314,36 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/bar{
- name = "Gambler's Den"
- })
-"cad" = (
+/area/crew_quarters/abandoned_gambling_den)
+"bZr" = (
/obj/structure/table/wood/poker,
/obj/item/toy/cards/deck,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless;
icon_state = "wood-broken"
},
-/area/crew_quarters/bar{
- name = "Gambler's Den"
- })
-"cae" = (
+/area/crew_quarters/abandoned_gambling_den)
+"bZs" = (
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/bar{
- name = "Gambler's Den"
- })
-"caf" = (
+/area/crew_quarters/abandoned_gambling_den)
+"bZt" = (
/obj/machinery/vending/boozeomat{
req_access_txt = "0"
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/bar{
- name = "Gambler's Den"
- })
-"cag" = (
+/area/crew_quarters/abandoned_gambling_den)
+"bZu" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/bar{
- name = "Gambler's Den"
- })
-"cah" = (
+/area/crew_quarters/abandoned_gambling_den)
+"bZv" = (
/obj/structure/sign/mining{
pixel_y = -32
},
@@ -60069,10 +57355,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cai" = (
+/area/maintenance/asteroid/central)
+"bZw" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j2";
dir = 2
@@ -60080,30 +57364,24 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"caj" = (
+/area/maintenance/asteroid/port/west)
+"bZx" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cak" = (
+/area/maintenance/asteroid/port/west)
+"bZy" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cal" = (
+/area/maintenance/asteroid/port/east)
+"bZz" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -60112,10 +57390,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cam" = (
+/area/maintenance/asteroid/port/west)
+"bZA" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -60123,10 +57399,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"can" = (
+/area/maintenance/asteroid/port/west)
+"bZB" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -60135,11 +57409,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cao" = (
-/obj/machinery/door/firedoor,
+/area/maintenance/asteroid/port/west)
+"bZC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -60150,16 +57421,17 @@
dir = 1
},
/obj/effect/turf_decal/stripes/line,
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cap" = (
+"bZD" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"caq" = (
+"bZE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/camera{
c_tag = "Chapel Office";
@@ -60170,13 +57442,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"car" = (
+"bZF" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cas" = (
+"bZG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -60185,7 +57457,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cat" = (
+"bZH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -60193,7 +57465,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cau" = (
+"bZI" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -60203,31 +57475,27 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cav" = (
+"bZJ" = (
/obj/structure/closet/coffin,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"caw" = (
+"bZK" = (
/obj/structure/chair/stool,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/bar{
- name = "Gambler's Den"
- })
-"cax" = (
+/area/crew_quarters/abandoned_gambling_den)
+"bZL" = (
/obj/structure/table/wood/poker,
/obj/item/weapon/gun/ballistic/revolver/russian,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless;
icon_state = "wood-broken"
},
-/area/crew_quarters/bar{
- name = "Gambler's Den"
- })
-"cay" = (
+/area/crew_quarters/abandoned_gambling_den)
+"bZM" = (
/obj/structure/light_construct{
dir = 4
},
@@ -60236,10 +57504,8 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/bar{
- name = "Gambler's Den"
- })
-"caz" = (
+/area/crew_quarters/abandoned_gambling_den)
+"bZN" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -60247,20 +57513,16 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"caA" = (
+/area/maintenance/asteroid/central)
+"bZO" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"caB" = (
+/area/maintenance/asteroid/port/west)
+"bZP" = (
/obj/structure/disposalpipe/sortjunction{
dir = 2;
icon_state = "pipe-j2s";
@@ -60270,10 +57532,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"caC" = (
+/area/maintenance/asteroid/port/west)
+"bZQ" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -60287,26 +57547,20 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"caD" = (
+/area/maintenance/asteroid/port/west)
+"bZR" = (
/obj/structure/grille,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"caE" = (
+/area/maintenance/asteroid/port/west)
+"bZS" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"caF" = (
+/area/maintenance/asteroid/port/east)
+"bZT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/light{
dir = 4;
@@ -60316,7 +57570,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"caG" = (
+"bZU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -60335,7 +57589,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"caH" = (
+"bZV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -60354,7 +57608,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"caI" = (
+"bZW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -60373,20 +57627,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"caJ" = (
+"bZX" = (
/obj/structure/tank_dispenser/oxygen,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"caK" = (
+"bZY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"caL" = (
+"bZZ" = (
/obj/structure/table/wood,
/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater,
/obj/structure/disposalpipe/segment,
@@ -60394,7 +57648,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"caM" = (
+"caa" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/obj/item/stack/packageWrap,
@@ -60403,13 +57657,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"caN" = (
+"cab" = (
/obj/structure/table/wood,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"caO" = (
+"cac" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -60424,7 +57678,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"caP" = (
+"cad" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -60438,28 +57692,22 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/bar{
- name = "Gambler's Den"
- })
-"caQ" = (
+/area/crew_quarters/abandoned_gambling_den)
+"cae" = (
/obj/structure/table/wood/poker,
/obj/item/toy/cards/deck,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/bar{
- name = "Gambler's Den"
- })
-"caR" = (
+/area/crew_quarters/abandoned_gambling_den)
+"caf" = (
/obj/structure/window/reinforced/fulltile,
/obj/structure/grille,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"caS" = (
+/area/maintenance/asteroid/port/west)
+"cag" = (
/obj/structure/disposalpipe/sortjunction{
dir = 2;
icon_state = "pipe-j2s";
@@ -60469,54 +57717,44 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"caT" = (
+/area/maintenance/asteroid/port/west)
+"cah" = (
/obj/structure/disposalpipe/junction,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"caU" = (
+/area/maintenance/asteroid/port/west)
+"cai" = (
/obj/structure/grille/broken,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"caV" = (
+/area/maintenance/asteroid/port/west)
+"caj" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"caW" = (
+/area/maintenance/asteroid/port/west)
+"cak" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"caX" = (
+/area/maintenance/asteroid/port/west)
+"cal" = (
/turf/closed/mineral,
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"caY" = (
+"cam" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"caZ" = (
+"can" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -60527,13 +57765,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cba" = (
+"cao" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cbb" = (
+"cap" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1
@@ -60542,7 +57780,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cbc" = (
+"caq" = (
/obj/structure/table/wood,
/obj/item/weapon/nullrod,
/obj/structure/disposalpipe/segment,
@@ -60550,13 +57788,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cbd" = (
+"car" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cbe" = (
+"cas" = (
/obj/structure/chair/wood/wings{
icon_state = "wooden_chair_wings";
dir = 1
@@ -60566,7 +57804,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cbf" = (
+"cat" = (
/obj/machinery/newscaster{
pixel_x = 32
},
@@ -60574,7 +57812,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cbg" = (
+"cau" = (
/obj/structure/closet/coffin,
/obj/machinery/camera{
c_tag = "Chapel Coffins";
@@ -60585,15 +57823,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"cbh" = (
+"cav" = (
/obj/item/chair/stool,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/bar{
- name = "Gambler's Den"
- })
-"cbi" = (
+/area/crew_quarters/abandoned_gambling_den)
+"caw" = (
/obj/structure/sign/poster/random{
name = "random contraband poster";
pixel_x = 0;
@@ -60604,10 +57840,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
icon_state = "wood-broken"
},
-/area/crew_quarters/bar{
- name = "Gambler's Den"
- })
-"cbj" = (
+/area/crew_quarters/abandoned_gambling_den)
+"cax" = (
/obj/structure/disposalpipe/sortjunction{
dir = 2;
icon_state = "pipe-j2s";
@@ -60617,10 +57851,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cbk" = (
+/area/maintenance/asteroid/port/west)
+"cay" = (
/obj/structure/disposalpipe/junction{
dir = 4;
icon_state = "pipe-j2"
@@ -60628,10 +57860,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cbl" = (
+/area/maintenance/asteroid/port/west)
+"caz" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
dir = 4
@@ -60640,10 +57870,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cbm" = (
+/area/maintenance/asteroid/port/west)
+"caA" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -60653,10 +57881,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cbn" = (
+/area/maintenance/asteroid/port/west)
+"caB" = (
/obj/machinery/door/airlock/maintenance{
name = "Port Asteroid Maintenance";
req_access_txt = "12"
@@ -60667,10 +57893,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cbo" = (
+/area/maintenance/asteroid/port/west)
+"caC" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -60681,10 +57905,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cbp" = (
+/area/maintenance/asteroid/port/west)
+"caD" = (
/obj/machinery/light/small,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -60692,10 +57914,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cbq" = (
+/area/maintenance/asteroid/port/west)
+"caE" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -60703,29 +57923,27 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cbr" = (
+/area/maintenance/asteroid/port/west)
+"caF" = (
/obj/structure/glowshroom/single,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating/asteroid,
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"cbs" = (
+"caG" = (
/turf/open/floor/plating/asteroid,
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"cbt" = (
+"caH" = (
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"cbu" = (
+"caI" = (
/obj/structure/falsewall{
desc = "A huge chunk of metal used to separate rooms. Nothing odd here, sir.";
name = "inconspicuous wall"
@@ -60734,7 +57952,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"cbv" = (
+"caJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -60743,19 +57961,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"cbw" = (
+"caK" = (
/obj/machinery/light,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cbx" = (
+"caL" = (
/obj/structure/closet/wardrobe/chaplain_black,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cby" = (
+"caM" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -60769,10 +57987,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cbz" = (
+/area/maintenance/asteroid/port/east)
+"caN" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -60782,10 +57998,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cbA" = (
+/area/maintenance/asteroid/port/east)
+"caO" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -60797,10 +58011,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/bar{
- name = "Gambler's Den"
- })
-"cbB" = (
+/area/crew_quarters/abandoned_gambling_den)
+"caP" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -60810,10 +58022,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/bar{
- name = "Gambler's Den"
- })
-"cbC" = (
+/area/crew_quarters/abandoned_gambling_den)
+"caQ" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -60822,26 +58032,20 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/bar{
- name = "Gambler's Den"
- })
-"cbD" = (
+/area/crew_quarters/abandoned_gambling_den)
+"caR" = (
/obj/structure/table,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cbE" = (
+/area/maintenance/asteroid/port/west)
+"caS" = (
/obj/item/chair,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cbF" = (
+/area/maintenance/asteroid/port/west)
+"caT" = (
/obj/structure/disposalpipe/sortjunction{
dir = 2;
icon_state = "pipe-j2s";
@@ -60851,10 +58055,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cbG" = (
+/area/maintenance/asteroid/port/west)
+"caU" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
dir = 4
@@ -60863,10 +58065,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cbH" = (
+/area/maintenance/asteroid/port/west)
+"caV" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -60875,24 +58075,20 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cbI" = (
+/area/maintenance/asteroid/port/west)
+"caW" = (
/obj/structure/barricade/wooden,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cbJ" = (
+/area/maintenance/asteroid/port/west)
+"caX" = (
/obj/structure/glowshroom/single,
/turf/open/floor/plating/asteroid,
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"cbK" = (
+"caY" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -60905,7 +58101,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"cbL" = (
+"caZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -60926,7 +58122,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"cbM" = (
+"cba" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -60942,7 +58138,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"cbN" = (
+"cbb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -60960,7 +58156,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"cbO" = (
+"cbc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -60978,7 +58174,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"cbP" = (
+"cbd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -60998,7 +58194,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"cbQ" = (
+"cbe" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -61006,7 +58202,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"cbR" = (
+"cbf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -61015,13 +58211,16 @@
dir = 4;
icon_state = "camera"
},
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -24
+ },
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cbS" = (
+"cbg" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -61036,7 +58235,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cbT" = (
+"cbh" = (
/obj/structure/rack,
/obj/item/clothing/suit/space/fragile,
/obj/item/clothing/head/helmet/space/fragile,
@@ -61052,7 +58251,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cbU" = (
+"cbi" = (
/obj/machinery/door/window/northleft{
name = "Chapel Mail";
req_access_txt = "22"
@@ -61064,13 +58263,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cbV" = (
+"cbj" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cbW" = (
+"cbk" = (
/obj/machinery/door/airlock{
name = "Crematorium";
req_access_txt = "22"
@@ -61079,7 +58278,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cbX" = (
+"cbl" = (
/obj/structure/cable/orange,
/obj/machinery/power/apc{
dir = 2;
@@ -61090,18 +58289,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
icon_state = "wood-broken"
},
-/area/crew_quarters/bar{
- name = "Gambler's Den"
- })
-"cbY" = (
+/area/crew_quarters/abandoned_gambling_den)
+"cbm" = (
/obj/machinery/computer/slot_machine,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/bar{
- name = "Gambler's Den"
- })
-"cbZ" = (
+/area/crew_quarters/abandoned_gambling_den)
+"cbn" = (
/obj/machinery/computer/slot_machine,
/obj/structure/sign/poster/random{
name = "random contraband poster";
@@ -61112,10 +58307,8 @@
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/bar{
- name = "Gambler's Den"
- })
-"cca" = (
+/area/crew_quarters/abandoned_gambling_den)
+"cbo" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -61124,10 +58317,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"ccb" = (
+/area/maintenance/asteroid/port/west)
+"cbp" = (
/obj/structure/disposalpipe/sortjunction{
dir = 2;
icon_state = "pipe-j2s";
@@ -61137,10 +58328,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"ccc" = (
+/area/maintenance/asteroid/port/west)
+"cbq" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -61149,27 +58338,21 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"ccd" = (
+/area/maintenance/asteroid/port/west)
+"cbr" = (
/obj/machinery/light/small,
/obj/structure/closet/toolcloset,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cce" = (
+/area/maintenance/asteroid/port/west)
+"cbs" = (
/obj/structure/closet,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"ccf" = (
+/area/maintenance/asteroid/port/west)
+"cbt" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 2
},
@@ -61178,7 +58361,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"ccg" = (
+"cbu" = (
/obj/machinery/light{
dir = 8
},
@@ -61188,7 +58371,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cch" = (
+"cbv" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 2
},
@@ -61202,7 +58385,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cci" = (
+"cbw" = (
/obj/structure/disposalpipe/trunk{
dir = 4
},
@@ -61214,7 +58397,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"ccj" = (
+"cbx" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -61223,7 +58406,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cck" = (
+"cby" = (
/obj/structure/bodycontainer/crematorium{
id = "creamed"
},
@@ -61231,12 +58414,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"ccl" = (
+"cbz" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"ccm" = (
+"cbA" = (
/obj/machinery/camera{
c_tag = "Crematorium";
dir = 9;
@@ -61251,7 +58434,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"ccn" = (
+"cbB" = (
/obj/structure/plasticflaps,
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=8";
@@ -61263,7 +58446,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cco" = (
+"cbC" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -61273,35 +58456,27 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"ccp" = (
+/area/maintenance/asteroid/port/east)
+"cbD" = (
/obj/structure/disposalpipe/segment,
/obj/structure/closet/firecloset/full,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"ccq" = (
+/area/maintenance/asteroid/port/west)
+"cbE" = (
/obj/structure/grille/broken,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"ccr" = (
+/area/maintenance/asteroid/port/west)
+"cbF" = (
/obj/item/stack/sheet/mineral/wood,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"ccs" = (
+/area/maintenance/asteroid/port/west)
+"cbG" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/clown,
/turf/open/floor/plating{
@@ -61310,7 +58485,7 @@
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"cct" = (
+"cbH" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/bananalamp,
/obj/item/device/instrument/violin,
@@ -61324,7 +58499,7 @@
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"ccu" = (
+"cbI" = (
/obj/structure/mineral_door/wood{
name = "Secret Clown HQ"
},
@@ -61334,7 +58509,7 @@
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"ccv" = (
+"cbJ" = (
/obj/machinery/light/small{
dir = 4
},
@@ -61344,7 +58519,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"ccw" = (
+"cbK" = (
/obj/structure/sign/map/left/ceres{
pixel_x = -32
},
@@ -61354,7 +58529,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"ccx" = (
+"cbL" = (
/obj/machinery/light/small{
dir = 8
},
@@ -61369,7 +58544,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"ccy" = (
+"cbM" = (
/obj/machinery/button/crematorium{
id = "creamed";
pixel_x = -24
@@ -61378,20 +58553,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"ccz" = (
+"cbN" = (
/obj/machinery/light/small,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"ccA" = (
+"cbO" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/book/bible,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"ccB" = (
+"cbP" = (
/obj/structure/closet/crate{
name = "top secret clown supplies"
},
@@ -61409,14 +58584,14 @@
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"ccC" = (
+"cbQ" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"ccD" = (
+"cbR" = (
/mob/living/carbon/monkey{
name = "Mr.Teeny"
},
@@ -61426,7 +58601,7 @@
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"ccE" = (
+"cbS" = (
/obj/effect/landmark/blobstart,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -61434,7 +58609,7 @@
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"ccF" = (
+"cbT" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 1
},
@@ -61443,33 +58618,31 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"ccG" = (
+"cbU" = (
/turf/open/floor/plating/asteroid/airless,
/area/mine/unexplored{
name = "Docking Asteroid"
})
-"ccH" = (
+"cbV" = (
/turf/closed/mineral,
/area/mine/unexplored{
name = "Docking Asteroid"
})
-"ccI" = (
+"cbW" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mine/unexplored{
name = "Docking Asteroid"
})
-"ccJ" = (
+"cbX" = (
/obj/structure/disposalpipe/trunk{
dir = 1
},
/obj/structure/disposaloutlet,
/turf/open/floor/plating/airless,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"ccK" = (
+/area/maintenance/asteroid/port/west)
+"cbY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -61479,7 +58652,7 @@
/area/mine/unexplored{
name = "Civilian Asteroid"
})
-"ccL" = (
+"cbZ" = (
/obj/structure/window/reinforced{
dir = 4;
pixel_x = 0
@@ -61494,18 +58667,14 @@
/turf/open/floor/plating/airless/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/construction/hallway{
- name = "Service-Science Bridge"
- })
-"ccM" = (
+/area/hallway/secondary/bridges/serv_sci)
+"cca" = (
/turf/open/floor/engine{
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/construction/hallway{
- name = "Service-Science Bridge"
- })
-"ccN" = (
+/area/hallway/secondary/bridges/serv_sci)
+"ccb" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -61517,10 +58686,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/construction/hallway{
- name = "Service-Science Bridge"
- })
-"ccO" = (
+/area/hallway/secondary/bridges/serv_sci)
+"ccc" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -61539,10 +58706,8 @@
/turf/open/floor/plating/airless/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/construction/hallway{
- name = "Service-Science Bridge"
- })
-"ccP" = (
+/area/hallway/secondary/bridges/serv_sci)
+"ccd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -61557,7 +58722,7 @@
/area/mine/unexplored{
name = "Civilian Asteroid"
})
-"ccQ" = (
+"cce" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
@@ -61568,7 +58733,7 @@
},
/turf/open/space,
/area/space)
-"ccR" = (
+"ccf" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 4;
@@ -61586,10 +58751,8 @@
dir = 8
},
/turf/open/space,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"ccS" = (
+/area/hallway/secondary/bridges/dock_med)
+"ccg" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 8
@@ -61608,10 +58771,8 @@
dir = 4
},
/turf/open/space,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"ccT" = (
+/area/hallway/secondary/bridges/dock_med)
+"cch" = (
/obj/structure/table,
/obj/item/toy/figure/clown,
/turf/open/floor/plating{
@@ -61620,7 +58781,7 @@
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"ccU" = (
+"cci" = (
/obj/item/weapon/grown/bananapeel{
name = "state-of-the-art clown home defense peel"
},
@@ -61635,7 +58796,7 @@
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"ccV" = (
+"ccj" = (
/obj/structure/closet/crate/bin,
/obj/item/clothing/mask/gas/mime,
/turf/open/floor/plating{
@@ -61644,7 +58805,7 @@
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"ccW" = (
+"cck" = (
/obj/machinery/vending/autodrobe{
desc = "A vending machine for costumes. The machine seems blessed by some higher power, allowing it to function without power. HONK!";
use_power = 0
@@ -61655,7 +58816,7 @@
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"ccX" = (
+"ccl" = (
/obj/structure/window/reinforced{
dir = 4;
pixel_x = 0
@@ -61668,10 +58829,8 @@
/turf/open/floor/plating/airless/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/construction/hallway{
- name = "Service-Science Bridge"
- })
-"ccY" = (
+/area/hallway/secondary/bridges/serv_sci)
+"ccm" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -61688,10 +58847,8 @@
/turf/open/floor/plating/airless/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/construction/hallway{
- name = "Service-Science Bridge"
- })
-"ccZ" = (
+/area/hallway/secondary/bridges/serv_sci)
+"ccn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/glass_external{
@@ -61702,8 +58859,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cda" = (
+/area/hallway/primary/starboard/aft)
+"cco" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 1;
@@ -61713,13 +58870,11 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/space,
/area/space)
-"cdb" = (
+"ccp" = (
/obj/item/stack/sheet/mineral/wood,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cdc" = (
+/area/maintenance/asteroid/port/west)
+"ccq" = (
/obj/machinery/light/small{
dir = 4
},
@@ -61729,8 +58884,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cdd" = (
+/area/hallway/primary/starboard/aft)
+"ccr" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 2
},
@@ -61743,24 +58898,22 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cde" = (
+/area/hallway/primary/starboard/aft)
+"ccs" = (
/turf/closed/mineral/random/labormineral,
/area/mine/unexplored{
name = "Docking Asteroid"
})
-"cdf" = (
+"cct" = (
/turf/closed/mineral/random/low_chance,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cdg" = (
+/area/maintenance/asteroid/port/west)
+"ccu" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cdh" = (
+/area/hallway/primary/starboard/aft)
+"ccv" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -61774,20 +58927,16 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cdi" = (
+/area/hallway/primary/starboard/aft)
+"ccw" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cdj" = (
+/area/maintenance/asteroid/port/west)
+"ccx" = (
/obj/item/weapon/ore/iron,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cdk" = (
+/area/maintenance/asteroid/port/west)
+"ccy" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/structure/closet/crate{
icon_state = "crateopen";
@@ -61796,10 +58945,8 @@
/obj/item/weapon/ore/iron,
/obj/item/weapon/ore/iron,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cdl" = (
+/area/maintenance/asteroid/port/west)
+"ccz" = (
/obj/machinery/light{
dir = 8
},
@@ -61807,26 +58954,24 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/construction/hallway{
- name = "Service-Science Bridge"
- })
-"cdm" = (
+/area/hallway/secondary/bridges/serv_sci)
+"ccA" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cdn" = (
+/area/hallway/primary/starboard/aft)
+"ccB" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cdo" = (
+/area/hallway/primary/starboard/aft)
+"ccC" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 2;
name = "Mix Input";
@@ -61839,8 +58984,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cdp" = (
+/area/hallway/primary/starboard/aft)
+"ccD" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 1
},
@@ -61853,25 +58998,21 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cdq" = (
+/area/hallway/primary/starboard/aft)
+"ccE" = (
/turf/closed/mineral/random/labormineral,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cdr" = (
+/area/maintenance/asteroid/aft/arrivals)
+"ccF" = (
/turf/closed/mineral/random/low_chance,
/area/mine/unexplored{
name = "Civilian Asteroid"
})
-"cds" = (
+"ccG" = (
/obj/item/weapon/ore/iron,
/obj/item/weapon/ore/iron,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cdt" = (
+/area/maintenance/asteroid/port/west)
+"ccH" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
@@ -61886,8 +59027,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cdu" = (
+/area/hallway/primary/starboard/aft)
+"ccI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
pixel_y = 0
@@ -61899,8 +59040,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cdv" = (
+/area/hallway/primary/starboard/aft)
+"ccJ" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -61911,8 +59052,8 @@
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cdw" = (
+/area/hallway/primary/starboard/aft)
+"ccK" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -61922,38 +59063,30 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cdx" = (
+/area/hallway/primary/starboard/aft)
+"ccL" = (
/obj/structure/ore_box,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cdy" = (
+/area/maintenance/asteroid/aft/arrivals)
+"ccM" = (
/obj/item/weapon/ore/iron,
/obj/item/weapon/ore/iron,
/obj/item/weapon/ore/iron,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cdz" = (
+/area/maintenance/asteroid/aft/arrivals)
+"ccN" = (
/obj/item/weapon/storage/bag/ore,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cdA" = (
+/area/maintenance/asteroid/port/west)
+"ccO" = (
/obj/structure/ore_box,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cdB" = (
+/area/maintenance/asteroid/port/west)
+"ccP" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
@@ -61967,16 +59100,16 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cdC" = (
+/area/hallway/primary/starboard/aft)
+"ccQ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cdD" = (
+/area/hallway/primary/starboard/aft)
+"ccR" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -61984,8 +59117,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cdE" = (
+/area/hallway/primary/starboard/aft)
+"ccS" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -61998,60 +59131,50 @@
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cdF" = (
+/area/hallway/primary/starboard/aft)
+"ccT" = (
/obj/item/weapon/storage/bag/ore,
/obj/item/weapon/pickaxe/mini,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cdG" = (
+/area/maintenance/asteroid/aft/arrivals)
+"ccU" = (
/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cdH" = (
+/area/maintenance/asteroid/aft/arrivals)
+"ccV" = (
/obj/item/device/flashlight/lantern,
/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cdI" = (
+/area/maintenance/asteroid/aft/arrivals)
+"ccW" = (
/turf/closed/mineral,
/area/mine/unexplored{
name = "Research Asteroid"
})
-"cdJ" = (
+"ccX" = (
/turf/closed/mineral/random/low_chance,
/area/mine/unexplored{
name = "Research Asteroid"
})
-"cdK" = (
+"ccY" = (
/obj/item/device/flashlight/lantern,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cdL" = (
+/area/maintenance/asteroid/port/west)
+"ccZ" = (
/obj/item/weapon/pickaxe/mini,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cdM" = (
+/area/maintenance/asteroid/port/west)
+"cda" = (
/turf/closed/mineral/random/labormineral,
/area/mine/unexplored{
name = "Research Asteroid"
})
-"cdN" = (
+"cdb" = (
/turf/open/floor/plating/asteroid/airless,
/area/mine/unexplored{
name = "Research Asteroid"
})
-"cdO" = (
+"cdc" = (
/obj/machinery/light/small{
dir = 8
},
@@ -62059,10 +59182,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/construction/hallway{
- name = "Service-Science Bridge"
- })
-"cdP" = (
+/area/hallway/secondary/bridges/serv_sci)
+"cdd" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/camera{
c_tag = "Service-Research Bridge";
@@ -62073,10 +59194,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/construction/hallway{
- name = "Service-Science Bridge"
- })
-"cdQ" = (
+/area/hallway/secondary/bridges/serv_sci)
+"cde" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
@@ -62087,14 +59206,14 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cdR" = (
+/area/hallway/primary/starboard/aft)
+"cdf" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cdS" = (
+/area/hallway/primary/starboard/aft)
+"cdg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -62105,32 +59224,28 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cdT" = (
+/area/hallway/primary/starboard/aft)
+"cdh" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cdU" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cdi" = (
/turf/closed/mineral,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cdV" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cdj" = (
/obj/machinery/power/solar{
id = "portsolar";
name = "Port Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/space)
-"cdW" = (
+/area/solar/asteroid/aft)
+"cdk" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cdX" = (
+/area/hallway/primary/starboard/aft)
+"cdl" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 2;
name = "Mix Output";
@@ -62143,9 +59258,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cdY" = (
-/obj/machinery/door/firedoor,
+/area/hallway/primary/starboard/aft)
+"cdm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -62156,11 +59270,11 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cdZ" = (
+/area/hallway/primary/starboard/aft)
+"cdn" = (
/turf/open/floor/plasteel/airless/solarpanel,
-/area/space)
-"cea" = (
+/area/solar/asteroid/aft)
+"cdo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -62174,8 +59288,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"ceb" = (
+/area/hallway/primary/starboard/aft)
+"cdp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -62189,8 +59303,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cec" = (
+/area/hallway/primary/starboard/aft)
+"cdq" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -62203,40 +59317,33 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"ced" = (
+/area/hallway/primary/starboard/aft)
+"cdr" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/escape)
-"cee" = (
+"cds" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
/turf/open/floor/plating,
/area/shuttle/escape)
-"cef" = (
+"cdt" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Aft Asteroid Solar Maintenance"
- })
-"ceg" = (
+/area/maintenance/solars/asteroid/aft)
+"cdu" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Aft Asteroid Solar Maintenance"
- })
-"ceh" = (
+/area/maintenance/solars/asteroid/aft)
+"cdv" = (
/turf/closed/wall/r_wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Aft Asteroid Solar Maintenance"
- })
-"cei" = (
+/area/maintenance/solars/asteroid/aft)
+"cdw" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -62254,8 +59361,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cej" = (
+/area/hallway/primary/starboard/aft)
+"cdx" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -62265,8 +59372,8 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cek" = (
+/area/hallway/primary/starboard/aft)
+"cdy" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -62284,8 +59391,8 @@
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cel" = (
+/area/hallway/primary/starboard/aft)
+"cdz" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -62302,8 +59409,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cem" = (
+/area/hallway/primary/starboard/aft)
+"cdA" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -62321,8 +59428,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cen" = (
+/area/hallway/primary/starboard/aft)
+"cdB" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
},
@@ -62336,12 +59443,12 @@
dir = 1
},
/area/shuttle/escape)
-"ceo" = (
+"cdC" = (
/obj/structure/lattice,
/obj/item/weapon/wirecutters,
/turf/open/space,
-/area/space)
-"cep" = (
+/area/solar/asteroid/aft)
+"cdD" = (
/obj/structure/closet/crate{
name = "solar pack crate"
},
@@ -62363,10 +59470,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Aft Asteroid Solar Maintenance"
- })
-"ceq" = (
+/area/maintenance/solars/asteroid/aft)
+"cdE" = (
/obj/machinery/power/terminal{
dir = 4
},
@@ -62381,10 +59486,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Aft Asteroid Solar Maintenance"
- })
-"cer" = (
+/area/maintenance/solars/asteroid/aft)
+"cdF" = (
/obj/machinery/power/smes,
/obj/structure/cable/orange{
d2 = 2;
@@ -62400,10 +59503,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Aft Asteroid Solar Maintenance"
- })
-"ces" = (
+/area/maintenance/solars/asteroid/aft)
+"cdG" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -62416,8 +59517,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cet" = (
+/area/hallway/primary/starboard/aft)
+"cdH" = (
/obj/structure/table,
/obj/item/weapon/book/manual/wiki/security_space_law,
/turf/open/floor/mineral/plastitanium/brig{
@@ -62427,12 +59528,12 @@
floor_tile = /obj/item/stack/tile/plasteel
},
/area/shuttle/escape)
-"ceu" = (
+"cdI" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/mining_construction)
-"cev" = (
+/area/construction/mining/aux_base)
+"cdJ" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -62447,7 +59548,7 @@
/obj/structure/grille,
/turf/open/floor/plating,
/area/storage/tech)
-"cew" = (
+"cdK" = (
/obj/structure/cable{
icon_state = "0-2";
pixel_y = 1;
@@ -62467,7 +59568,7 @@
/obj/structure/grille,
/turf/open/floor/plating,
/area/storage/tech)
-"cex" = (
+"cdL" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -62482,7 +59583,7 @@
/obj/structure/grille,
/turf/open/floor/plating,
/area/storage/tech)
-"cey" = (
+"cdM" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -62498,10 +59599,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Aft Asteroid Solar Maintenance"
- })
-"cez" = (
+/area/maintenance/solars/asteroid/aft)
+"cdN" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -62511,10 +59610,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Aft Asteroid Solar Maintenance"
- })
-"ceA" = (
+/area/maintenance/solars/asteroid/aft)
+"cdO" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -62530,10 +59627,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Aft Asteroid Solar Maintenance"
- })
-"ceB" = (
+/area/maintenance/solars/asteroid/aft)
+"cdP" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -62548,10 +59643,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Aft Asteroid Solar Maintenance"
- })
-"ceC" = (
+/area/maintenance/solars/asteroid/aft)
+"cdQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -62560,10 +59653,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Aft Asteroid Solar Maintenance"
- })
-"ceD" = (
+/area/maintenance/solars/asteroid/aft)
+"cdR" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -62572,10 +59663,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Aft Asteroid Solar Maintenance"
- })
-"ceE" = (
+/area/maintenance/solars/asteroid/aft)
+"cdS" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -62592,13 +59681,13 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"ceF" = (
+/area/hallway/primary/starboard/aft)
+"cdT" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"ceG" = (
+"cdU" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -62607,14 +59696,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"ceH" = (
+"cdV" = (
/obj/structure/chair,
/obj/machinery/light{
dir = 1
},
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/escape)
-"ceI" = (
+"cdW" = (
/obj/structure/table,
/obj/machinery/recharger,
/obj/structure/reagent_dispensers/peppertank{
@@ -62626,7 +59715,7 @@
icon_state = "darkred"
},
/area/shuttle/escape)
-"ceJ" = (
+"cdX" = (
/obj/structure/chair,
/obj/machinery/light{
dir = 1
@@ -62638,7 +59727,7 @@
floor_tile = /obj/item/stack/tile/plasteel
},
/area/shuttle/escape)
-"ceK" = (
+"cdY" = (
/obj/structure/chair,
/turf/open/floor/mineral/plastitanium/brig{
tag = "icon-darkred (NORTH)";
@@ -62647,7 +59736,7 @@
floor_tile = /obj/item/stack/tile/plasteel
},
/area/shuttle/escape)
-"ceL" = (
+"cdZ" = (
/obj/structure/closet/secure_closet/miner{
locked = 0
},
@@ -62658,7 +59747,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/auxillary_base)
-"ceM" = (
+"cea" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -62666,7 +59755,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/auxillary_base)
-"ceN" = (
+"ceb" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
},
@@ -62674,7 +59763,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/auxillary_base)
-"ceO" = (
+"cec" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -62688,7 +59777,7 @@
/obj/structure/grille,
/turf/open/floor/plating,
/area/storage/tech)
-"ceP" = (
+"ced" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -62717,7 +59806,7 @@
},
/turf/open/floor/plasteel,
/area/storage/tech)
-"ceQ" = (
+"cee" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -62730,24 +59819,24 @@
/obj/structure/grille,
/turf/open/floor/plating,
/area/storage/tech)
-"ceR" = (
+"cef" = (
/obj/structure/lattice,
/obj/structure/sign/mining{
pixel_y = -32
},
/turf/open/space,
/area/space)
-"ceS" = (
+"ceg" = (
/obj/structure/lattice/catwalk,
/obj/item/weapon/wrench,
/turf/open/space,
-/area/space)
-"ceT" = (
+/area/solar/asteroid/aft)
+"ceh" = (
/obj/structure/lattice,
/obj/item/weapon/storage/toolbox/electrical,
/turf/open/space,
/area/space)
-"ceU" = (
+"cei" = (
/obj/machinery/power/solar_control{
id = "portsolar";
name = "Aft Asteroid Solar Control";
@@ -62757,10 +59846,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Aft Asteroid Solar Maintenance"
- })
-"ceV" = (
+/area/maintenance/solars/asteroid/aft)
+"cej" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -62770,10 +59857,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Aft Asteroid Solar Maintenance"
- })
-"ceW" = (
+/area/maintenance/solars/asteroid/aft)
+"cek" = (
/obj/machinery/power/apc{
dir = 4;
name = "Aft Asteroid Solar APC";
@@ -62797,10 +59882,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Aft Asteroid Solar Maintenance"
- })
-"ceX" = (
+/area/maintenance/solars/asteroid/aft)
+"cel" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -62817,18 +59900,16 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"ceY" = (
+/area/hallway/primary/starboard/aft)
+"cem" = (
/obj/structure/closet/crate{
icon_state = "crateopen";
opened = 1
},
/obj/item/weapon/coin/silver,
/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"ceZ" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cen" = (
/obj/structure/chair,
/turf/open/floor/plasteel/red/side{
tag = "icon-red (NORTHWEST)";
@@ -62837,7 +59918,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cfa" = (
+"ceo" = (
/obj/structure/chair,
/turf/open/floor/plasteel/red/side{
icon_state = "red";
@@ -62845,7 +59926,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cfb" = (
+"cep" = (
/obj/structure/chair,
/obj/machinery/light{
dir = 1
@@ -62856,7 +59937,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cfc" = (
+"ceq" = (
/obj/structure/chair,
/obj/machinery/camera{
c_tag = "Docking Security Holding Area";
@@ -62869,7 +59950,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cfd" = (
+"cer" = (
/obj/structure/chair,
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -62882,7 +59963,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cfe" = (
+"ces" = (
/obj/structure/chair,
/turf/open/floor/plasteel/red/side{
tag = "icon-red (NORTHEAST)";
@@ -62891,7 +59972,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cff" = (
+"cet" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -62899,7 +59980,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cfg" = (
+"ceu" = (
/turf/open/floor/mineral/plastitanium/brig{
tag = "icon-darkred (NORTH)";
icon_state = "darkred";
@@ -62907,7 +59988,7 @@
floor_tile = /obj/item/stack/tile/plasteel
},
/area/shuttle/escape)
-"cfh" = (
+"cev" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -62917,7 +59998,7 @@
/area/mine/unexplored{
name = "Research Asteroid"
})
-"cfi" = (
+"cew" = (
/obj/structure/window/reinforced{
dir = 4;
pixel_x = 0
@@ -62932,10 +60013,8 @@
/turf/open/floor/plating/airless/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/construction/hallway{
- name = "Service-Science Bridge"
- })
-"cfj" = (
+/area/hallway/secondary/bridges/serv_sci)
+"cex" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -62954,10 +60033,8 @@
/turf/open/floor/plating/airless/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/construction/hallway{
- name = "Service-Science Bridge"
- })
-"cfk" = (
+/area/hallway/secondary/bridges/serv_sci)
+"cey" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -62972,7 +60049,7 @@
/area/mine/unexplored{
name = "Research Asteroid"
})
-"cfl" = (
+"cez" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -62980,12 +60057,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/auxillary_base)
-"cfm" = (
+"ceA" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/auxillary_base)
-"cfn" = (
+"ceB" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -62993,7 +60070,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/auxillary_base)
-"cfo" = (
+"ceC" = (
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -63007,7 +60084,7 @@
/obj/structure/grille,
/turf/open/floor/plating,
/area/storage/tech)
-"cfp" = (
+"ceD" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -63028,7 +60105,7 @@
/obj/machinery/light/small,
/turf/open/floor/plasteel,
/area/storage/tech)
-"cfq" = (
+"ceE" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -63047,7 +60124,7 @@
},
/turf/open/floor/plasteel,
/area/storage/tech)
-"cfr" = (
+"ceF" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -63068,7 +60145,7 @@
/obj/machinery/light/small,
/turf/open/floor/plasteel,
/area/storage/tech)
-"cfs" = (
+"ceG" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -63082,14 +60159,12 @@
/obj/structure/grille,
/turf/open/floor/plating,
/area/storage/tech)
-"cft" = (
+"ceH" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/miningdock{
- name = "Abandoned Mining Storage"
- })
-"cfu" = (
+/area/quartermaster/miningdock/abandoned)
+"ceI" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -63097,15 +60172,13 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/miningdock{
- name = "Abandoned Mining Storage"
- })
-"cfv" = (
+/area/quartermaster/miningdock/abandoned)
+"ceJ" = (
/obj/item/solar_assembly,
/obj/item/stack/sheet/glass,
/turf/open/floor/plasteel/airless/solarpanel,
-/area/space)
-"cfw" = (
+/area/solar/asteroid/aft)
+"ceK" = (
/obj/machinery/door/airlock/maintenance{
name = "Aft Asteroid Solars";
req_access_txt = "10;11;12"
@@ -63119,23 +60192,19 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/portsolar{
- name = "Aft Asteroid Solar Maintenance"
- })
-"cfx" = (
+/area/maintenance/solars/asteroid/aft)
+"ceL" = (
/obj/structure/grille/broken,
/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cfy" = (
+/area/maintenance/asteroid/aft/arrivals)
+"ceM" = (
/turf/open/floor/plasteel/red/side{
icon_state = "red";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cfz" = (
+"ceN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -63143,7 +60212,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cfA" = (
+"ceO" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -63154,41 +60223,41 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cfB" = (
+"ceP" = (
/obj/effect/landmark/blobstart,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cfC" = (
+"ceQ" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cfD" = (
+"ceR" = (
/turf/open/floor/plasteel/red/side{
icon_state = "red";
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cfE" = (
+"ceS" = (
/obj/structure/chair,
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/escape)
-"cfF" = (
+"ceT" = (
/turf/open/floor/mineral/plastitanium/brig{
dir = 8;
floor_tile = /obj/item/stack/tile/plasteel;
icon_state = "darkred"
},
/area/shuttle/escape)
-"cfG" = (
+"ceU" = (
/turf/open/floor/mineral/plastitanium/brig{
icon_state = "darkredfull"
},
/area/shuttle/escape)
-"cfH" = (
+"ceV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating/airless/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -63196,12 +60265,12 @@
/area/mine/unexplored{
name = "Research Asteroid"
})
-"cfI" = (
+"ceW" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cfJ" = (
+"ceX" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
@@ -63210,13 +60279,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cfK" = (
+"ceY" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cfL" = (
+"ceZ" = (
/obj/machinery/door/airlock/glass,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral/corner{
@@ -63226,7 +60295,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cfM" = (
+"cfa" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -63239,12 +60308,12 @@
/area/mine/unexplored{
name = "Research Asteroid"
})
-"cfN" = (
+"cfb" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cfO" = (
+"cfc" = (
/obj/machinery/door/airlock/highsecurity{
name = "Secure Tech Storage";
req_access_txt = "19;23"
@@ -63259,17 +60328,15 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cfP" = (
+"cfd" = (
/obj/structure/ore_box,
/obj/effect/turf_decal/delivery,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/miningdock{
- name = "Abandoned Mining Storage"
- })
-"cfQ" = (
+/area/quartermaster/miningdock/abandoned)
+"cfe" = (
/obj/structure/ore_box,
/obj/effect/turf_decal/delivery,
/obj/machinery/light/small{
@@ -63278,10 +60345,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/miningdock{
- name = "Abandoned Mining Storage"
- })
-"cfR" = (
+/area/quartermaster/miningdock/abandoned)
+"cff" = (
/obj/structure/rack,
/obj/item/weapon/pickaxe,
/obj/item/weapon/pickaxe,
@@ -63290,24 +60355,20 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/miningdock{
- name = "Abandoned Mining Storage"
- })
-"cfS" = (
+/area/quartermaster/miningdock/abandoned)
+"cfg" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/miningdock{
- name = "Abandoned Mining Storage"
- })
-"cfT" = (
+/area/quartermaster/miningdock/abandoned)
+"cfh" = (
/obj/item/solar_assembly,
/turf/open/floor/plasteel/airless/solarpanel,
-/area/space)
-"cfU" = (
+/area/solar/asteroid/aft)
+"cfi" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -63319,10 +60380,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cfV" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cfj" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -63331,10 +60390,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cfW" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cfk" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -63344,28 +60401,26 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cfX" = (
+/area/hallway/primary/starboard/aft)
+"cfl" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cfY" = (
+/area/hallway/primary/starboard/aft)
+"cfm" = (
/obj/structure/barricade/wooden,
/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cfZ" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cfn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cga" = (
+"cfo" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
@@ -63373,14 +60428,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cgb" = (
+"cfp" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cgc" = (
+"cfq" = (
/obj/structure/chair{
dir = 4
},
@@ -63391,10 +60446,10 @@
},
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/escape)
-"cgd" = (
+"cfr" = (
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/escape)
-"cge" = (
+"cfs" = (
/obj/machinery/door/airlock/glass{
name = "Emergency Shuttle Brig";
req_access_txt = "2"
@@ -63403,7 +60458,7 @@
icon_state = "darkredfull"
},
/area/shuttle/escape)
-"cgf" = (
+"cft" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 2
},
@@ -63412,7 +60467,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cgg" = (
+"cfu" = (
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
icon_state = "neutralcorner";
@@ -63420,12 +60475,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cgh" = (
+"cfv" = (
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cgi" = (
+"cfw" = (
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
icon_state = "neutralcorner";
@@ -63433,7 +60488,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cgj" = (
+"cfx" = (
/obj/machinery/light/small{
dir = 8
},
@@ -63441,7 +60496,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cgk" = (
+"cfy" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -63457,7 +60512,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cgl" = (
+"cfz" = (
/obj/machinery/power/apc{
dir = 1;
name = "Tech Storage APC";
@@ -63471,10 +60526,10 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cgm" = (
+"cfA" = (
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai_upload)
-"cgn" = (
+"cfB" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -63484,10 +60539,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/miningdock{
- name = "Abandoned Mining Storage"
- })
-"cgo" = (
+/area/quartermaster/miningdock/abandoned)
+"cfC" = (
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -63498,10 +60551,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/miningdock{
- name = "Abandoned Mining Storage"
- })
-"cgp" = (
+/area/quartermaster/miningdock/abandoned)
+"cfD" = (
/obj/machinery/power/apc{
dir = 1;
name = "Mining Storage APC";
@@ -63514,19 +60565,15 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/miningdock{
- name = "Abandoned Mining Storage"
- })
-"cgq" = (
+/area/quartermaster/miningdock/abandoned)
+"cfE" = (
/obj/machinery/power/port_gen/pacman,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/miningdock{
- name = "Abandoned Mining Storage"
- })
-"cgr" = (
+/area/quartermaster/miningdock/abandoned)
+"cfF" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -63534,25 +60581,21 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/miningdock{
- name = "Abandoned Mining Storage"
- })
-"cgs" = (
+/area/quartermaster/miningdock/abandoned)
+"cfG" = (
/obj/structure/lattice/catwalk,
/obj/item/stack/sheet/glass,
/turf/open/space,
-/area/space)
-"cgt" = (
+/area/solar/asteroid/aft)
+"cfH" = (
/obj/structure/rack,
/obj/item/weapon/pickaxe,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cgu" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cfI" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -63561,50 +60604,40 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cgv" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cfJ" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cgw" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cfK" = (
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cgx" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cfL" = (
/obj/structure/rack,
/obj/item/weapon/pickaxe/mini,
/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cgy" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cfM" = (
/obj/structure/girder,
/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cgz" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cfN" = (
/turf/open/floor/plasteel/red/side{
icon_state = "red";
dir = 10;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cgA" = (
+"cfO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cgB" = (
+"cfP" = (
/turf/open/floor/plasteel/red/corner{
tag = "icon-redcorner (WEST)";
icon_state = "redcorner";
@@ -63612,7 +60645,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cgC" = (
+"cfQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -63620,7 +60653,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cgD" = (
+"cfR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -63628,7 +60661,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cgE" = (
+"cfS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -63636,14 +60669,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cgF" = (
+"cfT" = (
/turf/open/floor/plasteel/red/side{
icon_state = "red";
dir = 6;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cgG" = (
+"cfU" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 8;
name = "Security Escape Airlock";
@@ -63653,19 +60686,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cgH" = (
+"cfV" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cgI" = (
+"cfW" = (
/obj/machinery/door/airlock/shuttle{
name = "Emergency Shuttle Airlock";
req_access_txt = "2"
},
/turf/open/floor/plating,
/area/shuttle/escape)
-"cgJ" = (
+"cfX" = (
/obj/structure/chair{
dir = 1
},
@@ -63676,7 +60709,7 @@
floor_tile = /obj/item/stack/tile/plasteel
},
/area/shuttle/escape)
-"cgK" = (
+"cfY" = (
/obj/structure/chair{
dir = 1
},
@@ -63687,7 +60720,7 @@
floor_tile = /obj/item/stack/tile/plasteel
},
/area/shuttle/escape)
-"cgL" = (
+"cfZ" = (
/obj/structure/table,
/obj/item/weapon/storage/box/teargas,
/obj/item/weapon/storage/box/zipties,
@@ -63698,7 +60731,7 @@
floor_tile = /obj/item/stack/tile/plasteel
},
/area/shuttle/escape)
-"cgM" = (
+"cga" = (
/obj/machinery/light/small{
dir = 4
},
@@ -63708,7 +60741,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cgN" = (
+"cgb" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -63724,7 +60757,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cgO" = (
+"cgc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -63740,7 +60773,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cgP" = (
+"cgd" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -63749,7 +60782,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/auxillary_base)
-"cgQ" = (
+"cge" = (
/obj/docking_port/mobile/auxillary_base{
dheight = 4;
dir = 4;
@@ -63765,7 +60798,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/auxillary_base)
-"cgR" = (
+"cgf" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -63774,7 +60807,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/auxillary_base)
-"cgS" = (
+"cgg" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -63783,17 +60816,15 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cgT" = (
+"cgh" = (
/obj/structure/table,
/obj/item/weapon/storage/bag/ore,
/obj/item/weapon/storage/bag/ore,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/miningdock{
- name = "Abandoned Mining Storage"
- })
-"cgU" = (
+/area/quartermaster/miningdock/abandoned)
+"cgi" = (
/obj/structure/table,
/obj/item/clothing/glasses/meson,
/obj/item/weapon/paper{
@@ -63803,33 +60834,25 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/miningdock{
- name = "Abandoned Mining Storage"
- })
-"cgV" = (
+/area/quartermaster/miningdock/abandoned)
+"cgj" = (
/obj/item/weapon/storage/toolbox/mechanical,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/miningdock{
- name = "Abandoned Mining Storage"
- })
-"cgW" = (
+/area/quartermaster/miningdock/abandoned)
+"cgk" = (
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/miningdock{
- name = "Abandoned Mining Storage"
- })
-"cgX" = (
+/area/quartermaster/miningdock/abandoned)
+"cgl" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/miningdock{
- name = "Abandoned Mining Storage"
- })
-"cgY" = (
+/area/quartermaster/miningdock/abandoned)
+"cgm" = (
/obj/structure/sign/mining{
pixel_y = 32
},
@@ -63837,18 +60860,14 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/miningdock{
- name = "Abandoned Mining Storage"
- })
-"cgZ" = (
+/area/quartermaster/miningdock/abandoned)
+"cgn" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cha" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cgo" = (
/obj/machinery/power/apc{
dir = 8;
name = "Arrival Hallway Maintenance APC";
@@ -63867,20 +60886,16 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"chb" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cgp" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"chc" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cgq" = (
/obj/machinery/computer/station_alert,
/obj/structure/cable/orange{
d2 = 2;
@@ -63889,10 +60904,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"chd" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cgr" = (
/obj/machinery/camera{
c_tag = "Arrivals SMES";
dir = 6;
@@ -63901,48 +60914,38 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"che" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cgs" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"chf" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cgt" = (
/obj/structure/closet/firecloset/full,
/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"chg" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cgu" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"chh" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cgv" = (
/obj/structure/grille,
/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"chi" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cgw" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"chj" = (
+"cgx" = (
/obj/machinery/door/airlock/glass_security{
name = "Holding Area";
req_access_txt = "2"
@@ -63952,10 +60955,10 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"chk" = (
+"cgy" = (
/turf/closed/wall/mineral/titanium/nodiagonal,
/area/shuttle/escape)
-"chl" = (
+"cgz" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 1
},
@@ -63964,7 +60967,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"chm" = (
+"cgA" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -63973,7 +60976,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"chn" = (
+"cgB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -63984,7 +60987,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cho" = (
+"cgC" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -63994,7 +60997,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"chp" = (
+"cgD" = (
/obj/machinery/light/small{
dir = 8
},
@@ -64009,7 +61012,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"chq" = (
+"cgE" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/subspace/ansible,
/obj/item/weapon/stock_parts/subspace/ansible,
@@ -64022,7 +61025,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"chr" = (
+"cgF" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/subspace/amplifier,
/obj/item/weapon/stock_parts/subspace/amplifier,
@@ -64031,7 +61034,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"chs" = (
+"cgG" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/subspace/analyzer,
/obj/item/weapon/stock_parts/subspace/analyzer,
@@ -64043,7 +61046,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cht" = (
+"cgH" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -64054,7 +61057,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"chu" = (
+"cgI" = (
/obj/structure/table,
/obj/machinery/cell_charger{
pixel_y = 5
@@ -64067,7 +61070,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"chv" = (
+"cgJ" = (
/obj/structure/table,
/obj/item/stack/cable_coil{
pixel_x = -3;
@@ -64082,7 +61085,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"chw" = (
+"cgK" = (
/obj/structure/table,
/obj/item/weapon/screwdriver{
pixel_y = 16
@@ -64092,7 +61095,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"chx" = (
+"cgL" = (
/obj/structure/table,
/obj/item/weapon/aiModule/reset,
/obj/machinery/light{
@@ -64103,7 +61106,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"chy" = (
+"cgM" = (
/obj/machinery/ai_status_display{
pixel_y = 32
},
@@ -64111,13 +61114,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"chz" = (
+"cgN" = (
/obj/machinery/computer/upload/borg,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"chA" = (
+"cgO" = (
/obj/machinery/porta_turret/ai{
dir = 4
},
@@ -64125,13 +61128,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"chB" = (
+"cgP" = (
/obj/machinery/computer/upload/ai,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"chC" = (
+"cgQ" = (
/obj/structure/table,
/obj/machinery/light{
dir = 4
@@ -64140,7 +61143,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"chD" = (
+"cgR" = (
/obj/structure/closet/crate{
icon_state = "crateopen";
opened = 1
@@ -64154,19 +61157,15 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/miningdock{
- name = "Abandoned Mining Storage"
- })
-"chE" = (
+/area/quartermaster/miningdock/abandoned)
+"cgS" = (
/obj/machinery/light/small,
/obj/structure/table,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/quartermaster/miningdock{
- name = "Abandoned Mining Storage"
- })
-"chF" = (
+/area/quartermaster/miningdock/abandoned)
+"cgT" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -64175,10 +61174,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"chG" = (
+/area/maintenance/asteroid/aft/science)
+"cgU" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -64187,10 +61184,8 @@
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"chH" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cgV" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -64209,10 +61204,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"chI" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cgW" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -64221,10 +61214,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"chJ" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cgX" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -64233,17 +61224,13 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"chK" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cgY" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"chL" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cgZ" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -64253,10 +61240,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"chM" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cha" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -64265,10 +61250,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"chN" = (
+/area/maintenance/asteroid/aft/arrivals)
+"chb" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -64278,10 +61261,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"chO" = (
+/area/maintenance/asteroid/aft/science)
+"chc" = (
/obj/machinery/power/apc{
dir = 2;
name = "Auxillary Construction APC";
@@ -64305,7 +61286,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"chP" = (
+"chd" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -64315,16 +61296,12 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"chQ" = (
+/area/maintenance/asteroid/aft/arrivals)
+"che" = (
/obj/structure/closet,
/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"chR" = (
+/area/maintenance/asteroid/aft/arrivals)
+"chf" = (
/obj/machinery/airalarm{
dir = 4;
pixel_x = -23;
@@ -64337,7 +61314,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"chS" = (
+"chg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/escape{
tag = "icon-escape (NORTH)";
@@ -64346,7 +61323,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"chT" = (
+"chh" = (
/turf/open/floor/plasteel/escape/corner{
tag = "icon-escapecorner (NORTH)";
icon_state = "escapecorner";
@@ -64354,13 +61331,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"chU" = (
+"chi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"chV" = (
+"chj" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 4
},
@@ -64368,7 +61345,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"chW" = (
+"chk" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -64376,7 +61353,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"chX" = (
+"chl" = (
/obj/machinery/door/airlock/shuttle{
name = "Emergency Shuttle Airlock"
},
@@ -64400,7 +61377,7 @@
},
/turf/open/floor/plating,
/area/shuttle/escape)
-"chY" = (
+"chm" = (
/obj/structure/table,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
@@ -64409,7 +61386,7 @@
},
/turf/open/floor/plasteel/neutral,
/area/shuttle/escape)
-"chZ" = (
+"chn" = (
/obj/structure/tank_dispenser/oxygen,
/obj/machinery/light/small{
dir = 8
@@ -64418,7 +61395,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cia" = (
+"cho" = (
/obj/structure/rack,
/obj/item/clothing/suit/space/fragile,
/obj/item/clothing/head/helmet/space/fragile,
@@ -64426,7 +61403,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cib" = (
+"chp" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
@@ -64439,13 +61416,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cic" = (
+"chq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cid" = (
+"chr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/camera{
c_tag = "Research Asteroid Hallway 1";
@@ -64459,7 +61436,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cie" = (
+"chs" = (
/obj/machinery/light{
dir = 4
},
@@ -64470,7 +61447,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cif" = (
+"cht" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -64485,7 +61462,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cig" = (
+"chu" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/subspace/filter,
/obj/item/weapon/stock_parts/subspace/filter,
@@ -64502,12 +61479,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cih" = (
+"chv" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cii" = (
+"chw" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -64519,7 +61496,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cij" = (
+"chx" = (
/obj/structure/table,
/obj/item/weapon/electronics/apc,
/obj/item/weapon/electronics/airlock,
@@ -64530,7 +61507,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cik" = (
+"chy" = (
/obj/structure/table,
/obj/item/weapon/aiModule/supplied/quarantine,
/obj/machinery/camera/motion{
@@ -64540,17 +61517,17 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cil" = (
+"chz" = (
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cim" = (
+"chA" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cin" = (
+"chB" = (
/obj/structure/table,
/obj/item/weapon/aiModule/supplied/freeform,
/obj/structure/sign/kiddieplaque{
@@ -64563,7 +61540,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cio" = (
+"chC" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -64572,19 +61549,15 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cip" = (
+/area/maintenance/asteroid/aft/arrivals)
+"chD" = (
/obj/machinery/power/smes/engineering,
/obj/structure/cable/orange,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"ciq" = (
+/area/maintenance/asteroid/aft/arrivals)
+"chE" = (
/obj/machinery/power/terminal{
tag = "icon-term (WEST)";
icon_state = "term";
@@ -64600,10 +61573,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cir" = (
+/area/maintenance/asteroid/aft/arrivals)
+"chF" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -64613,10 +61584,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cis" = (
+/area/maintenance/asteroid/aft/arrivals)
+"chG" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -64626,10 +61595,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cit" = (
+/area/maintenance/asteroid/aft/arrivals)
+"chH" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -64637,15 +61604,13 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"ciu" = (
+/area/maintenance/asteroid/aft/science)
+"chI" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"civ" = (
+"chJ" = (
/obj/structure/chair{
dir = 4
},
@@ -64656,7 +61621,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"ciw" = (
+"chK" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -64665,25 +61630,25 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cix" = (
+"chL" = (
/turf/open/floor/plasteel/neutral/side{
tag = "icon-neutral (NORTH)";
icon_state = "neutral";
dir = 1
},
/area/shuttle/escape)
-"ciy" = (
+"chM" = (
/obj/structure/table,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ciz" = (
+"chN" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ciA" = (
+"chO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
@@ -64692,7 +61657,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ciB" = (
+"chP" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
@@ -64710,7 +61675,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ciC" = (
+"chQ" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -64726,7 +61691,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ciD" = (
+"chR" = (
/obj/structure/table,
/obj/item/weapon/wrench,
/obj/item/clothing/glasses/meson,
@@ -64737,7 +61702,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ciE" = (
+"chS" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/subspace/transmitter,
/obj/item/weapon/stock_parts/subspace/transmitter,
@@ -64748,7 +61713,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"ciF" = (
+"chT" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/micro_laser,
/obj/item/weapon/stock_parts/manipulator,
@@ -64769,7 +61734,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"ciG" = (
+"chU" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -64779,7 +61744,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"ciH" = (
+"chV" = (
/obj/structure/table,
/obj/item/device/aicard,
/obj/item/weapon/aiModule/reset,
@@ -64787,7 +61752,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"ciI" = (
+"chW" = (
/obj/structure/table,
/obj/item/device/flashlight{
pixel_x = 1;
@@ -64803,7 +61768,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"ciJ" = (
+"chX" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -64819,7 +61784,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"ciK" = (
+"chY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -64827,13 +61792,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"ciL" = (
+"chZ" = (
/obj/structure/table,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"ciM" = (
+"cia" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -64841,7 +61806,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"ciN" = (
+"cib" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -64851,7 +61816,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"ciO" = (
+"cic" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -64862,10 +61827,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"ciP" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cid" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -64875,10 +61838,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"ciQ" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cie" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -64887,10 +61848,8 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"ciR" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cif" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -64899,10 +61858,8 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"ciS" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cig" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -64911,10 +61868,8 @@
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"ciT" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cih" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -64923,10 +61878,8 @@
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"ciU" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cii" = (
/obj/machinery/door/airlock/maintenance{
name = "Docking Asteroid SMES Access";
req_access_txt = "10;11;12"
@@ -64939,10 +61892,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"ciV" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cij" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -64953,46 +61904,42 @@
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"ciW" = (
+/area/hallway/primary/starboard/aft)
+"cik" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"ciX" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cil" = (
/obj/structure/filingcabinet,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"ciY" = (
+"cim" = (
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"ciZ" = (
+"cin" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cja" = (
+"cio" = (
/obj/structure/closet,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cjb" = (
+"cip" = (
/obj/structure/closet/crate,
/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cjc" = (
+/area/maintenance/asteroid/aft/science)
+"ciq" = (
/obj/structure/chair{
dir = 4
},
@@ -65007,7 +61954,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cjd" = (
+"cir" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -65015,25 +61962,25 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cje" = (
+"cis" = (
/obj/structure/barricade/wooden,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cjf" = (
+"cit" = (
/obj/item/clothing/head/cone,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cjg" = (
+"ciu" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cjh" = (
+"civ" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 27;
pixel_y = 0
@@ -65045,7 +61992,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cji" = (
+"ciw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -65066,7 +62013,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cjj" = (
+"cix" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -65074,7 +62021,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cjk" = (
+"ciy" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
icon_state = "connector_map";
dir = 8
@@ -65086,7 +62033,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cjl" = (
+"ciz" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
@@ -65094,13 +62041,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/auxillary_base)
-"cjm" = (
+"ciA" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/auxillary_base)
-"cjn" = (
+"ciB" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/effect/turf_decal/stripes/line{
dir = 6
@@ -65109,7 +62056,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/auxillary_base)
-"cjo" = (
+"ciC" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -65126,7 +62073,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cjp" = (
+"ciD" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -65146,7 +62093,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cjq" = (
+"ciE" = (
/obj/machinery/porta_turret/ai{
dir = 4
},
@@ -65154,39 +62101,35 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cjr" = (
+"ciF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cjs" = (
+"ciG" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cjt" = (
+"ciH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cju" = (
+"ciI" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Research Quantum Pad"
- })
-"cjv" = (
+/area/teleporter/quantum/research)
+"ciJ" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Docking Quantum Pad"
- })
-"cjw" = (
+/area/teleporter/quantum/docking)
+"ciK" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -65194,20 +62137,16 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Docking Quantum Pad"
- })
-"cjx" = (
+/area/teleporter/quantum/docking)
+"ciL" = (
/obj/machinery/light/small{
dir = 8
},
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cjy" = (
+/area/maintenance/asteroid/aft/arrivals)
+"ciM" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -65220,10 +62159,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cjz" = (
+/area/maintenance/asteroid/aft/arrivals)
+"ciN" = (
/obj/machinery/light/small{
dir = 1
},
@@ -65235,10 +62172,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cjA" = (
+/area/maintenance/asteroid/aft/arrivals)
+"ciO" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -65256,8 +62191,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cjB" = (
+/area/hallway/primary/starboard/aft)
+"ciP" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -65266,8 +62201,8 @@
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cjC" = (
+/area/hallway/primary/starboard/aft)
+"ciQ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -65277,10 +62212,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cjD" = (
+/area/maintenance/asteroid/aft/arrivals)
+"ciR" = (
/obj/machinery/light/small{
dir = 8
},
@@ -65288,7 +62221,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cjE" = (
+"ciS" = (
/obj/structure/chair/office/dark{
dir = 4
},
@@ -65296,13 +62229,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cjF" = (
+"ciT" = (
/obj/structure/table/wood,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cjG" = (
+"ciU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -65310,7 +62243,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cjH" = (
+"ciV" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -65320,7 +62253,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cjI" = (
+"ciW" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -65334,10 +62267,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cjJ" = (
+/area/maintenance/asteroid/aft/arrivals)
+"ciX" = (
/obj/machinery/power/apc{
dir = 4;
name = "Departures APC";
@@ -65357,16 +62288,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cjK" = (
+"ciY" = (
/obj/structure/grille/broken,
/obj/item/clothing/head/cone,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cjL" = (
+/area/maintenance/asteroid/port/west)
+"ciZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/light/small{
dir = 4
@@ -65375,13 +62304,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cjM" = (
-/obj/machinery/door/firedoor,
+"cja" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/obj/effect/turf_decal/stripes/line,
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
icon_state = "neutralcorner";
@@ -65389,22 +62318,22 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cjN" = (
-/obj/machinery/door/firedoor,
+"cjb" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/obj/effect/turf_decal/stripes/line,
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cjO" = (
-/obj/machinery/door/firedoor,
+"cjc" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/obj/effect/turf_decal/stripes/line,
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
icon_state = "neutralcorner";
@@ -65412,7 +62341,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cjP" = (
+"cjd" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -65425,7 +62354,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cjQ" = (
+"cje" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -65433,7 +62362,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cjR" = (
+"cjf" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
icon_state = "connector_map";
dir = 8
@@ -65449,15 +62378,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cjS" = (
+"cjg" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/mining_construction)
-"cjT" = (
+/area/construction/mining/aux_base)
+"cjh" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 1;
name = "Construction Zone";
@@ -65468,8 +62396,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/mining_construction)
-"cjU" = (
+/area/construction/mining/aux_base)
+"cji" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -65493,13 +62421,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cjV" = (
+"cjj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cjW" = (
+"cjk" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -65518,7 +62446,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cjX" = (
+"cjl" = (
/obj/structure/table,
/obj/item/weapon/aiModule/core/full/asimov,
/obj/item/weapon/aiModule/core/freeformcore,
@@ -65542,7 +62470,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cjY" = (
+"cjm" = (
/obj/structure/table,
/obj/item/weapon/aiModule/supplied/oxygen,
/obj/item/weapon/aiModule/zeroth/oneHuman,
@@ -65567,17 +62495,15 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cjZ" = (
+"cjn" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Research Quantum Pad"
- })
-"cka" = (
+/area/teleporter/quantum/research)
+"cjo" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -65593,10 +62519,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Research Quantum Pad"
- })
-"ckb" = (
+/area/teleporter/quantum/research)
+"cjp" = (
/obj/machinery/power/apc{
dir = 1;
name = "Research Quantum Pad APC";
@@ -65613,30 +62537,22 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Research Quantum Pad"
- })
-"ckc" = (
+/area/teleporter/quantum/research)
+"cjq" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Research Quantum Pad"
- })
-"ckd" = (
+/area/teleporter/quantum/research)
+"cjr" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Docking Quantum Pad"
- })
-"cke" = (
+/area/teleporter/quantum/docking)
+"cjs" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
@@ -65652,10 +62568,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Docking Quantum Pad"
- })
-"ckf" = (
+/area/teleporter/quantum/docking)
+"cjt" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -65671,10 +62585,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Docking Quantum Pad"
- })
-"ckg" = (
+/area/teleporter/quantum/docking)
+"cju" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
},
@@ -65684,10 +62596,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Docking Quantum Pad"
- })
-"ckh" = (
+/area/teleporter/quantum/docking)
+"cjv" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -65696,10 +62606,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cki" = (
+/area/maintenance/asteroid/aft/science)
+"cjw" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -65709,10 +62617,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"ckj" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cjx" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -65726,10 +62632,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"ckk" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cjy" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -65738,10 +62642,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"ckl" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cjz" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -65751,10 +62653,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"ckm" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cjA" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -65765,11 +62665,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"ckn" = (
-/obj/machinery/door/firedoor,
+/area/maintenance/asteroid/aft/arrivals)
+"cjB" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -65781,14 +62678,15 @@
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cko" = (
+/area/hallway/primary/starboard/aft)
+"cjC" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line,
@@ -65799,8 +62697,8 @@
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"ckp" = (
+/area/hallway/primary/starboard/aft)
+"cjD" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -65811,31 +62709,29 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"ckq" = (
+"cjE" = (
/obj/effect/landmark/blobstart,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"ckr" = (
+"cjF" = (
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless;
icon_state = "wood-broken"
},
/area/security/vacantoffice)
-"cks" = (
+"cjG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"ckt" = (
+"cjH" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cku" = (
+/area/maintenance/asteroid/aft/science)
+"cjI" = (
/obj/structure/chair{
dir = 4
},
@@ -65857,13 +62753,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"ckv" = (
+"cjJ" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ckw" = (
+"cjK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -65874,7 +62770,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ckx" = (
+"cjL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -65886,7 +62782,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cky" = (
+"cjM" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -65897,7 +62793,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ckz" = (
+"cjN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -65913,7 +62809,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ckA" = (
+"cjO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -65932,7 +62828,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ckB" = (
+"cjP" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
name = "Mix Output";
@@ -65950,14 +62846,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ckC" = (
+"cjQ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ckD" = (
+"cjR" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
icon_state = "connector_map";
dir = 8
@@ -65970,7 +62866,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ckE" = (
+"cjS" = (
/obj/structure/closet/toolcloset,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -65978,16 +62874,16 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/mining_construction)
-"ckF" = (
+/area/construction/mining/aux_base)
+"cjT" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/mining_construction)
-"ckG" = (
+/area/construction/mining/aux_base)
+"cjU" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -65999,8 +62895,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/mining_construction)
-"ckH" = (
+/area/construction/mining/aux_base)
+"cjV" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -66012,8 +62908,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/mining_construction)
-"ckI" = (
+/area/construction/mining/aux_base)
+"cjW" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -66032,8 +62928,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/mining_construction)
-"ckJ" = (
+/area/construction/mining/aux_base)
+"cjX" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -66046,8 +62942,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/mining_construction)
-"ckK" = (
+/area/construction/mining/aux_base)
+"cjY" = (
/obj/structure/rack{
dir = 4
},
@@ -66077,8 +62973,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/mining_construction)
-"ckL" = (
+/area/construction/mining/aux_base)
+"cjZ" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -66096,7 +62992,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"ckM" = (
+"cka" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -66105,7 +63001,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"ckN" = (
+"ckb" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -66125,13 +63021,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"ckO" = (
+"ckc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"ckP" = (
+"ckd" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -66141,7 +63037,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"ckQ" = (
+"cke" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/power/apc{
dir = 4;
@@ -66157,7 +63053,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"ckR" = (
+"ckf" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -66177,18 +63073,14 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Research Quantum Pad"
- })
-"ckS" = (
+/area/teleporter/quantum/research)
+"ckg" = (
/obj/machinery/quantumpad,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Research Quantum Pad"
- })
-"ckT" = (
+/area/teleporter/quantum/research)
+"ckh" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -66200,10 +63092,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Research Quantum Pad"
- })
-"ckU" = (
+/area/teleporter/quantum/research)
+"cki" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -66218,18 +63108,14 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Docking Quantum Pad"
- })
-"ckV" = (
+/area/teleporter/quantum/docking)
+"ckj" = (
/obj/machinery/quantumpad,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Docking Quantum Pad"
- })
-"ckW" = (
+/area/teleporter/quantum/docking)
+"ckk" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -66248,17 +63134,13 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Docking Quantum Pad"
- })
-"ckX" = (
+/area/teleporter/quantum/docking)
+"ckl" = (
/obj/structure/girder,
/obj/structure/grille,
/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"ckY" = (
+/area/maintenance/asteroid/aft/arrivals)
+"ckm" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -66272,10 +63154,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"ckZ" = (
+/area/maintenance/asteroid/aft/arrivals)
+"ckn" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -66284,10 +63164,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cla" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cko" = (
/obj/machinery/power/apc{
dir = 2;
name = "Teleporter APC";
@@ -66311,7 +63189,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"clb" = (
+"ckp" = (
/obj/machinery/light/small{
dir = 1
},
@@ -66324,10 +63202,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"clc" = (
+/area/maintenance/asteroid/aft/arrivals)
+"ckq" = (
/obj/machinery/door/airlock/maintenance{
name = "Aft Asteroid Maintenance";
req_access_txt = "12"
@@ -66341,10 +63217,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cld" = (
+/area/maintenance/asteroid/aft/arrivals)
+"ckr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
@@ -66357,8 +63231,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cle" = (
+/area/hallway/primary/starboard/aft)
+"cks" = (
/obj/machinery/door/airlock/maintenance{
name = "Aft Asteroid Maintenance";
req_access_txt = "12"
@@ -66366,20 +63240,16 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"clf" = (
+/area/maintenance/asteroid/aft/arrivals)
+"ckt" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"clg" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cku" = (
/obj/machinery/light/small{
dir = 4
},
@@ -66391,22 +63261,20 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"clh" = (
+/area/maintenance/asteroid/aft/arrivals)
+"ckv" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cli" = (
+"ckw" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"clj" = (
+"ckx" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -66420,7 +63288,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"clk" = (
+"cky" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -66434,7 +63302,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cll" = (
+"ckz" = (
/obj/structure/closet/toolcloset,
/turf/open/floor/plasteel/brown/corner{
tag = "icon-browncorner (WEST)";
@@ -66442,8 +63310,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/mining_construction)
-"clm" = (
+/area/construction/mining/aux_base)
+"ckA" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -66453,16 +63321,16 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/mining_construction)
-"cln" = (
+/area/construction/mining/aux_base)
+"ckB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/mining_construction)
-"clo" = (
+/area/construction/mining/aux_base)
+"ckC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -66474,24 +63342,24 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/mining_construction)
-"clp" = (
+/area/construction/mining/aux_base)
+"ckD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/mining_construction)
-"clq" = (
+/area/construction/mining/aux_base)
+"ckE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/mining_construction)
-"clr" = (
+/area/construction/mining/aux_base)
+"ckF" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -66500,13 +63368,13 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/mining_construction)
-"cls" = (
+/area/construction/mining/aux_base)
+"ckG" = (
/turf/open/floor/plasteel/brown/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/mining_construction)
-"clt" = (
+/area/construction/mining/aux_base)
+"ckH" = (
/obj/structure/rack,
/obj/item/weapon/circuitboard/machine/telecomms/processor,
/obj/item/weapon/circuitboard/machine/telecomms/receiver,
@@ -66520,13 +63388,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"clu" = (
+"ckI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"clv" = (
+"ckJ" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -66547,11 +63415,11 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"clw" = (
+"ckK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai_upload)
-"clx" = (
+"ckL" = (
/obj/machinery/door/airlock/highsecurity{
icon_state = "door_closed";
locked = 0;
@@ -66567,11 +63435,11 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cly" = (
+"ckM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai_upload)
-"clz" = (
+"ckN" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
@@ -66588,18 +63456,14 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Research Quantum Pad"
- })
-"clA" = (
+/area/teleporter/quantum/research)
+"ckO" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Research Quantum Pad"
- })
-"clB" = (
+/area/teleporter/quantum/research)
+"ckP" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -66619,10 +63483,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Research Quantum Pad"
- })
-"clC" = (
+/area/teleporter/quantum/research)
+"ckQ" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
@@ -66643,18 +63505,14 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Docking Quantum Pad"
- })
-"clD" = (
+/area/teleporter/quantum/docking)
+"ckR" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Docking Quantum Pad"
- })
-"clE" = (
+/area/teleporter/quantum/docking)
+"ckS" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
@@ -66673,15 +63531,13 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Docking Quantum Pad"
- })
-"clF" = (
+/area/teleporter/quantum/docking)
+"ckT" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"clG" = (
+"ckU" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -66693,10 +63549,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"clH" = (
+/area/maintenance/asteroid/aft/arrivals)
+"ckV" = (
/obj/machinery/door/airlock/maintenance{
name = "Aft Asteroid Maintenance";
req_access_txt = "12"
@@ -66709,10 +63563,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"clI" = (
+/area/maintenance/asteroid/aft/arrivals)
+"ckW" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -66725,8 +63577,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"clJ" = (
+/area/hallway/primary/starboard/aft)
+"ckX" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -66741,8 +63593,8 @@
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"clK" = (
+/area/hallway/primary/starboard/aft)
+"ckY" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -66754,21 +63606,19 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"clL" = (
+/area/maintenance/asteroid/aft/arrivals)
+"ckZ" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"clM" = (
+"cla" = (
/obj/machinery/door/airlock/shuttle{
name = "Emergency Shuttle Airlock"
},
/turf/open/floor/plating,
/area/shuttle/escape)
-"clN" = (
+"clb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/firealarm{
dir = 8;
@@ -66781,7 +63631,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"clO" = (
+"clc" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plasteel/brown{
tag = "icon-brown (SOUTHWEST)";
@@ -66789,20 +63639,20 @@
dir = 10;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/mining_construction)
-"clP" = (
+/area/construction/mining/aux_base)
+"cld" = (
/obj/machinery/light,
/turf/open/floor/plasteel/brown{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/mining_construction)
-"clQ" = (
+/area/construction/mining/aux_base)
+"cle" = (
/obj/structure/mining_shuttle_beacon,
/turf/open/floor/plasteel/brown{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/mining_construction)
-"clR" = (
+/area/construction/mining/aux_base)
+"clf" = (
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -66813,8 +63663,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/mining_construction)
-"clS" = (
+/area/construction/mining/aux_base)
+"clg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -66824,15 +63674,15 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/mining_construction)
-"clT" = (
+/area/construction/mining/aux_base)
+"clh" = (
/obj/structure/closet/crate/rcd,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/brown/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/mining_construction)
-"clU" = (
+/area/construction/mining/aux_base)
+"cli" = (
/obj/structure/table,
/obj/item/stack/sheet/metal/fifty,
/obj/item/stack/sheet/metal/fifty,
@@ -66842,8 +63692,8 @@
/turf/open/floor/plasteel/brown{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/mining_construction)
-"clV" = (
+/area/construction/mining/aux_base)
+"clj" = (
/obj/structure/table,
/obj/item/stack/sheet/plasteel/fifty,
/obj/item/stack/sheet/rglass{
@@ -66853,8 +63703,8 @@
/turf/open/floor/plasteel/brown{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/mining_construction)
-"clW" = (
+/area/construction/mining/aux_base)
+"clk" = (
/obj/structure/table,
/obj/item/device/assault_pod/mining,
/obj/item/weapon/storage/box/lights/mixed,
@@ -66864,8 +63714,8 @@
dir = 6;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/mining_construction)
-"clX" = (
+/area/construction/mining/aux_base)
+"cll" = (
/obj/machinery/vending/assist,
/obj/machinery/camera{
c_tag = "Tech Storage South";
@@ -66875,7 +63725,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"clY" = (
+"clm" = (
/obj/structure/table,
/obj/item/device/plant_analyzer,
/obj/item/weapon/stock_parts/cell/high/plus,
@@ -66885,7 +63735,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"clZ" = (
+"cln" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/turretid{
control_area = "AI Upload Chamber";
@@ -66899,7 +63749,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cma" = (
+"clo" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -66909,7 +63759,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cmb" = (
+"clp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/light/small{
dir = 4
@@ -66918,7 +63768,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cmc" = (
+"clq" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -66932,10 +63782,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/teleporter{
- name = "Research Quantum Pad"
- })
-"cmd" = (
+/area/teleporter/quantum/research)
+"clr" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -66945,10 +63793,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/teleporter{
- name = "Research Quantum Pad"
- })
-"cme" = (
+/area/teleporter/quantum/research)
+"cls" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -66958,68 +63804,54 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/teleporter{
- name = "Research Quantum Pad"
- })
-"cmf" = (
+/area/teleporter/quantum/research)
+"clt" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 4
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Research Quantum Pad"
- })
-"cmg" = (
+/area/teleporter/quantum/research)
+"clu" = (
/obj/machinery/light/small,
/obj/structure/fans/tiny,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Research Quantum Pad"
- })
-"cmh" = (
+/area/teleporter/quantum/research)
+"clv" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Research Quantum Pad"
- })
-"cmi" = (
+/area/teleporter/quantum/research)
+"clw" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 4
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Docking Quantum Pad"
- })
-"cmj" = (
+/area/teleporter/quantum/docking)
+"clx" = (
/obj/machinery/light/small,
/obj/structure/fans/tiny,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Docking Quantum Pad"
- })
-"cmk" = (
+/area/teleporter/quantum/docking)
+"cly" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Docking Quantum Pad"
- })
-"cml" = (
+/area/teleporter/quantum/docking)
+"clz" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -67030,10 +63862,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/teleporter{
- name = "Docking Quantum Pad"
- })
-"cmm" = (
+/area/teleporter/quantum/docking)
+"clA" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -67043,10 +63873,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/teleporter{
- name = "Docking Quantum Pad"
- })
-"cmn" = (
+/area/teleporter/quantum/docking)
+"clB" = (
/obj/structure/table,
/obj/item/device/multitool,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -67055,18 +63883,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/teleporter{
- name = "Docking Quantum Pad"
- })
-"cmo" = (
+/area/teleporter/quantum/docking)
+"clC" = (
/obj/effect/turf_decal/stripes/asteroid/line,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cmp" = (
+/area/maintenance/asteroid/aft/arrivals)
+"clD" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -67076,23 +63900,19 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cmq" = (
+/area/maintenance/asteroid/aft/arrivals)
+"clE" = (
/obj/machinery/light/small,
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cmr" = (
+/area/maintenance/asteroid/aft/arrivals)
+"clF" = (
/obj/machinery/computer/teleporter,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"cms" = (
+"clG" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -67105,7 +63925,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"cmt" = (
+"clH" = (
/obj/machinery/light{
dir = 1
},
@@ -67113,7 +63933,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"cmu" = (
+"clI" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
@@ -67126,19 +63946,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"cmv" = (
+"clJ" = (
/obj/effect/turf_decal/bot,
/obj/machinery/shieldwallgen,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"cmw" = (
+"clK" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/checkpoint2)
-"cmx" = (
+/area/security/checkpoint/checkpoint2)
+"clL" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -67152,8 +63972,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cmy" = (
+/area/hallway/primary/starboard/aft)
+"clM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/orange{
d1 = 1;
@@ -67163,15 +63983,15 @@
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cmz" = (
+/area/hallway/primary/starboard/aft)
+"clN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless;
icon_state = "wood-broken"
},
/area/security/vacantoffice)
-"cmA" = (
+"clO" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -67179,7 +63999,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cmB" = (
+"clP" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -67189,10 +64009,10 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cmC" = (
+"clQ" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/pod_2)
-"cmD" = (
+"clR" = (
/obj/structure/shuttle/engine/propulsion/burst{
dir = 4;
icon_state = "propulsion";
@@ -67200,7 +64020,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_2)
-"cmE" = (
+"clS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/light{
icon_state = "tube1";
@@ -67213,7 +64033,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cmF" = (
+"clT" = (
/obj/machinery/door/airlock/engineering{
cyclelinkeddir = 1;
name = "Auxillary Base Construction";
@@ -67229,20 +64049,20 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/mining_construction)
-"cmG" = (
+/area/construction/mining/aux_base)
+"clU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/mining_construction)
-"cmH" = (
+/area/construction/mining/aux_base)
+"clV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cmI" = (
+"clW" = (
/obj/machinery/door/airlock/engineering{
name = "Tech Storage";
req_access_txt = "23"
@@ -67257,42 +64077,42 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cmJ" = (
+"clX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cmK" = (
+"clY" = (
/obj/machinery/vending/snack/random,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cmL" = (
+"clZ" = (
/obj/machinery/vending/cola/random,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cmM" = (
+"cma" = (
/obj/machinery/vending/coffee,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cmN" = (
+"cmb" = (
/turf/closed/wall/r_wall,
/area/hallway/primary/aft)
-"cmO" = (
+"cmc" = (
/obj/structure/grille,
-/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cmP" = (
+"cmd" = (
/obj/machinery/door/airlock/glass{
name = "Research Quantum Pad"
},
@@ -67305,10 +64125,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/teleporter{
- name = "Research Quantum Pad"
- })
-"cmQ" = (
+/area/teleporter/quantum/research)
+"cme" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced,
/obj/structure/grille,
@@ -67316,26 +64134,22 @@
dir = 1
},
/turf/open/space,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"cmR" = (
+/area/hallway/secondary/bridges/sci_dock)
+"cmf" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cmS" = (
+"cmg" = (
/obj/structure/grille,
-/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Docking Quantum Pad"
- })
-"cmT" = (
+/area/teleporter/quantum/docking)
+"cmh" = (
/obj/machinery/door/airlock/glass{
name = "Docking Quantum Pad"
},
@@ -67348,32 +64162,17 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/teleporter{
- name = "Docking Quantum Pad"
- })
-"cmU" = (
+/area/teleporter/quantum/docking)
+"cmi" = (
/obj/structure/grille,
-/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Docking Quantum Pad"
- })
-"cmV" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Aft Asteroid Maintenance";
- req_access_txt = "12"
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cmW" = (
+/area/teleporter/quantum/docking)
+"cmj" = (
/obj/machinery/door/airlock/maintenance{
name = "Aft Asteroid Maintenance";
req_access_txt = "12"
@@ -67383,19 +64182,17 @@
d2 = 2;
icon_state = "1-2"
},
-/turf/closed/wall{
+/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cmX" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cmk" = (
/obj/machinery/teleport/station,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"cmY" = (
+"cml" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -67403,18 +64200,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"cmZ" = (
+"cmm" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"cna" = (
+"cmn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"cnb" = (
+"cmo" = (
/obj/structure/closet/secure_closet/security,
/turf/open/floor/plasteel/red/side{
tag = "icon-red (NORTHWEST)";
@@ -67422,15 +64219,15 @@
dir = 9;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/checkpoint2)
-"cnc" = (
+/area/security/checkpoint/checkpoint2)
+"cmp" = (
/turf/open/floor/plasteel/red/side{
icon_state = "red";
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/checkpoint2)
-"cnd" = (
+/area/security/checkpoint/checkpoint2)
+"cmq" = (
/obj/machinery/computer/security,
/obj/machinery/light{
dir = 1
@@ -67440,8 +64237,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/checkpoint2)
-"cne" = (
+/area/security/checkpoint/checkpoint2)
+"cmr" = (
/obj/machinery/computer/card,
/obj/machinery/camera{
c_tag = "Docking Security Checkpoint";
@@ -67458,8 +64255,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/checkpoint2)
-"cnf" = (
+/area/security/checkpoint/checkpoint2)
+"cms" = (
/obj/machinery/computer/secure_data,
/obj/machinery/newscaster/security_unit{
pixel_y = 32
@@ -67469,8 +64266,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/checkpoint2)
-"cng" = (
+/area/security/checkpoint/checkpoint2)
+"cmt" = (
/obj/structure/reagent_dispensers/peppertank{
pixel_y = 32
},
@@ -67485,8 +64282,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/checkpoint2)
-"cnh" = (
+/area/security/checkpoint/checkpoint2)
+"cmu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -67501,8 +64298,8 @@
dir = 5;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/checkpoint2)
-"cni" = (
+/area/security/checkpoint/checkpoint2)
+"cmv" = (
/obj/machinery/door/airlock/security{
name = "Security Checkpoint";
req_access = null;
@@ -67514,8 +64311,8 @@
/turf/open/floor/plasteel/red{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/checkpoint2)
-"cnj" = (
+/area/security/checkpoint/checkpoint2)
+"cmw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -67526,16 +64323,16 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cnk" = (
+/area/hallway/primary/starboard/aft)
+"cmx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cnl" = (
+/area/hallway/primary/starboard/aft)
+"cmy" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -67547,14 +64344,14 @@
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cnm" = (
+/area/hallway/primary/starboard/aft)
+"cmz" = (
/obj/structure/table_frame/wood,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cnn" = (
+"cmA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/table_frame/wood,
/turf/open/floor/wood{
@@ -67562,7 +64359,7 @@
icon_state = "wood-broken"
},
/area/security/vacantoffice)
-"cno" = (
+"cmB" = (
/obj/docking_port/stationary/random{
dir = 8;
id = "pod_lavaland2";
@@ -67570,14 +64367,14 @@
},
/turf/open/space,
/area/space)
-"cnp" = (
+"cmC" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/pod_2)
-"cnq" = (
+"cmD" = (
/obj/machinery/computer/shuttle/pod{
pixel_x = 0;
pixel_y = -32;
@@ -67592,7 +64389,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_2)
-"cnr" = (
+"cmE" = (
/obj/item/weapon/storage/pod{
pixel_x = 6;
pixel_y = -28
@@ -67609,7 +64406,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_2)
-"cns" = (
+"cmF" = (
/obj/machinery/door/airlock/titanium{
name = "Escape Pod Airlock"
},
@@ -67621,7 +64418,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_2)
-"cnt" = (
+"cmG" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 4;
name = "Research Escape Pod"
@@ -67630,7 +64427,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnu" = (
+"cmH" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8;
name = "Research Escape Pod"
@@ -67639,7 +64436,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnv" = (
+"cmI" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -67666,7 +64463,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnw" = (
+"cmJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -67683,7 +64480,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnx" = (
+"cmK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -67703,7 +64500,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cny" = (
+"cmL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -67723,7 +64520,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnz" = (
+"cmM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -67733,13 +64530,13 @@
icon_state = "4-8";
pixel_x = 0
},
-/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
icon_state = "neutralcorner";
@@ -67747,7 +64544,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnA" = (
+"cmN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -67769,7 +64566,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnB" = (
+"cmO" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -67786,7 +64583,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnC" = (
+"cmP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -67806,7 +64603,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnD" = (
+"cmQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -67829,7 +64626,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnE" = (
+"cmR" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -67844,7 +64641,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnF" = (
+"cmS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -67864,7 +64661,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnG" = (
+"cmT" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -67881,7 +64678,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnH" = (
+"cmU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -67902,7 +64699,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnI" = (
+"cmV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -67919,7 +64716,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnJ" = (
+"cmW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -67940,7 +64737,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnK" = (
+"cmX" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/cable{
d1 = 4;
@@ -67954,7 +64751,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnL" = (
+"cmY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -67973,7 +64770,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnM" = (
+"cmZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -67992,7 +64789,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnN" = (
+"cna" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -68008,7 +64805,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnO" = (
+"cnb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -68029,7 +64826,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnP" = (
+"cnc" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -68050,7 +64847,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnQ" = (
+"cnd" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -68064,7 +64861,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnR" = (
+"cne" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -68083,7 +64880,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnS" = (
+"cnf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -68102,7 +64899,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnT" = (
+"cng" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -68121,8 +64918,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnU" = (
-/obj/machinery/door/firedoor,
+"cnh" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -68134,6 +64930,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
icon_state = "neutralcorner";
@@ -68141,7 +64938,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnV" = (
+"cni" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -68153,7 +64950,7 @@
heat_capacity = 1e+006
},
/area/hallway/primary/aft)
-"cnW" = (
+"cnj" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -68170,7 +64967,7 @@
heat_capacity = 1e+006
},
/area/hallway/primary/aft)
-"cnX" = (
+"cnk" = (
/obj/structure/sign/directions/evac{
dir = 4;
icon_state = "direction_evac";
@@ -68191,7 +64988,7 @@
heat_capacity = 1e+006
},
/area/hallway/primary/aft)
-"cnY" = (
+"cnl" = (
/obj/structure/sign/map/left/ceres{
pixel_y = 32
},
@@ -68202,7 +64999,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnZ" = (
+"cnm" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
@@ -68211,7 +65008,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"coa" = (
+"cnn" = (
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
icon_state = "neutralcorner";
@@ -68219,7 +65016,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cob" = (
+"cno" = (
/obj/machinery/light{
dir = 1
},
@@ -68230,7 +65027,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"coc" = (
+"cnp" = (
/obj/structure/sign/directions/science{
dir = 8;
icon_state = "direction_sci";
@@ -68250,7 +65047,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cod" = (
+"cnq" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -68260,7 +65057,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"coe" = (
+"cnr" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -68273,8 +65070,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cof" = (
-/obj/machinery/door/firedoor,
+"cns" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -68296,7 +65092,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cog" = (
+"cnt" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -68312,7 +65108,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"coh" = (
+"cnu" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -68328,7 +65124,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"coi" = (
+"cnv" = (
/obj/machinery/light{
dir = 1
},
@@ -68350,7 +65146,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"coj" = (
+"cnw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -68366,7 +65162,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cok" = (
+"cnx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -68382,7 +65178,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"col" = (
+"cny" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -68396,32 +65192,32 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"com" = (
+"cnz" = (
/obj/machinery/teleport/hub,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"con" = (
+"cnA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"coo" = (
+"cnB" = (
/turf/open/floor/plasteel/red/side{
icon_state = "red";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/checkpoint2)
-"cop" = (
+/area/security/checkpoint/checkpoint2)
+"cnC" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/checkpoint2)
-"coq" = (
+/area/security/checkpoint/checkpoint2)
+"cnD" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -68433,8 +65229,8 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/checkpoint2)
-"cor" = (
+/area/security/checkpoint/checkpoint2)
+"cnE" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -68445,7 +65241,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cos" = (
+"cnF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -68453,7 +65249,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cot" = (
+"cnG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -68461,13 +65257,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cou" = (
+"cnH" = (
/obj/structure/table/wood,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cov" = (
+"cnI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/item/chair,
/turf/open/floor/wood{
@@ -68475,7 +65271,7 @@
icon_state = "wood-broken"
},
/area/security/vacantoffice)
-"cow" = (
+"cnJ" = (
/obj/machinery/light/small{
dir = 4
},
@@ -68483,7 +65279,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cox" = (
+"cnK" = (
/obj/machinery/light/small{
dir = 8
},
@@ -68495,10 +65291,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"coy" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cnL" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -68510,14 +65304,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"coz" = (
+"cnM" = (
/obj/structure/closet/emcloset,
/obj/machinery/light/small,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"coA" = (
+"cnN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/sign/pods{
pixel_x = -32
@@ -68529,7 +65323,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"coB" = (
+"cnO" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -68538,25 +65332,25 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"coC" = (
-/obj/machinery/door/firedoor,
+"cnP" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"coD" = (
+"cnQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"coE" = (
+"cnR" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -68566,19 +65360,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"coF" = (
+"cnS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"coG" = (
+"cnT" = (
/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"coH" = (
+"cnU" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -68588,13 +65382,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"coI" = (
+"cnV" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"coJ" = (
+"cnW" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
@@ -68602,20 +65396,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"coK" = (
+"cnX" = (
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"coL" = (
+"cnY" = (
/obj/effect/landmark/event_spawn,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"coM" = (
-/obj/machinery/door/firedoor,
+"cnZ" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -68626,7 +65419,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"coN" = (
+"coa" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -68634,7 +65427,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"coO" = (
+"cob" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -68644,12 +65437,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"coP" = (
+"coc" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"coQ" = (
+"cod" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/blue/corner{
tag = "icon-bluecorner (EAST)";
@@ -68658,7 +65451,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"coR" = (
+"coe" = (
/obj/structure/table,
/obj/item/weapon/hand_tele,
/obj/item/device/radio/beacon,
@@ -68672,7 +65465,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"coS" = (
+"cof" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
@@ -68680,7 +65473,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"coT" = (
+"cog" = (
/obj/item/weapon/twohanded/required/kirbyplants{
tag = "icon-plant-21";
icon_state = "plant-21"
@@ -68690,8 +65483,8 @@
dir = 10;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/checkpoint2)
-"coU" = (
+/area/security/checkpoint/checkpoint2)
+"coh" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -68700,8 +65493,8 @@
/turf/open/floor/plasteel/red/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/checkpoint2)
-"coV" = (
+/area/security/checkpoint/checkpoint2)
+"coi" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -68714,8 +65507,8 @@
/turf/open/floor/plasteel/red/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/checkpoint2)
-"coW" = (
+/area/security/checkpoint/checkpoint2)
+"coj" = (
/obj/structure/chair/office/light,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
@@ -68723,21 +65516,21 @@
/turf/open/floor/plasteel/red/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/checkpoint2)
-"coX" = (
+/area/security/checkpoint/checkpoint2)
+"cok" = (
/turf/open/floor/plasteel/red/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/checkpoint2)
-"coY" = (
+/area/security/checkpoint/checkpoint2)
+"col" = (
/obj/structure/table,
/obj/item/weapon/crowbar,
/obj/item/device/radio,
/turf/open/floor/plasteel/red/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/checkpoint2)
-"coZ" = (
+/area/security/checkpoint/checkpoint2)
+"com" = (
/obj/structure/table,
/obj/machinery/recharger,
/turf/open/floor/plasteel/red/side{
@@ -68745,20 +65538,20 @@
dir = 6;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/checkpoint2)
-"cpa" = (
+/area/security/checkpoint/checkpoint2)
+"con" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cpb" = (
+"coo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cpc" = (
+"cop" = (
/obj/structure/cable/orange{
d2 = 4;
icon_state = "0-4"
@@ -68777,7 +65570,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cpd" = (
+"coq" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -68787,10 +65580,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cpe" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cor" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -68798,7 +65589,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cpf" = (
+"cos" = (
/obj/machinery/airalarm{
dir = 1;
icon_state = "alarm0";
@@ -68808,19 +65599,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cpg" = (
+"cot" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-21";
layer = 4.1
},
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"cph" = (
+"cou" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cpi" = (
+/area/science/robotics/lab)
+"cov" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -68831,7 +65622,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cpj" = (
+"cow" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -68842,7 +65633,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cpk" = (
+"cox" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -68858,7 +65649,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cpl" = (
+"coy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -68868,7 +65659,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cpm" = (
+"coz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -68879,17 +65670,17 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cpn" = (
+"coA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/purple/corner{
tag = "icon-purplecorner (WEST)";
icon_state = "purplecorner";
@@ -68897,7 +65688,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cpo" = (
+"coB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -68909,7 +65700,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cpp" = (
+"coC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -68924,7 +65715,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cpq" = (
+"coD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -68939,7 +65730,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cpr" = (
+"coE" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -68947,7 +65738,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cps" = (
+"coF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -68956,7 +65747,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cpt" = (
+"coG" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/purple/corner{
tag = "icon-purplecorner (WEST)";
@@ -68965,7 +65756,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cpu" = (
+"coH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -68976,7 +65767,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cpv" = (
+"coI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -68990,7 +65781,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cpw" = (
+"coJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -69001,7 +65792,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cpx" = (
+"coK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -69016,7 +65807,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cpy" = (
+"coL" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
@@ -69024,7 +65815,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cpz" = (
+"coM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -69038,7 +65829,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cpA" = (
+"coN" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -69049,7 +65840,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cpB" = (
+"coO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -69059,28 +65850,28 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cpC" = (
+"coP" = (
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cpD" = (
-/obj/machinery/door/firedoor,
+"coQ" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cpE" = (
+"coR" = (
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -69097,7 +65888,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cpF" = (
+"coS" = (
/obj/machinery/light,
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -69115,7 +65906,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cpG" = (
+"coT" = (
/obj/machinery/door/airlock/glass,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -69132,7 +65923,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cpH" = (
+"coU" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -69149,10 +65940,8 @@
pixel_x = 0
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"cpI" = (
+/area/hallway/secondary/bridges/sci_dock)
+"coV" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -69166,10 +65955,8 @@
icon_state = "0-8"
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"cpJ" = (
+/area/hallway/secondary/bridges/sci_dock)
+"coW" = (
/obj/machinery/door/airlock/glass,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -69180,7 +65967,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cpK" = (
+"coX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -69193,7 +65980,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cpL" = (
+"coY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -69206,7 +65993,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cpM" = (
+"coZ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -69217,7 +66004,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cpN" = (
+"cpa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -69234,8 +66021,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cpO" = (
-/obj/machinery/door/firedoor,
+"cpb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -69254,7 +66040,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cpP" = (
+"cpc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -69263,7 +66049,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cpQ" = (
+"cpd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -69274,7 +66060,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cpR" = (
+"cpe" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -69286,7 +66072,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"cpS" = (
+"cpf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -69295,7 +66081,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"cpT" = (
+"cpg" = (
/obj/machinery/door/airlock/command{
name = "Teleport Access";
req_access_txt = "17"
@@ -69308,25 +66094,27 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"cpU" = (
+"cph" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/checkpoint2)
-"cpV" = (
+/area/security/checkpoint/checkpoint2)
+"cpi" = (
/obj/structure/table/reinforced,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/window/brigdoor/northright{
name = "Arrival Security Checkpoint";
req_access_txt = "1"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/red{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/checkpoint2)
-"cpW" = (
+/area/security/checkpoint/checkpoint2)
+"cpj" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -69338,8 +66126,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cpX" = (
+/area/hallway/primary/starboard/aft)
+"cpk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/airlock{
name = "Vacant Office";
@@ -69349,13 +66137,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cpY" = (
+"cpl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cpZ" = (
+"cpm" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/obj/machinery/camera{
@@ -69373,114 +66161,110 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cqa" = (
+"cpn" = (
/obj/structure/window/reinforced{
dir = 1
},
/obj/structure/shuttle/engine/heater,
/turf/open/floor/plating/airless,
/area/shuttle/escape)
-"cqb" = (
+"cpo" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cqc" = (
+/area/science/mixing)
+"cpp" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cqd" = (
+/area/science/robotics/lab)
+"cpq" = (
/obj/machinery/mecha_part_fabricator,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cqe" = (
+/area/science/robotics/lab)
+"cpr" = (
/obj/machinery/door/poddoor/shutters{
id = "MechbayShutters"
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cqf" = (
+/area/science/robotics/lab)
+"cps" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters/preopen{
id = "RoboticsShutters"
},
/obj/machinery/door/poddoor/preopen{
id = "researchlockdown";
+ layer = 2.6;
name = "Research Emergency Lockdown"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cqg" = (
+/area/science/robotics/lab)
+"cpt" = (
/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters/preopen{
id = "RoboticsShutters"
},
+/obj/machinery/door/poddoor/preopen{
+ id = "researchlockdown";
+ layer = 2.6;
+ name = "Research Emergency Lockdown"
+ },
/obj/machinery/door/window/northright{
name = "Robotics Desk";
req_access_txt = "29"
},
-/obj/machinery/door/poddoor/preopen{
- id = "researchlockdown";
- name = "Research Emergency Lockdown"
- },
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cqh" = (
+/area/science/robotics/lab)
+"cpu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cqi" = (
-/obj/machinery/door/airlock/research{
- cyclelinkeddir = 2;
- name = "Research Division Access";
- req_access_txt = "47"
- },
+/area/science/research)
+"cpv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/door/poddoor/preopen{
id = "researchlockdown";
+ layer = 2.6;
name = "Research Emergency Lockdown"
},
+/obj/machinery/door/airlock/research{
+ cyclelinkeddir = 2;
+ name = "Research Division Access";
+ req_access_txt = "47"
+ },
/turf/open/floor/plasteel/whitepurple{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cqj" = (
+/area/science/research)
+"cpw" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cqk" = (
+/area/science/research)
+"cpx" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"cql" = (
+/area/science/lab)
+"cpy" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters/preopen{
id = "RnDShutters"
},
@@ -69489,55 +66273,59 @@
},
/obj/machinery/door/poddoor/preopen{
id = "researchlockdown";
+ layer = 2.6;
name = "Research Emergency Lockdown"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"cqm" = (
+/area/science/lab)
+"cpz" = (
/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters/preopen{
id = "RnDShutters"
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "researchlockdown";
+ layer = 2.6;
+ name = "Research Emergency Lockdown"
+ },
/obj/machinery/door/window/northleft{
name = "Research Desk";
req_access_txt = "47"
},
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/purple{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/science/lab)
+"cpA" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "RnDShutters"
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/door/poddoor/preopen{
id = "researchlockdown";
+ layer = 2.6;
name = "Research Emergency Lockdown"
},
-/turf/open/floor/plasteel/purple{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/toxins/lab)
-"cqn" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "RnDShutters"
- },
/obj/machinery/door/window/northright{
name = "Research Desk";
req_access_txt = "47"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/poddoor/preopen{
- id = "researchlockdown";
- name = "Research Emergency Lockdown"
- },
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/purple{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"cqo" = (
+/area/science/lab)
+"cpB" = (
/obj/machinery/door/airlock/maintenance{
name = "Science SMES Access";
req_access_txt = "10;11;12"
@@ -69553,10 +66341,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cqp" = (
+/area/maintenance/asteroid/aft/science)
+"cpC" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -69565,10 +66351,8 @@
/obj/structure/grille,
/obj/structure/window/reinforced,
/turf/open/space,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"cqq" = (
+/area/hallway/secondary/bridges/sci_dock)
+"cpD" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -69577,19 +66361,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cqr" = (
+"cpE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cqs" = (
+"cpF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cqt" = (
+"cpG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -69597,7 +66381,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cqu" = (
+"cpH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -69611,7 +66395,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cqv" = (
+"cpI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -69622,7 +66406,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cqw" = (
+"cpJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -69638,7 +66422,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cqx" = (
+"cpK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -69650,7 +66434,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cqy" = (
+"cpL" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/arrival/corner{
tag = "icon-arrivalcorner (NORTH)";
@@ -69659,7 +66443,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cqz" = (
+"cpM" = (
/obj/machinery/light{
dir = 1
},
@@ -69673,7 +66457,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cqA" = (
+"cpN" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plasteel/arrival/corner{
tag = "icon-arrivalcorner (NORTH)";
@@ -69682,7 +66466,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cqB" = (
+"cpO" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -69693,7 +66477,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cqC" = (
+"cpP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -69714,14 +66498,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cqD" = (
-/obj/machinery/door/firedoor,
+"cpQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/blue/corner{
tag = "icon-bluecorner (NORTH)";
icon_state = "bluecorner";
@@ -69729,7 +66513,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cqE" = (
+"cpR" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -69765,7 +66549,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cqF" = (
+"cpS" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -69774,7 +66558,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cqG" = (
+"cpT" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -69797,8 +66581,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cqH" = (
-/obj/machinery/door/firedoor,
+"cpU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -69808,6 +66591,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/red/corner{
tag = "icon-redcorner (EAST)";
icon_state = "redcorner";
@@ -69815,7 +66599,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cqI" = (
+"cpV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -69829,7 +66613,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cqJ" = (
+"cpW" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -69840,7 +66624,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cqK" = (
+"cpX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -69851,7 +66635,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cqL" = (
+"cpY" = (
/obj/machinery/light{
dir = 1
},
@@ -69865,7 +66649,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cqM" = (
+"cpZ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/red/corner{
tag = "icon-redcorner (EAST)";
@@ -69874,7 +66658,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cqN" = (
+"cqa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -69890,7 +66674,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cqO" = (
+"cqb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -69902,7 +66686,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cqP" = (
+"cqc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -69918,7 +66702,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cqQ" = (
+"cqd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -69927,7 +66711,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cqR" = (
+"cqe" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -69935,7 +66719,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cqS" = (
+"cqf" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -69943,11 +66727,11 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cqT" = (
+"cqg" = (
/obj/structure/shuttle/engine/propulsion,
/turf/open/floor/plating/airless,
/area/shuttle/escape)
-"cqU" = (
+"cqh" = (
/obj/machinery/door/poddoor{
id = "mixvent";
name = "Mixer Room Vent"
@@ -69955,16 +66739,16 @@
/turf/open/floor/engine/vacuum{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cqV" = (
+/area/science/mixing)
+"cqi" = (
/obj/structure/sign/vacuum{
pixel_y = 32
},
/turf/open/floor/engine/vacuum{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cqW" = (
+/area/science/mixing)
+"cqj" = (
/obj/machinery/sparker{
dir = 2;
id = "mixingsparker";
@@ -69982,16 +66766,16 @@
/turf/open/floor/engine/vacuum{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cqX" = (
+/area/science/mixing)
+"cqk" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cqY" = (
+/area/science/mixing)
+"cql" = (
/obj/machinery/airlock_sensor{
id_tag = "tox_airlock_sensor";
master_tag = "tox_airlock_control";
@@ -70005,8 +66789,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/toxins/mixing)
-"cqZ" = (
+/area/science/mixing)
+"cqm" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
@@ -70027,8 +66811,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cra" = (
+/area/science/mixing)
+"cqn" = (
/obj/machinery/atmospherics/components/binary/valve{
dir = 4;
name = "mix to port"
@@ -70036,8 +66820,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"crb" = (
+/area/science/mixing)
+"cqo" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 8
},
@@ -70047,14 +66831,14 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"crc" = (
+/area/science/mixing)
+"cqp" = (
/obj/machinery/recharge_station,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"crd" = (
+/area/science/robotics/lab)
+"cqq" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -70063,14 +66847,14 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cre" = (
+/area/science/robotics/lab)
+"cqr" = (
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"crf" = (
+/area/science/robotics/lab)
+"cqs" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -70079,13 +66863,13 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"crg" = (
+/area/science/robotics/lab)
+"cqt" = (
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"crh" = (
+/area/science/robotics/lab)
+"cqu" = (
/obj/machinery/button/door{
id = "MechbayShutters";
name = "Mechbay Shutters";
@@ -70100,14 +66884,14 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cri" = (
+/area/science/robotics/lab)
+"cqv" = (
/obj/machinery/r_n_d/circuit_imprinter,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"crj" = (
+/area/science/robotics/lab)
+"cqw" = (
/obj/structure/chair/office/dark{
dir = 1
},
@@ -70118,8 +66902,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"crk" = (
+/area/science/robotics/lab)
+"cqx" = (
/obj/machinery/button/door{
id = "RoboticsShutters";
name = "Robotics Privacy Shutters";
@@ -70133,8 +66917,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"crl" = (
+/area/science/robotics/lab)
+"cqy" = (
/obj/machinery/requests_console{
department = "Robotics";
departmentType = 2;
@@ -70144,8 +66928,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"crm" = (
+/area/science/robotics/lab)
+"cqz" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -70154,14 +66938,14 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"crn" = (
+/area/science/robotics/lab)
+"cqA" = (
/obj/structure/table/optable,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cro" = (
+/area/science/robotics/lab)
+"cqB" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -70178,10 +66962,8 @@
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"crp" = (
+/area/science/research)
+"cqC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -70189,10 +66971,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"crq" = (
+/area/science/research)
+"cqD" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -70202,10 +66982,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"crr" = (
+/area/science/research)
+"cqE" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -70222,8 +67000,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"crs" = (
+/area/science/lab)
+"cqF" = (
/obj/machinery/button/door{
id = "RnDShutters";
name = "Research Privacy Shutters";
@@ -70239,8 +67017,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"crt" = (
+/area/science/lab)
+"cqG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -70250,8 +67028,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"cru" = (
+/area/science/lab)
+"cqH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -70261,16 +67039,16 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"crv" = (
+/area/science/lab)
+"cqI" = (
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (NORTH)";
icon_state = "whitepurple";
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"crw" = (
+/area/science/lab)
+"cqJ" = (
/obj/structure/chair/office/light{
dir = 1
},
@@ -70280,8 +67058,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"crx" = (
+/area/science/lab)
+"cqK" = (
/obj/structure/table,
/obj/item/stack/sheet/glass/fifty,
/obj/item/stack/sheet/metal/fifty,
@@ -70297,8 +67075,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"cry" = (
+/area/science/lab)
+"cqL" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -70318,10 +67096,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"crz" = (
+/area/maintenance/asteroid/aft/science)
+"cqM" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -70339,10 +67115,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"crA" = (
+/area/maintenance/asteroid/aft/science)
+"cqN" = (
/obj/machinery/power/apc{
dir = 8;
name = "Aft Asteroid Maintenance APC";
@@ -70361,10 +67135,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"crB" = (
+/area/maintenance/asteroid/aft/science)
+"cqO" = (
/obj/effect/turf_decal/stripes/asteroid/line{
icon_state = "ast_warn";
dir = 1
@@ -70372,30 +67144,26 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"crC" = (
+/area/maintenance/asteroid/aft/science)
+"cqP" = (
/obj/structure/rack,
/obj/item/weapon/storage/bag/ore,
/obj/item/weapon/pickaxe/emergency,
/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"crD" = (
+/area/maintenance/asteroid/aft/science)
+"cqQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"crE" = (
+"cqR" = (
/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"crF" = (
+"cqS" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -70404,13 +67172,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"crG" = (
+"cqT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"crH" = (
+"cqU" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -70419,19 +67187,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"crI" = (
-/obj/machinery/door/firedoor,
+"cqV" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"crJ" = (
+"cqW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -70443,7 +67211,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"crK" = (
+"cqX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -70460,7 +67228,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"crL" = (
+"cqY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -70477,8 +67245,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"crM" = (
-/obj/machinery/door/firedoor,
+"cqZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -70491,11 +67258,12 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"crN" = (
+"cra" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -70506,7 +67274,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"crO" = (
+"crb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -70518,7 +67286,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"crP" = (
+"crc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -70530,7 +67298,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"crQ" = (
+"crd" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -70541,7 +67309,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"crR" = (
+"cre" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
@@ -70549,31 +67317,31 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"crS" = (
-/obj/machinery/door/firedoor,
+"crf" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"crT" = (
+"crg" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"crU" = (
+"crh" = (
/turf/open/floor/engine/vacuum{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"crV" = (
+/area/science/mixing)
+"cri" = (
/obj/machinery/door/airlock/glass_research{
autoclose = 0;
frequency = 1449;
@@ -70589,14 +67357,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/toxins/mixing)
-"crW" = (
+/area/science/mixing)
+"crj" = (
/turf/open/floor/engine{
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/toxins/mixing)
-"crX" = (
+/area/science/mixing)
+"crk" = (
/obj/machinery/door/airlock/glass_research{
autoclose = 0;
frequency = 1449;
@@ -70612,21 +67380,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/toxins/mixing)
-"crY" = (
+/area/science/mixing)
+"crl" = (
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (WEST)";
icon_state = "whitepurple";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"crZ" = (
+/area/science/mixing)
+"crm" = (
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"csa" = (
+/area/science/mixing)
+"crn" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 27;
pixel_y = 0
@@ -70641,13 +67409,13 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"csb" = (
+/area/science/mixing)
+"cro" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"csc" = (
+/area/science/robotics/lab)
+"crp" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -70655,8 +67423,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"csd" = (
+/area/science/robotics/lab)
+"crq" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -70664,32 +67432,32 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cse" = (
+/area/science/robotics/lab)
+"crr" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"csf" = (
+/area/science/robotics/lab)
+"crs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"csg" = (
+/area/science/robotics/lab)
+"crt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"csh" = (
+/area/science/robotics/lab)
+"cru" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -70698,40 +67466,34 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"csi" = (
+/area/science/robotics/lab)
+"crv" = (
/obj/machinery/computer/operating,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"csj" = (
+/area/science/robotics/lab)
+"crw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"csk" = (
+/area/science/research)
+"crx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"csl" = (
+/area/science/research)
+"cry" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"csm" = (
+/area/science/research)
+"crz" = (
/obj/machinery/r_n_d/destructive_analyzer,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -70739,16 +67501,16 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"csn" = (
+/area/science/lab)
+"crA" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"cso" = (
+/area/science/lab)
+"crB" = (
/obj/machinery/r_n_d/protolathe,
/obj/effect/turf_decal/stripes/line{
dir = 5
@@ -70756,8 +67518,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"csp" = (
+/area/science/lab)
+"crC" = (
/obj/item/weapon/folder/white,
/obj/item/weapon/disk/tech_disk{
pixel_x = 0;
@@ -70774,13 +67536,13 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"csq" = (
+/area/science/lab)
+"crD" = (
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"csr" = (
+/area/science/lab)
+"crE" = (
/obj/item/weapon/reagent_containers/glass/beaker/large{
pixel_x = -3;
pixel_y = 3
@@ -70798,16 +67560,14 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"css" = (
+/area/science/lab)
+"crF" = (
/obj/structure/closet/toolcloset,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cst" = (
+/area/maintenance/asteroid/aft/science)
+"crG" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -70816,10 +67576,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"csu" = (
+/area/maintenance/asteroid/aft/science)
+"crH" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -70831,10 +67589,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"csv" = (
+/area/maintenance/asteroid/aft/science)
+"crI" = (
/obj/machinery/door/airlock/maintenance{
name = "Science SMES Access";
req_access_txt = "10;11;12"
@@ -70847,10 +67603,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"csw" = (
+/area/maintenance/asteroid/aft/science)
+"crJ" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -70868,10 +67622,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"csx" = (
+/area/maintenance/asteroid/aft/science)
+"crK" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -70879,7 +67631,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csy" = (
+"crL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -70887,7 +67639,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csz" = (
+"crM" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -70896,13 +67648,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csA" = (
+"crN" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/arrival{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csB" = (
+"crO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -70914,7 +67666,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csC" = (
+"crP" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -70923,19 +67675,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csD" = (
-/obj/machinery/door/firedoor,
+"crQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/arrival{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csE" = (
+"crR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -70948,8 +67700,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csF" = (
-/obj/machinery/door/firedoor,
+"crS" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -70961,11 +67712,12 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/arrival{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csG" = (
+"crT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/orange{
d1 = 4;
@@ -70976,7 +67728,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csH" = (
+"crU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/orange{
d1 = 4;
@@ -70987,7 +67739,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csI" = (
+"crV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -71008,7 +67760,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csJ" = (
+"crW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -71024,7 +67776,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csK" = (
+"crX" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -71038,7 +67790,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csL" = (
+"crY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -71059,8 +67811,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csM" = (
-/obj/machinery/door/firedoor,
+"crZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -71078,12 +67829,13 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/arrival{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csN" = (
+"csa" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -71100,7 +67852,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csO" = (
+"csb" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -71117,7 +67869,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csP" = (
+"csc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -71126,7 +67878,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csQ" = (
+"csd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -71134,7 +67886,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csR" = (
+"cse" = (
/obj/machinery/sparker{
dir = 2;
id = "mixingsparker";
@@ -71148,8 +67900,8 @@
/turf/open/floor/engine/vacuum{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"csS" = (
+/area/science/mixing)
+"csf" = (
/obj/structure/sign/fire{
pixel_y = -32
},
@@ -71161,8 +67913,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/toxins/mixing)
-"csT" = (
+/area/science/mixing)
+"csg" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
@@ -71185,8 +67937,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"csU" = (
+/area/science/mixing)
+"csh" = (
/obj/machinery/atmospherics/components/binary/valve{
dir = 4;
name = "port to mix"
@@ -71194,23 +67946,23 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"csV" = (
+/area/science/mixing)
+"csi" = (
/obj/machinery/mech_bay_recharge_port,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"csW" = (
+/area/science/robotics/lab)
+"csj" = (
/turf/open/floor/mech_bay_recharge_floor,
-/area/assembly/robotics)
-"csX" = (
+/area/science/robotics/lab)
+"csk" = (
/obj/machinery/computer/mech_bay_power_console,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"csY" = (
+/area/science/robotics/lab)
+"csl" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -71221,16 +67973,16 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"csZ" = (
+/area/science/robotics/lab)
+"csm" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cta" = (
+/area/science/robotics/lab)
+"csn" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -71238,8 +67990,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"ctb" = (
+/area/science/robotics/lab)
+"cso" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -71247,8 +67999,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"ctc" = (
+/area/science/robotics/lab)
+"csp" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -71258,8 +68010,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"ctd" = (
+/area/science/robotics/lab)
+"csq" = (
/obj/structure/rack,
/obj/item/stack/sheet/metal/fifty,
/obj/item/stack/sheet/metal/fifty,
@@ -71281,16 +68033,16 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cte" = (
+/area/science/robotics/lab)
+"csr" = (
/obj/structure/window/reinforced{
dir = 8
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"ctf" = (
+/area/science/robotics/lab)
+"css" = (
/obj/structure/table,
/obj/item/device/mmi,
/obj/item/device/mmi,
@@ -71298,27 +68050,23 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"ctg" = (
+/area/science/robotics/lab)
+"cst" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/closet/l3closet/scientist,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cth" = (
+/area/science/research)
+"csu" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cti" = (
+/area/science/research)
+"csv" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -71328,10 +68076,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"ctj" = (
+/area/science/research)
+"csw" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -71346,8 +68092,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"ctk" = (
+/area/science/lab)
+"csx" = (
/obj/structure/chair/office/light{
dir = 8
},
@@ -71355,28 +68101,28 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"ctl" = (
+/area/science/lab)
+"csy" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"ctm" = (
+/area/science/lab)
+"csz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"ctn" = (
+/area/science/lab)
+"csA" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"cto" = (
+/area/science/lab)
+"csB" = (
/obj/item/weapon/stock_parts/manipulator,
/obj/item/weapon/stock_parts/capacitor,
/obj/item/weapon/stock_parts/capacitor,
@@ -71396,8 +68142,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"ctp" = (
+/area/science/lab)
+"csC" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -71406,16 +68152,13 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"ctq" = (
+/area/maintenance/asteroid/aft/science)
+"csD" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"ctr" = (
-/obj/machinery/door/firedoor,
+/area/science/xenobiology)
+"csE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -71428,8 +68171,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cts" = (
-/obj/machinery/door/firedoor,
+"csF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -71442,15 +68184,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"ctt" = (
+"csG" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"ctu" = (
-/obj/machinery/door/firedoor,
+"csH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -71464,8 +68205,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"ctv" = (
-/obj/machinery/door/firedoor,
+"csI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -71484,16 +68224,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"ctw" = (
+"csJ" = (
/obj/machinery/status_display{
density = 0;
layer = 4
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"ctx" = (
+/area/science/mixing)
+"csK" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -71503,8 +68246,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cty" = (
+/area/science/mixing)
+"csL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -71520,29 +68263,29 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"ctz" = (
+/area/science/mixing)
+"csM" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"ctA" = (
+/area/science/robotics/lab)
+"csN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"ctB" = (
+/area/science/robotics/lab)
+"csO" = (
/obj/structure/chair/office/dark,
/obj/effect/landmark/start/roboticist,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"ctC" = (
+/area/science/robotics/lab)
+"csP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -71551,8 +68294,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"ctD" = (
+/area/science/robotics/lab)
+"csQ" = (
/obj/structure/table,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -71565,8 +68308,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"ctE" = (
+/area/science/robotics/lab)
+"csR" = (
/obj/structure/window/reinforced,
/obj/structure/table,
/obj/item/device/assembly/flash/handheld,
@@ -71578,8 +68321,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"ctF" = (
+/area/science/robotics/lab)
+"csS" = (
/obj/structure/table,
/obj/structure/window/reinforced,
/obj/item/weapon/surgical_drapes,
@@ -71588,8 +68331,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"ctG" = (
+/area/science/robotics/lab)
+"csT" = (
/obj/machinery/door/airlock/research{
cyclelinkeddir = 1;
name = "Research Division Access";
@@ -71599,23 +68342,21 @@
/turf/open/floor/plasteel/whitepurple{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"ctH" = (
+/area/science/research)
+"csU" = (
/obj/machinery/computer/rdconsole/core,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"ctI" = (
+/area/science/lab)
+"csV" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"ctJ" = (
+/area/science/lab)
+"csW" = (
/obj/machinery/r_n_d/circuit_imprinter,
/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
/obj/effect/turf_decal/stripes/line{
@@ -71624,8 +68365,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"ctK" = (
+/area/science/lab)
+"csX" = (
/obj/structure/table/glass,
/obj/machinery/cell_charger,
/obj/item/weapon/stock_parts/cell/high,
@@ -71633,16 +68374,16 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"ctL" = (
+/area/science/lab)
+"csY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"ctM" = (
+/area/science/lab)
+"csZ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -71651,8 +68392,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"ctN" = (
+/area/science/lab)
+"cta" = (
/obj/item/weapon/stock_parts/console_screen,
/obj/item/weapon/stock_parts/console_screen,
/obj/item/weapon/stock_parts/console_screen,
@@ -71676,8 +68417,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"ctO" = (
+/area/science/lab)
+"ctb" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -71692,10 +68433,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"ctP" = (
+/area/maintenance/asteroid/aft/science)
+"ctc" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -71709,10 +68448,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"ctQ" = (
+/area/maintenance/asteroid/aft/science)
+"ctd" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -71729,18 +68466,16 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"ctR" = (
+/area/maintenance/asteroid/aft/science)
+"cte" = (
/turf/open/floor/plasteel/darkpurple/side{
tag = "icon-darkpurple (NORTH)";
icon_state = "darkpurple";
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"ctS" = (
+/area/science/xenobiology)
+"ctf" = (
/obj/machinery/light/small{
dir = 1
},
@@ -71750,8 +68485,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"ctT" = (
+/area/science/xenobiology)
+"ctg" = (
/obj/structure/disposalpipe/trunk,
/obj/structure/disposaloutlet{
dir = 8
@@ -71762,15 +68497,13 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"ctU" = (
+/area/science/xenobiology)
+"cth" = (
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"ctV" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cti" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -71779,7 +68512,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"ctW" = (
+"ctj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -71788,7 +68521,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"ctX" = (
+"ctk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -71798,7 +68531,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"ctY" = (
+"ctl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -71813,7 +68546,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"ctZ" = (
+"ctm" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
@@ -71824,8 +68557,8 @@
dir = 9;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cua" = (
+/area/science/mixing)
+"ctn" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 10;
pixel_x = 0;
@@ -71837,47 +68570,54 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cub" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
+/area/science/mixing)
+"cto" = (
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (NORTH)";
icon_state = "whitepurple";
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cuc" = (
+/area/science/mixing)
+"ctp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
/turf/open/floor/plasteel/whitepurple/corner{
tag = "icon-whitepurplecorner (NORTH)";
icon_state = "whitepurplecorner";
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cud" = (
+/area/science/mixing)
+"ctq" = (
/obj/effect/landmark/start/scientist,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cue" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/area/science/mixing)
+"ctr" = (
/obj/machinery/camera{
c_tag = "Toxins Mixing";
dir = 9;
icon_state = "camera";
network = list("SS13","RD")
},
+/obj/structure/closet/bombcloset,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (EAST)";
icon_state = "whitepurple";
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cuf" = (
+/area/science/mixing)
+"cts" = (
/obj/machinery/computer/mech_bay_power_console,
/obj/machinery/camera{
c_tag = "Robotics 2";
@@ -71887,14 +68627,14 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cug" = (
+/area/science/robotics/lab)
+"ctt" = (
/obj/machinery/light,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cuh" = (
+/area/science/robotics/lab)
+"ctu" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -71905,6 +68645,12 @@
/obj/item/weapon/storage/firstaid{
name = "first-aid kit (empty)"
},
+/obj/item/weapon/storage/firstaid{
+ name = "first-aid kit (empty)"
+ },
+/obj/item/device/healthanalyzer,
+/obj/item/device/healthanalyzer,
+/obj/item/device/healthanalyzer,
/obj/item/weapon/reagent_containers/glass/bucket,
/obj/item/weapon/reagent_containers/glass/bucket,
/obj/item/device/assembly/prox_sensor,
@@ -71916,14 +68662,14 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cui" = (
+/area/science/robotics/lab)
+"ctv" = (
/obj/machinery/computer/rdconsole/robotics,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cuj" = (
+/area/science/robotics/lab)
+"ctw" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/item/weapon/stock_parts/cell/high,
@@ -71932,8 +68678,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cuk" = (
+/area/science/robotics/lab)
+"ctx" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
/obj/item/weapon/storage/toolbox/electrical{
@@ -71947,14 +68693,14 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cul" = (
+/area/science/robotics/lab)
+"cty" = (
/obj/machinery/computer/aifixer,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cum" = (
+/area/science/robotics/lab)
+"ctz" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -71964,8 +68710,8 @@
/turf/open/floor/plasteel/whitepurple/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cun" = (
+/area/science/robotics/lab)
+"ctA" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -71976,8 +68722,8 @@
/turf/open/floor/plasteel/whitepurple/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cuo" = (
+/area/science/robotics/lab)
+"ctB" = (
/obj/machinery/power/apc{
cell_type = 5000;
dir = 2;
@@ -71994,14 +68740,14 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cup" = (
+/area/science/robotics/lab)
+"ctC" = (
/obj/machinery/light,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cuq" = (
+/area/science/robotics/lab)
+"ctD" = (
/obj/structure/closet/wardrobe/robotics_black,
/obj/item/device/radio/headset/headset_sci{
pixel_x = -3
@@ -72009,8 +68755,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cur" = (
+/area/science/robotics/lab)
+"ctE" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -72019,8 +68765,8 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cus" = (
+/area/science/robotics/lab)
+"ctF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whitepurple/corner{
tag = "icon-whitepurplecorner (EAST)";
@@ -72028,10 +68774,8 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cut" = (
+/area/science/research)
+"ctG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (NORTH)";
@@ -72039,20 +68783,16 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cuu" = (
+/area/science/research)
+"ctH" = (
/turf/open/floor/plasteel/whitepurple/corner{
tag = "icon-whitepurplecorner (NORTH)";
icon_state = "whitepurplecorner";
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cuv" = (
+/area/science/research)
+"ctI" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -72060,8 +68800,8 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"cuw" = (
+/area/science/lab)
+"ctJ" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -72069,8 +68809,8 @@
/turf/open/floor/plasteel/whitepurple/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"cux" = (
+/area/science/lab)
+"ctK" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -72083,8 +68823,8 @@
/turf/open/floor/plasteel/whitepurple/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"cuy" = (
+/area/science/lab)
+"ctL" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -72092,33 +68832,33 @@
/turf/open/floor/plasteel/whitepurple/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"cuz" = (
+/area/science/lab)
+"ctM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whitepurple/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"cuA" = (
+/area/science/lab)
+"ctN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whitepurple/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"cuB" = (
+/area/science/lab)
+"ctO" = (
/turf/open/floor/plasteel/whitepurple/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"cuC" = (
+/area/science/lab)
+"ctP" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
/obj/item/weapon/storage/toolbox/mechanical,
/turf/open/floor/plasteel/whitepurple/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"cuD" = (
+/area/science/lab)
+"ctQ" = (
/obj/machinery/power/apc{
dir = 8;
name = "Research and Development APC";
@@ -72133,10 +68873,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cuE" = (
+/area/maintenance/asteroid/aft/science)
+"ctR" = (
/obj/machinery/power/terminal{
dir = 4
},
@@ -72147,53 +68885,49 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cuF" = (
+/area/maintenance/asteroid/aft/science)
+"ctS" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cuG" = (
+/area/science/xenobiology)
+"ctT" = (
/obj/effect/landmark/blobstart,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cuH" = (
+/area/science/xenobiology)
+"ctU" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cuI" = (
+/area/science/xenobiology)
+"ctV" = (
/mob/living/simple_animal/slime,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cuJ" = (
+/area/science/xenobiology)
+"ctW" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cuK" = (
+/area/science/xenobiology)
+"ctX" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cuL" = (
+/area/maintenance/asteroid/aft/science)
+"ctY" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/arrival)
-"cuM" = (
+"ctZ" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
/turf/open/floor/plating,
/area/shuttle/arrival)
-"cuN" = (
+"cua" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
@@ -72209,8 +68943,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cuO" = (
+/area/science/mixing)
+"cub" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 4;
initialize_directions = 11
@@ -72219,43 +68953,44 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cuP" = (
+/area/science/mixing)
+"cuc" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cuQ" = (
+/area/science/mixing)
+"cud" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/sign/nosmoking_2{
pixel_x = 32
},
+/obj/structure/closet/bombcloset,
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (EAST)";
icon_state = "whitepurple";
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cuR" = (
+/area/science/mixing)
+"cue" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cuS" = (
+/area/science/robotics/lab)
+"cuf" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cuT" = (
+/area/science/robotics/lab)
+"cug" = (
/obj/machinery/door/airlock/glass_research{
name = "Robotics Lab";
req_access_txt = "29"
@@ -72270,16 +69005,13 @@
/turf/open/floor/plasteel/whitepurple{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cuU" = (
+/area/science/robotics/lab)
+"cuh" = (
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cuV" = (
-/obj/machinery/door/firedoor,
+/area/science/research)
+"cui" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/whitepurple/corner{
tag = "icon-whitepurplecorner (NORTH)";
@@ -72287,16 +69019,15 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"cuW" = (
+/area/science/lab)
+"cuj" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"cuX" = (
-/obj/machinery/door/firedoor,
+/area/science/lab)
+"cuk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whitepurple/corner{
tag = "icon-whitepurplecorner (EAST)";
@@ -72304,19 +69035,19 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"cuY" = (
+/area/science/lab)
+"cul" = (
/turf/open/floor/plasteel/darkpurple/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cuZ" = (
+/area/science/xenobiology)
+"cum" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/darkpurple/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cva" = (
+/area/science/xenobiology)
+"cun" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 4
},
@@ -72324,12 +69055,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cvb" = (
+"cuo" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cvc" = (
+"cup" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -72337,52 +69068,48 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cvd" = (
+"cuq" = (
/turf/open/floor/plasteel/shuttle,
/area/shuttle/arrival)
-"cve" = (
+"cur" = (
/obj/structure/table,
/turf/open/floor/plasteel/shuttle,
/area/shuttle/arrival)
-"cvf" = (
+"cus" = (
/obj/structure/frame/computer,
/turf/open/floor/plasteel/shuttle,
/area/shuttle/arrival)
-"cvg" = (
+"cut" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
/turf/open/space,
/area/hallway/secondary/entry)
-"cvh" = (
+"cuu" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
/turf/open/floor/plasteel/whitepurple/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cvi" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
+/area/science/mixing)
+"cuv" = (
/turf/open/floor/plasteel/whitepurple/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cvj" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/area/science/mixing)
+"cuw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
/turf/open/floor/plasteel/whitepurple/corner{
tag = "icon-whitepurplecorner (EAST)";
icon_state = "whitepurplecorner";
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cvk" = (
+/area/science/mixing)
+"cux" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -72392,31 +69119,31 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cvl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
+/area/science/mixing)
+"cuy" = (
/obj/structure/closet/wardrobe/science_white,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (NORTHEAST)";
icon_state = "whitepurple";
dir = 5;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cvm" = (
+/area/science/mixing)
+"cuz" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cvn" = (
+/area/science/mixing)
+"cuA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -72429,20 +69156,16 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cvo" = (
+/area/science/research)
+"cuB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cvp" = (
+/area/science/research)
+"cuC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -72452,10 +69175,8 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cvq" = (
+/area/science/research)
+"cuD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -72465,10 +69186,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cvr" = (
+/area/science/research)
+"cuE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -72479,10 +69198,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cvs" = (
+/area/science/research)
+"cuF" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -72492,10 +69209,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cvt" = (
+/area/science/research)
+"cuG" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -72509,10 +69224,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cvu" = (
+/area/science/research)
+"cuH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -72522,10 +69235,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cvv" = (
+/area/science/research)
+"cuI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -72537,10 +69248,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cvw" = (
+/area/science/research)
+"cuJ" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -72548,10 +69257,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cvx" = (
+/area/science/research)
+"cuK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -72562,18 +69269,14 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cvy" = (
+/area/science/research)
+"cuL" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cvz" = (
+/area/science/research)
+"cuM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -72582,10 +69285,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cvA" = (
+/area/science/research)
+"cuN" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -72597,10 +69298,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cvB" = (
+/area/science/research)
+"cuO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -72608,10 +69307,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cvC" = (
+/area/science/research)
+"cuP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -72622,10 +69319,8 @@
/turf/open/floor/plasteel/whitepurple/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cvD" = (
+/area/science/research)
+"cuQ" = (
/obj/machinery/shower{
pixel_y = 24
},
@@ -72636,10 +69331,8 @@
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cvE" = (
+/area/science/research)
+"cuR" = (
/obj/machinery/shower{
pixel_y = 24
},
@@ -72650,25 +69343,19 @@
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cvF" = (
+/area/science/research)
+"cuS" = (
/obj/structure/closet/l3closet/scientist,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cvG" = (
+/area/science/research)
+"cuT" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cvH" = (
+/area/science/research)
+"cuU" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/preopen{
@@ -72682,10 +69369,11 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cvI" = (
+/area/science/xenobiology)
+"cuV" = (
/obj/machinery/door/poddoor/preopen{
id = "XenoPod1";
+ layer = 2.6;
name = "containment door 1"
},
/obj/structure/cable/orange{
@@ -72704,13 +69392,14 @@
/turf/open/floor/plasteel/purple{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cvJ" = (
+/area/science/xenobiology)
+"cuW" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/poddoor/preopen{
id = "XenoPod1";
+ layer = 2.6;
name = "containment door 1"
},
/obj/structure/cable/orange{
@@ -72720,8 +69409,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cvK" = (
+/area/science/xenobiology)
+"cuX" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/preopen{
@@ -72735,10 +69424,11 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cvL" = (
+/area/science/xenobiology)
+"cuY" = (
/obj/machinery/door/poddoor/preopen{
id = "XenoPod2";
+ layer = 2.6;
name = "containment door 2"
},
/obj/structure/cable/orange{
@@ -72757,13 +69447,14 @@
/turf/open/floor/plasteel/purple{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cvM" = (
+/area/science/xenobiology)
+"cuZ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/poddoor/preopen{
id = "XenoPod2";
+ layer = 2.6;
name = "containment door 2"
},
/obj/structure/cable/orange{
@@ -72773,12 +69464,13 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cvN" = (
+/area/science/xenobiology)
+"cva" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/preopen{
id = "XenoPod3";
+ layer = 2.6;
name = "containment door 3"
},
/obj/structure/cable/orange{
@@ -72788,10 +69480,11 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cvO" = (
+/area/science/xenobiology)
+"cvb" = (
/obj/machinery/door/poddoor/preopen{
id = "XenoPod3";
+ layer = 2.6;
name = "containment door 3"
},
/obj/structure/cable/orange{
@@ -72810,13 +69503,14 @@
/turf/open/floor/plasteel/purple{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cvP" = (
+/area/science/xenobiology)
+"cvc" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/poddoor/preopen{
id = "XenoPod3";
+ layer = 2.6;
name = "containment door 3"
},
/obj/structure/cable/orange{
@@ -72826,8 +69520,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cvQ" = (
+/area/science/xenobiology)
+"cvd" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/preopen{
@@ -72841,10 +69535,11 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cvR" = (
+/area/science/xenobiology)
+"cve" = (
/obj/machinery/door/poddoor/preopen{
id = "XenoPod4";
+ layer = 2.6;
name = "containment door 4"
},
/obj/structure/cable/orange{
@@ -72863,13 +69558,14 @@
/turf/open/floor/plasteel/purple{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cvS" = (
+/area/science/xenobiology)
+"cvf" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/poddoor/preopen{
id = "XenoPod4";
+ layer = 2.6;
name = "containment door 4"
},
/obj/structure/cable/orange{
@@ -72879,13 +69575,13 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cvT" = (
+/area/science/xenobiology)
+"cvg" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cvU" = (
+/area/science/xenobiology)
+"cvh" = (
/obj/machinery/door/airlock/maintenance{
name = "Aft Asteroid Maintenance";
req_access_txt = "47"
@@ -72893,18 +69589,18 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cvV" = (
+/area/science/xenobiology)
+"cvi" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
},
/turf/open/floor/plasteel/shuttle,
/area/shuttle/arrival)
-"cvW" = (
+"cvj" = (
/turf/open/floor/plasteel/neutral,
/area/shuttle/arrival)
-"cvX" = (
+"cvk" = (
/obj/structure/chair/comfy{
tag = "icon-comfychair (NORTH)";
icon_state = "comfychair";
@@ -72912,14 +69608,14 @@
},
/turf/open/floor/plasteel/neutral,
/area/shuttle/arrival)
-"cvY" = (
+"cvl" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
},
/turf/open/floor/plasteel/shuttle,
/area/shuttle/arrival)
-"cvZ" = (
+"cvm" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -72940,12 +69636,8 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cwa" = (
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j1";
- dir = 8
- },
+/area/science/mixing)
+"cvn" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -72954,12 +69646,15 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/closet/bombcloset,
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j2";
+ dir = 8
+ },
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cwb" = (
+/area/science/mixing)
+"cvo" = (
/obj/item/device/assembly/prox_sensor{
pixel_x = -4;
pixel_y = 1
@@ -72997,8 +69692,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cwc" = (
+/area/science/mixing)
+"cvp" = (
/obj/structure/chair/stool,
/obj/structure/cable/orange{
d1 = 4;
@@ -73014,8 +69709,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cwd" = (
+/area/science/mixing)
+"cvq" = (
/obj/structure/table/reinforced,
/obj/item/weapon/wrench,
/obj/item/weapon/screwdriver{
@@ -73035,8 +69730,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cwe" = (
+/area/science/mixing)
+"cvr" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -73051,8 +69746,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cwf" = (
+/area/science/mixing)
+"cvs" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -73064,55 +69759,54 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (EAST)";
icon_state = "whitepurple";
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cwg" = (
+/area/science/mixing)
+"cvt" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/machinery/door/airlock/glass_research{
name = "Toxins Lab";
req_access_txt = "8"
},
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/open/floor/plasteel/whitepurple{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cwh" = (
+/area/science/mixing)
+"cvu" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (WEST)";
icon_state = "whitepurple";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cwi" = (
+/area/science/research)
+"cvv" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -73127,10 +69821,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cwj" = (
+/area/science/research)
+"cvw" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -73145,10 +69837,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cwk" = (
+/area/science/research)
+"cvx" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -73166,10 +69856,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cwl" = (
+/area/science/research)
+"cvy" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -73185,10 +69873,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cwm" = (
+/area/science/research)
+"cvz" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -73209,10 +69895,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cwn" = (
+/area/science/research)
+"cvA" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -73227,11 +69911,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cwo" = (
-/obj/machinery/door/firedoor,
+/area/science/research)
+"cvB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -73246,10 +69927,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cwp" = (
+/area/science/research)
+"cvC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -73265,10 +69944,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cwq" = (
+/area/science/research)
+"cvD" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -73283,10 +69960,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cwr" = (
+/area/science/research)
+"cvE" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/cable/orange{
d1 = 4;
@@ -73300,10 +69975,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cws" = (
+/area/science/research)
+"cvF" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -73324,10 +69997,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cwt" = (
+/area/science/research)
+"cvG" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d1 = 4;
@@ -73343,10 +70014,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cwu" = (
+/area/science/research)
+"cvH" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -73362,10 +70031,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cwv" = (
+/area/science/research)
+"cvI" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -73378,10 +70045,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cww" = (
+/area/science/research)
+"cvJ" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -73396,10 +70061,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cwx" = (
+/area/science/research)
+"cvK" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -73417,10 +70080,8 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cwy" = (
+/area/science/research)
+"cvL" = (
/obj/machinery/door/airlock/glass_research{
name = "Decontamination Center";
req_access_txt = "55"
@@ -73439,10 +70100,8 @@
/turf/open/floor/plasteel/whitepurple{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cwz" = (
+/area/science/research)
+"cvM" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -73458,20 +70117,16 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cwA" = (
+/area/science/research)
+"cvN" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cwB" = (
+/area/science/research)
+"cvO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -73481,10 +70136,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cwC" = (
+/area/science/research)
+"cvP" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -73501,8 +70154,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cwD" = (
+/area/science/xenobiology)
+"cvQ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -73517,8 +70170,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cwE" = (
+/area/science/xenobiology)
+"cvR" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -73534,8 +70187,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cwF" = (
+/area/science/xenobiology)
+"cvS" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -73552,8 +70205,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cwG" = (
+/area/science/xenobiology)
+"cvT" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -73570,8 +70223,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cwH" = (
+/area/science/xenobiology)
+"cvU" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -73588,8 +70241,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cwI" = (
+/area/science/xenobiology)
+"cvV" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -73597,8 +70250,8 @@
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cwJ" = (
+/area/science/xenobiology)
+"cvW" = (
/obj/structure/table,
/obj/item/stack/sheet/mineral/plasma,
/obj/item/device/radio/intercom{
@@ -73609,19 +70262,19 @@
/turf/open/floor/plasteel/whitepurple{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cwK" = (
+/area/science/xenobiology)
+"cvX" = (
/turf/open/floor/plasteel/whitepurple{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cwL" = (
+/area/science/xenobiology)
+"cvY" = (
/obj/structure/reagent_dispensers/watertank/high,
/turf/open/floor/plasteel/whitepurple{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cwM" = (
+/area/science/xenobiology)
+"cvZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/firealarm{
dir = 4;
@@ -73639,13 +70292,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cwN" = (
+"cwa" = (
/obj/machinery/door/airlock/shuttle{
name = "Cockpit"
},
/turf/open/floor/plasteel/neutral,
/area/shuttle/arrival)
-"cwO" = (
+"cwb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -73659,7 +70312,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cwP" = (
+"cwc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/firealarm{
dir = 4;
@@ -73677,7 +70330,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cwQ" = (
+"cwd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -73690,7 +70343,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cwR" = (
+"cwe" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/firealarm{
dir = 4;
@@ -73708,7 +70361,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cwS" = (
+"cwf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -73728,7 +70381,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cwT" = (
+"cwg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/firealarm{
dir = 4;
@@ -73741,7 +70394,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cwU" = (
+"cwh" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -73755,14 +70408,17 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cwV" = (
-/obj/structure/closet/bombcloset,
+/area/science/mixing)
+"cwi" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cwW" = (
+/area/science/mixing)
+"cwj" = (
/obj/item/device/assembly/signaler{
pixel_x = 0;
pixel_y = 8
@@ -73789,8 +70445,8 @@
dir = 10;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cwX" = (
+/area/science/mixing)
+"cwk" = (
/obj/item/device/transfer_valve{
pixel_x = -5
},
@@ -73813,8 +70469,8 @@
/turf/open/floor/plasteel/whitepurple/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cwY" = (
+/area/science/mixing)
+"cwl" = (
/obj/item/device/assembly/timer{
pixel_x = 5;
pixel_y = 4
@@ -73835,8 +70491,8 @@
/turf/open/floor/plasteel/whitepurple/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cwZ" = (
+/area/science/mixing)
+"cwm" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -73844,41 +70500,41 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cxa" = (
+/area/science/mixing)
+"cwn" = (
/obj/machinery/portable_atmospherics/pump,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cxb" = (
+/area/science/mixing)
+"cwo" = (
/obj/machinery/portable_atmospherics/scrubber,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (EAST)";
icon_state = "whitepurple";
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cxc" = (
+/area/science/mixing)
+"cwp" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cxd" = (
+/area/science/mixing)
+"cwq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (WEST)";
icon_state = "whitepurple";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cxe" = (
+/area/science/research)
+"cwr" = (
/obj/structure/sign/bluecross_2{
pixel_x = -32;
pixel_y = -32
@@ -73886,10 +70542,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cxf" = (
+/area/science/research)
+"cws" = (
/obj/machinery/power/apc{
cell_type = 5000;
dir = 2;
@@ -73900,10 +70554,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cxg" = (
+/area/science/research)
+"cwt" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -73919,27 +70571,21 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cxh" = (
+/area/science/research)
+"cwu" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/whitepurple/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cxi" = (
+/area/science/research)
+"cwv" = (
/turf/open/floor/plasteel/whitepurple/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cxj" = (
+/area/science/research)
+"cww" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whitepurple/corner{
tag = "icon-whitepurplecorner (WEST)";
@@ -73947,26 +70593,20 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cxk" = (
+/area/science/research)
+"cwx" = (
/obj/machinery/light,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cxl" = (
+/area/science/research)
+"cwy" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cxm" = (
+/area/science/research)
+"cwz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/orange{
d1 = 1;
@@ -73976,10 +70616,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cxn" = (
+/area/science/research)
+"cwA" = (
/obj/machinery/camera{
c_tag = "Research Eastern Wing";
dir = 1;
@@ -73989,10 +70627,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cxo" = (
+/area/science/research)
+"cwB" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -74003,20 +70639,16 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cxp" = (
+/area/science/research)
+"cwC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cxq" = (
+/area/science/research)
+"cwD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -74026,20 +70658,16 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cxr" = (
+/area/science/research)
+"cwE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cxs" = (
+/area/science/research)
+"cwF" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -74057,20 +70685,16 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cxt" = (
+/area/science/research)
+"cwG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cxu" = (
+/area/science/research)
+"cwH" = (
/obj/machinery/door/airlock/glass_research{
name = "Xenobiology";
req_access_txt = "55"
@@ -74081,16 +70705,16 @@
/turf/open/floor/plasteel/whitepurple{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cxv" = (
+/area/science/xenobiology)
+"cwI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cxw" = (
+/area/science/xenobiology)
+"cwJ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -74102,16 +70726,16 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cxx" = (
+/area/science/xenobiology)
+"cwK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cxy" = (
+/area/science/xenobiology)
+"cwL" = (
/obj/structure/sign/electricshock{
pixel_y = 32
},
@@ -74124,13 +70748,13 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cxz" = (
+/area/science/xenobiology)
+"cwM" = (
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cxA" = (
+/area/science/xenobiology)
+"cwN" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -74139,8 +70763,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cxB" = (
+/area/science/xenobiology)
+"cwO" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -74149,8 +70773,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cxC" = (
+/area/science/xenobiology)
+"cwP" = (
/obj/machinery/light{
dir = 1
},
@@ -74160,8 +70784,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cxD" = (
+/area/science/xenobiology)
+"cwQ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -74169,31 +70793,30 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cxE" = (
-/obj/machinery/door/firedoor,
+/area/science/xenobiology)
+"cwR" = (
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (EAST)";
icon_state = "whitepurple";
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cxF" = (
+/area/science/xenobiology)
+"cwS" = (
/obj/structure/chair{
dir = 4
},
/turf/open/floor/plasteel/whitepurple{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cxG" = (
+/area/science/xenobiology)
+"cwT" = (
/obj/machinery/computer/camera_advanced/xenobio,
/turf/open/floor/plasteel/whitepurple{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cxH" = (
+/area/science/xenobiology)
+"cwU" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -74203,10 +70826,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cxI" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cwV" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -74219,32 +70840,32 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cxJ" = (
+"cwW" = (
/obj/machinery/computer/arcade,
/turf/open/floor/plasteel/neutral,
/area/shuttle/arrival)
-"cxK" = (
+"cwX" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel/neutral,
/area/shuttle/arrival)
-"cxL" = (
+"cwY" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular,
/turf/open/floor/plasteel/neutral,
/area/shuttle/arrival)
-"cxM" = (
+"cwZ" = (
/obj/machinery/vending/cola,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cxN" = (
+"cxa" = (
/obj/machinery/vending/snack/random,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cxO" = (
+"cxb" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -74257,22 +70878,23 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cxP" = (
+"cxc" = (
/obj/machinery/door/airlock/command{
name = "Server Room";
req_access = null;
req_access_txt = "30"
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/server)
-"cxQ" = (
+/area/science/server)
+"cxd" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/server)
-"cxR" = (
+/area/science/server)
+"cxe" = (
/obj/structure/bed/roller,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel/whitepurple/corner{
@@ -74281,45 +70903,41 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cxS" = (
+/area/science/research)
+"cxf" = (
/turf/open/floor/plasteel/whitepurple/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cxT" = (
+/area/science/research)
+"cxg" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/storage)
-"cxU" = (
+/area/science/storage)
+"cxh" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters/preopen{
id = "rdoffice"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor)
-"cxV" = (
+/area/crew_quarters/heads/hor)
+"cxi" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/poddoor/shutters/preopen{
id = "rdoffice"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor)
-"cxW" = (
+/area/crew_quarters/heads/hor)
+"cxj" = (
/obj/machinery/door/airlock/glass_research{
name = "Research Director's Office";
req_access_txt = "30"
@@ -74327,20 +70945,20 @@
/turf/open/floor/plasteel/whitepurple{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor)
-"cxX" = (
+/area/crew_quarters/heads/hor)
+"cxk" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/poddoor/shutters/preopen{
id = "rdoffice"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor)
-"cxY" = (
+/area/crew_quarters/heads/hor)
+"cxl" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -74348,16 +70966,16 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cxZ" = (
+"cxm" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cya" = (
+"cxn" = (
/obj/machinery/door/airlock/glass_security{
name = "Security Office";
req_access_txt = "63"
@@ -74372,12 +70990,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cyb" = (
+"cxo" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cyc" = (
+/area/science/misc_lab)
+"cxp" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -74399,10 +71017,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cyd" = (
+/area/science/research)
+"cxq" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -74415,10 +71031,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cye" = (
+/area/science/research)
+"cxr" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -74436,13 +71050,10 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cyf" = (
+/area/science/research)
+"cxs" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -74454,10 +71065,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cyg" = (
+/area/science/research)
+"cxt" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -74469,8 +71078,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cyh" = (
+/area/science/xenobiology)
+"cxu" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -74492,8 +71101,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cyi" = (
+/area/science/xenobiology)
+"cxv" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -74506,8 +71115,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cyj" = (
+/area/science/xenobiology)
+"cxw" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -74520,8 +71129,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cyk" = (
+/area/science/xenobiology)
+"cxx" = (
/obj/machinery/monkey_recycler,
/obj/structure/cable/orange{
d1 = 4;
@@ -74534,8 +71143,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cyl" = (
+/area/science/xenobiology)
+"cxy" = (
/obj/machinery/smartfridge/extract/preloaded,
/obj/structure/cable/orange{
d1 = 4;
@@ -74548,8 +71157,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cym" = (
+/area/science/xenobiology)
+"cxz" = (
/obj/machinery/processor{
desc = "A machine used to process slimes and retrieve their extract.";
name = "Slime Processor"
@@ -74565,8 +71174,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cyn" = (
+/area/science/xenobiology)
+"cxA" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -74584,16 +71193,16 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cyo" = (
+/area/science/xenobiology)
+"cxB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cyp" = (
+/area/science/xenobiology)
+"cxC" = (
/obj/structure/table,
/obj/item/weapon/extinguisher,
/obj/item/weapon/extinguisher,
@@ -74604,8 +71213,8 @@
/turf/open/floor/plasteel/whitepurple{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cyq" = (
+/area/science/xenobiology)
+"cxD" = (
/obj/machinery/power/apc{
dir = 8;
name = "Xenobiology APC";
@@ -74623,8 +71232,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cyr" = (
+/area/science/xenobiology)
+"cxE" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -74638,65 +71247,59 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cys" = (
+/area/maintenance/asteroid/aft/science)
+"cxF" = (
/obj/machinery/door/airlock/shuttle,
/obj/structure/fans/tiny,
/turf/open/floor/mineral/titanium,
/area/shuttle/arrival)
-"cyt" = (
+"cxG" = (
/obj/machinery/vending/cigarette,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cyu" = (
+"cxH" = (
/obj/machinery/vending/coffee,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cyv" = (
+"cxI" = (
/obj/structure/shuttle/engine/propulsion{
icon_state = "propulsion";
dir = 4
},
/turf/closed/wall/mineral/titanium,
/area/shuttle/transport)
-"cyw" = (
+"cxJ" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/transport)
-"cyx" = (
+"cxK" = (
/obj/structure/window/shuttle,
/obj/structure/grille,
/turf/open/floor/plating,
/area/shuttle/transport)
-"cyy" = (
+"cxL" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
/turf/open/floor/plating,
/area/shuttle/transport)
-"cyz" = (
+"cxM" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cyA" = (
+/area/maintenance/asteroid/aft/science)
+"cxN" = (
/obj/machinery/light/small,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cyB" = (
+/area/maintenance/asteroid/aft/science)
+"cxO" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/orange{
d1 = 1;
@@ -74720,10 +71323,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cyC" = (
+/area/maintenance/asteroid/aft/science)
+"cxP" = (
/obj/machinery/power/apc{
dir = 1;
name = "Toxins Lab APC";
@@ -74738,42 +71339,64 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cyD" = (
+/area/science/mixing)
+"cxQ" = (
/obj/machinery/r_n_d/server/core,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/server)
-"cyE" = (
+/area/science/server)
+"cxR" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 120;
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
+ },
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/server)
-"cyF" = (
+/area/science/server)
+"cxS" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 10
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'SERVER ROOM'.";
+ name = "SERVER ROOM";
+ pixel_y = 32
+ },
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/server)
-"cyG" = (
+/area/science/server)
+"cxT" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
pixel_y = 23
},
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/server)
-"cyH" = (
+/area/science/server)
+"cxU" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/server)
-"cyI" = (
+/area/science/server)
+"cxV" = (
/obj/structure/bed/roller,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel/whitepurple/side{
@@ -74782,21 +71405,20 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cyJ" = (
+/area/science/research)
+"cxW" = (
/obj/machinery/iv_drip,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 24
+ },
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (EAST)";
icon_state = "whitepurple";
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cyK" = (
+/area/science/research)
+"cxX" = (
/obj/structure/table,
/obj/item/weapon/cartridge/signal/toxins,
/obj/item/weapon/cartridge/signal/toxins{
@@ -74810,15 +71432,15 @@
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor)
-"cyL" = (
+/area/crew_quarters/heads/hor)
+"cxY" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor)
-"cyM" = (
+/area/crew_quarters/heads/hor)
+"cxZ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -74826,20 +71448,21 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/storage)
-"cyN" = (
+/area/science/storage)
+"cya" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor)
-"cyO" = (
+/area/crew_quarters/heads/hor)
+"cyb" = (
/obj/machinery/portable_atmospherics/scrubber/huge/movable,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/storage)
-"cyP" = (
+/area/science/storage)
+"cyc" = (
/obj/structure/table,
/obj/item/weapon/paper_bin,
/turf/open/floor/plasteel/red/side{
@@ -74849,7 +71472,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cyQ" = (
+"cyd" = (
/obj/structure/table,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/computer/security/telescreen{
@@ -74863,7 +71486,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cyR" = (
+"cye" = (
/obj/structure/table,
/turf/open/floor/plasteel/red/side{
icon_state = "red";
@@ -74871,14 +71494,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cyS" = (
+"cyf" = (
/turf/open/floor/plasteel/red/side{
icon_state = "red";
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cyT" = (
+"cyg" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -74902,14 +71525,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cyU" = (
+"cyh" = (
/obj/structure/reagent_dispensers/watertank,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cyV" = (
+/area/science/misc_lab)
+"cyi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -74921,26 +71544,24 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cyW" = (
+/area/science/misc_lab)
+"cyj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cyX" = (
+/area/science/misc_lab)
+"cyk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cyY" = (
+/area/science/research)
+"cyl" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -74960,20 +71581,16 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cyZ" = (
+/area/science/research)
+"cym" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cza" = (
+/area/science/research)
+"cyn" = (
/obj/machinery/door/airlock/glass_research{
name = "Xenobiology";
req_access_txt = "55"
@@ -74981,8 +71598,8 @@
/turf/open/floor/plasteel/whitepurple{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"czb" = (
+/area/science/xenobiology)
+"cyo" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -74992,8 +71609,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"czc" = (
+/area/science/xenobiology)
+"cyp" = (
/obj/machinery/light,
/obj/structure/sign/electricshock{
pixel_y = -32
@@ -75001,16 +71618,16 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"czd" = (
+/area/science/xenobiology)
+"cyq" = (
/obj/structure/sign/electricshock{
pixel_y = -32
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cze" = (
+/area/science/xenobiology)
+"cyr" = (
/obj/structure/sign/electricshock{
pixel_y = -32
},
@@ -75023,8 +71640,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"czf" = (
+/area/science/xenobiology)
+"cys" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -75039,7 +71656,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"czg" = (
+"cyt" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -75058,7 +71675,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"czh" = (
+"cyu" = (
/obj/structure/chair{
dir = 4
},
@@ -75068,19 +71685,19 @@
},
/turf/open/floor/plasteel/shuttle,
/area/shuttle/arrival)
-"czi" = (
+"cyv" = (
/obj/structure/chair{
dir = 8
},
/turf/open/floor/plasteel/shuttle,
/area/shuttle/arrival)
-"czj" = (
+"cyw" = (
/obj/structure/chair{
dir = 4
},
/turf/open/floor/plasteel/shuttle,
/area/shuttle/arrival)
-"czk" = (
+"cyx" = (
/obj/structure/chair{
dir = 8
},
@@ -75090,7 +71707,7 @@
},
/turf/open/floor/plasteel/shuttle,
/area/shuttle/arrival)
-"czl" = (
+"cyy" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -75110,7 +71727,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"czm" = (
+"cyz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -75131,32 +71748,32 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"czn" = (
+"cyA" = (
/turf/open/floor/mineral/titanium/blue,
/turf/closed/wall/mineral/titanium/interior,
/area/shuttle/transport)
-"czo" = (
+"cyB" = (
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/transport)
-"czp" = (
+"cyC" = (
/obj/machinery/computer/shuttle/ferry/request,
/obj/machinery/light{
dir = 1
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/transport)
-"czq" = (
+"cyD" = (
/obj/structure/chair,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/transport)
-"czr" = (
+"cyE" = (
/obj/structure/chair,
/obj/machinery/light{
dir = 1
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/transport)
-"czs" = (
+"cyF" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/orange{
d1 = 1;
@@ -75166,48 +71783,57 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"czt" = (
+/area/maintenance/asteroid/aft/science)
+"cyG" = (
/obj/machinery/light/small{
dir = 8
},
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/server)
-"czu" = (
+/area/science/server)
+"cyH" = (
/obj/machinery/door/airlock/glass_command{
name = "Server Room";
req_access_txt = "30"
},
+/obj/machinery/atmospherics/pipe/manifold/general/hidden{
+ icon_state = "manifold";
+ dir = 8
+ },
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/server)
-"czv" = (
+/area/science/server)
+"cyI" = (
/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 10
+ },
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/server)
-"czw" = (
+/area/science/server)
+"cyJ" = (
/obj/structure/chair/office/light,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/server)
-"czx" = (
+/area/science/server)
+"cyK" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
},
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/server)
-"czy" = (
+/area/science/server)
+"cyL" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/o2,
/obj/machinery/camera{
@@ -75223,10 +71849,8 @@
dir = 10;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"czz" = (
+/area/science/research)
+"cyM" = (
/obj/machinery/light,
/obj/item/weapon/reagent_containers/blood/random,
/obj/item/weapon/reagent_containers/blood/random,
@@ -75235,10 +71859,8 @@
/turf/open/floor/plasteel/whitepurple/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"czA" = (
+/area/science/research)
+"cyN" = (
/obj/machinery/iv_drip,
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (SOUTHEAST)";
@@ -75246,21 +71868,19 @@
dir = 6;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"czB" = (
+/area/science/research)
+"cyO" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/storage)
-"czC" = (
+/area/science/storage)
+"cyP" = (
/obj/machinery/suit_storage_unit/rd,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor)
-"czD" = (
+/area/crew_quarters/heads/hor)
+"cyQ" = (
/obj/structure/table,
/obj/machinery/newscaster/security_unit{
pixel_x = -28
@@ -75272,7 +71892,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"czE" = (
+"cyR" = (
/obj/structure/chair/office/dark{
dir = 1
},
@@ -75282,12 +71902,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"czF" = (
+"cyS" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"czG" = (
+"cyT" = (
/obj/machinery/airalarm{
dir = 8;
icon_state = "alarm0";
@@ -75304,14 +71924,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"czH" = (
+"cyU" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"czI" = (
+/area/science/misc_lab)
+"cyV" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -75326,8 +71946,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"czJ" = (
+/area/science/misc_lab)
+"cyW" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -75336,8 +71956,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"czK" = (
+/area/science/misc_lab)
+"cyX" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -75353,8 +71973,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"czL" = (
+/area/science/misc_lab)
+"cyY" = (
/obj/machinery/door/airlock/glass_research{
name = "Testing Lab";
req_access_txt = "55"
@@ -75373,10 +71993,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"czM" = (
+/area/science/research)
+"cyZ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -75392,20 +72010,16 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"czN" = (
+/area/science/research)
+"cza" = (
/obj/structure/sign/xenobio{
pixel_x = 32
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"czO" = (
+/area/science/research)
+"czb" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -75418,8 +72032,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"czP" = (
+/area/science/xenobiology)
+"czc" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -75431,8 +72045,8 @@
/turf/open/floor/plasteel/whitepurple/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"czQ" = (
+/area/science/xenobiology)
+"czd" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -75442,8 +72056,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"czR" = (
+/area/science/xenobiology)
+"cze" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -75456,8 +72070,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"czS" = (
+/area/science/xenobiology)
+"czf" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -75470,8 +72084,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"czT" = (
+/area/science/xenobiology)
+"czg" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -75484,15 +72098,15 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"czU" = (
+/area/science/xenobiology)
+"czh" = (
/obj/structure/table,
/obj/machinery/reagentgrinder,
/turf/open/floor/plasteel/whitepurple{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"czV" = (
+/area/science/xenobiology)
+"czi" = (
/obj/structure/table,
/obj/item/weapon/storage/box/beakers,
/obj/item/weapon/storage/box/syringes,
@@ -75501,8 +72115,8 @@
/turf/open/floor/plasteel/whitepurple{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"czW" = (
+/area/science/xenobiology)
+"czj" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -75510,7 +72124,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"czX" = (
+"czk" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -75519,7 +72133,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"czY" = (
+"czl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -75537,7 +72151,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"czZ" = (
+"czm" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -75554,11 +72168,11 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cAa" = (
+"czn" = (
/obj/machinery/door/airlock/shuttle,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/transport)
-"cAb" = (
+"czo" = (
/obj/machinery/door/airlock/shuttle,
/obj/docking_port/mobile{
dir = 8;
@@ -75582,42 +72196,47 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/transport)
-"cAc" = (
+"czp" = (
/obj/machinery/r_n_d/server/robotics,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/server)
-"cAd" = (
+/area/science/server)
+"czq" = (
/obj/machinery/camera{
c_tag = "Research Server Room";
dir = 1;
icon_state = "camera";
network = list("SS13","RD")
},
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ dir = 1;
+ on = 1;
+ target_temperature = 80
+ },
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/server)
-"cAe" = (
+/area/science/server)
+"czr" = (
/obj/machinery/computer/rdservercontrol,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/server)
-"cAf" = (
+/area/science/server)
+"czs" = (
/obj/structure/table,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/server)
-"cAg" = (
+/area/science/server)
+"czt" = (
/obj/machinery/modular_computer/console/preset/research,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor)
-"cAh" = (
+/area/crew_quarters/heads/hor)
+"czu" = (
/obj/structure/rack,
/obj/item/weapon/circuitboard/aicore{
pixel_x = -2;
@@ -75627,8 +72246,8 @@
dir = 5
},
/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
-"cAi" = (
+/area/crew_quarters/heads/hor)
+"czv" = (
/obj/machinery/computer/secure_data,
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -75642,7 +72261,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cAj" = (
+"czw" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -75657,7 +72276,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cAk" = (
+"czx" = (
/obj/machinery/light,
/obj/structure/reagent_dispensers/peppertank{
pixel_y = -32
@@ -75666,7 +72285,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cAl" = (
+"czy" = (
/obj/machinery/power/apc{
cell_type = 5000;
dir = 2;
@@ -75682,7 +72301,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cAm" = (
+"czz" = (
/obj/structure/filingcabinet,
/obj/structure/cable/orange{
d1 = 1;
@@ -75695,21 +72314,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cAn" = (
+"czA" = (
/obj/machinery/portable_atmospherics/scrubber,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cAo" = (
+/area/science/misc_lab)
+"czB" = (
/obj/machinery/portable_atmospherics/pump,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cAp" = (
+/area/science/misc_lab)
+"czC" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -75718,13 +72337,13 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cAq" = (
+/area/science/misc_lab)
+"czD" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cAr" = (
+/area/science/misc_lab)
+"czE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/obj/structure/sign/map/left/ceres{
@@ -75733,8 +72352,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cAs" = (
+/area/science/misc_lab)
+"czF" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/preopen{
@@ -75748,8 +72367,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cAt" = (
+/area/science/xenobiology)
+"czG" = (
/obj/machinery/door/poddoor/preopen{
id = "XenoPod5";
name = "containment door 5"
@@ -75770,8 +72389,8 @@
/turf/open/floor/plasteel/purple{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cAu" = (
+/area/science/xenobiology)
+"czH" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/disposalpipe/segment,
@@ -75786,8 +72405,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cAv" = (
+/area/science/xenobiology)
+"czI" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/preopen{
@@ -75801,10 +72420,11 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cAw" = (
+/area/science/xenobiology)
+"czJ" = (
/obj/machinery/door/poddoor/preopen{
id = "XenoPod6";
+ layer = 2.6;
name = "containment door 6"
},
/obj/structure/cable/orange{
@@ -75823,13 +72443,14 @@
/turf/open/floor/plasteel/purple{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cAx" = (
+/area/science/xenobiology)
+"czK" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/poddoor/preopen{
id = "XenoPod6";
+ layer = 2.6;
name = "containment door 6"
},
/obj/structure/cable/orange{
@@ -75839,12 +72460,13 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cAy" = (
+/area/science/xenobiology)
+"czL" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/preopen{
id = "XenoPod7";
+ layer = 2.6;
name = "containment door 7"
},
/obj/structure/cable/orange{
@@ -75854,10 +72476,11 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cAz" = (
+/area/science/xenobiology)
+"czM" = (
/obj/machinery/door/poddoor/preopen{
id = "XenoPod7";
+ layer = 2.6;
name = "containment door 7"
},
/obj/structure/cable/orange{
@@ -75876,13 +72499,14 @@
/turf/open/floor/plasteel/purple{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cAA" = (
+/area/science/xenobiology)
+"czN" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/poddoor/preopen{
id = "XenoPod7";
+ layer = 2.6;
name = "containment door 7"
},
/obj/structure/cable/orange{
@@ -75892,8 +72516,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cAB" = (
+/area/science/xenobiology)
+"czO" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable/orange{
@@ -75903,10 +72527,11 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cAC" = (
+/area/science/xenobiology)
+"czP" = (
/obj/machinery/door/poddoor/preopen{
id = "XenoPod8";
+ layer = 2.6;
name = "containment door 8"
},
/obj/structure/cable/orange{
@@ -75925,8 +72550,8 @@
/turf/open/floor/plasteel/purple{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cAD" = (
+/area/science/xenobiology)
+"czQ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/disposalpipe/segment,
@@ -75937,17 +72562,15 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cAE" = (
+/area/science/xenobiology)
+"czR" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cAF" = (
-/obj/machinery/door/firedoor,
+/area/science/xenobiology)
+"czS" = (
/obj/machinery/door/airlock/research{
name = "Kill Chamber";
req_access_txt = "55"
@@ -75958,8 +72581,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cAG" = (
+/area/science/xenobiology)
+"czT" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -75968,10 +72591,8 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cAH" = (
+/area/maintenance/asteroid/aft/science)
+"czU" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -75985,29 +72606,29 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cAI" = (
+"czV" = (
/obj/structure/closet/crate,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/transport)
-"cAJ" = (
+"czW" = (
/obj/structure/closet/crate,
/obj/machinery/light,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/transport)
-"cAK" = (
+"czX" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/transport)
-"cAL" = (
+"czY" = (
/obj/structure/chair{
dir = 1
},
/obj/machinery/light,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/transport)
-"cAM" = (
+"czZ" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/orange{
d1 = 1;
@@ -76019,18 +72640,14 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cAN" = (
+/area/maintenance/asteroid/aft/science)
+"cAa" = (
/obj/structure/closet/crate,
/obj/item/weapon/storage/bag/ore,
/obj/item/weapon/pickaxe/emergency,
/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cAO" = (
+/area/maintenance/asteroid/aft/science)
+"cAb" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -76039,13 +72656,13 @@
on = 1
},
/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
-"cAP" = (
+/area/crew_quarters/heads/hor)
+"cAc" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cAQ" = (
+/area/science/misc_lab)
+"cAd" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -76053,8 +72670,8 @@
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cAR" = (
+/area/science/misc_lab)
+"cAe" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -76072,15 +72689,15 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cAS" = (
+/area/science/misc_lab)
+"cAf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cAT" = (
+/area/science/misc_lab)
+"cAg" = (
/obj/structure/rack,
/obj/item/clothing/mask/gas,
/obj/item/clothing/mask/gas,
@@ -76088,8 +72705,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cAU" = (
+/area/science/misc_lab)
+"cAh" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/darkpurple/side{
tag = "icon-darkpurple (NORTH)";
@@ -76097,15 +72714,15 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cAV" = (
+/area/science/xenobiology)
+"cAi" = (
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless;
initial_gas_mix = "n2=500;TEMP=80";
name = "Killroom Floor"
},
-/area/toxins/xenobiology)
-"cAW" = (
+/area/science/xenobiology)
+"cAj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -76115,7 +72732,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cAX" = (
+"cAk" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -76128,10 +72745,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cAY" = (
+/area/maintenance/asteroid/aft/science)
+"cAl" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -76143,10 +72758,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cAZ" = (
+/area/maintenance/asteroid/aft/science)
+"cAm" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -76158,10 +72771,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cBa" = (
+/area/maintenance/asteroid/aft/science)
+"cAn" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -76180,10 +72791,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cBb" = (
+/area/maintenance/asteroid/aft/science)
+"cAo" = (
/obj/machinery/power/apc{
dir = 1;
name = "RnD Server APC";
@@ -76206,8 +72815,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/server)
-"cBc" = (
+/area/science/server)
+"cAp" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -76221,10 +72830,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cBd" = (
+/area/maintenance/asteroid/aft/science)
+"cAq" = (
/obj/machinery/light_switch{
pixel_y = -23
},
@@ -76232,8 +72839,8 @@
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor)
-"cBe" = (
+/area/crew_quarters/heads/hor)
+"cAr" = (
/obj/machinery/computer/card/minor/rd,
/obj/machinery/camera{
c_tag = "Research Director's Office";
@@ -76244,21 +72851,21 @@
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor)
-"cBf" = (
+/area/crew_quarters/heads/hor)
+"cAs" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/obj/machinery/light,
/obj/effect/landmark/xmastree/rdrod,
/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
-"cBg" = (
+/area/crew_quarters/heads/hor)
+"cAt" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cBh" = (
+/area/science/misc_lab)
+"cAu" = (
/obj/machinery/shieldwallgen{
req_access = list(55)
},
@@ -76269,24 +72876,24 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cBi" = (
+/area/science/misc_lab)
+"cAv" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cBj" = (
+/area/science/misc_lab)
+"cAw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/obj/structure/chair/stool,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cBk" = (
+/area/science/misc_lab)
+"cAx" = (
/obj/machinery/airalarm{
dir = 8;
icon_state = "alarm0";
@@ -76302,8 +72909,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cBl" = (
+/area/science/misc_lab)
+"cAy" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -76319,8 +72926,8 @@
initial_gas_mix = "n2=500;TEMP=80";
name = "Killroom Floor"
},
-/area/toxins/xenobiology)
-"cBm" = (
+/area/science/xenobiology)
+"cAz" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 1
@@ -76330,8 +72937,8 @@
initial_gas_mix = "n2=500;TEMP=80";
name = "Killroom Floor"
},
-/area/toxins/xenobiology)
-"cBn" = (
+/area/science/xenobiology)
+"cAA" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -76342,16 +72949,14 @@
initial_gas_mix = "n2=500;TEMP=80";
name = "Killroom Floor"
},
-/area/toxins/xenobiology)
-"cBo" = (
+/area/science/xenobiology)
+"cAB" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cBp" = (
+/area/maintenance/asteroid/aft/science)
+"cAC" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -76364,10 +72969,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cBq" = (
+/area/maintenance/asteroid/aft/science)
+"cAD" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -76381,10 +72984,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cBr" = (
+/area/maintenance/asteroid/aft/science)
+"cAE" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable/orange{
@@ -76396,11 +72997,12 @@
d2 = 2;
icon_state = "0-2"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cBs" = (
+/area/science/misc_lab)
+"cAF" = (
/obj/structure/table,
/obj/item/weapon/wrench,
/obj/effect/turf_decal/stripes/line{
@@ -76409,28 +73011,28 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cBt" = (
+/area/science/misc_lab)
+"cAG" = (
/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cBu" = (
+/area/science/misc_lab)
+"cAH" = (
/obj/structure/table,
/obj/item/stack/packageWrap,
/obj/item/device/destTagger,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cBv" = (
+/area/science/misc_lab)
+"cAI" = (
/obj/machinery/light/small,
/turf/open/floor/plasteel/darkpurple/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cBw" = (
+/area/science/xenobiology)
+"cAJ" = (
/obj/structure/disposalpipe/trunk{
dir = 1
},
@@ -76440,14 +73042,14 @@
/turf/open/floor/plasteel/darkpurple/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cBx" = (
+/area/science/xenobiology)
+"cAK" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cBy" = (
+/area/science/xenobiology)
+"cAL" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -76460,7 +73062,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cBz" = (
+"cAM" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -76478,24 +73080,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cBA" = (
+"cAN" = (
/obj/machinery/light/small,
/obj/structure/closet/firecloset/full,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cBB" = (
+/area/maintenance/asteroid/aft/science)
+"cAO" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cBC" = (
+/area/maintenance/asteroid/aft/science)
+"cAP" = (
/obj/structure/cable/orange{
d2 = 2;
icon_state = "0-2"
@@ -76519,8 +73117,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor)
-"cBD" = (
+/area/crew_quarters/heads/hor)
+"cAQ" = (
/obj/structure/disposaloutlet{
dir = 8
},
@@ -76530,8 +73128,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cBE" = (
+/area/science/misc_lab)
+"cAR" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/disposalpipe/segment{
@@ -76546,11 +73144,12 @@
d2 = 2;
icon_state = "0-2"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cBF" = (
+/area/science/misc_lab)
+"cAS" = (
/obj/structure/window/reinforced,
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -76562,8 +73161,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cBG" = (
+/area/science/misc_lab)
+"cAT" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -76579,8 +73178,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cBH" = (
+/area/science/misc_lab)
+"cAU" = (
/obj/structure/disposalpipe/trunk,
/obj/structure/disposaloutlet{
dir = 8
@@ -76588,8 +73187,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cBI" = (
+/area/science/misc_lab)
+"cAV" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
target_temperature = 80;
dir = 2;
@@ -76598,10 +73197,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cBJ" = (
+/area/maintenance/asteroid/aft/science)
+"cAW" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/obj/machinery/light/small{
dir = 1
@@ -76609,10 +73206,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cBK" = (
+/area/maintenance/asteroid/aft/science)
+"cAX" = (
/obj/structure/closet/emcloset,
/obj/machinery/camera{
c_tag = "Docking Asteroid Hall 14";
@@ -76623,7 +73218,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cBL" = (
+"cAY" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -76635,7 +73230,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cBM" = (
+"cAZ" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -76647,7 +73242,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cBN" = (
+"cBa" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -76661,7 +73256,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cBO" = (
+"cBb" = (
/obj/structure/closet/emcloset,
/obj/machinery/camera{
c_tag = "Docking Asteroid Hall 10";
@@ -76672,7 +73267,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cBP" = (
+"cBc" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -76689,7 +73284,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cBQ" = (
+"cBd" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -76703,10 +73298,10 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cBR" = (
+"cBe" = (
/turf/closed/mineral,
/area/hallway/secondary/entry)
-"cBS" = (
+"cBf" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -76715,15 +73310,15 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cBT" = (
+/area/science/misc_lab)
+"cBg" = (
/obj/effect/landmark/event_spawn,
/obj/machinery/r_n_d/experimentor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cBU" = (
+/area/science/misc_lab)
+"cBh" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -76741,8 +73336,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cBV" = (
+/area/science/misc_lab)
+"cBi" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -76755,8 +73350,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cBW" = (
+/area/science/misc_lab)
+"cBj" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -76765,8 +73360,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cBX" = (
+/area/science/misc_lab)
+"cBk" = (
/obj/machinery/autolathe,
/obj/structure/window/reinforced{
dir = 1;
@@ -76781,8 +73376,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cBY" = (
+/area/science/misc_lab)
+"cBl" = (
/obj/structure/plasticflaps,
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -76791,15 +73386,13 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cBZ" = (
+/area/science/misc_lab)
+"cBm" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cCa" = (
+/area/maintenance/asteroid/aft/science)
+"cBn" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -76811,10 +73404,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cCb" = (
+/area/maintenance/asteroid/aft/science)
+"cBo" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -76826,16 +73417,14 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cCc" = (
+/area/maintenance/asteroid/aft/science)
+"cBp" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cCd" = (
+"cBq" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
@@ -76843,7 +73432,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cCe" = (
+"cBr" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
@@ -76851,11 +73440,11 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cCf" = (
+"cBs" = (
/obj/structure/closet/wardrobe/mixed,
/turf/open/floor/plasteel/neutral,
/area/shuttle/arrival)
-"cCg" = (
+"cBt" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
@@ -76864,7 +73453,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cCh" = (
+"cBu" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
@@ -76877,7 +73466,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cCi" = (
+"cBv" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -76887,7 +73476,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cCj" = (
+"cBw" = (
/obj/machinery/door/airlock/maintenance{
name = "Aft Disposals Maintenance";
req_access_txt = "12"
@@ -76901,7 +73490,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cCk" = (
+"cBx" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -76915,7 +73504,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cCl" = (
+"cBy" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -76925,18 +73514,16 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cCm" = (
+"cBz" = (
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cCn" = (
+"cBA" = (
/obj/machinery/light/small,
/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cCo" = (
+/area/maintenance/asteroid/aft/science)
+"cBB" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -76946,10 +73533,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cCp" = (
+/area/maintenance/asteroid/aft/science)
+"cBC" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable/orange{
@@ -76961,8 +73546,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cCq" = (
+/area/science/misc_lab)
+"cBD" = (
/obj/structure/window/reinforced{
dir = 1;
layer = 2.9
@@ -76974,8 +73559,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cCr" = (
+/area/science/misc_lab)
+"cBE" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -76984,8 +73569,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cCs" = (
+/area/science/misc_lab)
+"cBF" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -76996,14 +73581,14 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cCt" = (
+/area/science/misc_lab)
+"cBG" = (
/obj/machinery/door/airlock/shuttle{
name = "Engines"
},
/turf/open/floor/plating,
/area/shuttle/arrival)
-"cCu" = (
+"cBH" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -77013,7 +73598,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cCv" = (
+"cBI" = (
/obj/machinery/light/small{
dir = 1
},
@@ -77026,11 +73611,11 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cCw" = (
+"cBJ" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating/asteroid,
/area/hallway/secondary/entry)
-"cCx" = (
+"cBK" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -77038,8 +73623,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cCy" = (
+/area/science/misc_lab)
+"cBL" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
@@ -77052,16 +73637,16 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cCz" = (
+/area/science/misc_lab)
+"cBM" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cCA" = (
+/area/science/misc_lab)
+"cBN" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable/orange{
@@ -77073,11 +73658,12 @@
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cCB" = (
+/area/science/misc_lab)
+"cBO" = (
/obj/structure/table,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -77088,8 +73674,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cCC" = (
+/area/science/misc_lab)
+"cBP" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
name = "Injector Toggle";
@@ -77098,8 +73684,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cCD" = (
+/area/science/misc_lab)
+"cBQ" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
icon_state = "connector_map";
dir = 8
@@ -77107,25 +73693,25 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cCE" = (
+/area/science/misc_lab)
+"cBR" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cCF" = (
+/area/science/misc_lab)
+"cBS" = (
/obj/structure/filingcabinet/chestdrawer,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cCG" = (
+/area/science/misc_lab)
+"cBT" = (
/obj/structure/shuttle/engine/heater,
/obj/structure/window/reinforced,
/turf/open/floor/plating,
/area/shuttle/arrival)
-"cCH" = (
+"cBU" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -77135,16 +73721,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cCI" = (
+"cBV" = (
/obj/structure/grille/broken,
/turf/open/floor/plating/asteroid,
/area/hallway/secondary/entry)
-"cCJ" = (
+"cBW" = (
/turf/closed/wall,
-/area/maintenance/disposal{
- name = "South-Western External Waste Belt"
- })
-"cCK" = (
+/area/maintenance/asteroid/disposal/southwest)
+"cBX" = (
/obj/structure/disposalpipe/trunk,
/obj/machinery/disposal/deliveryChute{
tag = "icon-intake (NORTH)";
@@ -77152,23 +73736,21 @@
dir = 1
},
/turf/open/floor/plating/airless,
-/area/maintenance/disposal{
- name = "South-Western External Waste Belt"
- })
-"cCL" = (
+/area/maintenance/asteroid/disposal/southwest)
+"cBY" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mine/unexplored{
name = "Research Asteroid"
})
-"cCM" = (
+"cBZ" = (
/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cCN" = (
+/area/science/misc_lab)
+"cCa" = (
/obj/machinery/shieldwallgen{
req_access = list(55)
},
@@ -77176,8 +73758,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cCO" = (
+/area/science/misc_lab)
+"cCb" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -77187,8 +73769,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cCP" = (
+/area/science/misc_lab)
+"cCc" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -77196,8 +73778,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cCQ" = (
+/area/science/misc_lab)
+"cCd" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -77205,8 +73787,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cCR" = (
+/area/science/misc_lab)
+"cCe" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -77214,8 +73796,8 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cCS" = (
+/area/science/misc_lab)
+"cCf" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -77225,24 +73807,20 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cCT" = (
+/area/maintenance/asteroid/aft/science)
+"cCg" = (
/obj/structure/barricade/wooden,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cCU" = (
+/area/maintenance/asteroid/aft/science)
+"cCh" = (
/obj/structure/shuttle/engine/propulsion{
name = "shuttle engine"
},
/turf/open/floor/plating/airless,
/area/shuttle/arrival)
-"cCV" = (
+"cCi" = (
/obj/docking_port/stationary{
dir = 1;
dwidth = 4;
@@ -77259,28 +73837,22 @@
},
/turf/closed/wall/mineral/titanium,
/area/shuttle/arrival)
-"cCW" = (
+"cCj" = (
/turf/closed/wall,
-/area/maintenance/disposal{
- name = "South-Eastern External Waste Belt"
- })
-"cCX" = (
+/area/maintenance/asteroid/disposal/southeast)
+"cCk" = (
/obj/structure/disposaloutlet{
icon_state = "outlet";
dir = 1
},
/obj/structure/disposalpipe/trunk,
/turf/open/floor/plating/airless,
-/area/maintenance/disposal{
- name = "South-Eastern External Waste Belt"
- })
-"cCY" = (
+/area/maintenance/asteroid/disposal/southeast)
+"cCl" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall,
-/area/maintenance/disposal{
- name = "South-Western External Waste Belt"
- })
-"cCZ" = (
+/area/maintenance/asteroid/disposal/southwest)
+"cCm" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -77291,10 +73863,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cDa" = (
+/area/maintenance/asteroid/aft/science)
+"cCn" = (
/obj/machinery/door/airlock/maintenance{
name = "Aft Asteroid Maintenance";
req_access_txt = "47"
@@ -77302,30 +73872,26 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cDb" = (
+/area/science/misc_lab)
+"cCo" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cDc" = (
+/area/maintenance/asteroid/aft/science)
+"cCp" = (
/obj/structure/girder,
/obj/structure/grille,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cDd" = (
+/area/maintenance/asteroid/aft/science)
+"cCq" = (
/turf/closed/wall,
/area/hallway/secondary/entry)
-"cDe" = (
+"cCr" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -77338,27 +73904,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cDf" = (
+"cCs" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall/rust,
-/area/maintenance/disposal{
- name = "South-Eastern External Waste Belt"
- })
-"cDg" = (
+/area/maintenance/asteroid/disposal/southeast)
+"cCt" = (
/obj/structure/disposalpipe/trunk{
dir = 1
},
/obj/structure/disposaloutlet,
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "South-Western External Waste Belt"
- })
-"cDh" = (
+/area/maintenance/asteroid/disposal/southwest)
+"cCu" = (
/turf/closed/wall/rust,
-/area/maintenance/disposal{
- name = "South-Western External Waste Belt"
- })
-"cDi" = (
+/area/maintenance/asteroid/disposal/southwest)
+"cCv" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -77371,10 +73931,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cDj" = (
+/area/maintenance/asteroid/aft/science)
+"cCw" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -77390,10 +73948,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cDk" = (
+/area/maintenance/asteroid/aft/science)
+"cCx" = (
/obj/machinery/power/apc{
dir = 1;
name = "Testing Lab APC";
@@ -77416,8 +73972,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cDl" = (
+/area/science/misc_lab)
+"cCy" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -77430,10 +73986,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cDm" = (
+/area/maintenance/asteroid/aft/science)
+"cCz" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -77446,29 +74000,23 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cDn" = (
+/area/maintenance/asteroid/aft/science)
+"cCA" = (
/obj/structure/girder,
/obj/structure/grille,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cDo" = (
+/area/maintenance/asteroid/aft/science)
+"cCB" = (
/obj/machinery/hydroponics/soil,
/obj/item/seeds/poppy,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cDp" = (
+/area/maintenance/asteroid/aft/science)
+"cCC" = (
/obj/machinery/light/small,
/obj/structure/cable/orange{
d1 = 1;
@@ -77479,7 +74027,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cDq" = (
+"cCD" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -77492,7 +74040,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cDr" = (
+"cCE" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable/orange{
d1 = 4;
@@ -77501,7 +74049,7 @@
},
/turf/open/space,
/area/space)
-"cDs" = (
+"cCF" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable/orange{
d1 = 2;
@@ -77510,12 +74058,10 @@
},
/turf/open/space,
/area/space)
-"cDt" = (
+"cCG" = (
/turf/closed/wall/rust,
-/area/maintenance/disposal{
- name = "South-Eastern External Waste Belt"
- })
-"cDu" = (
+/area/maintenance/asteroid/disposal/southeast)
+"cCH" = (
/obj/machinery/power/apc{
dir = 1;
name = "South-Eastern External Waste Belt APC";
@@ -77528,10 +74074,8 @@
},
/obj/effect/turf_decal/stripes/end,
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "South-Eastern External Waste Belt"
- })
-"cDv" = (
+/area/maintenance/asteroid/disposal/southeast)
+"cCI" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -77540,28 +74084,22 @@
/obj/item/clothing/mask/gas,
/obj/item/weapon/wirecutters,
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/disposal{
- name = "South-Eastern External Waste Belt"
- })
-"cDw" = (
+/area/maintenance/asteroid/disposal/southeast)
+"cCJ" = (
/obj/machinery/disposal/deliveryChute,
/obj/structure/disposalpipe/trunk{
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "South-Eastern External Waste Belt"
- })
-"cDx" = (
+/area/maintenance/asteroid/disposal/southeast)
+"cCK" = (
/obj/machinery/conveyor/auto,
/obj/machinery/light/small{
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "South-Western External Waste Belt"
- })
-"cDy" = (
+/area/maintenance/asteroid/disposal/southwest)
+"cCL" = (
/obj/structure/rack,
/obj/item/clothing/mask/breath,
/obj/item/weapon/tank/internals/emergency_oxygen,
@@ -77569,10 +74107,8 @@
dir = 8
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/disposal{
- name = "South-Western External Waste Belt"
- })
-"cDz" = (
+/area/maintenance/asteroid/disposal/southwest)
+"cCM" = (
/obj/effect/turf_decal/stripes/end,
/obj/structure/cable/orange{
d2 = 2;
@@ -77585,19 +74121,15 @@
pixel_y = 24
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "South-Western External Waste Belt"
- })
-"cDA" = (
+/area/maintenance/asteroid/disposal/southwest)
+"cCN" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/stripes/asteroid/line,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cDB" = (
+/area/maintenance/asteroid/aft/science)
+"cCO" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/orange{
d1 = 1;
@@ -77609,28 +74141,22 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cDC" = (
+/area/maintenance/asteroid/aft/science)
+"cCP" = (
/obj/structure/closet,
/obj/item/seeds/random,
/obj/item/seeds/chili,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cDD" = (
+/area/maintenance/asteroid/aft/science)
+"cCQ" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cDE" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cCR" = (
/obj/machinery/hydroponics/soil,
/obj/machinery/light/small{
dir = 4
@@ -77638,10 +74164,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cDF" = (
+/area/maintenance/asteroid/aft/science)
+"cCS" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -77651,10 +74175,8 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "South-Eastern External Waste Belt"
- })
-"cDG" = (
+/area/maintenance/asteroid/disposal/southeast)
+"cCT" = (
/obj/machinery/light/small,
/obj/structure/cable/orange{
d1 = 4;
@@ -77662,38 +74184,30 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "South-Eastern External Waste Belt"
- })
-"cDH" = (
+/area/maintenance/asteroid/disposal/southeast)
+"cCU" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/disposal{
- name = "South-Eastern External Waste Belt"
- })
-"cDI" = (
+/area/maintenance/asteroid/disposal/southeast)
+"cCV" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/disposal{
- name = "South-Eastern External Waste Belt"
- })
-"cDJ" = (
+/area/maintenance/asteroid/disposal/southeast)
+"cCW" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/disposal{
- name = "South-Eastern External Waste Belt"
- })
-"cDK" = (
+/area/maintenance/asteroid/disposal/southeast)
+"cCX" = (
/obj/machinery/conveyor/auto{
icon_state = "conveyor0";
dir = 1
@@ -77702,40 +74216,30 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "South-Eastern External Waste Belt"
- })
-"cDL" = (
+/area/maintenance/asteroid/disposal/southeast)
+"cCY" = (
/obj/machinery/conveyor/auto,
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "South-Western External Waste Belt"
- })
-"cDM" = (
+/area/maintenance/asteroid/disposal/southwest)
+"cCZ" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/disposal{
- name = "South-Western External Waste Belt"
- })
-"cDN" = (
+/area/maintenance/asteroid/disposal/southwest)
+"cDa" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/disposal{
- name = "South-Western External Waste Belt"
- })
-"cDO" = (
+/area/maintenance/asteroid/disposal/southwest)
+"cDb" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/disposal{
- name = "South-Western External Waste Belt"
- })
-"cDP" = (
+/area/maintenance/asteroid/disposal/southwest)
+"cDc" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/maintenance{
name = "Aft Asteroid Maintenance";
@@ -77744,10 +74248,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cDQ" = (
+/area/maintenance/asteroid/aft/science)
+"cDd" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/maintenance{
name = "Aft Asteroid Maintenance";
@@ -77761,95 +74263,73 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cDR" = (
+/area/maintenance/asteroid/aft/science)
+"cDe" = (
/obj/structure/girder,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cDS" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cDf" = (
/obj/structure/table,
/obj/item/weapon/cultivator,
/obj/item/seeds/banana,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cDT" = (
+/area/maintenance/asteroid/aft/science)
+"cDg" = (
/obj/structure/grille,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cDU" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cDh" = (
/obj/machinery/hydroponics/soil,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cDV" = (
+/area/maintenance/asteroid/aft/science)
+"cDi" = (
/obj/structure/grille/broken,
/obj/effect/turf_decal/stripes/corner,
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "South-Eastern External Waste Belt"
- })
-"cDW" = (
+/area/maintenance/asteroid/disposal/southeast)
+"cDj" = (
/obj/effect/turf_decal/stripes/line,
/obj/item/weapon/wrench,
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/disposal{
- name = "South-Eastern External Waste Belt"
- })
-"cDX" = (
+/area/maintenance/asteroid/disposal/southeast)
+"cDk" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/disposal{
- name = "South-Eastern External Waste Belt"
- })
-"cDY" = (
+/area/maintenance/asteroid/disposal/southeast)
+"cDl" = (
/obj/machinery/conveyor/auto{
icon_state = "conveyor0";
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "South-Eastern External Waste Belt"
- })
-"cDZ" = (
+/area/maintenance/asteroid/disposal/southeast)
+"cDm" = (
/obj/machinery/conveyor/auto{
dir = 9;
icon_state = "conveyor0";
verted = -1
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "South-Western External Waste Belt"
- })
-"cEa" = (
+/area/maintenance/asteroid/disposal/southwest)
+"cDn" = (
/obj/machinery/conveyor/auto{
tag = "icon-conveyor0 (SOUTHEAST)";
icon_state = "conveyor0";
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "South-Western External Waste Belt"
- })
-"cEb" = (
+/area/maintenance/asteroid/disposal/southwest)
+"cDo" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
@@ -77859,10 +74339,8 @@
icon_state = "1-4"
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/disposal{
- name = "South-Western External Waste Belt"
- })
-"cEc" = (
+/area/maintenance/asteroid/disposal/southwest)
+"cDp" = (
/obj/effect/turf_decal/stripes/line,
/obj/structure/cable/orange{
d1 = 4;
@@ -77870,10 +74348,8 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "South-Western External Waste Belt"
- })
-"cEd" = (
+/area/maintenance/asteroid/disposal/southwest)
+"cDq" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -77883,10 +74359,8 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "South-Western External Waste Belt"
- })
-"cEe" = (
+/area/maintenance/asteroid/disposal/southwest)
+"cDr" = (
/obj/machinery/light/small,
/obj/structure/cable/orange{
d1 = 4;
@@ -77894,10 +74368,8 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "South-Western External Waste Belt"
- })
-"cEf" = (
+/area/maintenance/asteroid/disposal/southwest)
+"cDs" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -77909,10 +74381,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cEg" = (
+/area/maintenance/asteroid/aft/science)
+"cDt" = (
/obj/machinery/light/small,
/obj/structure/cable/orange{
d1 = 4;
@@ -77922,10 +74392,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cEh" = (
+/area/maintenance/asteroid/aft/science)
+"cDu" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -77934,10 +74402,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cEi" = (
+/area/maintenance/asteroid/aft/science)
+"cDv" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -77952,10 +74418,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cEj" = (
+/area/maintenance/asteroid/aft/science)
+"cDw" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -77971,10 +74435,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cEk" = (
+/area/maintenance/asteroid/aft/science)
+"cDx" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/orange{
d1 = 1;
@@ -77987,10 +74449,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cEl" = (
+/area/maintenance/asteroid/aft/science)
+"cDy" = (
/obj/structure/rack,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/item/weapon/storage/toolbox/mechanical,
@@ -77998,52 +74458,40 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cEm" = (
+/area/maintenance/asteroid/aft/science)
+"cDz" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cEn" = (
+/area/maintenance/asteroid/aft/science)
+"cDA" = (
/obj/structure/table,
/obj/item/weapon/weldingtool/mini,
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/disposal{
- name = "South-Eastern External Waste Belt"
- })
-"cEo" = (
+/area/maintenance/asteroid/disposal/southeast)
+"cDB" = (
/obj/item/chair,
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/disposal{
- name = "South-Eastern External Waste Belt"
- })
-"cEp" = (
+/area/maintenance/asteroid/disposal/southeast)
+"cDC" = (
/obj/machinery/conveyor/auto{
tag = "icon-conveyor0 (NORTHEAST)";
icon_state = "conveyor0";
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "South-Eastern External Waste Belt"
- })
-"cEq" = (
+/area/maintenance/asteroid/disposal/southeast)
+"cDD" = (
/obj/machinery/conveyor/auto{
tag = "icon-conveyor0 (EAST)";
icon_state = "conveyor0";
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "South-Eastern External Waste Belt"
- })
-"cEr" = (
+/area/maintenance/asteroid/disposal/southeast)
+"cDE" = (
/obj/machinery/conveyor/auto{
dir = 10;
icon_state = "conveyor0";
@@ -78051,10 +74499,8 @@
verted = -1
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "South-Eastern External Waste Belt"
- })
-"cEs" = (
+/area/maintenance/asteroid/disposal/southeast)
+"cDF" = (
/obj/machinery/conveyor/auto{
tag = "icon-conveyor0 (EAST)";
icon_state = "conveyor0";
@@ -78067,27 +74513,21 @@
random_basetype = /obj/structure/sign/poster/official
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "South-Western External Waste Belt"
- })
-"cEt" = (
+/area/maintenance/asteroid/disposal/southwest)
+"cDG" = (
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cEu" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cDH" = (
/obj/structure/disposalpipe/segment,
/obj/structure/girder,
/obj/structure/grille,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cEv" = (
+/area/maintenance/asteroid/aft/science)
+"cDI" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -78096,10 +74536,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cEw" = (
+/area/maintenance/asteroid/aft/science)
+"cDJ" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j2";
dir = 1
@@ -78107,30 +74545,22 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cEx" = (
+/area/maintenance/asteroid/aft/science)
+"cDK" = (
/obj/structure/girder,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cEy" = (
+/area/maintenance/asteroid/aft/science)
+"cDL" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "South-Eastern External Waste Belt"
- })
-"cEz" = (
+/area/maintenance/asteroid/disposal/southeast)
+"cDM" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/disposal{
- name = "South-Eastern External Waste Belt"
- })
-"cEA" = (
+/area/maintenance/asteroid/disposal/southeast)
+"cDN" = (
/obj/machinery/light/small,
/obj/machinery/conveyor/auto{
dir = 9;
@@ -78138,10 +74568,8 @@
verted = -1
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "South-Western External Waste Belt"
- })
-"cEB" = (
+/area/maintenance/asteroid/disposal/southwest)
+"cDO" = (
/obj/structure/disposalpipe/trunk{
dir = 4
},
@@ -78149,18 +74577,14 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "South-Western External Waste Belt"
- })
-"cEC" = (
+/area/maintenance/asteroid/disposal/southwest)
+"cDP" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/closed/wall,
-/area/maintenance/disposal{
- name = "South-Western External Waste Belt"
- })
-"cED" = (
+/area/maintenance/asteroid/disposal/southwest)
+"cDQ" = (
/obj/structure/disposalpipe/trunk{
dir = 8
},
@@ -78168,10 +74592,8 @@
dir = 4
},
/turf/open/floor/plating/airless,
-/area/maintenance/disposal{
- name = "South-Western External Waste Belt"
- })
-"cEE" = (
+/area/maintenance/asteroid/disposal/southwest)
+"cDR" = (
/obj/structure/disposalpipe/trunk{
dir = 4
},
@@ -78179,20 +74601,16 @@
dir = 8
},
/turf/open/floor/plating/airless,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cEF" = (
+/area/maintenance/asteroid/aft/science)
+"cDS" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cEG" = (
+/area/maintenance/asteroid/aft/science)
+"cDT" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -78202,10 +74620,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cEH" = (
+/area/maintenance/asteroid/aft/science)
+"cDU" = (
/obj/structure/disposalpipe/junction{
dir = 4;
icon_state = "pipe-j2"
@@ -78213,10 +74629,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cEI" = (
+/area/maintenance/asteroid/aft/science)
+"cDV" = (
/obj/structure/disposalpipe/sortjunction{
dir = 4;
icon_state = "pipe-j2s";
@@ -78226,10 +74640,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cEJ" = (
+/area/maintenance/asteroid/aft/science)
+"cDW" = (
/obj/structure/disposalpipe/sortjunction{
dir = 4;
icon_state = "pipe-j2s";
@@ -78239,20 +74651,16 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cEK" = (
+/area/maintenance/asteroid/aft/science)
+"cDX" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cEL" = (
+/area/maintenance/asteroid/aft/science)
+"cDY" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -78262,20 +74670,16 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cEM" = (
+/area/maintenance/asteroid/aft/science)
+"cDZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cEN" = (
+/area/maintenance/asteroid/aft/science)
+"cEa" = (
/obj/structure/disposalpipe/trunk{
dir = 8
},
@@ -78283,10 +74687,8 @@
dir = 4
},
/turf/open/floor/plating/airless,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cEO" = (
+/area/maintenance/asteroid/aft/science)
+"cEb" = (
/obj/machinery/disposal/deliveryChute{
dir = 8
},
@@ -78294,18 +74696,14 @@
dir = 4
},
/turf/open/floor/plating/airless,
-/area/maintenance/disposal{
- name = "South-Eastern External Waste Belt"
- })
-"cEP" = (
+/area/maintenance/asteroid/disposal/southeast)
+"cEc" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/closed/wall,
-/area/maintenance/disposal{
- name = "South-Eastern External Waste Belt"
- })
-"cEQ" = (
+/area/maintenance/asteroid/disposal/southeast)
+"cEd" = (
/obj/structure/disposaloutlet{
dir = 4
},
@@ -78313,10 +74711,8 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "South-Eastern External Waste Belt"
- })
-"cER" = (
+/area/maintenance/asteroid/disposal/southeast)
+"cEe" = (
/obj/machinery/conveyor/auto{
tag = "icon-conveyor0 (EAST)";
icon_state = "conveyor0";
@@ -78324,61 +74720,47 @@
},
/obj/machinery/light/small,
/turf/open/floor/plating,
-/area/maintenance/disposal{
- name = "South-Eastern External Waste Belt"
- })
-"cES" = (
+/area/maintenance/asteroid/disposal/southeast)
+"cEf" = (
/obj/structure/window/reinforced/fulltile,
/obj/structure/grille,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cET" = (
+/area/maintenance/asteroid/aft/science)
+"cEg" = (
/obj/structure/table,
/obj/item/weapon/storage/fancy/cigarettes,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cEU" = (
+/area/maintenance/asteroid/aft/science)
+"cEh" = (
/obj/structure/chair{
dir = 8
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cEV" = (
+/area/maintenance/asteroid/aft/science)
+"cEi" = (
/obj/structure/closet/firecloset/full,
/obj/item/weapon/coin/silver,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cEW" = (
+/area/maintenance/asteroid/aft/science)
+"cEj" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cEX" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cEk" = (
/obj/structure/table,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cEY" = (
+/area/maintenance/asteroid/aft/science)
+"cEl" = (
/obj/docking_port/stationary{
dheight = 9;
dir = 2;
@@ -78391,28 +74773,26 @@
},
/turf/open/space,
/area/space)
-"cEZ" = (
+"cEm" = (
/obj/machinery/ai_status_display,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai)
-"cFa" = (
+"cEn" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai)
-"cFb" = (
+"cEo" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cFc" = (
+/area/maintenance/asteroid/fore/com_west)
+"cEp" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -78424,7 +74804,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"cFd" = (
+"cEq" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -78433,20 +74813,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"cFe" = (
+"cEr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/ai_status_display,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"cFf" = (
+"cEs" = (
/obj/machinery/ai_status_display,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"cFg" = (
+"cEt" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -78455,15 +74835,15 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"cFh" = (
+"cEu" = (
/obj/machinery/newscaster/security_unit{
pixel_x = 32
},
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"cFi" = (
+/area/crew_quarters/heads/captain)
+"cEv" = (
/obj/machinery/light/small{
dir = 8
},
@@ -78475,10 +74855,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cFj" = (
+/area/maintenance/asteroid/fore/com_west)
+"cEw" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -78487,7 +74865,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"cFk" = (
+"cEx" = (
/obj/structure/disposalpipe/trunk{
dir = 8
},
@@ -78496,7 +74874,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"cFl" = (
+"cEy" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -78508,10 +74886,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cFm" = (
+/area/maintenance/asteroid/fore/com_west)
+"cEz" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -78521,7 +74897,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"cFn" = (
+"cEA" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=8";
@@ -78533,7 +74909,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"cFo" = (
+"cEB" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/door/window/brigdoor/southleft{
name = "Armory Delievery Chute";
@@ -78544,7 +74920,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"cFp" = (
+"cEC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -78555,19 +74931,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"cFq" = (
+"cED" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/captain)
-"cFr" = (
+/area/crew_quarters/heads/captain)
+"cEE" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/sleep_female)
-"cFs" = (
+/area/crew_quarters/dorms/female)
+"cEF" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -78575,14 +74951,14 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"cFt" = (
+/area/security/courtroom)
+"cEG" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/courtroom)
-"cFu" = (
+/area/security/courtroom)
+"cEH" = (
/obj/structure/sign/poster/random{
name = "random contraband poster";
pixel_x = 32;
@@ -78592,22 +74968,20 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cFv" = (
+/area/maintenance/asteroid/fore/com_east)
+"cEI" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"cFw" = (
+"cEJ" = (
/obj/machinery/ai_status_display,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"cFx" = (
+"cEK" = (
/obj/machinery/newscaster{
pixel_y = 32
},
@@ -78615,25 +74989,25 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"cFy" = (
+"cEL" = (
/obj/structure/table,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cFz" = (
+"cEM" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cFA" = (
+"cEN" = (
/obj/machinery/ai_status_display,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"cFB" = (
+/area/crew_quarters/heads/hop)
+"cEO" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -78641,8 +75015,8 @@
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"cFC" = (
+/area/crew_quarters/heads/hop)
+"cEP" = (
/obj/structure/bed,
/obj/structure/sign/poster/official/work_for_a_future{
pixel_x = -32
@@ -78651,13 +75025,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cFD" = (
+"cEQ" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"cFE" = (
+"cER" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -78667,13 +75041,14 @@
},
/obj/machinery/door/poddoor/preopen{
id = "frontbrig";
+ layer = 2.6;
name = "Emergency External Blast Doors"
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cFF" = (
+"cES" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -78694,7 +75069,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cFG" = (
+"cET" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -78715,7 +75090,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cFH" = (
+"cEU" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -78730,40 +75105,36 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cFI" = (
+"cEV" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"cFJ" = (
+/area/hallway/primary/starboard/fore)
+"cEW" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/teleporter{
- name = "Security Quantum Pad"
- })
-"cFK" = (
+/area/teleporter/quantum/security)
+"cEX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/circuit,
/area/ai_monitored/nuke_storage)
-"cFL" = (
+"cEY" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/circuit,
/area/ai_monitored/nuke_storage)
-"cFM" = (
+"cEZ" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"cFN" = (
+/area/crew_quarters/rehab_dome)
+"cFa" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -78771,10 +75142,8 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"cFO" = (
+/area/crew_quarters/rehab_dome)
+"cFb" = (
/obj/machinery/hydroponics/soil,
/obj/structure/sign/poster/random{
name = "random official poster";
@@ -78784,10 +75153,8 @@
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"cFP" = (
+/area/crew_quarters/rehab_dome)
+"cFc" = (
/obj/machinery/hydroponics/soil,
/obj/machinery/newscaster{
pixel_y = -32
@@ -78795,28 +75162,26 @@
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"cFQ" = (
+/area/crew_quarters/rehab_dome)
+"cFd" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"cFR" = (
+"cFe" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"cFS" = (
+"cFf" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cFT" = (
+"cFg" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=EngineeringWest2";
location = "EngineeringWest";
@@ -78826,7 +75191,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cFU" = (
+"cFh" = (
/obj/structure/flora/ausbushes/fullgrass,
/obj/structure/sign/poster/random{
name = "random official poster";
@@ -78837,10 +75202,8 @@
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"cFV" = (
+/area/crew_quarters/rehab_dome)
+"cFi" = (
/obj/structure/flora/ausbushes/fullgrass,
/obj/machinery/newscaster{
pixel_x = 28
@@ -78848,10 +75211,8 @@
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"cFW" = (
+/area/crew_quarters/rehab_dome)
+"cFj" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=EngineeringMiddle2";
location = "EngineeringWest3";
@@ -78861,13 +75222,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cFX" = (
+"cFk" = (
/obj/machinery/ai_status_display,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"cFY" = (
+"cFl" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -78884,7 +75245,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cFZ" = (
+"cFm" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=Cargo";
location = "Medbay2";
@@ -78894,27 +75255,27 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cGa" = (
+"cFn" = (
/obj/machinery/status_display{
density = 0;
layer = 4
},
/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cGb" = (
+/area/engine/engineering)
+"cFo" = (
/obj/machinery/ai_status_display,
/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cGc" = (
+/area/engine/engineering)
+"cFp" = (
/turf/open/space/basic,
/area/space)
-"cGd" = (
+"cFq" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"cGe" = (
+/area/medical/medbay/central)
+"cFr" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=Research";
location = "Service";
@@ -78924,7 +75285,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cGf" = (
+"cFs" = (
/obj/machinery/light/small{
dir = 1
},
@@ -78936,32 +75297,32 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cGg" = (
+"cFt" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"cGh" = (
+"cFu" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"cGi" = (
+"cFv" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"cGj" = (
+"cFw" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 4
},
/obj/machinery/ai_status_display,
/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cGk" = (
+/area/engine/engineering)
+"cFx" = (
/obj/structure/window/reinforced{
dir = 4;
pixel_x = 0
@@ -78970,8 +75331,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"cGl" = (
+/area/medical/medbay/zone2)
+"cFy" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/stripes/line,
/obj/machinery/door/window/southleft{
@@ -78981,8 +75342,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"cGm" = (
+/area/medical/medbay/zone2)
+"cFz" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=4";
dir = 4;
@@ -78998,8 +75359,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"cGn" = (
+/area/medical/medbay/zone2)
+"cFA" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -79008,14 +75369,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"cGo" = (
+"cFB" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cGp" = (
+/area/maintenance/asteroid/central)
+"cFC" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 24
},
@@ -79023,7 +75382,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cGq" = (
+"cFD" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -79037,26 +75396,26 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"cGr" = (
+"cFE" = (
/obj/structure/plasticflaps,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"cGs" = (
+"cFF" = (
/obj/machinery/ai_status_display,
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"cGt" = (
+"cFG" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"cGu" = (
+"cFH" = (
/obj/machinery/power/apc{
dir = 8;
name = "Chapel Office APC";
@@ -79076,7 +75435,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cGv" = (
+"cFI" = (
/obj/machinery/door/window/westleft{
req_access_txt = "22"
},
@@ -79084,22 +75443,22 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cGw" = (
+"cFJ" = (
/obj/structure/plasticflaps{
name = "Officer Beepsky's Home"
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cGx" = (
+/area/hallway/primary/starboard/aft)
+"cFK" = (
/obj/structure/bed/dogbed,
/mob/living/simple_animal/bot/secbot/beepsky/jr,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cGy" = (
+/area/hallway/primary/starboard/aft)
+"cFL" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -79118,20 +75477,20 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cGz" = (
+/area/hallway/primary/starboard/aft)
+"cFM" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cGA" = (
+"cFN" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cGB" = (
+"cFO" = (
/obj/structure/chair{
dir = 4
},
@@ -79145,7 +75504,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cGC" = (
+"cFP" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=ArrivalsWest";
location = "Research";
@@ -79155,7 +75514,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cGD" = (
+"cFQ" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=Departures";
location = "ArrivalsWest";
@@ -79165,7 +75524,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cGE" = (
+"cFR" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 24
},
@@ -79173,13 +75532,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cGF" = (
+"cFS" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cGG" = (
+/area/science/robotics/lab)
+"cFT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -79193,7 +75552,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cGH" = (
+"cFU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=ArrivalsMiddle";
@@ -79204,7 +75563,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cGI" = (
+"cFV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -79223,13 +75582,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cGJ" = (
+"cFW" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cGK" = (
+"cFX" = (
/obj/machinery/newscaster{
pixel_x = -28;
pixel_y = 4
@@ -79237,19 +75596,19 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cGL" = (
+/area/science/robotics/lab)
+"cFY" = (
/obj/machinery/status_display{
density = 0;
layer = 4
},
/turf/closed/wall/mineral/titanium,
/area/shuttle/arrival)
-"cGM" = (
+"cFZ" = (
/obj/machinery/ai_status_display,
/turf/closed/wall/mineral/titanium,
/area/shuttle/arrival)
-"cGN" = (
+"cGa" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -79266,7 +75625,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cGO" = (
+"cGb" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -79277,7 +75636,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cGP" = (
+"cGc" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=8";
dir = 8;
@@ -79288,8 +75647,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cGQ" = (
+/area/science/misc_lab)
+"cGd" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -79297,8 +75656,8 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cGR" = (
+/area/science/misc_lab)
+"cGe" = (
/obj/structure/chair/office/light{
dir = 4
},
@@ -79307,7 +75666,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"cGS" = (
+"cGf" = (
/obj/structure/chair/office/light{
dir = 8
},
@@ -79316,39 +75675,39 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"cGT" = (
+"cGg" = (
/obj/structure/chair/stool,
/obj/effect/landmark/start/assistant,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"cGU" = (
+"cGh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/landmark/start/cargo_technician,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"cGV" = (
+"cGi" = (
/obj/structure/disposalpipe/segment,
/obj/effect/landmark/start/cargo_technician,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"cGW" = (
+"cGj" = (
/obj/effect/landmark/start/security_officer,
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"cGX" = (
+"cGk" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"cGY" = (
+"cGl" = (
/obj/structure/chair{
dir = 1
},
@@ -79357,8 +75716,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/crew_quarters/courtroom)
-"cGZ" = (
+/area/security/courtroom)
+"cGm" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -79369,7 +75728,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"cHa" = (
+"cGn" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -79382,8 +75741,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cHb" = (
-/obj/machinery/door/firedoor,
+"cGo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -79398,13 +75756,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cHc" = (
+"cGp" = (
/obj/effect/landmark/start/janitor,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"cHd" = (
+"cGq" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -79413,25 +75771,21 @@
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"cHe" = (
+/area/crew_quarters/rehab_dome)
+"cGr" = (
/obj/structure/chair/stool,
/obj/effect/landmark/start/assistant,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"cHf" = (
+/area/crew_quarters/rehab_dome)
+"cGs" = (
/obj/effect/landmark/start/medical_doctor,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"cHg" = (
+"cGt" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -79444,8 +75798,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"cHh" = (
+/area/medical/medbay/central)
+"cGu" = (
/obj/structure/chair{
dir = 4
},
@@ -79453,15 +75807,14 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"cHi" = (
+/area/medical/medbay/central)
+"cGv" = (
/obj/effect/landmark/start/botanist,
/turf/open/floor/plasteel/hydrofloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"cHj" = (
-/obj/machinery/door/firedoor,
+"cGw" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -79471,8 +75824,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cHk" = (
-/obj/machinery/door/firedoor,
+"cGx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -79489,7 +75841,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cHl" = (
+"cGy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/light{
dir = 8
@@ -79500,7 +75852,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cHm" = (
+"cGz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -79515,14 +75867,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"cHn" = (
+"cGA" = (
/obj/structure/stacklifter,
/obj/effect/landmark/start/assistant,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"cHo" = (
+"cGB" = (
/obj/structure/chair/comfy/black{
tag = "icon-comfychair (NORTH)";
icon_state = "comfychair";
@@ -79532,35 +75884,33 @@
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/library{
- name = "Lounge"
- })
-"cHp" = (
+/area/library/lounge)
+"cGC" = (
/obj/effect/landmark/start/station_engineer,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"cHq" = (
+"cGD" = (
/obj/effect/landmark/start/medical_doctor,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"cHr" = (
+/area/medical/medbay/zone2)
+"cGE" = (
/obj/structure/weightlifter,
/obj/effect/landmark/start/assistant,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"cHs" = (
+"cGF" = (
/obj/machinery/pipedispenser/disposal/transit_tube,
/turf/open/floor/plasteel/yellow/corner{
dir = 4
},
-/area/atmos)
-"cHt" = (
+/area/engine/atmos)
+"cGG" = (
/obj/structure/chair/comfy/brown{
dir = 4
},
@@ -79572,14 +75922,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"cHu" = (
+"cGH" = (
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cHv" = (
+/area/maintenance/asteroid/central)
+"cGI" = (
/obj/structure/chair{
dir = 4
},
@@ -79588,56 +75936,46 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"cHw" = (
+"cGJ" = (
/obj/machinery/droneDispenser/preloaded,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cHx" = (
+/area/maintenance/asteroid/central)
+"cGK" = (
/obj/structure/rack,
/obj/item/stack/sheet/metal/fifty,
/obj/item/stack/sheet/metal/fifty,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cHy" = (
+/area/maintenance/asteroid/central)
+"cGL" = (
/obj/machinery/light/small{
dir = 8
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cHz" = (
+/area/maintenance/asteroid/central)
+"cGM" = (
/obj/structure/rack,
/obj/item/stack/sheet/glass/fifty,
/obj/item/stack/sheet/glass/fifty,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cHA" = (
+/area/maintenance/asteroid/central)
+"cGN" = (
/obj/machinery/door/airlock/maintenance{
- name = "Maintenance Drone Dispensery";
+ name = "Maintenance Drone Dispensary";
req_access_txt = "12"
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cHB" = (
+/area/maintenance/asteroid/central)
+"cGO" = (
/obj/structure/chair{
dir = 4
},
@@ -79649,18 +75987,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cHC" = (
-/obj/machinery/door/firedoor,
+"cGP" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cHD" = (
+/area/hallway/primary/starboard/aft)
+"cGQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -79670,7 +76008,6 @@
icon_state = "4-8";
pixel_x = 0
},
-/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -79685,8 +76022,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cHE" = (
-/obj/machinery/door/firedoor,
+"cGR" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -79698,11 +76034,10 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cHF" = (
+"cGS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -79717,8 +76052,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cHG" = (
-/obj/machinery/door/firedoor,
+"cGT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -79728,6 +76062,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/red/corner{
tag = "icon-redcorner (EAST)";
@@ -79736,7 +76071,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cHH" = (
+"cGU" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -79744,8 +76079,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cHI" = (
+/area/science/robotics/lab)
+"cGV" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -79758,14 +76093,14 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/xenobiology)
-"cHJ" = (
+/area/science/xenobiology)
+"cGW" = (
/obj/effect/landmark/start/scientist,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cHK" = (
+/area/science/misc_lab)
+"cGX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -79778,7 +76113,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cHL" = (
+"cGY" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -79796,7 +76131,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cHM" = (
+"cGZ" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -79810,7 +76145,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cHN" = (
+"cHa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -79819,7 +76154,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cHO" = (
+"cHb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red/side{
icon_state = "red";
@@ -79827,7 +76162,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cHP" = (
+"cHc" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -79837,7 +76172,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cHQ" = (
+"cHd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/red/side{
icon_state = "red";
@@ -79845,7 +76180,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cHR" = (
+"cHe" = (
/obj/machinery/door/airlock/glass_security{
cyclelinkeddir = 2;
id_tag = "innerbrig";
@@ -79866,7 +76201,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cHS" = (
+"cHf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/orange{
d1 = 1;
@@ -79890,19 +76225,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cHT" = (
+"cHg" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d2 = 8;
icon_state = "0-8"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cHU" = (
+"cHh" = (
/obj/structure/table,
/obj/item/weapon/storage/fancy/donut_box,
/turf/open/floor/plasteel/red/side{
@@ -79911,20 +76246,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cHV" = (
+"cHi" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d2 = 4;
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cHW" = (
+"cHj" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -79943,19 +76278,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cHX" = (
+"cHk" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/preopen{
id = "frontbrig";
+ layer = 2.6;
name = "Emergency External Blast Doors"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cHY" = (
+"cHl" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1
@@ -79967,12 +76303,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cHZ" = (
+"cHm" = (
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cIa" = (
+"cHn" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -79985,7 +76321,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cIb" = (
+"cHo" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-21";
layer = 4.1;
@@ -79999,7 +76335,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cIc" = (
+"cHp" = (
/obj/machinery/airalarm{
dir = 4;
pixel_x = -23;
@@ -80009,8 +76345,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/crew_quarters/courtroom)
-"cId" = (
+/area/security/courtroom)
+"cHq" = (
/obj/structure/disposalpipe/trunk,
/obj/machinery/disposal/deliveryChute{
desc = "A chute for big and small crimnals alike!";
@@ -80027,7 +76363,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"cIe" = (
+"cHr" = (
/obj/machinery/light/small{
dir = 8
},
@@ -80035,7 +76371,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cIf" = (
+"cHs" = (
/obj/structure/chair{
dir = 8
},
@@ -80048,7 +76384,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cIg" = (
+"cHt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/orange{
d1 = 1;
@@ -80063,13 +76399,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cIh" = (
+"cHu" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cIi" = (
+"cHv" = (
/obj/structure/chair{
dir = 8
},
@@ -80077,13 +76413,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cIj" = (
+"cHw" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"cIk" = (
+"cHx" = (
/obj/structure/chair{
dir = 8
},
@@ -80097,7 +76433,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cIl" = (
+"cHy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/orange{
d1 = 1;
@@ -80113,7 +76449,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cIm" = (
+"cHz" = (
/obj/structure/chair{
dir = 8
},
@@ -80129,16 +76465,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cIn" = (
+"cHA" = (
/obj/structure/grille/broken,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cIo" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"cHB" = (
/obj/structure/disposaloutlet{
dir = 8
},
@@ -80149,7 +76483,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cIp" = (
+"cHC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/orange{
d1 = 1;
@@ -80162,14 +76496,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cIq" = (
+"cHD" = (
/turf/open/floor/plasteel/red/corner{
icon_state = "redcorner";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cIr" = (
+"cHE" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-21";
layer = 4.1;
@@ -80182,7 +76516,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cIs" = (
+"cHF" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -80193,7 +76527,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cIt" = (
+"cHG" = (
/obj/structure/table,
/obj/item/weapon/book/manual/wiki/security_space_law,
/turf/open/floor/plasteel/red/corner{
@@ -80202,10 +76536,9 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cIu" = (
+"cHH" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d2 = 2;
icon_state = "0-2"
@@ -80222,35 +76555,38 @@
},
/obj/machinery/door/poddoor/preopen{
id = "frontbrig";
+ layer = 2.6;
name = "Emergency External Blast Doors"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cIv" = (
+"cHI" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d2 = 8;
icon_state = "0-8"
},
/obj/machinery/door/poddoor/preopen{
id = "frontbrig";
+ layer = 2.6;
name = "Emergency External Blast Doors"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cIw" = (
+"cHJ" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cIx" = (
+"cHK" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -80258,16 +76594,16 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cIy" = (
+"cHL" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cIz" = (
+"cHM" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -80277,10 +76613,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cIA" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"cHN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -80296,7 +76630,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cIB" = (
+"cHO" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -80315,7 +76649,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cIC" = (
+"cHP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -80332,7 +76666,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cID" = (
+"cHQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -80353,7 +76687,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cIE" = (
+"cHR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -80370,7 +76704,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cIF" = (
+"cHS" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -80383,10 +76717,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cIG" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"cHT" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -80397,7 +76729,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cIH" = (
+"cHU" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -80412,7 +76744,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cII" = (
+"cHV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -80423,7 +76755,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"cIJ" = (
+"cHW" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -80434,10 +76766,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cIK" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"cHX" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -80446,7 +76776,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cIL" = (
+"cHY" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -80454,7 +76784,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cIM" = (
+"cHZ" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -80466,7 +76796,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cIN" = (
+"cIa" = (
/obj/machinery/door/airlock/maintenance{
name = "Fore Asteroid Maintenance Access";
req_access_txt = "12"
@@ -80483,7 +76813,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cIO" = (
+"cIb" = (
/obj/machinery/door/airlock/maintenance{
name = "Fore Asteroid Maintenance Access";
req_access_txt = "12"
@@ -80495,7 +76825,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cIP" = (
+"cIc" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -80504,7 +76834,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"cIQ" = (
+"cId" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -80513,7 +76843,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"cIR" = (
+"cIe" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -80523,7 +76853,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cIS" = (
+"cIf" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -80532,7 +76862,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cIT" = (
+"cIg" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -80541,7 +76871,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"cIU" = (
+"cIh" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -80549,7 +76879,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"cIV" = (
+"cIi" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -80558,20 +76888,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"cIW" = (
+"cIj" = (
/obj/machinery/door/airlock/glass,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cIX" = (
+"cIk" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Engineering Bridge"
- })
-"cIY" = (
+/area/hallway/secondary/bridges/com_engi)
+"cIl" = (
/obj/machinery/door/airlock/glass,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral/corner{
@@ -80580,21 +76908,19 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"cIZ" = (
+/area/hallway/primary/starboard/fore)
+"cIm" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"cJa" = (
+/area/hallway/secondary/bridges/med_cargo)
+"cIn" = (
/obj/machinery/door/airlock/glass,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cJb" = (
+"cIo" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
dir = 1
@@ -80603,7 +76929,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cJc" = (
+"cIp" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -80620,7 +76946,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cJd" = (
+"cIq" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -80629,7 +76955,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cJe" = (
+"cIr" = (
/obj/machinery/door/airlock/glass,
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
@@ -80642,7 +76968,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cJf" = (
+"cIs" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -80651,7 +76977,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cJg" = (
+"cIt" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -80662,7 +76988,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cJh" = (
+"cIu" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -80671,13 +76997,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cJi" = (
+"cIv" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cJj" = (
+"cIw" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
icon_state = "1-2"
@@ -80689,7 +77015,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cJk" = (
+"cIx" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -80697,20 +77023,16 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"cJl" = (
+/area/crew_quarters/rehab_dome)
+"cIy" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"cJm" = (
+/area/crew_quarters/rehab_dome)
+"cIz" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -80718,7 +77040,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cJn" = (
+"cIA" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -80730,7 +77052,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cJo" = (
+"cIB" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -80739,7 +77061,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cJp" = (
+"cIC" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -80748,7 +77070,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cJq" = (
+"cID" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -80756,7 +77078,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"cJr" = (
+"cIE" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -80765,27 +77087,25 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"cJs" = (
+"cIF" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"cJt" = (
+"cIG" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"cJu" = (
+/area/crew_quarters/rehab_dome)
+"cIH" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cJv" = (
+"cII" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -80796,15 +77116,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cJw" = (
+"cIJ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"cJx" = (
+/area/hallway/secondary/bridges/serv_engi)
+"cIK" = (
/obj/machinery/door/airlock/glass,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -80816,7 +77134,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cJy" = (
+"cIL" = (
/obj/structure/sign/map/left/ceres{
pixel_y = 32
},
@@ -80831,7 +77149,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cJz" = (
+"cIM" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -80840,7 +77158,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"cJA" = (
+"cIN" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -80848,7 +77166,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cJB" = (
+"cIO" = (
/obj/machinery/door/airlock/glass,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -80857,15 +77175,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cJC" = (
+"cIP" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Engineering-Medical Bridge"
- })
-"cJD" = (
+/area/hallway/secondary/bridges/engi_med)
+"cIQ" = (
/obj/machinery/door/airlock/glass,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -80874,7 +77190,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cJE" = (
+"cIR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -80889,7 +77205,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cJF" = (
+"cIS" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -80898,18 +77214,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"cJG" = (
+"cIT" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"cJH" = (
+"cIU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"cJI" = (
+"cIV" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -80921,7 +77237,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"cJJ" = (
+"cIW" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -80932,7 +77248,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"cJK" = (
+"cIX" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -80942,7 +77258,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"cJL" = (
+"cIY" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -80956,7 +77272,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"cJM" = (
+"cIZ" = (
/obj/structure/disposalpipe/segment,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -80965,22 +77281,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"cJN" = (
+"cJa" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d2 = 4;
icon_state = "0-4"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"cJO" = (
+"cJb" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -80990,25 +77305,26 @@
d2 = 4;
icon_state = "0-4"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"cJP" = (
+"cJc" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/orange,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"cJQ" = (
+"cJd" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -81017,7 +77333,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"cJR" = (
+"cJe" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -81026,13 +77342,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"cJS" = (
+"cJf" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"cJT" = (
+"cJg" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -81041,7 +77357,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"cJU" = (
+"cJh" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -81049,7 +77365,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"cJV" = (
+"cJi" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -81058,17 +77374,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"cJW" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"cJX" = (
+"cJj" = (
/obj/structure/disposalpipe/trunk{
dir = 4
},
@@ -81088,7 +77394,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"cJY" = (
+"cJk" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -81097,7 +77403,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"cJZ" = (
+"cJl" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -81107,19 +77413,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"cKa" = (
+"cJm" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"cKb" = (
+"cJn" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cKc" = (
+"cJo" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -81128,7 +77434,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"cKd" = (
+"cJp" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -81143,7 +77449,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cKe" = (
+"cJq" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -81152,7 +77458,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cKf" = (
+"cJr" = (
/obj/machinery/door/airlock/glass,
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
@@ -81165,7 +77471,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cKg" = (
+"cJs" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
@@ -81174,7 +77480,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cKh" = (
+"cJt" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -81183,20 +77489,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cKi" = (
+"cJu" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cKj" = (
+"cJv" = (
/obj/machinery/ai_status_display,
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cKk" = (
+"cJw" = (
/obj/machinery/power/apc{
dir = 2;
name = "Arrival Security Checkpoint APC";
@@ -81219,8 +77525,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/checkpoint2)
-"cKl" = (
+/area/security/checkpoint/checkpoint2)
+"cJx" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/obj/structure/cable/orange{
d1 = 1;
@@ -81230,10 +77536,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cKm" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cJy" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -81242,15 +77546,15 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"cKn" = (
+"cJz" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/checkpoint2)
-"cKo" = (
+/area/security/checkpoint/checkpoint2)
+"cJA" = (
/obj/machinery/disposal/deliveryChute{
desc = "A chute for big and small criminals alike!";
name = "Criminal Delivery Chute"
@@ -81266,8 +77570,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/security/checkpoint2)
-"cKp" = (
+/area/security/checkpoint/checkpoint2)
+"cJB" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -81276,7 +77580,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cKq" = (
+"cJC" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -81284,7 +77588,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cKr" = (
+"cJD" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -81296,13 +77600,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cKs" = (
+"cJE" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"cKt" = (
+"cJF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -81320,13 +77624,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cKu" = (
+"cJG" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cKv" = (
+"cJH" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -81337,10 +77641,8 @@
pixel_x = 0
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"cKw" = (
+/area/hallway/secondary/bridges/sci_dock)
+"cJI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -81352,7 +77654,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cKx" = (
+"cJJ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -81360,7 +77662,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cKy" = (
+"cJK" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -81368,7 +77670,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cKz" = (
+"cJL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -81380,7 +77682,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cKA" = (
+"cJM" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -81388,7 +77690,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"cKB" = (
+"cJN" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -81397,7 +77699,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"cKC" = (
+"cJO" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
dir = 1
@@ -81405,8 +77707,8 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cKD" = (
+/area/science/robotics/lab)
+"cJP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -81414,28 +77716,24 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cKE" = (
+/area/science/research)
+"cJQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cKF" = (
+/area/science/research)
+"cJR" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/lab)
-"cKG" = (
+/area/science/lab)
+"cJS" = (
/obj/machinery/door/airlock/maintenance{
name = "Aft Asteroid Maintenance";
req_access_txt = "12"
@@ -81446,10 +77744,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cKH" = (
+/area/maintenance/asteroid/aft/science)
+"cJT" = (
/obj/machinery/ai_status_display,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -81458,7 +77754,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cKI" = (
+"cJU" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -81467,21 +77763,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cKJ" = (
+"cJV" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cKK" = (
+/area/science/robotics/lab)
+"cJW" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/research{
- name = "Research Division"
- })
-"cKL" = (
+/area/science/research)
+"cJX" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -81489,26 +77783,26 @@
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor)
-"cKM" = (
+/area/crew_quarters/heads/hor)
+"cJY" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cKN" = (
+"cJZ" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor)
-"cKO" = (
+/area/crew_quarters/heads/hor)
+"cKa" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -81516,16 +77810,16 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor)
-"cKP" = (
+/area/crew_quarters/heads/hor)
+"cKb" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cKQ" = (
+/area/science/misc_lab)
+"cKc" = (
/obj/structure/disposalpipe/trunk{
dir = 8
},
@@ -81543,8 +77837,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/misc_lab)
-"cKR" = (
+/area/science/misc_lab)
+"cKd" = (
/obj/machinery/door/airlock{
name = "Bathroom"
},
@@ -81552,7 +77846,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"cKS" = (
+"cKe" = (
/obj/structure/toilet{
dir = 4
},
@@ -81560,7 +77854,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"cKT" = (
+"cKf" = (
/obj/machinery/light/small{
dir = 4
},
@@ -81568,25 +77862,25 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"cKU" = (
+"cKg" = (
/obj/structure/sign/bluecross_2,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"cKV" = (
+/area/medical/medbay/central)
+"cKh" = (
/obj/structure/sign/bluecross_2,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/genetics_cloning)
-"cKW" = (
+/area/medical/genetics/cloning)
+"cKi" = (
/mob/living/carbon/monkey,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"cKX" = (
+"cKj" = (
/obj/machinery/light{
dir = 1
},
@@ -81594,13 +77888,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"cKY" = (
+"cKk" = (
/obj/structure/sign/bluecross_2,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay2)
-"cKZ" = (
+/area/medical/medbay/zone2)
+"cKl" = (
/obj/structure/flora/tree/palm,
/obj/machinery/camera{
c_tag = "Genetics Monkey Dome";
@@ -81611,7 +77905,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"cLa" = (
+"cKm" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -81620,7 +77914,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"cLb" = (
+"cKn" = (
/obj/structure/urinal{
pixel_x = -32
},
@@ -81630,43 +77924,35 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"cLc" = (
+"cKo" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cLd" = (
+"cKp" = (
/obj/structure/sign/poster/official/pda_ad{
pixel_x = -32
},
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"cLe" = (
+/area/crew_quarters/heads/hop)
+"cKq" = (
/obj/machinery/pdapainter,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"cLf" = (
+/area/crew_quarters/heads/hop)
+"cKr" = (
/turf/closed/wall/r_wall,
/area/engine/supermatter)
-"cLg" = (
+"cKs" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/engine/supermatter)
-"cLh" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/engine/supermatter)
-"cLi" = (
+/area/engine/engineering)
+"cKt" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -81682,22 +77968,16 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/engine/supermatter)
-"cLj" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cLk" = (
+/area/engine/engineering)
+"cKu" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cLl" = (
+/area/science/mixing)
+"cKv" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
@@ -81706,28 +77986,22 @@
icon_state = "tube1";
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (SOUTHWEST)";
icon_state = "whitepurple";
dir = 10;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cLm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
+/area/science/mixing)
+"cKw" = (
/turf/open/floor/plasteel/whitepurple/corner{
tag = "icon-whitepurplecorner (WEST)";
icon_state = "whitepurplecorner";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cLn" = (
+/area/science/mixing)
+"cKx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -81739,16 +78013,16 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cLo" = (
+/area/science/mixing)
+"cKy" = (
/obj/structure/closet/l3closet/scientist{
pixel_x = -2
},
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cLp" = (
+/area/science/mixing)
+"cKz" = (
/obj/machinery/door/airlock/maintenance{
name = "Aft Asteroid Maintenance";
req_access_txt = "47"
@@ -81762,22 +78036,20 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cLq" = (
+/area/science/mixing)
+"cKA" = (
/obj/item/clothing/head/sombrero/shamebrero,
/turf/open/floor/plating/asteroid/airless,
/area/space)
-"cLr" = (
+"cKB" = (
/obj/structure/sign/poster/contraband/borg_fancy_1{
pixel_x = 32
},
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
-"cLs" = (
+/area/ai_monitored/turret_protected/aisat/hallway)
+"cKC" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -81787,64 +78059,50 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cLt" = (
+/area/maintenance/asteroid/fore/com_north)
+"cKD" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cLu" = (
+/area/maintenance/asteroid/fore/com_north)
+"cKE" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cLv" = (
+/area/maintenance/asteroid/fore/com_east)
+"cKF" = (
/obj/structure/girder,
/obj/item/stack/sheet/metal,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cLw" = (
+/area/maintenance/asteroid/fore/com_north)
+"cKG" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cLx" = (
+/area/maintenance/asteroid/fore/com_north)
+"cKH" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cLy" = (
+/area/maintenance/asteroid/fore/com_east)
+"cKI" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cLz" = (
+/area/maintenance/asteroid/fore/com_north)
+"cKJ" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -81853,10 +78111,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cLA" = (
+/area/maintenance/asteroid/fore/com_west)
+"cKK" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -81865,10 +78121,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cLB" = (
+/area/maintenance/asteroid/fore/com_west)
+"cKL" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -81876,10 +78130,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cLC" = (
+/area/maintenance/asteroid/fore/com_north)
+"cKM" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -81892,10 +78144,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cLD" = (
+/area/maintenance/asteroid/fore/com_north)
+"cKN" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -81907,10 +78157,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cLE" = (
+/area/maintenance/asteroid/fore/com_north)
+"cKO" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -81919,26 +78167,20 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cLF" = (
+/area/maintenance/asteroid/fore/com_north)
+"cKP" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cLG" = (
+/area/maintenance/asteroid/fore/com_east)
+"cKQ" = (
/obj/structure/grille,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cLH" = (
+/area/maintenance/asteroid/fore/cargo_west)
+"cKR" = (
/obj/machinery/airalarm{
dir = 4;
icon_state = "alarm0";
@@ -81948,7 +78190,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"cLI" = (
+"cKS" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -81959,10 +78201,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cLJ" = (
+/area/maintenance/asteroid/fore/com_north)
+"cKT" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -81975,10 +78215,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cLK" = (
+/area/maintenance/asteroid/fore/com_north)
+"cKU" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -81988,20 +78226,16 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cLL" = (
+/area/maintenance/asteroid/fore/com_north)
+"cKV" = (
/obj/machinery/light/small{
dir = 4
},
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cLM" = (
+/area/maintenance/asteroid/fore/com_east)
+"cKW" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/orange{
d1 = 1;
@@ -82011,10 +78245,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cLN" = (
+/area/maintenance/asteroid/fore/com_north)
+"cKX" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -82025,10 +78257,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cLO" = (
+/area/maintenance/asteroid/fore/com_north)
+"cKY" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -82038,18 +78268,14 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cLP" = (
+/area/maintenance/asteroid/fore/cargo_west)
+"cKZ" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cLQ" = (
+/area/maintenance/asteroid/fore/com_north)
+"cLa" = (
/obj/machinery/light/small{
dir = 8
},
@@ -82057,10 +78283,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cLR" = (
+/area/maintenance/asteroid/fore/cargo_west)
+"cLb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/airalarm{
dir = 8;
@@ -82071,25 +78295,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"cLS" = (
+"cLc" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cLT" = (
+/area/maintenance/asteroid/fore/com_north)
+"cLd" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cLU" = (
+/area/maintenance/asteroid/fore/com_north)
+"cLe" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -82099,16 +78319,14 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cLV" = (
+/area/maintenance/asteroid/fore/com_north)
+"cLf" = (
/obj/structure/chair/stool,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"cLW" = (
+"cLg" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -82117,10 +78335,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cLX" = (
+/area/maintenance/asteroid/fore/com_north)
+"cLh" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -82130,10 +78346,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cLY" = (
+/area/maintenance/asteroid/fore/com_north)
+"cLi" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -82142,33 +78356,32 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cLZ" = (
+/area/maintenance/asteroid/fore/com_north)
+"cLj" = (
/obj/effect/landmark/start/cargo_technician,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"cMa" = (
+"cLk" = (
/obj/structure/grille/broken,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cMb" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"cLl" = (
/obj/structure/closet/crate,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cMc" = (
+/area/maintenance/asteroid/fore/com_north)
+"cLm" = (
/obj/structure/disposalpipe/segment,
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge";
+ layer = 2.6;
+ name = "Emergency Blast Door"
+ },
/obj/machinery/door/airlock/glass_command{
cyclelinkeddir = null;
name = "Bridge";
@@ -82176,16 +78389,17 @@
req_one_access = null;
req_one_access_txt = "0"
},
-/obj/machinery/door/poddoor/preopen{
- id = "bridge";
- name = "Emergency Blast Door"
- },
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"cMd" = (
+"cLn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge";
+ layer = 2.6;
+ name = "Emergency Blast Door"
+ },
/obj/machinery/door/airlock/glass_command{
cyclelinkeddir = null;
name = "Bridge";
@@ -82193,15 +78407,11 @@
req_one_access = null;
req_one_access_txt = "0"
},
-/obj/machinery/door/poddoor/preopen{
- id = "bridge";
- name = "Emergency Blast Door"
- },
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"cMe" = (
+"cLo" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -82211,19 +78421,15 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cMf" = (
+/area/maintenance/asteroid/fore/com_east)
+"cLp" = (
/obj/structure/closet/firecloset/full,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cMg" = (
+/area/maintenance/asteroid/fore/com_east)
+"cLq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -82243,23 +78449,24 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"cMh" = (
+"cLr" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"cMi" = (
+"cLs" = (
/obj/structure/window/reinforced/fulltile,
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/poddoor/shutters/preopen{
id = "qmoffice"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"cMj" = (
+"cLt" = (
/obj/machinery/door/airlock/glass_mining{
name = "Quartermaster's Office";
req_access_txt = "41";
@@ -82269,30 +78476,31 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"cMk" = (
+"cLu" = (
/obj/structure/window/reinforced/fulltile,
/obj/structure/grille,
/obj/machinery/door/poddoor/shutters/preopen{
id = "qmoffice"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"cMl" = (
+"cLv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"cMm" = (
+"cLw" = (
/obj/structure/closet/secure_closet/personal,
/obj/effect/spawner/lootdrop/costume,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"cMn" = (
+"cLx" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -82305,20 +78513,20 @@
tag = "icon-brown (NORTHWEST)"
},
/area/quartermaster/qm)
-"cMo" = (
+"cLy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/brown{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 1
},
/area/quartermaster/qm)
-"cMp" = (
+"cLz" = (
/turf/open/floor/plasteel/brown{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 1
},
/area/quartermaster/qm)
-"cMq" = (
+"cLA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/brown{
baseturf = /turf/open/floor/plating/asteroid/airless;
@@ -82327,7 +78535,7 @@
tag = "icon-brown (NORTHEAST)"
},
/area/quartermaster/qm)
-"cMr" = (
+"cLB" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -82335,10 +78543,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cMs" = (
+/area/maintenance/asteroid/fore/com_west)
+"cLC" = (
/obj/structure/cable/orange{
d2 = 2;
icon_state = "0-2"
@@ -82358,7 +78564,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"cMt" = (
+"cLD" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/turf/open/floor/plasteel/brown{
@@ -82368,7 +78574,7 @@
tag = "icon-brown (WEST)"
},
/area/quartermaster/qm)
-"cMu" = (
+"cLE" = (
/obj/structure/table,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/item/weapon/folder,
@@ -82377,7 +78583,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"cMv" = (
+"cLF" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -82389,13 +78595,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"cMw" = (
+"cLG" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"cMx" = (
+"cLH" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -82410,17 +78616,15 @@
tag = "icon-brown (EAST)"
},
/area/quartermaster/qm)
-"cMy" = (
+"cLI" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cMz" = (
+/area/maintenance/asteroid/fore/com_east)
+"cLJ" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -82434,10 +78638,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cMA" = (
+/area/maintenance/asteroid/fore/cargo_west)
+"cLK" = (
/obj/structure/closet/secure_closet/quartermaster,
/obj/machinery/button/door{
id = "qmoffice";
@@ -82451,7 +78653,7 @@
tag = "icon-brown (WEST)"
},
/area/quartermaster/qm)
-"cMB" = (
+"cLL" = (
/obj/structure/chair/office/dark{
dir = 4
},
@@ -82460,18 +78662,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"cMC" = (
+"cLM" = (
/obj/machinery/computer/cargo,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"cMD" = (
+"cLN" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"cME" = (
+"cLO" = (
/obj/machinery/requests_console{
department = "Cargo Bay";
departmentType = 2;
@@ -82487,17 +78689,15 @@
tag = "icon-brown (EAST)"
},
/area/quartermaster/qm)
-"cMF" = (
+"cLP" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cMG" = (
+/area/maintenance/asteroid/fore/com_north)
+"cLQ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -82511,10 +78711,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cMH" = (
+/area/maintenance/asteroid/fore/com_east)
+"cLR" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -82524,10 +78722,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cMI" = (
+/area/maintenance/asteroid/fore/cargo_west)
+"cLS" = (
/obj/structure/closet/firecloset/full,
/turf/open/floor/plasteel/brown{
tag = "icon-brown (SOUTHWEST)";
@@ -82536,7 +78732,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"cMJ" = (
+"cLT" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -82551,18 +78747,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"cMK" = (
+"cLU" = (
/obj/machinery/light,
/turf/open/floor/plasteel/brown{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"cML" = (
+"cLV" = (
/turf/open/floor/plasteel/brown{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"cMM" = (
+"cLW" = (
/obj/item/weapon/twohanded/required/kirbyplants{
tag = "icon-plant-21";
icon_state = "plant-21"
@@ -82574,7 +78770,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"cMN" = (
+"cLX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -82587,17 +78783,15 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"cMO" = (
+"cLY" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cMP" = (
+/area/maintenance/asteroid/fore/com_north)
+"cLZ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -82607,20 +78801,16 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cMQ" = (
+/area/maintenance/asteroid/fore/com_east)
+"cMa" = (
/obj/machinery/light/small{
dir = 4
},
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cMR" = (
+/area/maintenance/asteroid/fore/cargo_west)
+"cMb" = (
/obj/machinery/power/apc{
dir = 4;
name = "Fore Asteroid Hallway APC";
@@ -82638,7 +78828,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cMS" = (
+"cMc" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -82649,10 +78839,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cMT" = (
+/area/maintenance/asteroid/fore/com_north)
+"cMd" = (
/obj/structure/sign/biohazard{
desc = "A sign stating that there are better, more efficient methods of suicide that don't cause extra work for security and the janitor. Volunteer to be miner bait, be voluntary specimen for Research, or just find your nearest external airlock! ";
name = "SUICIDE HOPLINE ISN'T THE WAY!";
@@ -82664,8 +78852,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/heads)
-"cMU" = (
+/area/crew_quarters/heads/hop)
+"cMe" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -82679,10 +78867,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cMV" = (
+/area/maintenance/asteroid/fore/com_west)
+"cMf" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -82692,18 +78878,14 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cMW" = (
+/area/maintenance/asteroid/fore/com_east)
+"cMg" = (
/obj/structure/grille/broken,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cMX" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"cMh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -82716,7 +78898,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cMY" = (
+"cMi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -82730,7 +78912,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cMZ" = (
+"cMj" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/cable/orange{
d1 = 4;
@@ -82741,7 +78923,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cNa" = (
+"cMk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -82755,7 +78937,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cNb" = (
+"cMl" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -82769,7 +78951,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cNc" = (
+"cMm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -82782,7 +78964,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cNd" = (
+"cMn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
/obj/machinery/airalarm{
@@ -82799,8 +78981,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"cNe" = (
+/area/hallway/primary/starboard/fore)
+"cMo" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -82809,10 +78991,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cNf" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"cMp" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -82821,52 +79001,40 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNg" = (
+/area/maintenance/asteroid/port/west)
+"cMq" = (
/obj/structure/closet/firecloset/full,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNh" = (
+/area/maintenance/asteroid/port/west)
+"cMr" = (
/obj/structure/girder,
/obj/structure/grille,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNi" = (
+/area/maintenance/asteroid/port/west)
+"cMs" = (
/obj/structure/girder,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNj" = (
+/area/maintenance/asteroid/port/west)
+"cMt" = (
/obj/structure/girder,
/obj/item/stack/sheet/metal,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNk" = (
+/area/maintenance/asteroid/port/west)
+"cMu" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNl" = (
+/area/maintenance/asteroid/port/west)
+"cMv" = (
/obj/machinery/camera{
c_tag = "Service SMES";
dir = 6;
@@ -82882,10 +79050,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNm" = (
+/area/maintenance/asteroid/port/west)
+"cMw" = (
/obj/machinery/power/apc{
dir = 1;
name = "Port Asteroid Maintence APC";
@@ -82905,20 +79071,16 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNn" = (
+/area/maintenance/asteroid/port/west)
+"cMx" = (
/obj/machinery/light/small{
dir = 8
},
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNo" = (
+/area/maintenance/asteroid/port/west)
+"cMy" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -82927,19 +79089,15 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNp" = (
+/area/maintenance/asteroid/port/west)
+"cMz" = (
/obj/machinery/light/small{
dir = 1
},
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNq" = (
+/area/maintenance/asteroid/port/west)
+"cMA" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -82952,10 +79110,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNr" = (
+/area/maintenance/asteroid/port/west)
+"cMB" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -82968,10 +79124,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNs" = (
+/area/maintenance/asteroid/port/west)
+"cMC" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -82980,10 +79134,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNt" = (
+/area/maintenance/asteroid/port/west)
+"cMD" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -82993,10 +79145,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNu" = (
+/area/maintenance/asteroid/port/west)
+"cME" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -83011,10 +79161,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNv" = (
+/area/maintenance/asteroid/port/west)
+"cMF" = (
/obj/machinery/light/small{
dir = 4
},
@@ -83032,18 +79180,14 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNw" = (
+/area/maintenance/asteroid/port/west)
+"cMG" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNx" = (
+/area/maintenance/asteroid/port/west)
+"cMH" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -83053,10 +79197,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNy" = (
+/area/maintenance/asteroid/port/west)
+"cMI" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -83065,10 +79207,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNz" = (
+/area/maintenance/asteroid/port/west)
+"cMJ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -83080,10 +79220,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNA" = (
+/area/maintenance/asteroid/port/west)
+"cMK" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -83096,10 +79234,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNB" = (
+/area/maintenance/asteroid/port/west)
+"cML" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -83108,10 +79244,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNC" = (
+/area/maintenance/asteroid/port/west)
+"cMM" = (
/obj/machinery/light/small{
dir = 4
},
@@ -83120,7 +79254,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cND" = (
+"cMN" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -83129,10 +79263,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNE" = (
+/area/maintenance/asteroid/port/west)
+"cMO" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -83141,10 +79273,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNF" = (
+/area/maintenance/asteroid/port/west)
+"cMP" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -83153,10 +79283,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNG" = (
+/area/maintenance/asteroid/port/west)
+"cMQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -83166,10 +79294,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNH" = (
+/area/maintenance/asteroid/port/west)
+"cMR" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -83179,10 +79305,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNI" = (
+/area/maintenance/asteroid/port/west)
+"cMS" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -83203,15 +79327,13 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNJ" = (
+/area/maintenance/asteroid/port/west)
+"cMT" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cNK" = (
+"cMU" = (
/obj/structure/table,
/obj/structure/cable/orange{
d1 = 2;
@@ -83222,7 +79344,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cNL" = (
+"cMV" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -83235,10 +79357,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNM" = (
+/area/maintenance/asteroid/port/west)
+"cMW" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -83249,16 +79369,14 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNN" = (
+/area/maintenance/asteroid/port/west)
+"cMX" = (
/obj/machinery/vending/coffee,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cNO" = (
+"cMY" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -83268,10 +79386,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNP" = (
+/area/maintenance/asteroid/port/west)
+"cMZ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -83281,10 +79397,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cNQ" = (
+/area/maintenance/asteroid/port/west)
+"cNa" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/snacks/baguette,
/obj/structure/sign/poster/official/the_owl{
@@ -83299,7 +79413,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cNR" = (
+"cNb" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -83309,13 +79423,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cNS" = (
+"cNc" = (
/obj/machinery/vending/autodrobe,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cNT" = (
+"cNd" = (
/obj/structure/table/wood,
/obj/item/device/instrument/guitar,
/obj/item/device/instrument/violin,
@@ -83328,7 +79442,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cNU" = (
+"cNe" = (
/obj/machinery/light_switch{
pixel_y = 28
},
@@ -83339,12 +79453,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cNV" = (
+"cNf" = (
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cNW" = (
+"cNg" = (
/obj/machinery/door/window/eastright{
name = "Theatre Stage"
},
@@ -83352,7 +79466,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cNX" = (
+"cNh" = (
/turf/open/floor/plasteel/stairs{
tag = "icon-stairs (WEST)";
icon_state = "stairs";
@@ -83360,7 +79474,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cNY" = (
+"cNi" = (
/obj/structure/chair/wood,
/obj/machinery/light/small{
dir = 1
@@ -83369,7 +79483,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cNZ" = (
+"cNj" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
@@ -83377,13 +79491,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOa" = (
+"cNk" = (
/obj/structure/chair/wood,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOb" = (
+"cNl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/extinguisher_cabinet{
pixel_x = -24
@@ -83394,23 +79508,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cOc" = (
+"cNm" = (
/obj/machinery/light/small{
dir = 1
},
/obj/structure/rack,
/turf/open/floor/plating/asteroid,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cOd" = (
+/area/maintenance/asteroid/starboard)
+"cNn" = (
/obj/structure/grille/broken,
/obj/item/stack/rods,
/turf/open/floor/plating/asteroid,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cOe" = (
+/area/maintenance/asteroid/starboard)
+"cNo" = (
/obj/structure/table,
/obj/item/weapon/lipstick/random,
/obj/item/weapon/lipstick/random,
@@ -83423,13 +79533,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOf" = (
+"cNp" = (
/obj/effect/landmark/start/mime,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOg" = (
+"cNq" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1
@@ -83438,7 +79548,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOh" = (
+"cNr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -83446,7 +79556,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOi" = (
+"cNs" = (
/obj/structure/table/wood,
/obj/structure/sign/poster/random{
name = "random contraband poster";
@@ -83465,13 +79575,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOj" = (
+"cNt" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOk" = (
+"cNu" = (
/obj/structure/table/wood,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -83480,7 +79590,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOl" = (
+"cNv" = (
/obj/structure/table/wood,
/obj/item/candle,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -83490,7 +79600,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOm" = (
+"cNw" = (
/obj/structure/chair/wood{
tag = "icon-wooden_chair (WEST)";
icon_state = "wooden_chair";
@@ -83501,7 +79611,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOn" = (
+"cNx" = (
/obj/structure/chair/wood{
tag = "icon-wooden_chair (WEST)";
icon_state = "wooden_chair";
@@ -83519,42 +79629,36 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOo" = (
+"cNy" = (
/obj/structure/grille,
-/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOp" = (
+"cNz" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cOq" = (
+/area/maintenance/asteroid/starboard)
+"cNA" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cOr" = (
+/area/maintenance/asteroid/starboard)
+"cNB" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cOs" = (
+/area/maintenance/asteroid/starboard)
+"cNC" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -83565,10 +79669,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cOt" = (
+/area/maintenance/asteroid/port/west)
+"cND" = (
/obj/machinery/door/airlock/maintenance{
name = "Port Asteroid Maintenance";
req_access_txt = "46"
@@ -83577,7 +79679,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOu" = (
+"cNE" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -83586,18 +79688,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOv" = (
+"cNF" = (
/obj/effect/landmark/start/clown,
/turf/open/floor/plasteel/redyellow{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOw" = (
+"cNG" = (
/turf/open/floor/plasteel/redyellow{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOx" = (
+"cNH" = (
/obj/machinery/door/airlock{
name = "Theatre Backstage";
req_access_txt = "46"
@@ -83606,7 +79708,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOy" = (
+"cNI" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -83615,13 +79717,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOz" = (
+"cNJ" = (
/obj/structure/table/wood,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOA" = (
+"cNK" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -83630,7 +79732,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOB" = (
+"cNL" = (
/obj/machinery/door/airlock/glass{
name = "The Chuckle Den"
},
@@ -83638,22 +79740,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOC" = (
+"cNM" = (
/obj/structure/girder,
/obj/item/stack/sheet/metal,
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cOD" = (
+/area/maintenance/asteroid/starboard)
+"cNN" = (
/obj/effect/turf_decal/stripes/asteroid/line,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cOE" = (
+/area/maintenance/asteroid/starboard)
+"cNO" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -83663,10 +79761,8 @@
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cOF" = (
+/area/maintenance/asteroid/starboard)
+"cNP" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -83674,20 +79770,16 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cOG" = (
+/area/maintenance/asteroid/starboard)
+"cNQ" = (
/obj/machinery/light/small{
dir = 1
},
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cOH" = (
+/area/maintenance/asteroid/starboard)
+"cNR" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -83697,10 +79789,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cOI" = (
+/area/maintenance/asteroid/port/west)
+"cNS" = (
/obj/structure/closet/secure_closet/freezer/cream_pie,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -83714,7 +79804,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOJ" = (
+"cNT" = (
/obj/structure/table,
/obj/item/clothing/mask/facehugger/toy,
/obj/item/clothing/mask/fakemoustache,
@@ -83725,7 +79815,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOK" = (
+"cNU" = (
/obj/structure/table,
/obj/item/clothing/mask/pig,
/obj/item/clothing/mask/cowmask,
@@ -83740,7 +79830,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOL" = (
+"cNV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -83748,7 +79838,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOM" = (
+"cNW" = (
/obj/structure/piano,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -83757,14 +79847,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cON" = (
+"cNX" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOO" = (
+"cNY" = (
/obj/structure/table/wood,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -83773,7 +79863,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOP" = (
+"cNZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -83781,7 +79871,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOQ" = (
+"cOa" = (
/obj/structure/chair/wood{
tag = "icon-wooden_chair (WEST)";
icon_state = "wooden_chair";
@@ -83798,7 +79888,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOR" = (
+"cOb" = (
/obj/structure/table/wood,
/obj/item/candle,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -83808,7 +79898,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOS" = (
+"cOc" = (
/obj/structure/chair/wood{
tag = "icon-wooden_chair (WEST)";
icon_state = "wooden_chair";
@@ -83822,18 +79912,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOT" = (
+"cOd" = (
/obj/structure/grille,
-/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cOU" = (
+"cOe" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -83842,28 +79932,24 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cOV" = (
+"cOf" = (
/obj/machinery/door/airlock/maintenance{
name = "Starboard Asteroid Maintenance Access";
req_access_txt = "12"
},
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cOW" = (
+/area/maintenance/asteroid/starboard)
+"cOg" = (
/obj/structure/girder,
/obj/item/stack/sheet/metal,
/turf/open/floor/plating/asteroid,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cOX" = (
+/area/maintenance/asteroid/starboard)
+"cOh" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo)
-"cOY" = (
+/area/crew_quarters/heads/cmo)
+"cOi" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -83871,30 +79957,26 @@
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo)
-"cOZ" = (
+/area/crew_quarters/heads/cmo)
+"cOj" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"cPa" = (
+"cOk" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cPb" = (
+/area/maintenance/asteroid/starboard)
+"cOl" = (
/obj/structure/closet/crate,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cPc" = (
+/area/maintenance/asteroid/starboard)
+"cOm" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -83903,10 +79985,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cPd" = (
+/area/maintenance/asteroid/port/west)
+"cOn" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -83916,10 +79996,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cPe" = (
+/area/maintenance/asteroid/port/west)
+"cOo" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -83939,7 +80017,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"cPf" = (
+"cOp" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -83949,10 +80027,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cPg" = (
+/area/maintenance/asteroid/port/west)
+"cOq" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -83967,7 +80043,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cPh" = (
+"cOr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -83976,7 +80052,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cPi" = (
+"cOs" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -83987,21 +80063,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cPj" = (
+"cOt" = (
/obj/machinery/suit_storage_unit/cmo,
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo)
-"cPk" = (
+/area/crew_quarters/heads/cmo)
+"cOu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo)
-"cPl" = (
+/area/crew_quarters/heads/cmo)
+"cOv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -84013,25 +80089,23 @@
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo)
-"cPm" = (
+/area/crew_quarters/heads/cmo)
+"cOw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo)
-"cPn" = (
+/area/crew_quarters/heads/cmo)
+"cOx" = (
/obj/machinery/light/small{
dir = 4
},
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating/asteroid,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cPo" = (
+/area/maintenance/asteroid/starboard)
+"cOy" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -84041,10 +80115,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cPp" = (
+/area/maintenance/asteroid/port/west)
+"cOz" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -84054,10 +80126,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cPq" = (
+/area/maintenance/asteroid/port/west)
+"cOA" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -84071,10 +80141,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cPr" = (
+/area/maintenance/asteroid/port/west)
+"cOB" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -84086,15 +80154,13 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cPs" = (
+/area/maintenance/asteroid/port/west)
+"cOC" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cPt" = (
+"cOD" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/keycard_auth{
pixel_x = -24
@@ -84102,48 +80168,46 @@
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo)
-"cPu" = (
+/area/crew_quarters/heads/cmo)
+"cOE" = (
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo)
-"cPv" = (
+/area/crew_quarters/heads/cmo)
+"cOF" = (
/obj/structure/table/glass,
/obj/item/clothing/glasses/hud/health,
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo)
-"cPw" = (
+/area/crew_quarters/heads/cmo)
+"cOG" = (
/obj/structure/table/glass,
/obj/item/clothing/neck/stethoscope,
/obj/item/weapon/folder,
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo)
-"cPx" = (
+/area/crew_quarters/heads/cmo)
+"cOH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/holopad,
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo)
-"cPy" = (
+/area/crew_quarters/heads/cmo)
+"cOI" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"cPz" = (
+"cOJ" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cPA" = (
+/area/maintenance/asteroid/port/west)
+"cOK" = (
/obj/machinery/computer/card/minor/cmo,
/obj/machinery/requests_console{
announcementConsole = 1;
@@ -84156,23 +80220,23 @@
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo)
-"cPB" = (
+/area/crew_quarters/heads/cmo)
+"cOL" = (
/obj/structure/chair/office/light{
dir = 4
},
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo)
-"cPC" = (
+/area/crew_quarters/heads/cmo)
+"cOM" = (
/obj/machinery/computer/med_data/laptop,
/obj/structure/table/glass,
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo)
-"cPD" = (
+/area/crew_quarters/heads/cmo)
+"cON" = (
/obj/structure/chair{
dir = 8
},
@@ -84180,8 +80244,8 @@
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo)
-"cPE" = (
+/area/crew_quarters/heads/cmo)
+"cOO" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/orange{
@@ -84192,8 +80256,8 @@
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo)
-"cPF" = (
+/area/crew_quarters/heads/cmo)
+"cOP" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1
@@ -84202,7 +80266,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"cPG" = (
+"cOQ" = (
/obj/machinery/light/small{
dir = 1
},
@@ -84213,7 +80277,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"cPH" = (
+"cOR" = (
/obj/structure/closet/secure_closet/personal/patient,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -84222,18 +80286,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"cPI" = (
+"cOS" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"cPJ" = (
+"cOT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -84241,7 +80305,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"cPK" = (
+"cOU" = (
/obj/machinery/light{
dir = 1
},
@@ -84249,7 +80313,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"cPL" = (
+"cOV" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -84258,7 +80322,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"cPM" = (
+"cOW" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -84268,23 +80332,21 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cPN" = (
+/area/maintenance/asteroid/port/west)
+"cOX" = (
/obj/structure/table,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cPO" = (
+"cOY" = (
/obj/machinery/computer/crew,
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo)
-"cPP" = (
+/area/crew_quarters/heads/cmo)
+"cOZ" = (
/obj/structure/table/glass,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -84295,8 +80357,8 @@
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo)
-"cPQ" = (
+/area/crew_quarters/heads/cmo)
+"cPa" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/orange{
@@ -84307,20 +80369,18 @@
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo)
-"cPR" = (
+/area/crew_quarters/heads/cmo)
+"cPb" = (
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"cPS" = (
+"cPc" = (
/obj/structure/closet,
/turf/open/floor/plating/asteroid,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cPT" = (
+/area/maintenance/asteroid/starboard)
+"cPd" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -84330,18 +80390,18 @@
/area/mine/unexplored{
name = "Medical Asteroid"
})
-"cPU" = (
+"cPe" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters/preopen{
id = "cmooffice"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo)
-"cPV" = (
+/area/crew_quarters/heads/cmo)
+"cPf" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -84350,7 +80410,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"cPW" = (
+"cPg" = (
/obj/structure/closet/secure_closet/personal/patient,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -84359,18 +80419,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"cPX" = (
+"cPh" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"cPY" = (
+"cPi" = (
/obj/structure/sink{
icon_state = "sink";
dir = 8;
@@ -84384,17 +80444,15 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"cPZ" = (
+"cPj" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cQa" = (
+/area/maintenance/asteroid/starboard)
+"cPk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -84404,8 +80462,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"cQb" = (
+/area/medical/medbay/central)
+"cPl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -84414,33 +80472,29 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"cQc" = (
+/area/medical/medbay/central)
+"cPm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"cQd" = (
+/area/medical/medbay/central)
+"cPn" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cQe" = (
+/area/maintenance/asteroid/port/west)
+"cPo" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cQf" = (
+/area/maintenance/asteroid/central)
+"cPp" = (
/obj/machinery/door/airlock/medical{
name = "Morgue";
req_access_txt = "0";
@@ -84453,7 +80507,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/morgue)
-"cQg" = (
+"cPq" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -84463,7 +80517,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/morgue)
-"cQh" = (
+"cPr" = (
/obj/structure/table,
/obj/item/weapon/folder,
/obj/machinery/camera{
@@ -84476,7 +80530,7 @@
dir = 5
},
/area/medical/morgue)
-"cQi" = (
+"cPs" = (
/obj/structure/cable/orange{
d2 = 2;
icon_state = "0-2"
@@ -84494,31 +80548,29 @@
dir = 5
},
/area/medical/morgue)
-"cQj" = (
+"cPt" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cQk" = (
+/area/maintenance/asteroid/central)
+"cPu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/genetics_cloning)
-"cQl" = (
+/area/medical/genetics/cloning)
+"cPv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/genetics_cloning)
-"cQm" = (
+/area/medical/genetics/cloning)
+"cPw" = (
/obj/structure/bodycontainer/morgue,
/obj/effect/landmark/revenantspawn,
/turf/open/floor/plasteel/vault{
@@ -84526,7 +80578,7 @@
dir = 5
},
/area/medical/morgue)
-"cQn" = (
+"cPx" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -84543,23 +80595,21 @@
dir = 5
},
/area/medical/morgue)
-"cQo" = (
+"cPy" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cQp" = (
+/area/maintenance/asteroid/central)
+"cPz" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/morgue)
-"cQq" = (
+"cPA" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -84574,7 +80624,7 @@
dir = 5
},
/area/medical/morgue)
-"cQr" = (
+"cPB" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -84584,17 +80634,15 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/morgue)
-"cQs" = (
+"cPC" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cQt" = (
+/area/maintenance/asteroid/port/west)
+"cPD" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -84602,33 +80650,25 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cQu" = (
+/area/maintenance/asteroid/port/west)
+"cPE" = (
/obj/structure/girder,
/obj/item/stack/sheet/metal,
/turf/open/floor/plating/asteroid,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cQv" = (
+/area/maintenance/asteroid/central)
+"cPF" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cQw" = (
+/area/maintenance/asteroid/central)
+"cPG" = (
/obj/structure/closet,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cQx" = (
+/area/maintenance/asteroid/central)
+"cPH" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -84645,8 +80685,8 @@
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/genetics_cloning)
-"cQy" = (
+/area/medical/genetics/cloning)
+"cPI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -84654,7 +80694,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/morgue)
-"cQz" = (
+"cPJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -84662,7 +80702,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/morgue)
-"cQA" = (
+"cPK" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -84672,7 +80712,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/morgue)
-"cQB" = (
+"cPL" = (
/obj/item/stack/rods,
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (EAST)";
@@ -84682,19 +80722,15 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cQC" = (
+/area/maintenance/asteroid/central)
+"cPM" = (
/obj/structure/girder,
/obj/item/stack/sheet/metal,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cQD" = (
+/area/maintenance/asteroid/central)
+"cPN" = (
/obj/structure/bodycontainer/morgue,
/obj/machinery/camera{
c_tag = "Morgue South";
@@ -84708,7 +80744,7 @@
dir = 5
},
/area/medical/morgue)
-"cQE" = (
+"cPO" = (
/obj/machinery/airalarm{
dir = 1;
icon_state = "alarm0";
@@ -84718,16 +80754,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/morgue)
-"cQF" = (
+"cPP" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cQG" = (
+/area/maintenance/asteroid/port/west)
+"cPQ" = (
/obj/machinery/door/airlock/maintenance{
name = "Morgue";
req_access_txt = "5"
@@ -84741,7 +80775,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/morgue)
-"cQH" = (
+"cPR" = (
/obj/machinery/light{
dir = 1
},
@@ -84750,13 +80784,11 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"cQI" = (
+"cPS" = (
/obj/structure/rack,
/turf/open/floor/plating/asteroid,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cQJ" = (
+/area/maintenance/asteroid/central)
+"cPT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -84765,7 +80797,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"cQK" = (
+"cPU" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -84779,7 +80811,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"cQL" = (
+"cPV" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -84787,10 +80819,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cQM" = (
+/area/maintenance/asteroid/starboard)
+"cPW" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -84801,18 +80831,14 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cQN" = (
+/area/maintenance/asteroid/port/west)
+"cPX" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cQO" = (
+/area/maintenance/asteroid/port/west)
+"cPY" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -84821,17 +80847,15 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cQP" = (
+/area/maintenance/asteroid/starboard)
+"cPZ" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"cQQ" = (
+"cQa" = (
/obj/effect/landmark/start/station_engineer,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
@@ -84840,35 +80864,29 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"cQR" = (
+"cQb" = (
/obj/structure/grille,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cQS" = (
+/area/maintenance/asteroid/port/west)
+"cQc" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cQT" = (
+/area/maintenance/asteroid/port/west)
+"cQd" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cQU" = (
+/area/maintenance/asteroid/central)
+"cQe" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -84878,7 +80896,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"cQV" = (
+"cQf" = (
/obj/structure/sign/enginesafety{
pixel_y = -32
},
@@ -84890,7 +80908,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"cQW" = (
+"cQg" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -84911,7 +80929,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"cQX" = (
+"cQh" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -84920,22 +80938,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"cQY" = (
+"cQi" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cQZ" = (
+/area/maintenance/asteroid/starboard)
+"cQj" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cRa" = (
+/area/maintenance/asteroid/starboard)
+"cQk" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -84945,19 +80959,17 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cRb" = (
+/area/maintenance/asteroid/port/west)
+"cQl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"cRc" = (
+/area/crew_quarters/heads/chief)
+"cQm" = (
/turf/closed/wall,
-/area/crew_quarters/chief)
-"cRd" = (
+/area/crew_quarters/heads/chief)
+"cQn" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -84976,8 +80988,8 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"cRe" = (
+/area/crew_quarters/heads/chief)
+"cQo" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -84986,22 +80998,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"cRf" = (
+"cQp" = (
/obj/structure/grille/broken,
/obj/item/stack/rods,
/turf/open/floor/plating/asteroid,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cRg" = (
+/area/maintenance/asteroid/central)
+"cQq" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cRh" = (
+/area/maintenance/asteroid/starboard)
+"cQr" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/orange{
d1 = 1;
@@ -85011,33 +81019,27 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cRi" = (
+/area/maintenance/asteroid/port/west)
+"cQs" = (
/obj/structure/closet/wardrobe/mixed,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cRj" = (
+/area/maintenance/asteroid/port/west)
+"cQt" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cRk" = (
+/area/maintenance/asteroid/port/west)
+"cQu" = (
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"cRl" = (
+/area/crew_quarters/heads/chief)
+"cQv" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/item/weapon/paper/monitorkey,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -85045,8 +81047,8 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"cRm" = (
+/area/crew_quarters/heads/chief)
+"cQw" = (
/obj/item/weapon/cartridge/engineering{
pixel_x = 4;
pixel_y = 5
@@ -85067,17 +81069,15 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"cRn" = (
+/area/crew_quarters/heads/chief)
+"cQx" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cRo" = (
+/area/maintenance/asteroid/starboard)
+"cQy" = (
/obj/machinery/light/small{
dir = 1
},
@@ -85085,10 +81085,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cRp" = (
+/area/maintenance/asteroid/starboard)
+"cQz" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -85099,32 +81097,28 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cRq" = (
+/area/maintenance/asteroid/starboard)
+"cQA" = (
/obj/item/stack/rods,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cRr" = (
+/area/maintenance/asteroid/central)
+"cQB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"cRs" = (
+/area/crew_quarters/heads/chief)
+"cQC" = (
/obj/structure/chair/office/light{
dir = 4
},
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"cRt" = (
+/area/crew_quarters/heads/chief)
+"cQD" = (
/obj/structure/table/reinforced,
/obj/item/weapon/clipboard,
/obj/item/clothing/glasses/meson{
@@ -85133,8 +81127,8 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"cRu" = (
+/area/crew_quarters/heads/chief)
+"cQE" = (
/obj/structure/chair{
dir = 8
},
@@ -85147,8 +81141,8 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"cRv" = (
+/area/crew_quarters/heads/chief)
+"cQF" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -85156,8 +81150,8 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"cRw" = (
+/area/crew_quarters/heads/chief)
+"cQG" = (
/obj/structure/disposalpipe/trunk{
dir = 1
},
@@ -85165,24 +81159,20 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"cRx" = (
+/area/crew_quarters/heads/chief)
+"cQH" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cRy" = (
+/area/maintenance/asteroid/starboard)
+"cQI" = (
/obj/structure/girder,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cRz" = (
+/area/maintenance/asteroid/starboard)
+"cQJ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -85190,10 +81180,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cRA" = (
+/area/maintenance/asteroid/starboard)
+"cQK" = (
/obj/structure/table/reinforced,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -85204,8 +81192,8 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"cRB" = (
+/area/crew_quarters/heads/chief)
+"cQL" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -85217,17 +81205,15 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"cRC" = (
+/area/crew_quarters/heads/chief)
+"cQM" = (
/obj/machinery/light/small{
dir = 8
},
/obj/structure/closet/crate,
/turf/open/floor/plating/asteroid,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cRD" = (
+/area/maintenance/asteroid/central)
+"cQN" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -85239,10 +81225,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cRE" = (
+/area/maintenance/asteroid/starboard)
+"cQO" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -85250,222 +81234,170 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cRF" = (
+/area/maintenance/asteroid/starboard)
+"cQP" = (
/obj/structure/girder,
/obj/item/stack/sheet/metal,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cRG" = (
+/area/maintenance/asteroid/starboard)
+"cQQ" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cRH" = (
+/area/maintenance/asteroid/starboard)
+"cQR" = (
/obj/structure/grille/broken,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cRI" = (
+/area/maintenance/asteroid/central)
+"cQS" = (
/obj/structure/girder,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cRJ" = (
+/area/maintenance/asteroid/starboard)
+"cQT" = (
/obj/structure/grille,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cRK" = (
+/area/maintenance/asteroid/central)
+"cQU" = (
/obj/structure/closet/emcloset,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cRL" = (
+/area/maintenance/asteroid/central)
+"cQV" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cRM" = (
+/area/maintenance/asteroid/central)
+"cQW" = (
/obj/structure/girder,
/obj/item/stack/rods,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cRN" = (
+/area/maintenance/asteroid/central)
+"cQX" = (
/obj/structure/rack,
/turf/open/floor/plating/asteroid,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cRO" = (
+/area/maintenance/asteroid/starboard)
+"cQY" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cRP" = (
+/area/maintenance/asteroid/central)
+"cQZ" = (
/obj/structure/grille/broken,
/obj/item/stack/rods,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cRQ" = (
+/area/maintenance/asteroid/central)
+"cRa" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cRR" = (
+/area/maintenance/asteroid/central)
+"cRb" = (
/obj/machinery/light/small,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cRS" = (
+/area/maintenance/asteroid/port/east)
+"cRc" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cRT" = (
+/area/maintenance/asteroid/central)
+"cRd" = (
/obj/structure/girder,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cRU" = (
+/area/maintenance/asteroid/central)
+"cRe" = (
/obj/structure/girder,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cRV" = (
+/area/maintenance/asteroid/central)
+"cRf" = (
/obj/machinery/light/small,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cRW" = (
+/area/maintenance/asteroid/central)
+"cRg" = (
/obj/structure/girder,
/obj/structure/grille,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cRX" = (
+/area/maintenance/asteroid/central)
+"cRh" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cRY" = (
+/area/maintenance/asteroid/central)
+"cRi" = (
/obj/structure/girder,
/obj/item/stack/sheet/metal,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cRZ" = (
+/area/maintenance/asteroid/central)
+"cRj" = (
/obj/structure/closet/crate,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cSa" = (
+/area/maintenance/asteroid/central)
+"cRk" = (
/obj/structure/closet/crate,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cSb" = (
+/area/maintenance/asteroid/central)
+"cRl" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cSc" = (
+/area/maintenance/asteroid/central)
+"cRm" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/syringe/charcoal,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cSd" = (
+/area/maintenance/asteroid/central)
+"cRn" = (
/obj/structure/table,
/obj/item/clothing/mask/muzzle,
/obj/item/clothing/glasses/sunglasses/blindfold,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cSe" = (
+/area/maintenance/asteroid/central)
+"cRo" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -85477,33 +81409,27 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cSf" = (
+/area/maintenance/asteroid/central)
+"cRp" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"cSg" = (
+/area/maintenance/asteroid/port/west)
+"cRq" = (
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"cSh" = (
+"cRr" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSi" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cRs" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -85512,10 +81438,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSj" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cRt" = (
/obj/machinery/camera{
c_tag = "Aux Base Construction North";
dir = 1;
@@ -85526,7 +81450,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/auxillary_base)
-"cSk" = (
+"cRu" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -85535,10 +81459,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSl" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cRv" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -85548,56 +81470,44 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSm" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cRw" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSn" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cRx" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSo" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cRy" = (
/obj/structure/closet/firecloset/full,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSp" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cRz" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSq" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cRA" = (
/obj/structure/grille,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSr" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cRB" = (
/obj/machinery/camera{
c_tag = "Aux Base Construction South";
dir = 6;
@@ -85607,7 +81517,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/auxillary_base)
-"cSs" = (
+"cRC" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -85616,10 +81526,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSt" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cRD" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -85629,10 +81537,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSu" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cRE" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -85642,45 +81548,35 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSv" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cRF" = (
/obj/structure/closet,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSw" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cRG" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSx" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cRH" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSy" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cRI" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSz" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cRJ" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -85689,10 +81585,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSA" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cRK" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -85702,18 +81596,14 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSB" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cRL" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSC" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cRM" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -85723,10 +81613,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSD" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cRN" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -85737,10 +81625,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSE" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cRO" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -85749,10 +81635,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSF" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cRP" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -85765,10 +81649,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSG" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cRQ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -85778,17 +81660,13 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSH" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cRR" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSI" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cRS" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -85798,10 +81676,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSJ" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cRT" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -85811,65 +81687,49 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSK" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cRU" = (
/obj/structure/closet/crate,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSL" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cRV" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSM" = (
+/area/maintenance/asteroid/aft/arrivals)
+"cRW" = (
/obj/structure/girder,
/obj/item/stack/sheet/metal,
/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSN" = (
+/area/maintenance/asteroid/aft/science)
+"cRX" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSO" = (
+/area/maintenance/asteroid/aft/science)
+"cRY" = (
/obj/item/stack/rods,
/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSP" = (
+/area/maintenance/asteroid/aft/science)
+"cRZ" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSQ" = (
+/area/maintenance/asteroid/aft/science)
+"cSa" = (
/obj/structure/girder,
/obj/item/stack/sheet/metal,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSR" = (
+/area/maintenance/asteroid/aft/science)
+"cSb" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -85878,44 +81738,38 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSS" = (
+/area/maintenance/asteroid/aft/science)
+"cSc" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cST" = (
+/area/maintenance/asteroid/aft/science)
+"cSd" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cSU" = (
+/area/maintenance/asteroid/aft/science)
+"cSe" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/storage)
-"cSV" = (
+/area/science/storage)
+"cSf" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/storage)
-"cSW" = (
+/area/science/storage)
+"cSg" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/machinery/power/apc{
@@ -85931,15 +81785,15 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/storage)
-"cSX" = (
+/area/science/storage)
+"cSh" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/storage)
-"cSY" = (
+/area/science/storage)
+"cSi" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
/obj/machinery/light{
@@ -85949,8 +81803,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/storage)
-"cSZ" = (
+/area/science/storage)
+"cSj" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/structure/cable/orange{
@@ -85961,8 +81815,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/storage)
-"cTa" = (
+/area/science/storage)
+"cSk" = (
/obj/machinery/airalarm{
dir = 4;
icon_state = "alarm0";
@@ -85971,8 +81825,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/storage)
-"cTb" = (
+/area/science/storage)
+"cSl" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -85981,49 +81835,49 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/storage)
-"cTc" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
+/area/science/storage)
+"cSm" = (
/obj/machinery/camera{
c_tag = "Toxins Storage";
dir = 9;
icon_state = "camera";
network = list("SS13","RD")
},
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/storage)
-"cTd" = (
+/area/science/storage)
+"cSn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/storage)
-"cTe" = (
+/area/science/storage)
+"cSo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/mixing)
-"cTf" = (
+/area/science/mixing)
+"cSp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/storage)
-"cTg" = (
+/area/science/storage)
+"cSq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -86035,8 +81889,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/storage)
-"cTh" = (
+/area/science/storage)
+"cSr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -86048,8 +81902,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/storage)
-"cTi" = (
+/area/science/storage)
+"cSs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -86065,31 +81919,31 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/storage)
-"cTj" = (
+/area/science/storage)
+"cSt" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/portable_atmospherics/canister/toxins,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/toxins/storage)
-"cTk" = (
+/area/science/storage)
+"cSu" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor)
-"cTl" = (
+/area/crew_quarters/heads/hor)
+"cSv" = (
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor)
-"cTm" = (
+/area/crew_quarters/heads/hor)
+"cSw" = (
/obj/structure/displaycase/labcage,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor)
-"cTn" = (
+/area/crew_quarters/heads/hor)
+"cSx" = (
/obj/machinery/button/door{
id = "researchlockdown";
name = "Research Emergency Lockdown";
@@ -86110,22 +81964,22 @@
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor)
-"cTo" = (
+/area/crew_quarters/heads/hor)
+"cSy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor)
-"cTp" = (
+/area/crew_quarters/heads/hor)
+"cSz" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor)
-"cTq" = (
+/area/crew_quarters/heads/hor)
+"cSA" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -86136,19 +81990,15 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cTr" = (
+/area/maintenance/asteroid/aft/science)
+"cSB" = (
/obj/structure/girder,
/obj/item/stack/sheet/metal,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cTs" = (
+/area/maintenance/asteroid/aft/science)
+"cSC" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/orange{
d1 = 1;
@@ -86159,16 +82009,14 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cTt" = (
+/area/maintenance/asteroid/aft/science)
+"cSD" = (
/obj/machinery/ai_status_display,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor)
-"cTu" = (
+/area/crew_quarters/heads/hor)
+"cSE" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = 1;
@@ -86183,15 +82031,15 @@
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor)
-"cTv" = (
+/area/crew_quarters/heads/hor)
+"cSF" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
-"cTw" = (
+/area/crew_quarters/heads/hor)
+"cSG" = (
/obj/machinery/requests_console{
announcementConsole = 1;
department = "Research Director's Desk";
@@ -86203,22 +82051,22 @@
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor)
-"cTx" = (
+/area/crew_quarters/heads/hor)
+"cSH" = (
/obj/structure/chair/office/dark{
dir = 4
},
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor)
-"cTy" = (
+/area/crew_quarters/heads/hor)
+"cSI" = (
/obj/machinery/computer/mecha,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor)
-"cTz" = (
+/area/crew_quarters/heads/hor)
+"cSJ" = (
/obj/structure/rack,
/obj/item/device/paicard{
pixel_x = 4
@@ -86230,8 +82078,8 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
-"cTA" = (
+/area/crew_quarters/heads/hor)
+"cSK" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -86243,10 +82091,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cTB" = (
+/area/maintenance/asteroid/aft/science)
+"cSL" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -86259,10 +82105,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cTC" = (
+/area/maintenance/asteroid/aft/science)
+"cSM" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -86274,10 +82118,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cTD" = (
+/area/maintenance/asteroid/aft/science)
+"cSN" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -86290,10 +82132,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cTE" = (
+/area/maintenance/asteroid/aft/science)
+"cSO" = (
/obj/machinery/airalarm{
dir = 4;
icon_state = "alarm0";
@@ -86306,47 +82146,41 @@
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor)
-"cTF" = (
+/area/crew_quarters/heads/hor)
+"cSP" = (
/obj/structure/rack,
/obj/item/device/aicard,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
-"cTG" = (
+/area/crew_quarters/heads/hor)
+"cSQ" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor)
-"cTH" = (
+/area/crew_quarters/heads/hor)
+"cSR" = (
/obj/structure/grille,
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cTI" = (
+/area/maintenance/asteroid/aft/science)
+"cSS" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cTJ" = (
+/area/maintenance/asteroid/aft/science)
+"cST" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cTK" = (
+/area/maintenance/asteroid/aft/science)
+"cSU" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/orange{
d1 = 1;
@@ -86358,19 +82192,15 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cTL" = (
+/area/maintenance/asteroid/aft/science)
+"cSV" = (
/obj/structure/disposalpipe/segment,
/obj/structure/grille,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cTM" = (
+/area/maintenance/asteroid/aft/science)
+"cSW" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -86384,10 +82214,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cTN" = (
+/area/maintenance/asteroid/aft/science)
+"cSX" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -86400,10 +82228,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cTO" = (
+/area/maintenance/asteroid/aft/science)
+"cSY" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -86413,10 +82239,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cTP" = (
+/area/maintenance/asteroid/aft/science)
+"cSZ" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -86426,10 +82250,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cTQ" = (
+/area/maintenance/asteroid/aft/science)
+"cTa" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/orange{
d1 = 1;
@@ -86439,10 +82261,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cTR" = (
+/area/maintenance/asteroid/aft/science)
+"cTb" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -86453,19 +82273,15 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cTS" = (
+/area/maintenance/asteroid/aft/science)
+"cTc" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cTT" = (
+/area/maintenance/asteroid/aft/science)
+"cTd" = (
/obj/machinery/light/small,
/obj/structure/chair{
dir = 4
@@ -86473,19 +82289,15 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cTU" = (
+/area/maintenance/asteroid/aft/science)
+"cTe" = (
/obj/structure/table,
/obj/item/weapon/wrench,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cTV" = (
+/area/maintenance/asteroid/aft/science)
+"cTf" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -86498,10 +82310,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cTW" = (
+/area/maintenance/asteroid/aft/science)
+"cTg" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -86514,10 +82324,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cTX" = (
+/area/maintenance/asteroid/aft/science)
+"cTh" = (
/obj/machinery/light/small{
dir = 8
},
@@ -86525,35 +82333,27 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cTY" = (
+/area/maintenance/asteroid/aft/science)
+"cTi" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cTZ" = (
+/area/maintenance/asteroid/aft/science)
+"cTj" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cUa" = (
+/area/maintenance/asteroid/aft/science)
+"cTk" = (
/obj/structure/girder,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cUb" = (
+/area/maintenance/asteroid/aft/science)
+"cTl" = (
/obj/machinery/airalarm{
dir = 1;
icon_state = "alarm0";
@@ -86563,7 +82363,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai)
-"cUc" = (
+"cTm" = (
/obj/structure/disposaloutlet{
dir = 8
},
@@ -86573,7 +82373,7 @@
},
/turf/open/space,
/area/space)
-"cUd" = (
+"cTn" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j2";
dir = 8
@@ -86581,7 +82381,7 @@
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/space)
-"cUe" = (
+"cTo" = (
/obj/machinery/disposal/deliveryChute{
dir = 4
},
@@ -86591,7 +82391,7 @@
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/space)
-"cUf" = (
+"cTp" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating/airless/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -86599,7 +82399,7 @@
/area/mine/unexplored{
name = "Cargo Asteroid"
})
-"cUg" = (
+"cTq" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -86608,7 +82408,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"cUh" = (
+"cTr" = (
/obj/machinery/disposal/deliveryChute{
dir = 4
},
@@ -86623,7 +82423,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"cUi" = (
+"cTs" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -86633,10 +82433,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cUj" = (
+/area/maintenance/asteroid/starboard)
+"cTt" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -86648,29 +82446,27 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"cUk" = (
+/area/maintenance/asteroid/starboard)
+"cTu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/item/weapon/twohanded/required/kirbyplants/dead,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/hor)
-"cUl" = (
+/area/crew_quarters/heads/hor)
+"cTv" = (
/turf/closed/mineral,
/area/derelict/secret{
valid_territory = 0
})
-"cUm" = (
+"cTw" = (
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/derelict/secret{
valid_territory = 0
})
-"cUn" = (
+"cTx" = (
/obj/structure/girder,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -86678,21 +82474,21 @@
/area/derelict/secret{
valid_territory = 0
})
-"cUo" = (
+"cTy" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/derelict/secret{
valid_territory = 0
})
-"cUp" = (
+"cTz" = (
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/derelict/secret{
valid_territory = 0
})
-"cUq" = (
+"cTA" = (
/obj/structure/closet,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/effect/spawner/lootdrop/maintenance,
@@ -86703,7 +82499,7 @@
/area/derelict/secret{
valid_territory = 0
})
-"cUr" = (
+"cTB" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -86714,14 +82510,14 @@
/area/derelict/secret{
valid_territory = 0
})
-"cUs" = (
+"cTC" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/derelict/secret{
valid_territory = 0
})
-"cUt" = (
+"cTD" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-20";
light_color = "#E1E17D";
@@ -86735,7 +82531,7 @@
/area/derelict/secret{
valid_territory = 0
})
-"cUu" = (
+"cTE" = (
/obj/structure/bed,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -86743,7 +82539,7 @@
/area/derelict/secret{
valid_territory = 0
})
-"cUv" = (
+"cTF" = (
/obj/structure/sign/map/left/ceres{
pixel_x = 32
},
@@ -86763,12 +82559,12 @@
/area/derelict/secret{
valid_territory = 0
})
-"cUw" = (
+"cTG" = (
/turf/closed/mineral/random/low_chance,
/area/derelict/secret{
valid_territory = 0
})
-"cUx" = (
+"cTH" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/item/weapon/paper/crumpled{
info = "I can't be here for much longer, this station is too empty for its own good. Something is wrong..."
@@ -86787,7 +82583,7 @@
/area/derelict/secret{
valid_territory = 0
})
-"cUy" = (
+"cTI" = (
/obj/item/weapon/paper/crumpled/bloody{
info = "...THE HOPLINE CALLS...IT THIRSTS FOR BLOOD...I MUST GO..."
},
@@ -86797,7 +82593,7 @@
/area/derelict/secret{
valid_territory = 0
})
-"cUz" = (
+"cTJ" = (
/obj/structure/chair{
dir = 4
},
@@ -86807,7 +82603,7 @@
/area/derelict/secret{
valid_territory = 0
})
-"cUA" = (
+"cTK" = (
/obj/structure/table,
/obj/item/weapon/pen,
/turf/open/floor/plating{
@@ -86816,7 +82612,7 @@
/area/derelict/secret{
valid_territory = 0
})
-"cUB" = (
+"cTL" = (
/obj/structure/sign/map/left{
pixel_y = -32
},
@@ -86826,7 +82622,7 @@
/area/derelict/secret{
valid_territory = 0
})
-"cUC" = (
+"cTM" = (
/obj/structure/table,
/obj/structure/sign/map/right{
pixel_y = -32
@@ -86837,7 +82633,7 @@
/area/derelict/secret{
valid_territory = 0
})
-"cUD" = (
+"cTN" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -86849,7 +82645,7 @@
/area/derelict/secret{
valid_territory = 0
})
-"cUE" = (
+"cTO" = (
/obj/structure/table,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plasteel/floorgrime{
@@ -86858,13 +82654,13 @@
/area/derelict/secret{
valid_territory = 0
})
-"cUF" = (
+"cTP" = (
/obj/machinery/smartfridge/food,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"cUG" = (
+"cTQ" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/northleft{
name = "Kitchen Pick-Up";
@@ -86873,12 +82669,11 @@
/obj/machinery/door/poddoor/shutters/preopen{
id = "kitchen"
},
-/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"cUH" = (
+"cTR" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -86886,13 +82681,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"cUI" = (
+"cTS" = (
/obj/machinery/plantgenes,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"cUJ" = (
+"cTT" = (
/obj/machinery/recharge_station,
/obj/machinery/light/small{
dir = 8
@@ -86900,14 +82695,14 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/assembly/robotics)
-"cUK" = (
+/area/science/robotics/lab)
+"cTU" = (
/obj/machinery/ai_status_display,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"cUL" = (
+"cTV" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -86916,12 +82711,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"cUM" = (
+"cTW" = (
/turf/open/floor/plasteel/darkred{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"cUN" = (
+"cTX" = (
/obj/machinery/button/door{
id = "armoryaccess";
name = "Armory Shutter Access";
@@ -86932,7 +82727,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"cUO" = (
+"cTY" = (
/obj/machinery/light/small{
dir = 4
},
@@ -86940,13 +82735,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"cUP" = (
+"cTZ" = (
/obj/structure/closet/secure_closet/CMO,
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/cmo)
-"cUQ" = (
+/area/crew_quarters/heads/cmo)
+"cUa" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
name = "Mix To Incinerator";
@@ -86955,10 +82750,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cUR" = (
+/area/maintenance/asteroid/central)
+"cUb" = (
/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
tag = "icon-manifold (NORTH)";
icon_state = "manifold";
@@ -86967,10 +82760,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cUS" = (
+/area/maintenance/asteroid/central)
+"cUc" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (EAST)";
@@ -86980,36 +82771,28 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cUT" = (
+/area/maintenance/asteroid/central)
+"cUd" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cUU" = (
+/area/maintenance/asteroid/central)
+"cUe" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/obj/machinery/atmospherics/pipe/simple/orange/hidden,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cUV" = (
+/area/maintenance/asteroid/central)
+"cUf" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/pipe/simple/orange/hidden,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cUW" = (
+/area/maintenance/asteroid/central)
+"cUg" = (
/obj/machinery/door/airlock/maintenance{
name = "Central Asteroid Maintenance";
req_access_txt = "12"
@@ -87018,10 +82801,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cUX" = (
+/area/maintenance/asteroid/central)
+"cUh" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -87029,27 +82810,21 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cUY" = (
+/area/maintenance/asteroid/central)
+"cUi" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cUZ" = (
+/area/maintenance/asteroid/central)
+"cUj" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/obj/machinery/atmospherics/pipe/simple/orange/hidden,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cVa" = (
+/area/maintenance/asteroid/central)
+"cUk" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -87059,10 +82834,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cVb" = (
+/area/maintenance/asteroid/central)
+"cUl" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (SOUTHWEST)";
icon_state = "intact";
@@ -87071,10 +82844,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cVc" = (
+/area/maintenance/asteroid/central)
+"cUm" = (
/obj/machinery/light/small{
dir = 8
},
@@ -87087,10 +82858,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cVd" = (
+/area/maintenance/asteroid/central)
+"cUn" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (NORTHEAST)";
icon_state = "intact";
@@ -87099,10 +82868,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cVe" = (
+/area/maintenance/asteroid/central)
+"cUo" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (EAST)";
@@ -87112,10 +82879,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cVf" = (
+/area/maintenance/asteroid/central)
+"cUp" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (SOUTHWEST)";
@@ -87125,10 +82890,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cVg" = (
+/area/maintenance/asteroid/central)
+"cUq" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -87137,10 +82900,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cVh" = (
+/area/maintenance/asteroid/central)
+"cUr" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -87149,10 +82910,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cVi" = (
+/area/maintenance/asteroid/central)
+"cUs" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -87162,10 +82921,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cVj" = (
+/area/maintenance/asteroid/central)
+"cUt" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (EAST)";
icon_state = "intact";
@@ -87174,10 +82931,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cVk" = (
+/area/maintenance/asteroid/central)
+"cUu" = (
/obj/effect/turf_decal/stripes/line,
/obj/structure/cable{
d1 = 2;
@@ -87192,10 +82947,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cVl" = (
+/area/maintenance/asteroid/central)
+"cUv" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -87205,10 +82958,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cVm" = (
+/area/maintenance/asteroid/central)
+"cUw" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/obj/structure/cable{
d1 = 4;
@@ -87219,10 +82970,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cVn" = (
+/area/maintenance/asteroid/central)
+"cUx" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -87231,20 +82980,18 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cVo" = (
+/area/maintenance/asteroid/central)
+"cUy" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cVp" = (
+/area/maintenance/disposal/incinerator)
+"cUz" = (
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cVq" = (
+/area/maintenance/disposal/incinerator)
+"cUA" = (
/obj/machinery/door/airlock/atmos{
name = "Turbine Access";
req_access_txt = "32"
@@ -87259,8 +83006,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cVr" = (
+/area/maintenance/disposal/incinerator)
+"cUB" = (
/obj/machinery/door/airlock/maintenance{
name = "Central Asteroid Maintenance";
req_access_txt = "12"
@@ -87274,10 +83021,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cVs" = (
+/area/maintenance/asteroid/central)
+"cUC" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -87290,10 +83035,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cVt" = (
+/area/maintenance/asteroid/central)
+"cUD" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -87305,10 +83048,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cVu" = (
+/area/maintenance/asteroid/central)
+"cUE" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4;
@@ -87318,8 +83059,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cVv" = (
+/area/maintenance/disposal/incinerator)
+"cUF" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
name = "plasma tank pump"
@@ -87327,8 +83068,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cVw" = (
+/area/maintenance/disposal/incinerator)
+"cUG" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -87345,15 +83086,15 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cVx" = (
+/area/maintenance/disposal/incinerator)
+"cUH" = (
/obj/structure/reagent_dispensers/watertank,
/obj/item/weapon/extinguisher,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cVy" = (
+/area/maintenance/disposal/incinerator)
+"cUI" = (
/obj/machinery/power/terminal{
dir = 4
},
@@ -87364,8 +83105,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cVz" = (
+/area/maintenance/disposal/incinerator)
+"cUJ" = (
/obj/machinery/power/smes{
capacity = 9e+006;
charge = 10000
@@ -87377,16 +83118,16 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cVA" = (
+/area/maintenance/disposal/incinerator)
+"cUK" = (
/obj/machinery/atmospherics/components/unary/tank/toxins{
dir = 4
},
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cVB" = (
+/area/maintenance/disposal/incinerator)
+"cUL" = (
/obj/machinery/atmospherics/pipe/manifold4w/general{
level = 2
},
@@ -87404,8 +83145,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cVC" = (
+/area/maintenance/disposal/incinerator)
+"cUM" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 10
},
@@ -87418,8 +83159,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cVD" = (
+/area/maintenance/disposal/incinerator)
+"cUN" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -87434,8 +83175,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cVE" = (
+/area/maintenance/disposal/incinerator)
+"cUO" = (
/obj/machinery/airalarm{
desc = "This particular atmos control unit appears to have no access restrictions.";
dir = 8;
@@ -87458,8 +83199,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cVF" = (
+/area/maintenance/disposal/incinerator)
+"cUP" = (
/obj/structure/chair/stool,
/obj/structure/cable{
icon_state = "0-4";
@@ -87474,8 +83215,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cVG" = (
+/area/maintenance/disposal/incinerator)
+"cUQ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -87485,8 +83226,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cVH" = (
+/area/maintenance/disposal/incinerator)
+"cUR" = (
/obj/machinery/atmospherics/components/binary/valve{
name = "Mix to Space"
},
@@ -87498,14 +83239,14 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cVI" = (
+/area/maintenance/disposal/incinerator)
+"cUS" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cVJ" = (
+/area/maintenance/disposal/incinerator)
+"cUT" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -87514,8 +83255,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cVK" = (
+/area/maintenance/disposal/incinerator)
+"cUU" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
name = "Incinerator to Output";
@@ -87524,8 +83265,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cVL" = (
+/area/maintenance/disposal/incinerator)
+"cUV" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -87535,8 +83276,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cVM" = (
+/area/maintenance/disposal/incinerator)
+"cUW" = (
/obj/machinery/computer/turbine_computer{
id = "incineratorturbine"
},
@@ -87547,15 +83288,15 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cVN" = (
+/area/maintenance/disposal/incinerator)
+"cUX" = (
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cVO" = (
+/area/maintenance/disposal/incinerator)
+"cUY" = (
/obj/machinery/button/door{
id = "auxincineratorvent";
name = "Auxiliary Vent Control";
@@ -87575,8 +83316,8 @@
dir = 4
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"cVP" = (
+/area/maintenance/disposal/incinerator)
+"cUZ" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -87587,8 +83328,8 @@
name = "Incinerator to Space"
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"cVQ" = (
+/area/maintenance/disposal/incinerator)
+"cVa" = (
/obj/machinery/doorButtons/airlock_controller{
idExterior = "incinerator_airlock_exterior";
idSelf = "incinerator_access_control";
@@ -87609,29 +83350,29 @@
},
/obj/machinery/meter,
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"cVR" = (
+/area/maintenance/disposal/incinerator)
+"cVb" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cVS" = (
+/area/maintenance/disposal/incinerator)
+"cVc" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cVT" = (
+/area/maintenance/disposal/incinerator)
+"cVd" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 2
},
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cVU" = (
+/area/maintenance/disposal/incinerator)
+"cVe" = (
/obj/machinery/door/airlock/glass{
autoclose = 0;
frequency = 1449;
@@ -87648,14 +83389,14 @@
icon_state = "1-2"
},
/turf/open/floor/engine,
-/area/maintenance/incinerator)
-"cVV" = (
+/area/maintenance/disposal/incinerator)
+"cVf" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cVW" = (
+/area/maintenance/disposal/incinerator)
+"cVg" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/components/binary/pump{
dir = 2;
@@ -87663,8 +83404,8 @@
on = 1
},
/turf/open/space,
-/area/maintenance/incinerator)
-"cVX" = (
+/area/maintenance/disposal/incinerator)
+"cVh" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 2;
on = 1
@@ -87685,16 +83426,16 @@
pixel_y = 0
},
/turf/open/floor/engine,
-/area/maintenance/incinerator)
-"cVY" = (
+/area/maintenance/disposal/incinerator)
+"cVi" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/turf/open/floor/engine,
-/area/maintenance/incinerator)
-"cVZ" = (
+/area/maintenance/disposal/incinerator)
+"cVj" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
on = 1
@@ -87717,13 +83458,13 @@
icon_state = "cobweb2"
},
/turf/open/floor/engine,
-/area/maintenance/incinerator)
-"cWa" = (
+/area/maintenance/disposal/incinerator)
+"cVk" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/space,
-/area/maintenance/incinerator)
-"cWb" = (
+/area/maintenance/disposal/incinerator)
+"cVl" = (
/obj/machinery/door/airlock/glass{
autoclose = 0;
frequency = 1449;
@@ -87740,8 +83481,8 @@
icon_state = "1-2"
},
/turf/open/floor/engine,
-/area/maintenance/incinerator)
-"cWc" = (
+/area/maintenance/disposal/incinerator)
+"cVm" = (
/obj/machinery/door/poddoor{
id = "auxincineratorvent";
name = "Auxiliary Incinerator Vent"
@@ -87749,8 +83490,8 @@
/turf/open/floor/engine/vacuum{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cWd" = (
+/area/maintenance/disposal/incinerator)
+"cVn" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1;
frequency = 1441;
@@ -87759,8 +83500,8 @@
/turf/open/floor/engine/vacuum{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cWe" = (
+/area/maintenance/disposal/incinerator)
+"cVo" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -87775,8 +83516,8 @@
/turf/open/floor/engine/vacuum{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cWf" = (
+/area/maintenance/disposal/incinerator)
+"cVp" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
external_pressure_bound = 0;
@@ -87789,11 +83530,11 @@
/turf/open/floor/engine/vacuum{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cWg" = (
+/area/maintenance/disposal/incinerator)
+"cVq" = (
/turf/closed/wall/r_wall,
-/area/maintenance/incinerator)
-"cWh" = (
+/area/maintenance/disposal/incinerator)
+"cVr" = (
/obj/machinery/power/compressor{
comp_id = "incineratorturbine";
dir = 1;
@@ -87807,8 +83548,8 @@
/turf/open/floor/engine/vacuum{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cWi" = (
+/area/maintenance/disposal/incinerator)
+"cVs" = (
/obj/machinery/power/turbine{
luminosity = 2
},
@@ -87816,21 +83557,21 @@
/turf/open/floor/engine/vacuum{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cWj" = (
+/area/maintenance/disposal/incinerator)
+"cVt" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1
},
/turf/open/floor/plating/airless,
-/area/maintenance/incinerator)
-"cWk" = (
+/area/maintenance/disposal/incinerator)
+"cVu" = (
/obj/structure/sign/fire{
pixel_x = 0;
pixel_y = 0
},
/turf/closed/wall/r_wall,
-/area/maintenance/incinerator)
-"cWl" = (
+/area/maintenance/disposal/incinerator)
+"cVv" = (
/obj/machinery/door/poddoor{
id = "turbinevent";
name = "Turbine Vent"
@@ -87838,8 +83579,8 @@
/turf/open/floor/engine/vacuum{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/incinerator)
-"cWm" = (
+/area/maintenance/disposal/incinerator)
+"cVw" = (
/obj/machinery/power/apc{
dir = 1;
name = "Armory APC";
@@ -87862,7 +83603,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"cWn" = (
+"cVx" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -87880,7 +83621,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"cWo" = (
+"cVy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -87893,7 +83634,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"cWp" = (
+"cVz" = (
/obj/structure/closet/secure_closet{
name = "contraband locker";
req_access_txt = "3"
@@ -87905,7 +83646,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"cWq" = (
+"cVA" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -87915,7 +83656,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"cWr" = (
+"cVB" = (
/obj/machinery/light/small{
dir = 1
},
@@ -87923,12 +83664,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"cWs" = (
+"cVC" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"cWt" = (
+"cVD" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -87938,7 +83679,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"cWu" = (
+"cVE" = (
/obj/machinery/camera{
c_tag = "Security Interrogation";
dir = 9;
@@ -87950,13 +83691,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"cWv" = (
+"cVF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"cWw" = (
+"cVG" = (
/obj/structure/chair{
dir = 4
},
@@ -87964,14 +83705,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"cWx" = (
+"cVH" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"cWy" = (
+"cVI" = (
/obj/structure/chair{
dir = 8
},
@@ -87979,7 +83720,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"cWz" = (
+"cVJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -87987,7 +83728,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"cWA" = (
+"cVK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -87995,14 +83736,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"cWB" = (
+"cVL" = (
/obj/structure/table/wood,
/obj/item/device/taperecorder,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"cWC" = (
+"cVM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -88010,7 +83751,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"cWD" = (
+"cVN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -88019,13 +83760,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"cWE" = (
+"cVO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"cWF" = (
+"cVP" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -88042,7 +83783,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"cWG" = (
+"cVQ" = (
/obj/machinery/power/apc{
dir = 1;
name = "Security Transfer Range APC";
@@ -88057,7 +83798,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/transfer)
-"cWH" = (
+"cVR" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -88067,7 +83808,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/transfer)
-"cWI" = (
+"cVS" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -88086,7 +83827,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"cWJ" = (
+"cVT" = (
/obj/structure/mineral_door/iron{
name = "Transfer Center"
},
@@ -88099,7 +83840,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/transfer)
-"cWK" = (
+"cVU" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -88116,7 +83857,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"cWL" = (
+"cVV" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -88132,7 +83873,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"cWM" = (
+"cVW" = (
/obj/machinery/door/airlock/security{
name = "Inmate Transfer Facility";
req_access_txt = "2"
@@ -88146,7 +83887,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/transfer)
-"cWN" = (
+"cVX" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -88156,7 +83897,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/transfer)
-"cWO" = (
+"cVY" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -88169,7 +83910,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/transfer)
-"cWP" = (
+"cVZ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -88179,12 +83920,11 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/transfer)
-"cWQ" = (
+"cWa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/cable{
icon_state = "0-4"
@@ -88192,11 +83932,12 @@
/obj/machinery/door/poddoor/shutters/preopen{
id = "ceoffice"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"cWR" = (
+/area/crew_quarters/heads/chief)
+"cWb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -88217,13 +83958,12 @@
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"cWS" = (
+/area/crew_quarters/heads/chief)
+"cWc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/cable{
d2 = 8;
@@ -88232,100 +83972,77 @@
/obj/machinery/door/poddoor/shutters/preopen{
id = "ceoffice"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"cWT" = (
+/area/crew_quarters/heads/chief)
+"cWd" = (
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Service Bridge"
- })
-"cWU" = (
+/area/hallway/secondary/bridges/com_serv)
+"cWe" = (
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Engineering Bridge"
- })
-"cWV" = (
+/area/hallway/secondary/bridges/com_engi)
+"cWf" = (
/obj/structure/cable{
icon_state = "1-2"
},
/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Command-Service Bridge"
- })
-"cWW" = (
+/area/hallway/secondary/bridges/com_serv)
+"cWg" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Service Bridge"
- })
-"cWX" = (
+/area/hallway/secondary/bridges/com_serv)
+"cWh" = (
/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Command-Service Bridge"
- })
-"cWY" = (
+/area/hallway/secondary/bridges/com_serv)
+"cWi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Command-Engineering Bridge"
- })
-"cWZ" = (
+/area/hallway/secondary/bridges/com_engi)
+"cWj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
icon_state = "1-2"
},
/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Command-Engineering Bridge"
- })
-"cXa" = (
+/area/hallway/secondary/bridges/com_engi)
+"cWk" = (
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"cXb" = (
+/area/hallway/secondary/bridges/med_cargo)
+"cWl" = (
/obj/machinery/camera{
c_tag = "Command-Service Bridge";
dir = 4;
icon_state = "camera"
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Service Bridge"
- })
-"cXc" = (
+/area/hallway/secondary/bridges/com_serv)
+"cWm" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Service Bridge"
- })
-"cXd" = (
+/area/hallway/secondary/bridges/com_serv)
+"cWn" = (
/obj/machinery/camera{
c_tag = "Command-Engineering Bridge";
dir = 8;
network = list("SS13")
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Engineering Bridge"
- })
-"cXe" = (
+/area/hallway/secondary/bridges/com_engi)
+"cWo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
icon_state = "1-2"
},
/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"cXf" = (
+/area/hallway/secondary/bridges/med_cargo)
+"cWp" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/power/apc{
dir = 8;
@@ -88337,23 +84054,17 @@
d2 = 2
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"cXg" = (
+/area/hallway/secondary/bridges/med_cargo)
+"cWq" = (
/obj/machinery/light{
dir = 4
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"cXh" = (
+/area/hallway/secondary/bridges/med_cargo)
+"cWr" = (
/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"cXi" = (
+/area/hallway/secondary/bridges/med_cargo)
+"cWs" = (
/obj/machinery/power/apc{
dir = 8;
name = "Command-Service Bridge APC";
@@ -88364,10 +84075,8 @@
d2 = 4
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Service Bridge"
- })
-"cXj" = (
+/area/hallway/secondary/bridges/com_serv)
+"cWt" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -88375,10 +84084,8 @@
pixel_x = 0
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Service Bridge"
- })
-"cXk" = (
+/area/hallway/secondary/bridges/com_serv)
+"cWu" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -88388,18 +84095,14 @@
dir = 4
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Service Bridge"
- })
-"cXl" = (
+/area/hallway/secondary/bridges/com_serv)
+"cWv" = (
/obj/structure/cable{
icon_state = "1-2"
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Service Bridge"
- })
-"cXm" = (
+/area/hallway/secondary/bridges/com_serv)
+"cWw" = (
/obj/structure/cable{
icon_state = "1-2"
},
@@ -88408,10 +84111,8 @@
dir = 4
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Service Bridge"
- })
-"cXn" = (
+/area/hallway/secondary/bridges/com_serv)
+"cWx" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/camera{
c_tag = "Medbay-Cargo Bridge";
@@ -88422,10 +84123,8 @@
icon_state = "1-2"
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"cXo" = (
+/area/hallway/secondary/bridges/med_cargo)
+"cWy" = (
/obj/structure/cable{
icon_state = "1-2"
},
@@ -88433,7 +84132,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cXp" = (
+"cWz" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -88443,7 +84142,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cXq" = (
+"cWA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -88454,10 +84153,8 @@
pixel_x = 0
},
/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"cXr" = (
+/area/hallway/secondary/bridges/serv_engi)
+"cWB" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -88470,10 +84167,8 @@
icon_state = "4-8"
},
/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Engineering-Medical Bridge"
- })
-"cXs" = (
+/area/hallway/secondary/bridges/engi_med)
+"cWC" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -88481,10 +84176,8 @@
dir = 1
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"cXt" = (
+/area/hallway/secondary/bridges/serv_engi)
+"cWD" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -88492,40 +84185,30 @@
dir = 1
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"cXu" = (
+/area/hallway/secondary/bridges/serv_engi)
+"cWE" = (
/obj/machinery/light{
dir = 1
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Engineering-Medical Bridge"
- })
-"cXv" = (
+/area/hallway/secondary/bridges/engi_med)
+"cWF" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Engineering-Medical Bridge"
- })
-"cXw" = (
+/area/hallway/secondary/bridges/engi_med)
+"cWG" = (
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"cXx" = (
+/area/hallway/secondary/bridges/serv_engi)
+"cWH" = (
/obj/machinery/camera{
c_tag = "Service-Engineering Bridge 1";
dir = 1
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"cXy" = (
+/area/hallway/secondary/bridges/serv_engi)
+"cWI" = (
/obj/machinery/power/apc{
dir = 2;
name = "Service-Engineering Bridge APC";
@@ -88535,10 +84218,8 @@
icon_state = "0-4"
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"cXz" = (
+/area/hallway/secondary/bridges/serv_engi)
+"cWJ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -88546,10 +84227,8 @@
pixel_x = 0
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"cXA" = (
+/area/hallway/secondary/bridges/serv_engi)
+"cWK" = (
/obj/machinery/camera{
c_tag = "Service-Engineering Bridge 2";
dir = 1
@@ -88561,10 +84240,8 @@
pixel_x = 0
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"cXB" = (
+/area/hallway/secondary/bridges/serv_engi)
+"cWL" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -88577,7 +84254,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cXC" = (
+"cWM" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -88588,7 +84265,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cXD" = (
+"cWN" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -88596,10 +84273,8 @@
pixel_x = 0
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Engineering-Medical Bridge"
- })
-"cXE" = (
+/area/hallway/secondary/bridges/engi_med)
+"cWO" = (
/obj/machinery/camera{
c_tag = "Medbay-Engineering Bridge";
dir = 1
@@ -88611,10 +84286,8 @@
pixel_x = 0
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Engineering-Medical Bridge"
- })
-"cXF" = (
+/area/hallway/secondary/bridges/engi_med)
+"cWP" = (
/obj/machinery/power/apc{
dir = 2;
name = "Engineering-Medical Bridge APC";
@@ -88625,26 +84298,20 @@
icon_state = "0-8"
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Engineering-Medical Bridge"
- })
-"cXG" = (
+/area/hallway/secondary/bridges/engi_med)
+"cWQ" = (
/obj/machinery/camera{
c_tag = "Medbay-Engineering Bridge 2";
dir = 1
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Engineering-Medical Bridge"
- })
-"cXH" = (
+/area/hallway/secondary/bridges/engi_med)
+"cWR" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"cXI" = (
+/area/hallway/secondary/bridges/serv_engi)
+"cWS" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -88655,10 +84322,8 @@
/obj/structure/grille,
/obj/structure/window/reinforced,
/turf/open/space,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"cXJ" = (
+/area/hallway/secondary/bridges/serv_engi)
+"cWT" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -88666,41 +84331,31 @@
dir = 4
},
/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Engineering-Medical Bridge"
- })
-"cXK" = (
+/area/hallway/secondary/bridges/engi_med)
+"cWU" = (
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"cXL" = (
+/area/hallway/secondary/bridges/dock_med)
+"cWV" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"cXM" = (
+/area/hallway/secondary/bridges/dock_med)
+"cWW" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"cXN" = (
+/area/hallway/secondary/bridges/dock_med)
+"cWX" = (
/obj/machinery/camera{
c_tag = "Docking-Medbay Bridge";
dir = 8;
network = list("SS13")
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"cXO" = (
+/area/hallway/secondary/bridges/dock_med)
+"cWY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -88708,19 +84363,15 @@
icon_state = "1-2"
},
/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"cXP" = (
+/area/hallway/secondary/bridges/dock_med)
+"cWZ" = (
/obj/machinery/light/small{
brightness = 3;
dir = 8
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"cXQ" = (
+/area/hallway/secondary/bridges/dock_med)
+"cXa" = (
/obj/machinery/power/apc{
dir = 4;
name = "Docking-Medical Bridge APC";
@@ -88732,18 +84383,14 @@
d2 = 2
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"cXR" = (
+/area/hallway/secondary/bridges/dock_med)
+"cXb" = (
/obj/structure/cable{
icon_state = "1-2"
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"cXS" = (
+/area/hallway/secondary/bridges/dock_med)
+"cXc" = (
/obj/machinery/camera{
c_tag = "Docking-Medbay Bridge 2";
dir = 8;
@@ -88753,10 +84400,8 @@
icon_state = "1-2"
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"cXT" = (
+/area/hallway/secondary/bridges/dock_med)
+"cXd" = (
/obj/machinery/door/airlock/glass,
/obj/structure/cable{
icon_state = "1-2"
@@ -88764,17 +84409,16 @@
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cXU" = (
+/area/hallway/primary/starboard/aft)
+"cXe" = (
/obj/structure/cable{
icon_state = "1-2"
},
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cXV" = (
-/obj/machinery/door/firedoor,
+/area/hallway/primary/starboard/aft)
+"cXf" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -88785,8 +84429,8 @@
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cXW" = (
+/area/hallway/primary/starboard/aft)
+"cXg" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 24
},
@@ -88796,34 +84440,26 @@
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"cXX" = (
+/area/hallway/primary/starboard/aft)
+"cXh" = (
/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"cXY" = (
+/area/hallway/secondary/bridges/sci_dock)
+"cXi" = (
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"cXZ" = (
+/area/hallway/secondary/bridges/sci_dock)
+"cXj" = (
/obj/machinery/light{
dir = 1
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"cYa" = (
+/area/hallway/secondary/bridges/sci_dock)
+"cXk" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"cYb" = (
+/area/hallway/secondary/bridges/sci_dock)
+"cXl" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -88835,7 +84471,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cYc" = (
+"cXm" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -88848,7 +84484,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cYd" = (
+"cXn" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -88865,10 +84501,8 @@
pixel_x = 0
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"cYe" = (
+/area/hallway/secondary/bridges/sci_dock)
+"cXo" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -88885,18 +84519,14 @@
pixel_x = 0
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"cYf" = (
+/area/hallway/secondary/bridges/sci_dock)
+"cXp" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"cYg" = (
+/area/hallway/secondary/bridges/sci_dock)
+"cXq" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -88907,10 +84537,8 @@
network = list("SS13")
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"cYh" = (
+/area/hallway/secondary/bridges/sci_dock)
+"cXr" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -88921,19 +84549,17 @@
network = list("SS13")
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"cYi" = (
+/area/hallway/secondary/bridges/sci_dock)
+"cXs" = (
/obj/structure/lattice,
/turf/open/space/basic,
/area/space)
-"cYj" = (
+"cXt" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/space,
/area/space)
-"cYk" = (
+"cXu" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 4;
@@ -88952,10 +84578,8 @@
dir = 8
},
/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"cYl" = (
+/area/hallway/secondary/bridges/cargo_ai)
+"cXv" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 8
@@ -88967,10 +84591,8 @@
pixel_x = 0
},
/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"cYm" = (
+/area/hallway/secondary/bridges/cargo_ai)
+"cXw" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 4;
@@ -88988,10 +84610,8 @@
dir = 8
},
/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"cYn" = (
+/area/hallway/secondary/bridges/cargo_ai)
+"cXx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -88999,42 +84619,32 @@
icon_state = "1-2"
},
/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"cYo" = (
+/area/hallway/secondary/bridges/cargo_ai)
+"cXy" = (
/obj/machinery/light/small{
dir = 8
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"cYp" = (
+/area/hallway/secondary/bridges/cargo_ai)
+"cXz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"cYq" = (
+/area/hallway/secondary/bridges/cargo_ai)
+"cXA" = (
/obj/machinery/light{
dir = 8
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"cYr" = (
+/area/hallway/secondary/bridges/cargo_ai)
+"cXB" = (
/obj/machinery/camera{
c_tag = "Core-Command-Cargo Bridge 1";
dir = 8;
network = list("SS13")
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"cYs" = (
+/area/hallway/secondary/bridges/cargo_ai)
+"cXC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -89045,10 +84655,8 @@
pixel_y = 0
},
/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"cYt" = (
+/area/hallway/secondary/bridges/cargo_ai)
+"cXD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -89058,10 +84666,8 @@
icon_state = "1-8"
},
/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"cYu" = (
+/area/hallway/secondary/bridges/cargo_ai)
+"cXE" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -89072,18 +84678,14 @@
dir = 1
},
/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"cYv" = (
+/area/hallway/secondary/bridges/cargo_ai)
+"cXF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"cYw" = (
+/area/hallway/secondary/bridges/cargo_ai)
+"cXG" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -89094,28 +84696,22 @@
dir = 1
},
/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"cYx" = (
+/area/hallway/secondary/bridges/cargo_ai)
+"cXH" = (
/obj/machinery/camera{
c_tag = "Core-Command-Cargo Bridge 2";
network = list("SS13")
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"cYy" = (
+/area/hallway/secondary/bridges/cargo_ai)
+"cXI" = (
/obj/machinery/camera{
c_tag = "Core-Command-Cargo Bridge 3";
network = list("SS13")
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"cYz" = (
+/area/hallway/secondary/bridges/cargo_ai)
+"cXJ" = (
/obj/machinery/power/apc{
dir = 1;
name = "Cargo-AI-Command Bridge APC";
@@ -89126,20 +84722,16 @@
icon_state = "0-4"
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"cYA" = (
+/area/hallway/secondary/bridges/cargo_ai)
+"cXK" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"cYB" = (
+/area/hallway/secondary/bridges/cargo_ai)
+"cXL" = (
/obj/machinery/camera{
c_tag = "Core-Command-Cargo Bridge 3";
network = list("SS13")
@@ -89150,10 +84742,8 @@
icon_state = "4-8"
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"cYC" = (
+/area/hallway/secondary/bridges/cargo_ai)
+"cXM" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -89165,8 +84755,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"cYD" = (
+/area/hallway/primary/starboard/fore)
+"cXN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -89186,31 +84776,23 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"cYE" = (
+/area/hallway/primary/starboard/fore)
+"cXO" = (
/obj/effect/landmark/lightsout,
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"cYF" = (
+/area/hallway/secondary/bridges/cargo_ai)
+"cXP" = (
/obj/machinery/light,
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"cYG" = (
+/area/hallway/secondary/bridges/cargo_ai)
+"cXQ" = (
/obj/machinery/light/small,
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"cYH" = (
+/area/hallway/secondary/bridges/cargo_ai)
+"cXR" = (
/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"cYI" = (
+/area/hallway/secondary/bridges/cargo_ai)
+"cXS" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -89221,34 +84803,26 @@
/obj/structure/grille,
/obj/structure/window/reinforced,
/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"cYJ" = (
+/area/hallway/secondary/bridges/cargo_ai)
+"cXT" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Engineering Bridge"
- })
-"cYK" = (
+/area/hallway/secondary/bridges/com_engi)
+"cXU" = (
/obj/machinery/light/small{
brightness = 3;
dir = 8
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Engineering Bridge"
- })
-"cYL" = (
+/area/hallway/secondary/bridges/com_engi)
+"cXV" = (
/obj/effect/landmark/lightsout,
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Service Bridge"
- })
-"cYM" = (
+/area/hallway/secondary/bridges/com_serv)
+"cXW" = (
/obj/machinery/power/apc{
dir = 4;
name = "Command-Engineering Bridge APC";
@@ -89261,10 +84835,8 @@
d2 = 2
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Engineering Bridge"
- })
-"cYN" = (
+/area/hallway/secondary/bridges/com_engi)
+"cXX" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -89272,16 +84844,12 @@
pixel_y = 0
},
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Engineering Bridge"
- })
-"cYO" = (
+/area/hallway/secondary/bridges/com_engi)
+"cXY" = (
/obj/effect/landmark/lightsout,
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"cYP" = (
+/area/hallway/secondary/bridges/med_cargo)
+"cXZ" = (
/obj/machinery/door/airlock/glass,
/obj/structure/cable{
d1 = 1;
@@ -89296,7 +84864,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cYQ" = (
+"cYa" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -89310,7 +84878,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cYR" = (
+"cYb" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -89323,21 +84891,17 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cYS" = (
+"cYc" = (
/obj/effect/landmark/lightsout,
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"cYT" = (
+/area/hallway/secondary/bridges/dock_med)
+"cYd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/construction/hallway{
- name = "Service-Science Bridge"
- })
-"cYU" = (
+/area/hallway/secondary/bridges/serv_sci)
+"cYe" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/power/apc{
dir = 4;
@@ -89350,10 +84914,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/construction/hallway{
- name = "Service-Science Bridge"
- })
-"cYV" = (
+/area/hallway/secondary/bridges/serv_sci)
+"cYf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -89363,25 +84925,19 @@
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/construction/hallway{
- name = "Service-Science Bridge"
- })
-"cYW" = (
+/area/hallway/secondary/bridges/serv_sci)
+"cYg" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/engine{
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
-/area/construction/hallway{
- name = "Service-Science Bridge"
- })
-"cYX" = (
+/area/hallway/secondary/bridges/serv_sci)
+"cYh" = (
/obj/effect/landmark/lightsout,
/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"cYY" = (
+/area/hallway/secondary/bridges/sci_dock)
+"cYi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
@@ -89393,8 +84949,8 @@
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"cYZ" = (
+/area/hallway/primary/starboard/fore)
+"cYj" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -89403,10 +84959,8 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cZa" = (
+/area/maintenance/asteroid/fore/com_west)
+"cYk" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -89435,8 +84989,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/fore)
-"cZb" = (
+/area/hallway/primary/starboard/fore)
+"cYl" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -89451,10 +85005,8 @@
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cZc" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"cYm" = (
/obj/effect/turf_decal/stripes/asteroid/line{
icon_state = "ast_warn";
dir = 8
@@ -89462,21 +85014,19 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cZd" = (
+/area/maintenance/asteroid/fore/cargo_south)
+"cYn" = (
/obj/structure/table,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cZe" = (
+"cYo" = (
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cZf" = (
+"cYp" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -89486,7 +85036,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cZg" = (
+"cYq" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -89496,19 +85046,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cZh" = (
+"cYr" = (
/obj/structure/table,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/medical/medbay)
-"cZi" = (
+/area/medical/medbay/central)
+"cYs" = (
/obj/structure/displaycase/trophy,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"cZj" = (
+"cYt" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -89518,30 +85068,24 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cZk" = (
+/area/maintenance/asteroid/central)
+"cYu" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cZl" = (
+/area/maintenance/asteroid/central)
+"cYv" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cZm" = (
+/area/maintenance/asteroid/central)
+"cYw" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/abandoned)
-"cZn" = (
+"cYx" = (
/obj/machinery/door/airlock/titanium{
name = "mech bay external airlock"
},
@@ -89572,7 +85116,7 @@
},
/turf/open/floor/plating,
/area/shuttle/abandoned)
-"cZo" = (
+"cYy" = (
/obj/structure/shuttle/engine/propulsion{
tag = "icon-propulsion (NORTH)";
icon_state = "propulsion";
@@ -89580,7 +85124,7 @@
},
/turf/open/floor/plating/airless,
/area/shuttle/abandoned)
-"cZp" = (
+"cYz" = (
/obj/machinery/mech_bay_recharge_port{
tag = "icon-recharge_port";
icon_state = "recharge_port";
@@ -89592,7 +85136,7 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"cZq" = (
+"cYA" = (
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
name = "dust"
@@ -89602,21 +85146,21 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"cZr" = (
+"cYB" = (
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
name = "dust"
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"cZs" = (
+"cYC" = (
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
name = "dust"
},
/turf/open/floor/mineral/titanium,
/area/shuttle/abandoned)
-"cZt" = (
+"cYD" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/structure/frame/machine,
/obj/item/stack/cable_coil,
@@ -89626,7 +85170,7 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"cZu" = (
+"cYE" = (
/obj/structure/shuttle/engine/heater{
tag = "icon-heater (NORTH)";
icon_state = "heater";
@@ -89635,7 +85179,7 @@
/obj/structure/window/reinforced,
/turf/open/floor/plating/airless,
/area/shuttle/abandoned)
-"cZv" = (
+"cYF" = (
/obj/structure/mecha_wreckage/ripley,
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
@@ -89643,7 +85187,7 @@
},
/turf/open/floor/mech_bay_recharge_floor,
/area/shuttle/abandoned)
-"cZw" = (
+"cYG" = (
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
name = "dust"
@@ -89654,7 +85198,7 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"cZx" = (
+"cYH" = (
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
name = "dust"
@@ -89669,7 +85213,7 @@
},
/turf/open/floor/mineral/titanium,
/area/shuttle/abandoned)
-"cZy" = (
+"cYI" = (
/obj/effect/spawner/lootdrop{
loot = list(/obj/mecha/working/ripley/mining = 1, /obj/structure/mecha_wreckage/ripley = 5);
lootdoubles = 0;
@@ -89677,7 +85221,7 @@
},
/turf/open/floor/mech_bay_recharge_floor,
/area/shuttle/abandoned)
-"cZz" = (
+"cYJ" = (
/obj/machinery/computer/mech_bay_power_console,
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
@@ -89685,22 +85229,22 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"cZA" = (
+"cYK" = (
/obj/machinery/computer/mech_bay_power_console,
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"cZB" = (
+"cYL" = (
/obj/machinery/door/airlock/titanium{
name = "mech bay"
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"cZC" = (
+"cYM" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
/turf/open/floor/plating,
/area/shuttle/abandoned)
-"cZD" = (
+"cYN" = (
/obj/effect/turf_decal/delivery{
dir = 1
},
@@ -89724,7 +85268,7 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"cZE" = (
+"cYO" = (
/obj/effect/turf_decal/delivery{
dir = 1
},
@@ -89741,7 +85285,7 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"cZF" = (
+"cYP" = (
/obj/effect/turf_decal/delivery{
dir = 1
},
@@ -89751,7 +85295,7 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"cZG" = (
+"cYQ" = (
/obj/effect/turf_decal/delivery{
dir = 1
},
@@ -89766,7 +85310,7 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"cZH" = (
+"cYR" = (
/obj/effect/turf_decal/delivery{
dir = 1
},
@@ -89779,7 +85323,7 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"cZI" = (
+"cYS" = (
/obj/effect/turf_decal/delivery{
dir = 1
},
@@ -89797,10 +85341,10 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"cZJ" = (
+"cYT" = (
/turf/closed/wall/mineral/titanium/nodiagonal,
/area/shuttle/abandoned)
-"cZK" = (
+"cYU" = (
/obj/effect/turf_decal/delivery{
dir = 1
},
@@ -89815,7 +85359,7 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"cZL" = (
+"cYV" = (
/obj/effect/turf_decal/delivery{
dir = 1
},
@@ -89829,7 +85373,7 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"cZM" = (
+"cYW" = (
/obj/effect/turf_decal/delivery{
dir = 1
},
@@ -89846,7 +85390,7 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"cZN" = (
+"cYX" = (
/obj/effect/turf_decal/delivery{
dir = 1
},
@@ -89864,7 +85408,7 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"cZO" = (
+"cYY" = (
/obj/effect/turf_decal/delivery{
dir = 1
},
@@ -89886,7 +85430,7 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"cZP" = (
+"cYZ" = (
/obj/effect/turf_decal/delivery{
dir = 1
},
@@ -89901,13 +85445,13 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"cZQ" = (
+"cZa" = (
/obj/machinery/door/poddoor{
id = "cerewhiteleft"
},
/turf/open/floor/plating,
/area/shuttle/abandoned)
-"cZR" = (
+"cZb" = (
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
name = "dust"
@@ -89918,13 +85462,13 @@
},
/turf/open/floor/mineral/titanium,
/area/shuttle/abandoned)
-"cZS" = (
+"cZc" = (
/obj/machinery/door/poddoor{
id = "cerewhiteright"
},
/turf/open/floor/plating,
/area/shuttle/abandoned)
-"cZT" = (
+"cZd" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/emergency,
/obj/item/weapon/crowbar,
@@ -89933,32 +85477,32 @@
},
/turf/open/floor/plasteel/darkpurple,
/area/shuttle/escape)
-"cZU" = (
+"cZe" = (
/obj/machinery/computer/aifixer,
/turf/open/floor/plasteel/darkpurple,
/area/shuttle/escape)
-"cZV" = (
+"cZf" = (
/obj/structure/table,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
/turf/open/floor/plasteel/darkpurple,
/area/shuttle/escape)
-"cZW" = (
+"cZg" = (
/obj/structure/table,
/obj/structure/window/reinforced{
dir = 8
},
/turf/open/floor/plasteel/black,
/area/shuttle/escape)
-"cZX" = (
+"cZh" = (
/obj/machinery/computer/card,
/turf/open/floor/plasteel/black,
/area/shuttle/escape)
-"cZY" = (
+"cZi" = (
/obj/machinery/computer/emergency_shuttle,
/turf/open/floor/plasteel/black,
/area/shuttle/escape)
-"cZZ" = (
+"cZj" = (
/obj/structure/table,
/obj/structure/window/reinforced{
dir = 4;
@@ -89966,15 +85510,15 @@
},
/turf/open/floor/plasteel/black,
/area/shuttle/escape)
-"daa" = (
+"cZk" = (
/obj/structure/table,
/turf/open/floor/plasteel/darkyellow,
/area/shuttle/escape)
-"dab" = (
+"cZl" = (
/obj/machinery/computer/cargo/request,
/turf/open/floor/plasteel/darkyellow,
/area/shuttle/escape)
-"dac" = (
+"cZm" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular{
pixel_x = 2;
@@ -89986,7 +85530,7 @@
},
/turf/open/floor/plasteel/darkyellow,
/area/shuttle/escape)
-"dad" = (
+"cZn" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -89995,7 +85539,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/power/apc{
dir = 8;
- name = "Starboard Primary Hallway APC";
+ name = "Starboard Quarter Primary Hallway APC";
pixel_x = -25;
pixel_y = 1
},
@@ -90003,15 +85547,15 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hallway/primary/starboard)
-"dae" = (
+/area/hallway/primary/starboard/aft)
+"cZo" = (
/obj/structure/table,
/turf/open/floor/plasteel/darkblue,
/area/shuttle/escape)
-"daf" = (
+"cZp" = (
/turf/open/floor/plasteel/darkblue,
/area/shuttle/escape)
-"dag" = (
+"cZq" = (
/obj/structure/chair/comfy/beige{
tag = "icon-comfychair (NORTH)";
icon_state = "comfychair";
@@ -90019,17 +85563,17 @@
},
/turf/open/floor/plasteel/darkpurple,
/area/shuttle/escape)
-"dah" = (
+"cZr" = (
/turf/open/floor/plasteel/darkpurple,
/area/shuttle/escape)
-"dai" = (
+"cZs" = (
/obj/machinery/computer/station_alert,
/obj/structure/window/reinforced{
dir = 8
},
/turf/open/floor/plasteel/black,
/area/shuttle/escape)
-"daj" = (
+"cZt" = (
/obj/structure/chair/office/light{
tag = "icon-officechair_white (NORTH)";
icon_state = "officechair_white";
@@ -90037,7 +85581,7 @@
},
/turf/open/floor/plasteel/black,
/area/shuttle/escape)
-"dak" = (
+"cZu" = (
/obj/machinery/computer/communications,
/obj/structure/window/reinforced{
dir = 4;
@@ -90045,10 +85589,10 @@
},
/turf/open/floor/plasteel/black,
/area/shuttle/escape)
-"dal" = (
+"cZv" = (
/turf/open/floor/plasteel/darkyellow,
/area/shuttle/escape)
-"dam" = (
+"cZw" = (
/obj/structure/chair/comfy/beige{
tag = "icon-comfychair (NORTH)";
icon_state = "comfychair";
@@ -90056,15 +85600,15 @@
},
/turf/open/floor/plasteel/darkyellow,
/area/shuttle/escape)
-"dan" = (
+"cZx" = (
/turf/open/floor/plasteel/darkred,
/area/shuttle/escape)
-"dao" = (
+"cZy" = (
/obj/structure/table,
/obj/item/weapon/book/manual/wiki/security_space_law,
/turf/open/floor/plasteel/darkred,
/area/shuttle/escape)
-"dap" = (
+"cZz" = (
/obj/effect/turf_decal/delivery{
dir = 1
},
@@ -90083,7 +85627,7 @@
/obj/item/clothing/glasses/welding,
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"daq" = (
+"cZA" = (
/obj/effect/turf_decal/delivery{
dir = 1
},
@@ -90103,7 +85647,7 @@
/obj/machinery/light,
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"dar" = (
+"cZB" = (
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
name = "dust"
@@ -90122,7 +85666,7 @@
},
/turf/open/floor/mineral/titanium,
/area/shuttle/abandoned)
-"das" = (
+"cZC" = (
/obj/effect/turf_decal/delivery{
dir = 1
},
@@ -90137,26 +85681,26 @@
/obj/machinery/light,
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"dat" = (
+"cZD" = (
/obj/machinery/computer/med_data,
/turf/open/floor/plasteel/darkblue,
/area/shuttle/escape)
-"dau" = (
+"cZE" = (
/turf/open/floor/plasteel/darkpurple/side{
dir = 1
},
/area/shuttle/escape)
-"dav" = (
+"cZF" = (
/obj/structure/window/reinforced{
dir = 8
},
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/black,
/area/shuttle/escape)
-"daw" = (
+"cZG" = (
/turf/open/floor/plasteel/black,
/area/shuttle/escape)
-"dax" = (
+"cZH" = (
/obj/structure/window/reinforced{
dir = 4;
pixel_x = 0
@@ -90164,18 +85708,18 @@
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/black,
/area/shuttle/escape)
-"day" = (
+"cZI" = (
/turf/open/floor/plasteel/darkyellow/side{
tag = "icon-darkyellow (NORTH)";
icon_state = "darkyellow";
dir = 1
},
/area/shuttle/escape)
-"daz" = (
+"cZJ" = (
/obj/machinery/computer/security,
/turf/open/floor/plasteel/darkred,
/area/shuttle/escape)
-"daA" = (
+"cZK" = (
/obj/structure/ore_box,
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
@@ -90183,7 +85727,7 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"daB" = (
+"cZL" = (
/obj/machinery/door/airlock/titanium{
name = "cockpit"
},
@@ -90193,7 +85737,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/abandoned)
-"daC" = (
+"cZM" = (
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
name = "dust"
@@ -90205,40 +85749,40 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"daD" = (
+"cZN" = (
/obj/machinery/computer/crew,
/turf/open/floor/plasteel/darkblue,
/area/shuttle/escape)
-"daE" = (
+"cZO" = (
/obj/structure/chair/comfy/beige{
dir = 8
},
/turf/open/floor/plasteel/darkblue,
/area/shuttle/escape)
-"daF" = (
+"cZP" = (
/turf/open/floor/plasteel/darkblue/side{
tag = "icon-darkblue (NORTH)";
dir = 1
},
/area/shuttle/escape)
-"daG" = (
+"cZQ" = (
/turf/open/floor/plasteel/darkred/side{
tag = "icon-darkred (NORTH)";
icon_state = "darkred";
dir = 1
},
/area/shuttle/escape)
-"daH" = (
+"cZR" = (
/obj/structure/chair/comfy/beige{
dir = 4
},
/turf/open/floor/plasteel/darkred,
/area/shuttle/escape)
-"daI" = (
+"cZS" = (
/obj/machinery/computer/secure_data,
/turf/open/floor/plasteel/darkred,
/area/shuttle/escape)
-"daJ" = (
+"cZT" = (
/obj/structure/table,
/obj/item/device/gps{
gpstag = "NTCONST1";
@@ -90254,7 +85798,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/abandoned)
-"daK" = (
+"cZU" = (
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
name = "dust"
@@ -90269,7 +85813,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/abandoned)
-"daL" = (
+"cZV" = (
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
name = "dust"
@@ -90280,14 +85824,14 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/abandoned)
-"daM" = (
+"cZW" = (
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
name = "dust"
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/abandoned)
-"daN" = (
+"cZX" = (
/obj/structure/table,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/item/weapon/storage/firstaid/regular,
@@ -90300,18 +85844,18 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/abandoned)
-"daO" = (
+"cZY" = (
/obj/machinery/light,
/turf/open/floor/plasteel/black,
/area/shuttle/escape)
-"daP" = (
+"cZZ" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 0;
pixel_y = -30
},
/turf/open/floor/plasteel/black,
/area/shuttle/escape)
-"daQ" = (
+"daa" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
},
@@ -90326,12 +85870,12 @@
dir = 1
},
/area/shuttle/escape)
-"daR" = (
+"dab" = (
/obj/structure/table,
/obj/machinery/recharger,
/turf/open/floor/plasteel/darkred,
/area/shuttle/escape)
-"daS" = (
+"dac" = (
/obj/structure/table,
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
@@ -90339,14 +85883,14 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/abandoned)
-"daT" = (
+"dad" = (
/obj/machinery/door/airlock/glass{
name = "Emergency Shuttle Cockpit";
req_access_txt = "19"
},
/turf/open/floor/plasteel/black,
/area/shuttle/escape)
-"daU" = (
+"dae" = (
/obj/machinery/suit_storage_unit/standard_unit,
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
@@ -90354,7 +85898,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/abandoned)
-"daV" = (
+"daf" = (
/obj/structure/chair/comfy/black,
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
@@ -90370,7 +85914,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/abandoned)
-"daW" = (
+"dag" = (
/obj/structure/closet/emcloset,
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
@@ -90378,7 +85922,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/abandoned)
-"daX" = (
+"dah" = (
/obj/structure/chair,
/turf/open/floor/mineral/plastitanium/brig{
tag = "icon-darkred (NORTHEAST)";
@@ -90387,21 +85931,21 @@
floor_tile = /obj/item/stack/tile/plasteel
},
/area/shuttle/escape)
-"daY" = (
+"dai" = (
/turf/open/floor/plasteel/neutral/side{
tag = "icon-neutral (WEST)";
icon_state = "neutral";
dir = 8
},
/area/shuttle/escape)
-"daZ" = (
+"daj" = (
/turf/open/floor/plasteel/neutral/side{
tag = "icon-neutral (EAST)";
icon_state = "neutral";
dir = 4
},
/area/shuttle/escape)
-"dba" = (
+"dak" = (
/obj/machinery/mech_bay_recharge_port{
tag = "icon-recharge_port";
icon_state = "recharge_port";
@@ -90409,10 +85953,10 @@
},
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"dbb" = (
+"dal" = (
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"dbc" = (
+"dam" = (
/obj/structure/table,
/obj/item/weapon/phone{
pixel_x = -3;
@@ -90424,7 +85968,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/abandoned)
-"dbd" = (
+"dan" = (
/obj/machinery/computer/shuttle/white_ship,
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
@@ -90432,7 +85976,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/abandoned)
-"dbe" = (
+"dao" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = -1;
@@ -90444,13 +85988,13 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/abandoned)
-"dbf" = (
+"dap" = (
/obj/structure/chair{
dir = 4
},
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/escape)
-"dbg" = (
+"daq" = (
/obj/structure/chair{
dir = 8
},
@@ -90461,7 +86005,7 @@
},
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/escape)
-"dbh" = (
+"dar" = (
/obj/machinery/button/flasher{
id = "shuttle_flasher";
pixel_x = -24;
@@ -90475,23 +86019,23 @@
icon_state = "darkred"
},
/area/shuttle/escape)
-"dbi" = (
+"das" = (
/turf/open/floor/mineral/plastitanium/brig{
dir = 4;
floor_tile = /obj/item/stack/tile/plasteel;
icon_state = "darkred"
},
/area/shuttle/escape)
-"dbj" = (
+"dat" = (
/turf/open/floor/mech_bay_recharge_floor,
/area/shuttle/escape)
-"dbk" = (
+"dau" = (
/obj/structure/chair{
dir = 8
},
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/escape)
-"dbl" = (
+"dav" = (
/obj/machinery/door/airlock/glass_security{
name = "Emergency Shuttle Brig";
req_access_txt = "2"
@@ -90500,11 +86044,11 @@
icon_state = "darkredfull"
},
/area/shuttle/escape)
-"dbm" = (
+"daw" = (
/obj/machinery/computer/mech_bay_power_console,
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"dbn" = (
+"dax" = (
/turf/open/floor/mineral/plastitanium/brig{
tag = "icon-darkred";
icon_state = "darkred";
@@ -90512,7 +86056,7 @@
floor_tile = /obj/item/stack/tile/plasteel
},
/area/shuttle/escape)
-"dbo" = (
+"day" = (
/obj/effect/turf_decal/stripes/line{
tag = "icon-warningline (NORTH)";
icon_state = "warningline";
@@ -90531,7 +86075,7 @@
dir = 8
},
/area/shuttle/escape)
-"dbp" = (
+"daz" = (
/obj/effect/turf_decal/stripes/line{
tag = "icon-warningline (NORTH)";
icon_state = "warningline";
@@ -90539,7 +86083,7 @@
},
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"dbq" = (
+"daA" = (
/obj/effect/turf_decal/delivery,
/obj/effect/turf_decal/stripes/line{
tag = "icon-warningline (NORTH)";
@@ -90556,7 +86100,7 @@
dir = 4
},
/area/shuttle/escape)
-"dbr" = (
+"daB" = (
/obj/structure/chair{
dir = 1
},
@@ -90566,24 +86110,24 @@
icon_state = "darkred"
},
/area/shuttle/escape)
-"dbs" = (
+"daC" = (
/obj/machinery/door/airlock/shuttle{
name = "Emergency Shuttle Cargo"
},
/turf/open/floor/plasteel/darkyellow,
/area/shuttle/escape)
-"dbt" = (
+"daD" = (
/turf/open/floor/plasteel/brown{
tag = "icon-brown (WEST)";
icon_state = "brown";
dir = 8
},
/area/shuttle/escape)
-"dbu" = (
+"daE" = (
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"dbv" = (
+"daF" = (
/obj/effect/turf_decal/delivery,
/obj/structure/closet/crate,
/turf/open/floor/plasteel/brown{
@@ -90592,11 +86136,11 @@
dir = 4
},
/area/shuttle/escape)
-"dbw" = (
+"daG" = (
/obj/structure/closet/crate/bin,
/turf/open/floor/plasteel/neutral,
/area/shuttle/escape)
-"dbx" = (
+"daH" = (
/obj/structure/table,
/obj/item/weapon/storage/box/cups,
/obj/item/device/radio/intercom{
@@ -90607,43 +86151,43 @@
},
/turf/open/floor/plasteel/neutral,
/area/shuttle/escape)
-"dby" = (
+"daI" = (
/obj/structure/reagent_dispensers/water_cooler,
/turf/open/floor/plasteel/neutral,
/area/shuttle/escape)
-"dbz" = (
+"daJ" = (
/obj/structure/table,
/obj/machinery/microwave,
/turf/open/floor/plasteel/neutral,
/area/shuttle/escape)
-"dbA" = (
+"daK" = (
/obj/structure/table,
/obj/item/weapon/storage/box/donkpockets,
/obj/item/weapon/storage/box/donkpockets,
/turf/open/floor/plasteel/neutral,
/area/shuttle/escape)
-"dbB" = (
+"daL" = (
/obj/structure/sign/nanotrasen{
pixel_x = -32;
pixel_y = 32
},
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"dbC" = (
+"daM" = (
/turf/open/floor/plasteel/brown{
tag = "icon-brown (SOUTHWEST)";
icon_state = "brown";
dir = 10
},
/area/shuttle/escape)
-"dbD" = (
+"daN" = (
/turf/open/floor/plasteel/brown,
/area/shuttle/escape)
-"dbE" = (
+"daO" = (
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel/brown,
/area/shuttle/escape)
-"dbF" = (
+"daP" = (
/obj/effect/turf_decal/delivery,
/obj/structure/closet,
/turf/open/floor/plasteel/brown{
@@ -90652,24 +86196,24 @@
dir = 6
},
/area/shuttle/escape)
-"dbG" = (
+"daQ" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
},
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"dbH" = (
+"daR" = (
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
icon_state = "neutralcorner";
dir = 4
},
/area/shuttle/escape)
-"dbI" = (
+"daS" = (
/turf/open/floor/plasteel/neutral/side,
/area/shuttle/escape)
-"dbJ" = (
+"daT" = (
/obj/item/device/radio/intercom{
dir = 4;
name = "Station Intercom (General)";
@@ -90678,7 +86222,7 @@
},
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"dbK" = (
+"daU" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular{
pixel_x = 2;
@@ -90689,7 +86233,7 @@
},
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"dbL" = (
+"daV" = (
/obj/structure/chair{
dir = 8
},
@@ -90698,7 +86242,7 @@
},
/turf/open/floor/plasteel/neutral,
/area/shuttle/escape)
-"dbM" = (
+"daW" = (
/obj/structure/chair{
dir = 4
},
@@ -90707,20 +86251,20 @@
},
/turf/open/floor/plasteel/neutral,
/area/shuttle/escape)
-"dbN" = (
+"daX" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -28
},
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"dbO" = (
+"daY" = (
/obj/structure/sign/bluecross_2{
pixel_x = 32;
pixel_y = -32
},
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"dbP" = (
+"daZ" = (
/obj/machinery/light,
/turf/open/floor/plasteel/neutral/side{
tag = "icon-neutral (NORTH)";
@@ -90728,7 +86272,7 @@
dir = 1
},
/area/shuttle/escape)
-"dbQ" = (
+"dba" = (
/obj/machinery/light{
dir = 4
},
@@ -90738,13 +86282,13 @@
},
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"dbR" = (
+"dbb" = (
/obj/machinery/door/airlock/glass_medical{
name = "Emergency Shuttle Medbay"
},
/turf/open/floor/plasteel/whiteblue,
/area/shuttle/escape)
-"dbS" = (
+"dbc" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -90755,13 +86299,13 @@
dir = 8
},
/area/shuttle/escape)
-"dbT" = (
+"dbd" = (
/obj/machinery/light{
dir = 4
},
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"dbU" = (
+"dbe" = (
/mob/living/simple_animal/bot/medbot{
name = "Speedy* Recovery"
},
@@ -90771,14 +86315,14 @@
dir = 9
},
/area/shuttle/escape)
-"dbV" = (
+"dbf" = (
/turf/open/floor/plasteel/whiteblue/side{
tag = "icon-whiteblue (NORTH)";
icon_state = "whiteblue";
dir = 1
},
/area/shuttle/escape)
-"dbW" = (
+"dbg" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/plasteel/whiteblue/side{
@@ -90787,7 +86331,7 @@
dir = 1
},
/area/shuttle/escape)
-"dbX" = (
+"dbh" = (
/obj/machinery/atmospherics/components/unary/cryo_cell,
/turf/open/floor/plasteel/whiteblue/side{
tag = "icon-whiteblue (NORTH)";
@@ -90795,7 +86339,7 @@
dir = 1
},
/area/shuttle/escape)
-"dbY" = (
+"dbi" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer,
/turf/open/floor/plasteel/whiteblue/side{
tag = "icon-whiteblue (NORTH)";
@@ -90803,7 +86347,7 @@
dir = 1
},
/area/shuttle/escape)
-"dbZ" = (
+"dbj" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,
/obj/item/weapon/wrench,
@@ -90813,21 +86357,21 @@
dir = 5
},
/area/shuttle/escape)
-"dca" = (
+"dbk" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel/neutral,
/area/shuttle/escape)
-"dcb" = (
+"dbl" = (
/turf/open/floor/plasteel/whiteblue/side{
tag = "icon-whiteblue (WEST)";
icon_state = "whiteblue";
dir = 8
},
/area/shuttle/escape)
-"dcc" = (
+"dbm" = (
/turf/open/floor/plasteel/white,
/area/shuttle/escape)
-"dcd" = (
+"dbn" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
tag = "icon-intact (NORTHEAST)";
icon_state = "intact";
@@ -90835,11 +86379,11 @@
},
/turf/open/floor/plasteel/white,
/area/shuttle/escape)
-"dce" = (
+"dbo" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/turf/open/floor/plasteel/white,
/area/shuttle/escape)
-"dcf" = (
+"dbp" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
tag = "icon-intact (NORTHWEST)";
icon_state = "intact";
@@ -90847,14 +86391,14 @@
},
/turf/open/floor/plasteel/white,
/area/shuttle/escape)
-"dcg" = (
+"dbq" = (
/turf/open/floor/plasteel/whiteblue/corner{
tag = "icon-whitebluecorner (EAST)";
icon_state = "whitebluecorner";
dir = 4
},
/area/shuttle/escape)
-"dch" = (
+"dbr" = (
/obj/machinery/sleeper{
icon_state = "sleeper-open";
dir = 8
@@ -90868,24 +86412,24 @@
dir = 5
},
/area/shuttle/escape)
-"dci" = (
+"dbs" = (
/turf/open/floor/plasteel/whiteblue/side{
tag = "icon-whiteblue (SOUTHWEST)";
icon_state = "whiteblue";
dir = 10
},
/area/shuttle/escape)
-"dcj" = (
+"dbt" = (
/turf/open/floor/plasteel/whiteblue/side,
/area/shuttle/escape)
-"dck" = (
+"dbu" = (
/turf/open/floor/plasteel/whiteblue/corner{
tag = "icon-whitebluecorner (WEST)";
icon_state = "whitebluecorner";
dir = 8
},
/area/shuttle/escape)
-"dcl" = (
+"dbv" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular{
pixel_x = 2;
@@ -90897,21 +86441,21 @@
dir = 4
},
/area/shuttle/escape)
-"dcm" = (
+"dbw" = (
/obj/machinery/computer/arcade,
/turf/open/floor/plasteel/neutral,
/area/shuttle/escape)
-"dcn" = (
+"dbx" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
},
/turf/open/floor/plasteel/whiteblue,
/area/shuttle/escape)
-"dco" = (
+"dby" = (
/turf/open/floor/plasteel/whiteblue,
/area/shuttle/escape)
-"dcp" = (
+"dbz" = (
/obj/structure/window/reinforced{
dir = 4;
pixel_x = 0
@@ -90923,7 +86467,7 @@
/obj/machinery/iv_drip,
/turf/open/floor/plasteel/whiteblue,
/area/shuttle/escape)
-"dcq" = (
+"dbA" = (
/obj/machinery/sleeper{
icon_state = "sleeper-open";
dir = 8
@@ -90934,7 +86478,7 @@
dir = 4
},
/area/shuttle/escape)
-"dcr" = (
+"dbB" = (
/obj/structure/closet/crate/freezer,
/obj/item/weapon/reagent_containers/blood/empty,
/obj/item/weapon/reagent_containers/blood/empty,
@@ -90958,7 +86502,7 @@
/obj/item/weapon/reagent_containers/blood/random,
/turf/open/floor/plasteel/whiteblue,
/area/shuttle/escape)
-"dcs" = (
+"dbC" = (
/obj/structure/table,
/obj/structure/window/reinforced{
dir = 4;
@@ -90976,7 +86520,7 @@
/obj/item/weapon/retractor,
/turf/open/floor/plasteel/whiteblue,
/area/shuttle/escape)
-"dct" = (
+"dbD" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/fire,
/obj/item/weapon/crowbar,
@@ -90986,15 +86530,15 @@
dir = 4
},
/area/shuttle/escape)
-"dcu" = (
+"dbE" = (
/obj/machinery/computer/operating,
/turf/open/floor/plasteel/whiteblue,
/area/shuttle/escape)
-"dcv" = (
+"dbF" = (
/obj/structure/table/optable,
/turf/open/floor/plasteel/whiteblue,
/area/shuttle/escape)
-"dcw" = (
+"dbG" = (
/obj/structure/table,
/obj/structure/window/reinforced{
dir = 4;
@@ -91007,7 +86551,7 @@
/obj/item/weapon/razor,
/turf/open/floor/plasteel/whiteblue,
/area/shuttle/escape)
-"dcx" = (
+"dbH" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/o2,
/obj/item/weapon/storage/firstaid/toxin,
@@ -91017,14 +86561,14 @@
dir = 10
},
/area/shuttle/escape)
-"dcy" = (
+"dbI" = (
/obj/machinery/sleeper{
icon_state = "sleeper-open";
dir = 1
},
/turf/open/floor/plasteel/whiteblue/side,
/area/shuttle/escape)
-"dcz" = (
+"dbJ" = (
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
pixel_x = 0;
@@ -91032,7 +86576,7 @@
},
/turf/open/floor/plasteel/whiteblue/side,
/area/shuttle/escape)
-"dcA" = (
+"dbK" = (
/obj/machinery/sleeper{
icon_state = "sleeper-open";
dir = 8
@@ -91043,7 +86587,7 @@
dir = 6
},
/area/shuttle/escape)
-"dcB" = (
+"dbL" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 0;
pixel_y = -30
@@ -91054,23 +86598,23 @@
dir = 1
},
/area/shuttle/escape)
-"dcC" = (
+"dbM" = (
/obj/machinery/door/airlock/glass_engineering{
name = "Engine Room";
req_one_access_txt = "10;24"
},
/turf/open/floor/plasteel/yellow,
/area/shuttle/escape)
-"dcD" = (
+"dbN" = (
/obj/machinery/door/airlock{
name = "Bathroom"
},
/turf/open/floor/plasteel/freezer,
/area/shuttle/escape)
-"dcE" = (
+"dbO" = (
/turf/open/floor/plasteel/freezer,
/area/shuttle/escape)
-"dcF" = (
+"dbP" = (
/obj/structure/toilet{
icon_state = "toilet00";
dir = 8
@@ -91080,7 +86624,7 @@
},
/turf/open/floor/plasteel/freezer,
/area/shuttle/escape)
-"dcG" = (
+"dbQ" = (
/obj/structure/closet/secure_closet/engineering_personal,
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (NORTHWEST)";
@@ -91088,14 +86632,14 @@
dir = 9
},
/area/shuttle/escape)
-"dcH" = (
+"dbR" = (
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (NORTH)";
icon_state = "yellow";
dir = 1
},
/area/shuttle/escape)
-"dcI" = (
+"dbS" = (
/obj/machinery/light{
dir = 1
},
@@ -91106,14 +86650,14 @@
dir = 1
},
/area/shuttle/escape)
-"dcJ" = (
+"dbT" = (
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (NORTHEAST)";
icon_state = "yellow";
dir = 5
},
/area/shuttle/escape)
-"dcK" = (
+"dbU" = (
/obj/structure/sink{
icon_state = "sink";
dir = 8;
@@ -91125,13 +86669,13 @@
},
/turf/open/floor/plasteel/freezer,
/area/shuttle/escape)
-"dcL" = (
+"dbV" = (
/obj/machinery/light{
dir = 4
},
/turf/open/floor/plasteel/freezer,
/area/shuttle/escape)
-"dcM" = (
+"dbW" = (
/obj/structure/closet/secure_closet/engineering_personal,
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (SOUTHWEST)";
@@ -91139,21 +86683,21 @@
dir = 10
},
/area/shuttle/escape)
-"dcN" = (
+"dbX" = (
/turf/open/floor/plasteel/yellow/corner{
tag = "icon-yellowcorner (WEST)";
icon_state = "yellowcorner";
dir = 8
},
/area/shuttle/escape)
-"dcO" = (
+"dbY" = (
/turf/open/floor/plasteel/yellow/corner{
tag = "icon-yellowcorner (EAST)";
icon_state = "yellowcorner";
dir = 4
},
/area/shuttle/escape)
-"dcP" = (
+"dbZ" = (
/obj/structure/table,
/obj/item/weapon/storage/box/metalfoam,
/turf/open/floor/plasteel/yellow/side{
@@ -91162,7 +86706,7 @@
dir = 1
},
/area/shuttle/escape)
-"dcQ" = (
+"dca" = (
/obj/structure/table,
/obj/item/stack/sheet/metal/fifty,
/turf/open/floor/plasteel/yellow/side{
@@ -91171,7 +86715,7 @@
dir = 1
},
/area/shuttle/escape)
-"dcR" = (
+"dcb" = (
/obj/structure/table,
/obj/item/stack/sheet/glass/fifty,
/turf/open/floor/plasteel/yellow/side{
@@ -91180,20 +86724,20 @@
dir = 5
},
/area/shuttle/escape)
-"dcS" = (
+"dcc" = (
/obj/structure/urinal{
pixel_y = -32
},
/turf/open/floor/plasteel/freezer,
/area/shuttle/escape)
-"dcT" = (
+"dcd" = (
/obj/machinery/light/small{
dir = 4
},
/obj/machinery/recharge_station,
/turf/open/floor/plasteel/freezer,
/area/shuttle/escape)
-"dcU" = (
+"dce" = (
/obj/structure/reagent_dispensers/watertank/high,
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (SOUTHWEST)";
@@ -91201,7 +86745,7 @@
dir = 10
},
/area/shuttle/escape)
-"dcV" = (
+"dcf" = (
/obj/structure/sign/electricshock{
pixel_x = 32
},
@@ -91211,7 +86755,7 @@
dir = 4
},
/area/shuttle/escape)
-"dcW" = (
+"dcg" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
/turf/open/floor/plasteel/yellow/side{
@@ -91220,20 +86764,20 @@
dir = 10
},
/area/shuttle/escape)
-"dcX" = (
+"dch" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/electrical,
/obj/item/weapon/storage/toolbox/electrical,
/turf/open/floor/plasteel/yellow/side,
/area/shuttle/escape)
-"dcY" = (
+"dci" = (
/obj/structure/table,
/obj/structure/sign/enginesafety{
pixel_y = -32
},
/turf/open/floor/plasteel/yellow/side,
/area/shuttle/escape)
-"dcZ" = (
+"dcj" = (
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
pixel_x = 0;
@@ -91241,15 +86785,15 @@
},
/turf/open/floor/plasteel/yellow/side,
/area/shuttle/escape)
-"dda" = (
+"dck" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plasteel/yellow/side,
/area/shuttle/escape)
-"ddb" = (
+"dcl" = (
/obj/machinery/light,
/turf/open/floor/plasteel/yellow/side,
/area/shuttle/escape)
-"ddc" = (
+"dcm" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 0;
pixel_y = -30
@@ -91260,14 +86804,14 @@
dir = 6
},
/area/shuttle/escape)
-"ddd" = (
+"dcn" = (
/obj/machinery/door/airlock/maintenance_hatch,
/turf/open/floor/plating,
/area/shuttle/escape)
-"dde" = (
+"dco" = (
/turf/open/floor/plating,
/area/shuttle/escape)
-"ddf" = (
+"dcp" = (
/obj/machinery/light/small{
tag = "icon-bulb1 (NORTH)";
icon_state = "bulb1";
@@ -91275,7 +86819,7 @@
},
/turf/open/floor/plating,
/area/shuttle/escape)
-"ddg" = (
+"dcq" = (
/obj/machinery/power/terminal{
tag = "icon-term (EAST)";
icon_state = "term";
@@ -91283,35 +86827,33 @@
},
/turf/open/floor/plating,
/area/shuttle/escape)
-"ddh" = (
+"dcr" = (
/obj/machinery/power/smes/engineering,
/turf/open/floor/plating,
/area/shuttle/escape)
-"ddi" = (
+"dcs" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
/area/shuttle/escape)
-"ddj" = (
+"dct" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
/area/shuttle/escape)
-"ddk" = (
+"dcu" = (
/obj/machinery/power/port_gen/pacman,
/turf/open/floor/plating,
/area/shuttle/escape)
-"ddl" = (
+"dcv" = (
/obj/effect/landmark/carpspawn,
/turf/open/space/basic,
/area/space)
-"ddm" = (
+"dcw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"ddn" = (
+/area/hallway/secondary/bridges/serv_engi)
+"dcx" = (
/obj/machinery/hydroponics/constructable,
/obj/machinery/light{
dir = 1
@@ -91320,54 +86862,37 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"ddo" = (
+"dcy" = (
/obj/machinery/hydroponics/constructable,
/turf/open/floor/plasteel/darkgreen/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"ddp" = (
-/obj/machinery/hydroponics/constructable,
-/turf/open/floor/plasteel/darkgreen/side{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"ddq" = (
-/obj/machinery/hydroponics/constructable,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/darkgreen/side{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"ddr" = (
+"dcz" = (
/obj/structure/reagent_dispensers/watertank/high,
/obj/item/weapon/reagent_containers/glass/bucket,
/turf/open/floor/plasteel/darkgreen{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"dds" = (
+"dcA" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/space,
/area/space)
-"ddt" = (
+"dcB" = (
/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
/obj/machinery/door/window/eastright{
name = "Hydroponics Desk";
req_access_txt = "35"
},
-/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"ddu" = (
+"dcC" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -91378,7 +86903,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"ddv" = (
+"dcD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -91386,22 +86911,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"ddw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"ddx" = (
-/obj/structure/reagent_dispensers/watertank/high,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/turf/open/floor/plasteel/darkgreen{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"ddy" = (
+"dcE" = (
/obj/structure/flora/ausbushes/ppflowers,
/obj/structure/cable/orange{
d1 = 1;
@@ -91412,7 +86922,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"ddz" = (
+"dcF" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -91427,7 +86937,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"ddA" = (
+"dcG" = (
/obj/structure/sink{
icon_state = "sink";
dir = 8;
@@ -91443,7 +86953,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"ddB" = (
+"dcH" = (
/obj/machinery/hydroponics/constructable,
/obj/structure/cable/orange{
d1 = 4;
@@ -91454,18 +86964,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"ddC" = (
-/obj/machinery/hydroponics/constructable,
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/darkgreen/side{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"ddD" = (
+"dcI" = (
/obj/machinery/hydroponics/constructable,
/obj/structure/cable/orange{
d1 = 4;
@@ -91476,35 +86975,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"ddE" = (
-/obj/machinery/hydroponics/constructable,
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/darkgreen/side{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"ddF" = (
-/obj/machinery/hydroponics/constructable,
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/darkgreen/side{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"ddG" = (
+"dcJ" = (
/obj/structure/flora/ausbushes/ppflowers,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"ddH" = (
+"dcK" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -91512,20 +86989,17 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"ddI" = (
+/area/maintenance/asteroid/port/east)
+"dcL" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"ddJ" = (
+"dcM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -91539,7 +87013,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"ddK" = (
+"dcN" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -91550,23 +87024,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"ddL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"ddM" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"ddN" = (
+"dcO" = (
/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -91575,30 +87033,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"ddO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"ddP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"ddQ" = (
+"dcP" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/darkgreen/side{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 4
},
/area/hydroponics)
-"ddR" = (
+"dcQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -91606,7 +87048,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"ddS" = (
+"dcR" = (
/obj/machinery/door/airlock/glass{
name = "Bee Reserve";
req_access_txt = "35"
@@ -91618,7 +87060,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"ddT" = (
+"dcS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -91626,7 +87068,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"ddU" = (
+"dcT" = (
/obj/machinery/hydroponics/constructable,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
@@ -91635,12 +87077,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"ddV" = (
+"dcU" = (
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"ddW" = (
+"dcV" = (
/obj/structure/disposalpipe/sortjunction{
dir = 2;
icon_state = "pipe-j1s";
@@ -91650,17 +87092,15 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"ddX" = (
+/area/maintenance/asteroid/port/east)
+"dcW" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"ddY" = (
+"dcX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 4
@@ -91669,7 +87109,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"ddZ" = (
+"dcY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 4
@@ -91679,7 +87119,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"dea" = (
+"dcZ" = (
/obj/machinery/hydroponics/constructable,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
@@ -91689,37 +87129,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"deb" = (
-/obj/machinery/hydroponics/constructable,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plasteel/darkgreen/side{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"dec" = (
-/obj/machinery/hydroponics/constructable,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plasteel/darkgreen/side{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"ded" = (
-/obj/machinery/hydroponics/constructable,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plasteel/darkgreen/side{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"dee" = (
+"dda" = (
/obj/structure/sink{
dir = 4;
icon_state = "sink";
@@ -91733,18 +87143,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"def" = (
-/turf/open/floor/grass{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"deg" = (
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/open/floor/grass{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"deh" = (
+"ddb" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -91752,10 +87151,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"dei" = (
+/area/maintenance/asteroid/port/east)
+"ddc" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -91763,16 +87160,14 @@
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"dej" = (
+/area/maintenance/asteroid/port/east)
+"ddd" = (
/obj/effect/landmark/start/botanist,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"dek" = (
+"dde" = (
/obj/machinery/hydroponics/constructable,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
@@ -91781,13 +87176,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"del" = (
+"ddf" = (
/obj/structure/flora/ausbushes/ywflowers,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"dem" = (
+"ddg" = (
/obj/structure/closet/secure_closet/hydroponics,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -91796,7 +87191,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"den" = (
+"ddh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -91804,7 +87199,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"deo" = (
+"ddi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -91812,31 +87207,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"dep" = (
-/obj/machinery/hydroponics/constructable,
-/turf/open/floor/plasteel/darkgreen/side{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"deq" = (
-/obj/machinery/hydroponics/constructable,
-/turf/open/floor/plasteel/darkgreen/side{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"der" = (
-/obj/machinery/hydroponics/constructable,
-/turf/open/floor/plasteel/darkgreen/side{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"des" = (
-/obj/machinery/hydroponics/constructable,
-/turf/open/floor/plasteel/darkgreen/side{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"det" = (
+"ddj" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -91845,18 +87216,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"deu" = (
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/open/floor/grass{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"dev" = (
-/turf/open/floor/grass{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"dew" = (
+"ddk" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -91871,7 +87231,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"dex" = (
+"ddl" = (
/obj/machinery/door/airlock/glass{
name = "Hydroponics";
req_access_txt = "35"
@@ -91884,7 +87244,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"dey" = (
+"ddm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 4
@@ -91893,34 +87253,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"dez" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"deA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"deB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"deC" = (
+"ddn" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -91929,7 +87262,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"deD" = (
+"ddo" = (
/obj/machinery/vending/hydroseeds,
/obj/machinery/camera{
c_tag = "Hydroponics South 1";
@@ -91943,14 +87276,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"deE" = (
+"ddp" = (
/obj/machinery/vending/hydronutrients,
/obj/machinery/light,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"deF" = (
+"ddq" = (
/obj/structure/closet{
name = "Bee-keeping suits"
},
@@ -91972,13 +87305,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"deG" = (
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/open/floor/grass{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"deH" = (
+"ddr" = (
/obj/machinery/power/apc{
dir = 8;
name = "Hydroponics APC";
@@ -92000,18 +87327,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"deI" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"deJ" = (
+"dds" = (
/obj/item/device/assembly/mousetrap/armed,
/obj/structure/cable/orange{
d1 = 1;
@@ -92021,10 +87337,8 @@
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"deK" = (
+/area/maintenance/asteroid/port/east)
+"ddt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 8
@@ -92032,32 +87346,23 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"deL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- icon_state = "intact";
- dir = 8
- },
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"deM" = (
+/area/engine/atmos)
+"ddu" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -24
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"deN" = (
+/area/engine/atmos)
+"ddv" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible,
/obj/machinery/meter,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"deO" = (
+/area/engine/atmos)
+"ddw" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -92072,8 +87377,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"deP" = (
+/area/engine/atmos)
+"ddx" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 4;
frequency = 1441;
@@ -92081,70 +87386,36 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space/basic,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"deQ" = (
+/area/maintenance/asteroid/central)
+"ddy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/mineral,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"deR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/mineral,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"deS" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/mineral,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"deT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/mineral,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"deU" = (
+/area/maintenance/asteroid/central)
+"ddz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/mineral/random/labormineral,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"deV" = (
+/area/maintenance/asteroid/central)
+"ddA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"deW" = (
+/area/maintenance/asteroid/central)
+"ddB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"deX" = (
+/area/maintenance/asteroid/central)
+"ddC" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -92155,10 +87426,8 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"deY" = (
+/area/maintenance/asteroid/central)
+"ddD" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -92168,8 +87437,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/atmos)
-"deZ" = (
+/area/engine/atmos)
+"ddE" = (
/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -92179,8 +87448,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/atmos)
-"dfa" = (
+/area/engine/atmos)
+"ddF" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -92190,8 +87459,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/atmos)
-"dfb" = (
+/area/engine/atmos)
+"ddG" = (
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -92201,8 +87470,8 @@
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
-/area/atmos)
-"dfc" = (
+/area/engine/atmos)
+"ddH" = (
/obj/machinery/atmospherics/components/binary/valve/digital{
dir = 4;
name = "Waste Release"
@@ -92210,8 +87479,8 @@
/turf/open/floor/plasteel/yellow/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"dfd" = (
+/area/engine/atmos)
+"ddI" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -92222,8 +87491,8 @@
dir = 10;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"dfe" = (
+/area/engine/atmos)
+"ddJ" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 2;
filter_type = "n2";
@@ -92234,20 +87503,20 @@
dir = 8
},
/turf/open/floor/plasteel/red,
-/area/atmos)
-"dff" = (
+/area/engine/atmos)
+"ddK" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"dfg" = (
+/area/engine/atmos)
+"ddL" = (
/obj/structure/sign/nosmoking_2,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"dfh" = (
+/area/engine/atmos)
+"ddM" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
input_tag = "n2_in";
@@ -92260,22 +87529,16 @@
dir = 8
},
/turf/open/floor/plasteel/red,
-/area/atmos)
-"dfi" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"dfj" = (
+/area/engine/atmos)
+"ddN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"dfk" = (
+/area/engine/atmos)
+"ddO" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
@@ -92293,22 +87556,16 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"dfl" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"dfm" = (
+/area/engine/atmos)
+"ddP" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/crew_quarters/chief)
-"dfn" = (
+/area/crew_quarters/heads/chief)
+"ddQ" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 2;
filter_type = "o2";
@@ -92319,38 +87576,38 @@
dir = 8
},
/turf/open/floor/plasteel/blue,
-/area/atmos)
-"dfo" = (
+/area/engine/atmos)
+"ddR" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"dfp" = (
+/area/engine/atmos)
+"ddS" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 1
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"dfq" = (
+/area/engine/atmos)
+"ddT" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 10
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"dfr" = (
+/area/engine/atmos)
+"ddU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"dfs" = (
+/area/engine/atmos)
+"ddV" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
input_tag = "o2_in";
@@ -92363,16 +87620,16 @@
dir = 8
},
/turf/open/floor/plasteel/blue,
-/area/atmos)
-"dft" = (
+/area/engine/atmos)
+"ddW" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (EAST)";
icon_state = "yellow";
dir = 4
},
-/area/atmos)
-"dfu" = (
+/area/engine/atmos)
+"ddX" = (
/obj/machinery/pipedispenser,
/obj/machinery/light,
/turf/open/floor/plasteel/yellow/corner{
@@ -92380,24 +87637,16 @@
icon_state = "yellowcorner";
dir = 8
},
-/area/atmos)
-"dfv" = (
+/area/engine/atmos)
+"ddY" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
},
/turf/open/floor/plasteel/delivery{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"dfw" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1
- },
-/turf/open/floor/plasteel/delivery{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"dfx" = (
+/area/engine/atmos)
+"ddZ" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
icon_state = "intact";
dir = 6
@@ -92405,8 +87654,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"dfy" = (
+/area/engine/atmos)
+"dea" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
@@ -92417,8 +87666,8 @@
dir = 8
},
/turf/open/floor/plasteel/blue,
-/area/atmos)
-"dfz" = (
+/area/engine/atmos)
+"deb" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/obj/machinery/camera{
c_tag = "Atmospherics Distro";
@@ -92431,12 +87680,12 @@
icon_state = "yellow";
dir = 4
},
-/area/atmos)
-"dfA" = (
+/area/engine/atmos)
+"dec" = (
/obj/structure/sign/poster/official/safety_internals,
/turf/closed/wall,
-/area/atmos)
-"dfB" = (
+/area/engine/atmos)
+"ded" = (
/obj/machinery/camera{
c_tag = "Atmospherics South";
dir = 4;
@@ -92453,8 +87702,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"dfC" = (
+/area/engine/atmos)
+"dee" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
icon_state = "intact";
dir = 4
@@ -92462,14 +87711,14 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"dfD" = (
+/area/engine/atmos)
+"def" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"dfE" = (
+/area/engine/atmos)
+"deg" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4;
initialize_directions = 11
@@ -92477,8 +87726,8 @@
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"dfF" = (
+/area/engine/atmos)
+"deh" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
@@ -92496,8 +87745,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"dfG" = (
+/area/engine/atmos)
+"dei" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
name = "South Canister To Waste";
@@ -92509,8 +87758,8 @@
icon_state = "yellow";
dir = 4
},
-/area/atmos)
-"dfH" = (
+/area/engine/atmos)
+"dej" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer,
/obj/machinery/light{
dir = 1
@@ -92518,29 +87767,15 @@
/turf/open/floor/plasteel/yellow/corner{
dir = 1
},
-/area/atmos)
-"dfI" = (
+/area/engine/atmos)
+"dek" = (
/obj/machinery/portable_atmospherics/canister,
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/turf/open/floor/plasteel/delivery{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"dfJ" = (
-/obj/machinery/portable_atmospherics/canister,
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/turf/open/floor/plasteel/delivery{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"dfK" = (
-/obj/machinery/portable_atmospherics/canister,
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/turf/open/floor/plasteel/delivery{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"dfL" = (
+/area/engine/atmos)
+"del" = (
/obj/effect/landmark/start/atmospheric_technician,
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/open/floor/plasteel/yellow/side{
@@ -92549,20 +87784,20 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"dfM" = (
+/area/engine/atmos)
+"dem" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"dfN" = (
+/area/engine/atmos)
+"den" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (WEST)";
@@ -92570,8 +87805,8 @@
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"dfO" = (
+/area/engine/atmos)
+"deo" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -92580,8 +87815,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"dfP" = (
+/area/engine/atmos)
+"dep" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -92590,8 +87825,8 @@
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"dfQ" = (
+/area/engine/atmos)
+"deq" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
tag = "icon-intact (WEST)";
@@ -92602,23 +87837,23 @@
dir = 8
},
/turf/open/floor/plasteel/barber,
-/area/atmos)
-"dfR" = (
+/area/engine/atmos)
+"der" = (
/obj/machinery/atmospherics/pipe/manifold4w/general/visible,
/obj/machinery/meter,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"dfS" = (
+/area/engine/atmos)
+"des" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 9
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"dfT" = (
+/area/engine/atmos)
+"det" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 8
},
@@ -92629,8 +87864,8 @@
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"dfU" = (
+/area/engine/atmos)
+"deu" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -92638,8 +87873,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"dfV" = (
+/area/engine/atmos)
+"dev" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
input_tag = "air_in";
@@ -92652,8 +87887,8 @@
},
/obj/machinery/atmospherics/pipe/simple/green/visible,
/turf/open/floor/plasteel/barber,
-/area/atmos)
-"dfW" = (
+/area/engine/atmos)
+"dew" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/machinery/airalarm{
dir = 8;
@@ -92663,8 +87898,8 @@
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"dfX" = (
+/area/engine/atmos)
+"dex" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
@@ -92687,8 +87922,8 @@
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"dfY" = (
+/area/engine/atmos)
+"dey" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
@@ -92701,8 +87936,8 @@
},
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/purple,
-/area/atmos)
-"dfZ" = (
+/area/engine/atmos)
+"dez" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
@@ -92713,20 +87948,20 @@
},
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/purple,
-/area/atmos)
-"dga" = (
+/area/engine/atmos)
+"deA" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 4;
- filter_type = "n2";
- name = "nitogren filter";
+ filter_type = "n2o";
+ name = "n2o filter";
on = 1
},
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/escape{
dir = 10
},
-/area/atmos)
-"dgb" = (
+/area/engine/atmos)
+"deB" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
@@ -92739,8 +87974,8 @@
},
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/escape,
-/area/atmos)
-"dgc" = (
+/area/engine/atmos)
+"deC" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
@@ -92753,25 +87988,2292 @@
/turf/open/floor/plasteel/escape{
dir = 6
},
-/area/atmos)
-"dgd" = (
+/area/engine/atmos)
+"deD" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/engine/atmos)
+"deE" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible,
+/turf/open/floor/plasteel/black{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/engine/atmos)
+"deF" = (
+/turf/closed/wall{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_east)
+"deG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_east)
+"deH" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/grille,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_east)
+"deI" = (
+/turf/closed/wall/rust{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_west)
+"deJ" = (
+/turf/closed/wall/rust{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_east)
+"deK" = (
+/turf/closed/wall{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_west)
+"deL" = (
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/fore/com_west)
+"deM" = (
+/obj/machinery/disposal/deliveryChute{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/maintenance/asteroid/fore/com_east)
+"deN" = (
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_north)
+"deO" = (
+/turf/closed/mineral/random/labormineral,
+/area/maintenance/asteroid/fore/com_north)
+"deP" = (
+/turf/closed/mineral,
+/area/maintenance/asteroid/fore/com_east)
+"deQ" = (
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_north)
+"deR" = (
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_east)
+"deS" = (
+/turf/closed/mineral/random/labormineral,
+/area/maintenance/asteroid/fore/cargo_west)
+"deT" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_east)
+"deU" = (
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/fore/com_east)
+"deV" = (
+/turf/closed/mineral/random/labormineral,
+/area/maintenance/asteroid/fore/com_east)
+"deW" = (
+/turf/closed/wall/rust{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_west)
+"deX" = (
+/obj/structure/girder,
+/obj/item/stack/sheet/metal,
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/fore/cargo_west)
+"deY" = (
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_west)
+"deZ" = (
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_east)
+"dfa" = (
+/turf/closed/wall{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_west)
+"dfb" = (
+/obj/structure/girder,
+/obj/item/stack/sheet/metal,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_west)
+"dfc" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_west)
+"dfd" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_north)
+"dfe" = (
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/fore/cargo_west)
+"dff" = (
+/turf/closed/mineral,
+/area/maintenance/asteroid/fore/cargo_west)
+"dfg" = (
+/obj/structure/girder,
+/obj/item/stack/sheet/metal,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_east)
+"dfh" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_west)
+"dfi" = (
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_west)
+"dfj" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Cell Block APC";
+ pixel_x = 23;
+ pixel_y = 2
+ },
+/obj/structure/cable/orange,
+/obj/effect/turf_decal/stripes/end{
+ tag = "icon-warn_end (WEST)";
+ icon_state = "warn_end";
+ dir = 8
+ },
+/obj/structure/closet/firecloset/full,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/security/prison)
+"dfk" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_west)
+"dfl" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_west)
+"dfm" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/item/device/assembly/mousetrap/armed,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_west)
+"dfn" = (
+/obj/structure/grille,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_east)
+"dfo" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/fore/cargo_west)
+"dfp" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_west)
+"dfq" = (
+/turf/open/floor/plasteel/floorgrime{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_north)
+"dfr" = (
+/obj/structure/girder,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_north)
+"dfs" = (
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_west)
+"dft" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_west)
+"dfu" = (
+/obj/structure/grille,
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_east)
+"dfv" = (
+/obj/structure/grille,
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/fore/com_east)
+"dfw" = (
+/obj/structure/grille,
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/fore/cargo_west)
+"dfx" = (
+/obj/structure/grille,
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_west)
+"dfy" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_east)
+"dfz" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Fore Asteroid Maintenance Access";
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_north)
+"dfA" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_east)
+"dfB" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/fore/com_east)
+"dfC" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_west)
+"dfD" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_east)
+"dfE" = (
+/obj/structure/girder,
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_east)
+"dfF" = (
+/obj/structure/girder,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_west)
+"dfG" = (
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_west)
+"dfH" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_east)
+"dfI" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_west)
+"dfJ" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/fore/com_east)
+"dfK" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_west)
+"dfL" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_west)
+"dfM" = (
+/turf/closed/mineral,
+/area/maintenance/asteroid/fore/cargo_south)
+"dfN" = (
+/turf/closed/wall{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dfO" = (
+/turf/closed/wall/rust{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dfP" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dfQ" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/device/assembly/mousetrap/armed,
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dfR" = (
+/obj/structure/girder,
+/obj/item/stack/sheet/metal,
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/fore/cargo_south)
+"dfS" = (
+/obj/structure/grille,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_north)
+"dfT" = (
+/obj/structure/girder,
+/obj/item/stack/sheet/metal,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_west)
+"dfU" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_west)
+"dfV" = (
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dfW" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/fore/cargo_south)
+"dfX" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dfY" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/fore/cargo_south)
+"dfZ" = (
+/obj/structure/grille,
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/fore/cargo_south)
+"dga" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_east)
+"dgb" = (
+/obj/structure/grille/broken,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_west)
+"dgc" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dgd" = (
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/fore/cargo_south)
+"dge" = (
+/obj/structure/closet/firecloset/full,
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/fore/cargo_south)
+"dgf" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_west)
+"dgg" = (
+/obj/structure/girder,
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_west)
+"dgh" = (
+/turf/closed/mineral,
+/area/maintenance/asteroid/fore/com_west)
+"dgi" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_north)
+"dgj" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_west)
+"dgk" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_west)
+"dgl" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_north)
+"dgm" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dgn" = (
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dgo" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/fore/com_west)
+"dgp" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_west)
+"dgq" = (
+/obj/structure/girder,
+/obj/item/stack/sheet/metal,
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/fore/com_west)
+"dgr" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/grille/broken,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dgs" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dgt" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_west)
+"dgu" = (
+/turf/open/floor/plasteel/floorgrime{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_east)
+"dgv" = (
+/turf/closed/mineral/random/labormineral,
+/area/maintenance/asteroid/fore/cargo_south)
+"dgw" = (
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dgx" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
-"dge" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible,
+/area/maintenance/asteroid/fore/com_east)
+"dgy" = (
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dgz" = (
+/obj/machinery/power/smes/engineering{
+ charge = 3e+006
+ },
+/obj/structure/cable/orange,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_west)
+"dgA" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_north)
+"dgB" = (
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_east)
+"dgC" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_east)
+"dgD" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/floorgrime{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_east)
+"dgE" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_east)
+"dgF" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_west)
+"dgG" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dgH" = (
+/obj/structure/closet,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_west)
+"dgI" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/floorgrime{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_west)
+"dgJ" = (
+/obj/structure/girder,
+/obj/structure/grille,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_west)
+"dgK" = (
+/turf/closed/wall{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/fore)
+"dgL" = (
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4
+ },
+/turf/closed/wall{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/fore)
+"dgM" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Fore Asteroid Maintenance Access";
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_west)
+"dgN" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dgO" = (
+/obj/structure/girder,
+/obj/item/stack/sheet/metal,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dgP" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/fore/cargo_south)
+"dgQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/floorgrime{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_west)
+"dgR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_west)
+"dgS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_west)
+"dgT" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/floorgrime{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_west)
+"dgU" = (
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dgV" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dgW" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dgX" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dgY" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_west)
+"dgZ" = (
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j2";
+ dir = 2
+ },
+/turf/open/floor/plasteel/floorgrime{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_west)
+"dha" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_west)
+"dhb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_west)
+"dhc" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/floorgrime{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_west)
+"dhd" = (
+/obj/machinery/door/airlock/glass,
+/turf/open/floor/plasteel/neutral{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/fore)
+"dhe" = (
+/turf/open/floor/plasteel/neutral{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/fore)
+"dhf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/fore)
+"dhg" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/neutral{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/fore)
+"dhh" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_west)
+"dhi" = (
+/obj/machinery/door/airlock/glass,
+/turf/open/floor/plasteel/neutral/corner{
+ icon_state = "neutralcorner";
+ dir = 8;
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/fore)
+"dhj" = (
+/turf/open/floor/plasteel/neutral/corner{
+ icon_state = "neutralcorner";
+ dir = 8;
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/fore)
+"dhk" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Fore Asteroid Maintenance Access";
+ req_access_txt = "12"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dhl" = (
+/obj/structure/girder,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dhm" = (
+/obj/structure/girder,
+/obj/structure/grille,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dhn" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Fore Asteroid Maintenance Access";
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dho" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Fore Asteroid Maintenance Access";
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dhp" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dhq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_west)
+"dhr" = (
+/turf/closed/mineral,
+/area/maintenance/asteroid/fore/com_south)
+"dhs" = (
+/turf/closed/mineral/random/labormineral,
+/area/maintenance/asteroid/fore/com_south)
+"dht" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_south)
+"dhu" = (
+/obj/effect/turf_decal/stripes/asteroid/line{
+ icon_state = "ast_warn";
+ dir = 1
+ },
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dhv" = (
+/turf/closed/wall{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_south)
+"dhw" = (
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/fore/com_south)
+"dhx" = (
+/obj/structure/grille,
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/fore/com_south)
+"dhy" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/fore/com_south)
+"dhz" = (
+/obj/structure/girder,
+/obj/item/stack/sheet/metal,
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/fore/com_south)
+"dhA" = (
+/obj/structure/closet/firecloset/full,
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/fore/com_south)
+"dhB" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_south)
+"dhC" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/fore)
+"dhD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/fore)
+"dhE" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/fore/com_south)
+"dhF" = (
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_south)
+"dhG" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_south)
+"dhH" = (
+/turf/closed/wall/rust{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/com_south)
+"dhI" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dhJ" = (
+/obj/structure/grille,
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dhK" = (
+/obj/effect/turf_decal/stripes/asteroid/line,
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dhL" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dhM" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/floorgrime{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dhN" = (
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dhO" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/neutral{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/fore)
+"dhP" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dhQ" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dhR" = (
+/obj/structure/closet,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dhS" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/fore)
+"dhT" = (
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/fore)
+"dhU" = (
+/turf/open/floor/plasteel/neutral/corner{
+ tag = "icon-neutralcorner (EAST)";
+ icon_state = "neutralcorner";
+ dir = 4;
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/fore)
+"dhV" = (
+/obj/machinery/power/smes/engineering,
+/obj/structure/cable/orange,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dhW" = (
+/obj/structure/table,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/fore)
+"dhX" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dhY" = (
+/obj/structure/table,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dhZ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/fore/cargo_south)
+"dia" = (
+/obj/machinery/door/airlock/glass,
+/turf/open/floor/plasteel/neutral/corner{
+ tag = "icon-neutralcorner (EAST)";
+ icon_state = "neutralcorner";
+ dir = 4;
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/fore)
+"dib" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/space,
+/area/solar/asteroid/fore)
+"dic" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/space,
+/area/solar/asteroid/command)
+"did" = (
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/asteroid/command)
+"die" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/space,
+/area/solar/asteroid/fore)
+"dif" = (
+/turf/closed/mineral,
+/area/maintenance/asteroid/port/neast)
+"dig" = (
+/turf/closed/wall/rust{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/port/neast)
+"dih" = (
+/turf/closed/wall{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/port/neast)
+"dii" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/port/neast)
+"dij" = (
+/turf/closed/mineral/random/labormineral,
+/area/maintenance/asteroid/port/west)
+"dik" = (
+/obj/effect/turf_decal/stripes/asteroid/line{
+ icon_state = "ast_warn";
+ dir = 8
+ },
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/port/neast)
+"dil" = (
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/port/neast)
+"dim" = (
+/obj/structure/girder,
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/port/west)
+"din" = (
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/port/west)
+"dio" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/port/west)
+"dip" = (
+/obj/structure/closet/crate,
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/port/west)
+"diq" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/port/west)
+"dir" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"dis" = (
+/turf/closed/wall{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/port/east)
+"dit" = (
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/port/east)
+"diu" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/port/east)
+"div" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/port/east)
+"diw" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/port/east)
+"dix" = (
+/turf/closed/mineral/random/labormineral,
+/area/maintenance/asteroid/port/east)
+"diy" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/port/east)
+"diz" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/port/east)
+"diA" = (
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/port/east)
+"diB" = (
+/turf/closed/mineral,
+/area/maintenance/asteroid/port/east)
+"diC" = (
+/obj/effect/turf_decal/stripes/asteroid/line,
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/port/west)
+"diD" = (
+/obj/structure/girder,
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/port/east)
+"diE" = (
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/port/east)
+"diF" = (
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/port/east)
+"diG" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/port/east)
+"diH" = (
+/obj/structure/closet/firecloset/full,
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/port/east)
+"diI" = (
+/turf/closed/wall/rust{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/port/east)
+"diJ" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/port/west)
+"diK" = (
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/port/east)
+"diL" = (
+/obj/structure/grille,
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/port/west)
+"diM" = (
+/obj/structure/closet/crate,
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/port/east)
+"diN" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/port/west)
+"diO" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/port/east)
+"diP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/port/west)
+"diQ" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/port/west)
+"diR" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Port Asteroid Maintenance";
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/port/west)
+"diS" = (
+/obj/machinery/light/small,
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/port/east)
+"diT" = (
+/turf/closed/wall{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/aft)
+"diU" = (
+/obj/machinery/door/airlock/glass,
+/turf/open/floor/plasteel/neutral/corner{
+ icon_state = "neutralcorner";
+ dir = 8;
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/aft)
+"diV" = (
+/obj/machinery/door/airlock/glass,
+/turf/open/floor/plasteel/neutral{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/aft)
+"diW" = (
+/obj/structure/sign/map/left/ceres{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ icon_state = "neutralcorner";
+ dir = 8;
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/aft)
+"diX" = (
+/turf/open/floor/plasteel/neutral{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/aft)
+"diY" = (
+/obj/machinery/door/airlock/glass_external{
+ cyclelinkeddir = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/aft)
+"diZ" = (
+/turf/open/floor/plasteel/neutral/corner{
+ icon_state = "neutralcorner";
+ dir = 8;
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/aft)
+"dja" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ icon_state = "neutralcorner";
+ dir = 8;
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/aft)
+"djb" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/aft)
+"djc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ icon_state = "neutralcorner";
+ dir = 8;
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/aft)
+"djd" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ layer = 2.4;
+ on = 1
+ },
+/turf/open/floor/plasteel/neutral{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/aft)
+"dje" = (
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/aft)
+"djf" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/aft)
+"djg" = (
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4
+ },
+/turf/closed/wall{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/aft)
+"djh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ icon_state = "neutralcorner";
+ dir = 8;
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/aft)
+"dji" = (
+/obj/structure/table,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/aft)
+"djj" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/space/fragile,
+/obj/item/clothing/head/helmet/space/fragile,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/aft)
+"djk" = (
+/turf/open/space,
+/area/solar/asteroid/aft)
+"djl" = (
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/asteroid/aft)
+"djm" = (
+/obj/structure/table,
+/obj/item/weapon/wrench,
+/obj/item/clothing/glasses/meson,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/aft)
+"djn" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/neutral{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/aft)
+"djo" = (
+/obj/structure/tank_dispenser/oxygen,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/aft)
+"djp" = (
+/obj/structure/lattice,
+/turf/open/space,
+/area/solar/asteroid/aft)
+"djq" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/space,
+/area/solar/asteroid/aft)
+"djr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/aft)
+"djs" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/space,
+/area/solar/asteroid/aft)
+"djt" = (
+/obj/structure/lattice/catwalk,
+/obj/item/stack/cable_coil{
+ amount = 2
+ },
+/turf/open/space,
+/area/solar/asteroid/aft)
+"dju" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/space,
+/area/solar/asteroid/aft)
+"djv" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/aft)
+"djw" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/neutral{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/aft)
+"djx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/neutral/corner{
+ icon_state = "neutralcorner";
+ dir = 8;
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/aft)
+"djy" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/aft/science)
+"djz" = (
+/turf/closed/wall{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/aft/science)
+"djA" = (
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/aft/science)
+"djB" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/aft/science)
+"djC" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/aft/science)
+"djD" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/aft/science)
+"djE" = (
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/aft/science)
+"djF" = (
+/obj/structure/girder,
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/aft/science)
+"djG" = (
+/turf/closed/mineral,
+/area/maintenance/asteroid/aft/science)
+"djH" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/aft/science)
+"djI" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/aft/science)
+"djJ" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/aft/science)
+"djK" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/device/assembly/mousetrap/armed,
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/aft/science)
+"djL" = (
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/aft/science)
+"djM" = (
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/aft/science)
+"djN" = (
+/obj/machinery/computer/station_alert,
+/obj/structure/cable/orange{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/aft/science)
+"djO" = (
+/obj/structure/grille,
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/aft/science)
+"djP" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/aft/science)
+"djQ" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/aft/science)
+"djR" = (
+/turf/closed/wall/rust{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/aft/science)
+"djS" = (
+/obj/machinery/power/smes/engineering,
+/obj/structure/cable/orange,
+/turf/open/floor/plasteel/floorgrime{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/aft/science)
+"djT" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/aft/science)
+"djU" = (
+/obj/effect/turf_decal/stripes/asteroid/line,
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/aft/science)
+"djV" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/aft/science)
+"djW" = (
+/turf/closed/mineral/random/labormineral,
+/area/maintenance/asteroid/aft/science)
+"djX" = (
+/obj/structure/grille,
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/aft/science)
+"djY" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/aft/science)
+"djZ" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/device/assembly/mousetrap/armed,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/aft/science)
+"dka" = (
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/aft/science)
+"dkb" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/aft/science)
+"dkc" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Aft Asteroid Maintenance";
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/aft/science)
+"dkd" = (
+/obj/structure/closet,
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/aft/science)
+"dke" = (
+/obj/structure/closet/firecloset/full,
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/aft/science)
+"dkf" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/aft/science)
+"dkg" = (
+/obj/structure/closet/firecloset/full,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/aft/science)
+"dkh" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/aft/science)
+"dki" = (
+/obj/structure/grille,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/aft/science)
+"dkj" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/aft/science)
+"dkk" = (
+/obj/structure/girder,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/aft/science)
+"dkl" = (
+/turf/open/floor/plasteel/floorgrime{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/aft/science)
+"dkm" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "CargoWaste"
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_y = 32
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/quartermaster/sorting)
+"dkn" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "CargoWaste"
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_y = 32
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/quartermaster/sorting)
+"dko" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ tag = "icon-neutralcorner (EAST)";
+ icon_state = "neutralcorner";
+ dir = 4;
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/fore)
+"dkp" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ icon_state = "neutralcorner";
+ dir = 8;
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/fore)
+"dkq" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/space/fragile,
+/obj/item/clothing/head/helmet/space/fragile,
+/obj/item/weapon/pickaxe,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/fore)
+"dkr" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/pickaxe,
+/turf/open/floor/plating/asteroid,
+/area/maintenance/asteroid/port/west)
+"dks" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ tag = "icon-neutralcorner (NORTH)";
+ icon_state = "neutralcorner";
+ dir = 1;
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/port)
+"dkt" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ tag = "icon-neutralcorner (NORTH)";
+ icon_state = "neutralcorner";
+ dir = 1;
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard)
+"dku" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (EAST)";
+ icon_state = "whiteblue";
+ dir = 4;
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/medical/medbay/central)
+"dkv" = (
+/obj/structure/closet/secure_closet/engineering_electrical,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (EAST)";
+ icon_state = "yellow";
+ dir = 4;
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/engine/engineering)
+"dkw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/science/mixing)
+"dkx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/science/mixing)
+"dky" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/science/mixing)
+"dkz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/science/mixing)
+"dkA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (WEST)";
+ icon_state = "whitepurple";
+ dir = 8;
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/science/mixing)
+"dkB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/science/mixing)
+"dkC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/atmos)
+/area/science/server)
+"dkD" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 140;
+ on = 1;
+ pressure_checks = 0
+ },
+/turf/open/floor/circuit{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/science/server)
+"dkE" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/science/server)
(1,1,1) = {"
aaa
@@ -97817,13 +95319,13 @@ aaa
aaa
aaa
aaa
-aXL
-aXL
-caR
-caR
-caR
-aXL
-aXL
+aXK
+aXK
+caf
+caf
+caf
+aXK
+aXK
aaa
aaa
aaa
@@ -97992,12 +95494,12 @@ aaa
aad
aab
aab
-cUo
-cUr
-cUm
-cUo
-cUw
-cUm
+cTy
+cTB
+cTw
+cTy
+cTG
+cTw
aac
aac
aac
@@ -98074,13 +95576,13 @@ aaa
aaa
aaa
aaa
-aXL
-bcj
-bcX
-bRl
-cbD
-cca
-aXL
+aXK
+bci
+bcW
+bQW
+caR
+cbo
+aXK
aaa
aaa
aaa
@@ -98248,14 +95750,14 @@ aaa
aaa
aab
aad
-cUl
-cUo
-cUs
-cUn
-cUs
-cUx
-cUm
-cUm
+cTv
+cTy
+cTC
+cTx
+cTC
+cTH
+cTw
+cTw
aac
aac
aad
@@ -98329,17 +95831,17 @@ aaa
aaa
aaa
aaa
-aXL
-aXL
-aXL
-caA
-bSl
-bSl
-cbE
-bcX
-aXL
-aXL
-aXL
+aXK
+aXK
+aXK
+bZO
+bRT
+bRT
+caS
+bcW
+aXK
+aXK
+aXK
aaa
aaa
aaa
@@ -98390,13 +95892,13 @@ aaa
aaa
aaa
aaa
-cCJ
-cCJ
-cCJ
-cCJ
-cCJ
-cCJ
-cCJ
+cBW
+cBW
+cBW
+cBW
+cBW
+cBW
+cBW
aaa
aaa
aaa
@@ -98505,14 +96007,14 @@ aaa
aad
aad
aad
-cUm
-cUo
-cUr
-cUp
-cUu
-cUs
-cUB
-cUo
+cTw
+cTy
+cTB
+cTz
+cTE
+cTC
+cTL
+cTy
aac
aac
aad
@@ -98531,7 +96033,7 @@ aba
abr
abr
abV
-aYS
+aYR
aaa
aaa
aaa
@@ -98586,17 +96088,17 @@ aaa
aaa
aaa
aaa
-aXn
-bnM
-cai
-caB
-caS
-cbj
-cbF
-ccb
-ccp
-bnM
-ccJ
+aXm
+diN
+bZw
+bZP
+cag
+cax
+caT
+cbp
+cbD
+diN
+cbX
aaa
aaa
aaa
@@ -98647,14 +96149,14 @@ aaa
aaa
aaa
aaa
+cBX
+cCl
+cCt
cCK
cCY
-cDg
-cDx
-cDL
-cDZ
-cDh
-cCJ
+cDm
+cCu
+cBW
aaa
aaa
aaa
@@ -98762,14 +96264,14 @@ aac
aac
aad
aad
-cUl
-cUp
-cUn
-cUt
-cUp
-cUy
-cUC
-cUo
+cTv
+cTz
+cTx
+cTD
+cTz
+cTI
+cTM
+cTy
aac
aad
aad
@@ -98843,17 +96345,17 @@ aaa
aaa
aaa
aaa
-aXL
-aXw
-caj
-caC
-caT
-cbk
-cbG
-ccc
-aXL
-aXL
-aXL
+aXK
+aXv
+bZx
+bZQ
+cah
+cay
+caU
+cbq
+aXK
+aXK
+aXK
aaa
aaa
aaa
@@ -98882,14 +96384,14 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -98904,14 +96406,14 @@ aaa
aaa
aaa
aaa
-cCJ
-cCJ
-cDh
-cDy
-cDM
-cEa
-cDZ
-cCJ
+cBW
+cBW
+cCu
+cCL
+cCZ
+cDn
+cDm
+cBW
aaa
aaa
aaa
@@ -99019,14 +96521,14 @@ aac
aac
aad
aad
-cUn
-cUp
-cUp
-cUn
-cUs
-cUz
-cUD
-cUn
+cTx
+cTz
+cTz
+cTx
+cTC
+cTJ
+cTN
+cTx
aac
aad
aab
@@ -99100,17 +96602,17 @@ aaa
aaa
aaa
aaa
-aXo
-aXo
-caj
-caD
-caU
-cbl
-cbH
-ccd
-aXw
-aXo
-aXo
+aXn
+aXn
+bZx
+bZR
+cai
+caz
+caV
+cbr
+aXv
+aXn
+aXn
aaa
aaa
aaa
@@ -99139,14 +96641,14 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -99163,13 +96665,13 @@ aaa
aaa
abC
aaa
-cCJ
-cDz
-cDN
-cEb
-cEs
-cCJ
-cCJ
+cBW
+cCM
+cDa
+cDo
+cDF
+cBW
+cBW
aaa
aaa
aaa
@@ -99276,14 +96778,14 @@ aaa
aad
aac
aac
-cUm
-cUq
-cUp
-cUp
-cUv
-cUA
-cUE
-cUm
+cTw
+cTA
+cTz
+cTz
+cTF
+cTK
+cTO
+cTw
aac
aad
aab
@@ -99355,19 +96857,19 @@ aaa
aaa
aaa
aaa
-aXo
-aXo
-aXo
-aXo
+aXn
+aXn
+aXn
+aXn
+bZx
+diQ
caj
-caE
-caV
-cbm
-caD
-cce
-aXw
-aXo
-aXo
+caA
+bZR
+cbs
+aXv
+aXn
+aXn
aaa
aaa
aaa
@@ -99396,14 +96898,14 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -99415,18 +96917,18 @@ aaa
aaa
aaa
aaa
-cdI
-cdI
+ccW
+ccW
aaa
abC
aaa
-cCJ
-cCJ
-cDO
-cEc
-cEa
-cEA
-cCJ
+cBW
+cBW
+cDb
+cDp
+cDn
+cDN
+cBW
aaa
aaa
aaa
@@ -99533,14 +97035,14 @@ aaa
aad
aac
aac
-cUm
-cUm
-cUl
-cUo
-cUo
-cUl
-cUm
-cUo
+cTw
+cTw
+cTv
+cTy
+cTy
+cTv
+cTw
+cTy
aad
aad
aab
@@ -99612,24 +97114,24 @@ aaa
aaa
aaa
aaa
-aXo
-aXo
-aXo
-aXM
-cak
+aXn
+aXn
+aXn
aXL
-aYY
-cbn
-aXw
-aXw
-aXw
-aXo
-aXo
-aXo
-aXo
-aXo
-aXo
-aXo
+diP
+aXK
+diR
+caB
+aXv
+aXv
+aXv
+aXn
+aXn
+aXn
+aXn
+aXn
+aXn
+aXn
aaa
aaa
aaa
@@ -99653,14 +97155,14 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -99669,21 +97171,21 @@ aaa
aaa
aaa
aaa
-cdN
-cdN
-cdN
-cdI
-cdI
-cdI
+cdb
+cdb
+cdb
+ccW
+ccW
+ccW
abC
aaa
aaa
-cCJ
-cDh
-cEd
-cDh
-cEB
-cCJ
+cBW
+cCu
+cDq
+cCu
+cDO
+cBW
aaa
aaa
aaa
@@ -99857,36 +97359,36 @@ aaa
aaa
aaa
aaa
+aXK
+aXK
+bRR
+bRR
+bRR
+aXK
+aXK
+aXn
+aXn
+aXn
+aXr
+aXr
+aXr
+aXr
+aXr
aXL
+bZz
+din
+aXW
+caC
+cRp
+dij
aXL
-bSj
-bSj
-bSj
-aXL
-aXL
-aXo
-aXo
-aXo
-aXs
-aXs
-aXs
-aXs
-aXs
-aXM
-cal
-aXZ
-aXX
-cbo
-cSf
-aXN
-aXM
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXo
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXn
aaa
aaa
aaa
@@ -99910,14 +97412,14 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -99926,21 +97428,21 @@ aaa
aaa
aaa
aaa
-cdN
-cdN
-cdN
-cdI
-cdI
+cdb
+cdb
+cdb
+ccW
+ccW
aaa
abC
aaa
aaa
aaa
-cCJ
-cEe
-cDh
-cEC
-cCJ
+cBW
+cDr
+cCu
+cDP
+cBW
aaa
aaa
aaa
@@ -100110,40 +97612,40 @@ aaa
aaa
aaa
aaa
-aXs
-bhP
-bhP
-bhP
+aXr
+bhO
+bhO
+bhO
+aXK
+bQV
+bRS
+bSD
+bTo
+bTP
+aXv
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
aXL
-bRk
-bSk
-bSY
-bTL
-bUn
-aXw
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXM
-cam
-aXZ
-caW
-bAk
-cSf
-aXN
-aXN
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXo
+bZA
+din
+cak
+bAi
+cRp
+dij
+dij
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXn
aaa
aaa
aaa
@@ -100167,37 +97669,37 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
aaa
aaa
aaa
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
aaa
abC
aaa
aaa
aaa
-cCJ
-cEd
-cCJ
-cED
-cCJ
+cBW
+cDq
+cBW
+cDQ
+cBW
aaa
aaa
aaa
@@ -100347,16 +97849,16 @@ aaa
aaa
aaa
aaa
-bhP
-bhP
-bhP
-bhP
-bhP
-bhP
-bhP
-bhP
-bhP
-bhP
+bhO
+bhO
+bhO
+bhO
+bhO
+bhO
+bhO
+bhO
+bhO
+bhO
aaa
aaa
aaa
@@ -100367,45 +97869,45 @@ aaa
aaa
aaa
aaa
-aXo
-bhP
-bhP
-bhP
-aXw
-bRl
-bSl
-bcX
-bTM
-bcX
-aXw
-aXs
-aXs
-aXs
-aXN
-cNi
+aXn
+bhO
+bhO
+bhO
+aXv
+bQW
+bRT
+bcW
+bTp
+bcW
+aXv
+aXr
+aXr
+aXr
+dij
+cMs
+aXK
+aXv
aXL
-aXw
-aXM
+aXK
+bZB
+aZS
+aZS
+bZB
+dij
+dij
+dij
+dij
+dij
aXL
-can
-aZT
-aZT
-can
-aXN
-aXN
-aXN
-aXN
-aXN
-aXM
-aXM
-aXM
-aXM
-aXo
-aXo
-cdI
-cdN
-cdN
-cdN
+aXL
+aXL
+aXL
+aXn
+aXn
+ccW
+cdb
+cdb
+cdb
aaa
aaa
aaa
@@ -100424,34 +97926,34 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
aaa
aaa
-cdN
-cdN
-cdN
-cdI
-cdI
-cdN
-cdN
-cdN
+cdb
+cdb
+cdb
+ccW
+ccW
+cdb
+cdb
+cdb
aaa
abC
aaa
aaa
aaa
abC
-cDr
+cCE
abC
aaa
abC
@@ -100604,66 +98106,66 @@ aaa
aaa
aaa
aaa
-bhP
-bhP
-bhP
-bhP
-aXo
-aXo
-aXs
-bhP
-bhP
-bhP
-bhP
-bhP
+bhO
+bhO
+bhO
+bhO
+aXn
+aXn
+aXr
+bhO
+bhO
+bhO
+bhO
+bhO
aaa
aaa
aaa
aaa
-bhP
-bhP
-bhP
-aXo
-aXo
-aXo
-aXs
-aXs
+bhO
+bhO
+bhO
+aXn
+aXn
+aXn
+aXr
+aXr
+aXK
+aXv
+aXK
+bSE
+bTq
+bTQ
+aXK
+aXr
+dij
+dij
+aXK
+bYE
+din
+dim
+din
+bEK
+bAi
+din
+din
+caD
+aXv
+caW
+cbE
+aXX
+din
+din
+ccp
aXL
-aXw
-aXL
-bSZ
-bTN
-bUo
-aXL
-aXs
-aXN
-aXN
-aXL
-bZq
-aXZ
-aZF
-aXZ
-bEP
-bAk
-aXZ
-aXZ
-cbp
-aXw
-cbI
-ccq
-aXY
-aXZ
-aXZ
+cct
+ccF
+ccF
+ccW
+ccW
+ccW
+cdb
cdb
-aXM
-cdf
-cdr
-cdr
-cdI
-cdI
-cdI
-cdN
-cdN
aaa
aaa
aaa
@@ -100692,23 +98194,23 @@ aaa
aaa
aaa
aaa
-cdM
-cdM
-cdM
-cdM
-cdM
-cdM
-cdI
-cdI
-cdN
-cdN
+cda
+cda
+cda
+cda
+cda
+cda
+ccW
+ccW
+cdb
+cdb
aaa
abC
aaa
aaa
aaa
abC
-cDr
+cCE
abC
aaa
abC
@@ -100853,74 +98355,74 @@ aaa
aaa
aaa
aaa
-bhP
-bhP
-bhP
+bhO
+bhO
+bhO
aaa
-bhP
-bhP
-bhP
-bhP
-bhP
-aXo
-aXo
-aXo
-aXo
-aXo
-aXs
-aXs
-aXs
-aXs
-aXs
-aXo
-aXs
-aXs
-aXs
-aXs
-aXo
-aXo
-aXo
-aXo
-aXo
-aXs
-aXs
-aXs
-aXs
-aXs
-aXL
-aXw
-aXw
-bUp
-aXw
-aXN
-aXL
-aXw
-bTq
-bkc
-aZE
-aZE
-aZE
-aZE
-bkU
-aXZ
-aXZ
-cbq
-cbI
-cbI
-ccr
-aXZ
-aXZ
-aXZ
-aXZ
-aYw
-cdf
-cdf
-cdf
-cdJ
-cdJ
-cdI
-cdN
-cdN
+bhO
+bhO
+bhO
+bhO
+bhO
+aXn
+aXn
+aXn
+aXn
+aXn
+aXr
+aXr
+aXr
+aXr
+aXr
+aXn
+aXr
+aXr
+aXr
+aXr
+aXn
+aXn
+aXn
+aXn
+aXn
+aXr
+aXr
+aXr
+aXr
+aXr
+aXK
+aXv
+aXv
+bTR
+aXv
+dij
+aXK
+aXv
+diL
+bkb
+diq
+diq
+diq
+diq
+bkT
+din
+din
+caE
+caW
+caW
+cbF
+din
+din
+din
+din
+aYv
+cct
+cct
+cct
+ccX
+ccX
+ccW
+cdb
+cdb
aaa
aaa
aaa
@@ -100949,23 +98451,23 @@ aaa
aaa
aaa
aaa
-cdM
-cdM
-cdM
-cdM
-cdM
-cdM
-cdI
-cdN
-cdN
-cdI
+cda
+cda
+cda
+cda
+cda
+cda
+ccW
+cdb
+cdb
+ccW
aaa
abC
aaa
aaa
aaa
abC
-cDr
+cCE
abC
aaa
abC
@@ -101109,76 +98611,76 @@ aaa
aaa
aaa
aaa
-bhP
-bhP
-aXo
-aXo
+bhO
+bhO
+aXn
+aXn
aaa
-aXo
-aXo
-aXo
-aXo
-aXo
-aXo
-aXo
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXN
-aXN
-aXw
-bTO
-bUq
-aXM
-aXw
+aXn
+aXn
+aXn
+aXn
+aXn
+aXn
+aXn
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+dij
+dij
+aXv
+bTr
+bTS
aXL
-cQN
-bcX
-bAk
-bkc
-aZE
-aZE
-bTa
-aZE
-aZE
-aZE
-bkU
-aXM
-aXM
-aXM
-aXM
-aXM
-aXM
-bcx
-aXZ
-aXZ
-aXZ
-cdf
-cdf
-cdf
-cdJ
-cdI
-cdN
-cdN
+aXv
+aXK
+cPX
+bcW
+bAi
+bkb
+diq
+diq
+bSF
+diq
+diq
+diq
+bkT
+aXL
+aXL
+aXL
+aXL
+aXL
+aXL
+dio
+din
+din
+din
+cct
+cct
+cct
+ccX
+ccW
+cdb
+cdb
aaa
aaa
aaa
@@ -101201,20 +98703,20 @@ aaa
aaa
aaa
aaa
-cdN
+cdb
aaa
aaa
-cdN
-cdN
-cdN
-cdM
-cdM
-cdM
-cdM
-cdM
-cdI
-cdN
-cdN
+cdb
+cdb
+cdb
+cda
+cda
+cda
+cda
+cda
+ccW
+cdb
+cdb
aaa
aaa
abC
@@ -101222,7 +98724,7 @@ aaa
aaa
aaa
abC
-cDr
+cCE
abC
aaa
abC
@@ -101310,15 +98812,15 @@ aaa
aaa
aaa
aaa
+avv
+avv
avw
+avv
+avv
avw
-avx
-avw
-avw
-avx
-avw
-avw
-avw
+avv
+avv
+avv
aaa
aaa
aaa
@@ -101353,95 +98855,95 @@ aaa
aaa
aaa
aaa
-aXm
-aXF
-aXm
+aXl
+aXE
+aXl
aaa
aaa
abC
aaa
aaa
aaa
-aXo
+aXn
aaa
aaa
aaa
-aXo
-aXo
-aXo
-aXo
-aXo
-aXo
-aXo
-aXo
-aXo
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXo
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXo
-aXo
-aXo
-aXs
-aXN
-aXN
-aXN
-aXN
-aXN
-aXM
-aXM
-aXY
-aXZ
-bEP
+aXn
+aXn
+aXn
+aXn
+aXn
+aXn
+aXn
+aXn
+aXn
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXn
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXn
+aXn
+aXn
+aXr
+dij
+dij
+dij
+dij
+dij
aXL
-bcX
-aXY
-bAk
-bAk
-aXZ
-bZq
-aZF
-aXZ
-aXZ
-aXZ
-bcx
aXL
-aXM
-cSg
-cSg
-caY
-caY
-cSg
-aXM
-cdi
-aXZ
-aXZ
-cdf
-cdf
-cdJ
-cdJ
-cdJ
-cdJ
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
+aXX
+din
+bEK
+aXK
+bcW
+aXX
+bAi
+bAi
+din
+bYE
+dim
+din
+din
+din
+dio
+aXK
+aXL
+cRq
+cRq
+cam
+cam
+cRq
+aXL
+ccw
+din
+din
+cct
+cct
+ccX
+ccX
+ccX
+ccX
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
aaa
aaa
aaa
@@ -101458,28 +98960,28 @@ aaa
aaa
aaa
aaa
-cdN
-cdN
+cdb
+cdb
aaa
-cdN
-cdN
-cdN
-cdM
-cdM
-cdM
-cdM
-cdM
-cdI
-cdN
-cdN
-cdN
+cdb
+cdb
+cdb
+cda
+cda
+cda
+cda
+cda
+ccW
+cdb
+cdb
+cdb
aaa
abC
aaa
aaa
aaa
abC
-cDr
+cCE
abC
aaa
abC
@@ -101567,15 +99069,15 @@ aaa
aaa
aaa
aaa
-avx
-awy
-axu
-aza
-aAo
-aAo
-aCy
-aDM
-aFf
+avw
+awx
+axt
+ayZ
+aAn
+aAn
+aCx
+aDL
+aFe
aaa
aaa
aaa
@@ -101610,94 +99112,94 @@ aaa
aaa
aaa
aaa
-aXm
-aXG
-aXm
+aXl
+aXF
+aXl
aaa
aaa
abC
aaa
aaa
-aXo
-aXo
+aXn
+aXn
aaa
-aXo
-aXo
-aXo
-aXs
-aXo
-aXo
-aXo
-aXo
-aXo
-aXo
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXo
-aXM
+aXn
+aXn
+aXn
+aXr
+aXn
+aXn
+aXn
+aXn
+aXn
+aXn
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXn
aXL
-aXM
-aXw
-cNi
+aXK
+aXL
+aXv
+cMs
+aXK
+aXK
aXL
aXL
-aXM
-aXM
-aXN
-aXw
-aXw
+dij
+aXv
+aXv
+aXK
aXL
-aXM
-bSm
-aYT
-aXM
-aXY
-bkc
-aZE
-aZE
-aZE
-aZE
-bkU
-bAk
-aXZ
-aXZ
-aZF
+bRU
+aYS
aXL
-aXw
+aXX
+bkb
+diq
+diq
+diq
+diq
+bkT
+bAi
+din
+din
+dim
+aXK
+aXv
+aXK
aXL
-aXM
-aXM
-caY
-caY
-ccB
-ccC
-ccT
-caY
-cdf
-cdf
-cdf
-aXZ
-aXZ
-cdf
-cdf
-cdJ
-cdJ
-cdJ
-cdJ
-cdJ
-cdN
-cdN
-cdN
+aXL
+cam
+cam
+cbP
+cbQ
+cch
+cam
+cct
+cct
+cct
+din
+din
+cct
+cct
+ccX
+ccX
+ccX
+ccX
+ccX
+cdb
+cdb
+cdb
aaa
aaa
aaa
@@ -101715,28 +99217,28 @@ aaa
aaa
aaa
aaa
-cdN
-cdN
-cdM
-cdM
-cdM
-cdN
-cdN
-cdM
-cdM
-cdM
-cdM
-cdI
-cdI
-cdN
-cdN
+cdb
+cdb
+cda
+cda
+cda
+cdb
+cdb
+cda
+cda
+cda
+cda
+ccW
+ccW
+cdb
+cdb
aaa
abC
aaa
aaa
aaa
abC
-cDr
+cCE
abC
aaa
abC
@@ -101824,28 +99326,28 @@ aaa
aaa
aaa
aaa
-avx
-awz
-axv
avw
-aAo
-aAo
-aAo
-aDM
-aFf
+awy
+axu
+avv
+aAn
+aAn
+aAn
+aDL
+aFe
aaa
aaa
aaa
aaa
aaa
abC
-afH
-afH
-afH
-afH
-afH
-afH
-afH
+deK
+deK
+deK
+deK
+deK
+deK
+deK
abC
aaa
aaa
@@ -101867,99 +99369,99 @@ aaa
aaa
aaa
aaa
-aXm
-aXH
-aXm
+aXl
+aXG
+aXl
aaa
aaa
abC
aaa
aaa
-aXo
-aXo
-aXN
-aXN
-aXN
-aXs
-aXs
-aXs
-aXs
-aXs
-aXN
-aXN
-aXN
-aXN
-blY
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXo
-aXM
+aXn
+aXn
+dij
+dij
+dij
+aXr
+aXr
+aXr
+aXr
+aXr
+dij
+dij
+dij
+dij
+blX
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXn
+aXL
+aXK
+aXK
+bCw
+dio
+bEK
+dio
+din
+aXL
+bKl
+bKl
+din
+aXK
+din
+din
+bkb
+diq
+bSF
+bJl
+diq
+bkT
+bkb
+diq
+diq
+diq
+diq
+bkT
+bWr
+aXv
+aXv
+aXv
aXL
aXL
-bCz
-bcx
-bEP
-bcx
-aXZ
-aXM
-bKr
-bKr
-aXZ
aXL
-aXZ
-aXZ
-bkc
-aZE
-bTa
-bJq
-aZE
-bkU
-bkc
-aZE
-aZE
-aZE
-aZE
-bkU
-bXd
-aXw
-aXw
-aXw
-aXM
-aXM
-aXM
-aXM
-caY
-ccs
-ccC
-ccC
-ccU
-caY
-cdf
-cdf
-cdf
-cdf
-aXZ
-bcx
-cdf
-cdf
-cdJ
-cdJ
-cdJ
-cdJ
-cdI
-cdN
-cdN
-cdI
-cdN
-cdN
-cdN
-cdN
+aXL
+cam
+cbG
+cbQ
+cbQ
+cci
+cam
+cct
+cct
+cct
+cct
+din
+dio
+cct
+cct
+ccX
+ccX
+ccX
+ccX
+ccW
+cdb
+cdb
+ccW
+cdb
+cdb
+cdb
+cdb
aaa
aaa
aaa
@@ -101971,29 +99473,29 @@ aaa
aaa
aaa
aaa
-cdN
-cdM
-cdM
-cdM
-cdM
-cdM
-cdN
-cdN
-cdM
-cdM
-cdM
-cdM
-cdM
-cdM
-cdM
-cdI
+cdb
+cda
+cda
+cda
+cda
+cda
+cdb
+cdb
+cda
+cda
+cda
+cda
+cda
+cda
+cda
+ccW
aaa
abC
aaa
aaa
aaa
abC
-cDr
+cCE
abC
aaa
abC
@@ -102081,28 +99583,28 @@ aaa
aaa
aaa
aaa
-avx
-awA
-axw
-azb
-aAp
-aBs
+avw
+awz
+axv
+aza
aAo
-aDM
-aFf
+aBr
+aAn
+aDL
+aFe
aaa
aaa
aaa
aaa
abC
abC
-afH
-aNy
-aOo
-aPQ
-aQK
+deK
+dgH
+aOn
+dgY
+aQJ
aiZ
-afH
+deK
abC
abC
aaa
@@ -102124,99 +99626,99 @@ aaa
aaa
aaa
aaa
-aXm
-aXI
-aXm
-aXm
-aXm
-aXm
+aXl
+aXH
+aXl
+aXl
+aXl
+aXl
aaa
aaa
-aXo
-aXo
-aXN
-cNw
-aXN
-aXw
-aXw
-cNj
+aXn
+aXn
+dij
+cMG
+dij
+aXv
+aXv
+cMt
+aXK
+aXK
+dij
+dio
+dkr
+aXK
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXn
+aXL
+bAh
+diq
+diq
+diq
+diq
+diq
+diq
+bJl
+diq
+diq
+diq
+diq
+diq
+diq
+bkT
+bRV
+bSG
+bMV
+bMV
+bMV
+bVf
+din
+din
+din
+diL
+bXJ
+bYm
+aXK
+aXL
+dij
+dij
+dij
aXL
aXL
-aXN
-bcx
-aYC
+cam
+cbH
+cbR
+cbQ
+cbQ
+cRq
aXL
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXo
-aXM
-bAj
-aZE
-aZE
-aZE
-aZE
-aZE
-aZE
-bJq
-aZE
-aZE
-aZE
-aZE
-aZE
-aZE
-bkU
-bSn
-bTb
-bNd
-bNd
-bNd
-bVQ
-aXZ
-aXZ
-aXZ
-bTq
-bYv
-bYY
aXL
-aXM
-aXN
-aXN
-aXN
-aXM
-aXM
-caY
cct
-ccD
-ccC
-ccC
-cSg
-aXM
-aXM
-cdf
-cdf
-cdK
-aXZ
-aXZ
-cdf
-cdf
-cdJ
-cdJ
-cdJ
-cdJ
-cdJ
-cdJ
-cdJ
-cdJ
-cdI
-cdI
-cdI
+cct
+ccY
+din
+din
+cct
+cct
+ccX
+ccX
+ccX
+ccX
+ccX
+ccX
+ccX
+ccX
+ccW
+ccW
+ccW
aaa
aaa
aaa
@@ -102227,30 +99729,30 @@ aaa
aaa
aaa
aaa
-cdN
-cxT
-cxT
-cxT
-cxT
-cxT
-cxT
-cxT
-cdN
-cdN
-cdM
-cdM
-cdM
-cdM
-cdM
-cdM
-cdI
+cdb
+cxg
+cxg
+cxg
+cxg
+cxg
+cxg
+cxg
+cdb
+cdb
+cda
+cda
+cda
+cda
+cda
+cda
+ccW
aaa
abC
aaa
aaa
aaa
abC
-cDr
+cCE
abC
aaa
abC
@@ -102338,30 +99840,30 @@ aaa
aaa
aaa
aaa
-avw
-avw
-axx
-avw
-avw
-avw
-aCz
-avw
-avw
+avv
+avv
+axw
+avv
+avv
+avv
+aCy
+avv
+avv
aaa
aaa
aaa
aaa
-afH
-afH
-afE
-aNz
+deK
+deK
+deI
+dgI
ajW
-axF
-axF
-axF
-afE
-afH
-afH
+axE
+axE
+axE
+deI
+deK
+deK
aaa
aaa
aaa
@@ -102376,104 +99878,104 @@ aaa
aaa
aaa
aaa
-aXm
-aXm
-aXm
-aXm
-aXm
-aXw
-aXJ
-aXT
-aYi
-aYv
-aYi
+aXl
+aXl
+aXl
+aXl
+aXl
+aXv
+aXI
+aXS
+aYh
+aYu
+aYh
aaa
aaa
-aXo
+aXn
+aXK
+aXK
+bCC
+bcX
+cMV
+cMY
+bcX
+cNC
+cNR
+bio
+bio
+bPl
+dij
+aXr
+aXr
+aXr
+bpY
+bpZ
+bpZ
+bpZ
+bpZ
+bpY
+bpY
+bpY
+cPC
+bBB
+blY
+blY
+blY
+cPW
+cOW
+blY
+blY
+bLw
+cQr
+bNT
+bMV
+cQr
+cQr
+bRW
+aXv
+din
+din
+din
+bAu
+din
+diJ
+bch
+aXK
+aXL
+dij
+dij
+dij
+dij
+dij
+dij
aXL
aXL
-bCG
-bcY
-cNL
-cNO
-bcY
-cOs
-cOH
-bip
-bip
-bPw
-aXN
-aXs
-aXs
-aXs
-bpZ
-bqa
-bqa
-bqa
-bqa
-bpZ
-bpZ
-bpZ
-cQs
-bBD
-blZ
-blZ
-blZ
-cQM
-cPM
-blZ
-blZ
-bLD
-cRh
-bOd
-bNd
-cRh
-cRh
-bSo
-aXw
-aXZ
-aXZ
-aXZ
-bAw
-aXZ
-aZH
-bci
+cRq
+cam
+cbQ
+cbQ
+ccj
+cam
aXL
-aXM
-aXN
-aXN
-aXN
-aXN
-aXN
-aXN
-aXM
-aXM
-cSg
-caY
-ccC
-ccC
-ccV
-caY
-aXM
-aXM
-cdj
-cdz
-cdL
-aXZ
-aXZ
-aXZ
-cdf
-cdf
-cdJ
-cdJ
-cdJ
-cdJ
-cdJ
-cdJ
-cdJ
-cdI
-cdI
-cdI
+aXL
+ccx
+ccN
+ccZ
+din
+din
+din
+cct
+cct
+ccX
+ccX
+ccX
+ccX
+ccX
+ccX
+ccX
+ccW
+ccW
+ccW
aaa
aaa
aaa
@@ -102484,30 +99986,30 @@ aaa
aaa
aaa
aaa
-cdN
-cxT
-cSU
-cSY
-cTa
-cyM
-cTj
-cxT
-cdN
-cdN
-cdM
-cdM
-cdM
-cdM
-cdM
-cdM
-cdM
-cdM
+cdb
+cxg
+cSe
+cSi
+cSk
+cxZ
+cSt
+cxg
+cdb
+cdb
+cda
+cda
+cda
+cda
+cda
+cda
+cda
+cda
abC
aaa
aaa
aaa
abC
-cDr
+cCE
abC
aaa
abC
@@ -102595,30 +100097,30 @@ aaa
aaa
aaa
aaa
-avy
-awB
-axy
-awB
-aAq
-awB
-aCA
-awB
+avx
+awA
+axx
+awA
+aAp
+awA
+aCz
+awA
acj
aaa
aaa
aaa
aaa
-aKz
-aLC
-aMv
-aMv
-aOp
-ahm
-aQL
-aQL
-aSq
-aLC
-aTR
+aKy
+aLB
+aMu
+aMu
+aOo
+dgZ
+dgf
+dgf
+aSp
+aLB
+aTQ
aaa
aaa
aaa
@@ -102633,105 +100135,105 @@ aaa
aaa
aaa
aaa
-aXn
+aXm
+aXp
aXq
-aXr
-aXu
-aXw
+aXt
+aXv
+aXy
aXz
-aXA
-aXU
-aXw
-aXm
-aXm
-aXo
-aXo
-aXM
+aXT
+aXv
+aXl
+aXl
+aXn
+aXn
aXL
-aXZ
-bAw
-cND
-cNM
-cNP
-cNP
-cNP
-cNP
-cNP
-cPc
-cPo
-aXL
-aXs
-aXs
-aXs
-bpZ
+aXK
+din
+bAu
+cMN
+cMW
+cMZ
+cMZ
+cMZ
+cMZ
+cMZ
+cOm
+cOy
+aXK
+aXr
+aXr
+aXr
+bpY
+brt
bru
-brv
-bum
-brv
-bxa
-brv
-bqa
-cQs
-cPr
-aXw
+bul
+bru
+bwZ
+bru
+bpZ
+cPC
+cOB
+aXv
+aXK
+aXv
+cPX
+aXK
+cbs
+bcW
+cQk
aXL
-aXw
-cQN
-aXL
-cce
-bcX
-cRa
-aXM
-aXL
-cNj
-aXw
-aXL
-aXL
-aXM
-aXM
-aXM
-aXZ
-bAw
-aXM
+aXK
+cMt
+aXv
+aXK
+aXK
aXL
aXL
aXL
-aXN
-aXN
-aXN
-aXN
-aXN
-aXM
-aXM
-caX
-caX
-caX
-cSg
-ccE
-ccC
+din
+bAu
+aXL
+aXK
+aXK
+aXK
+dij
+dij
+dij
+dij
+dij
+aXL
+aXL
+cal
+cal
+cal
+cRq
+cbS
+cbQ
+cck
+cam
+aXL
+ccx
+ccG
+ccO
+cct
+cct
+din
+din
+din
+cct
+cct
+cct
+cct
+cct
+ccX
+ccX
+ccX
+ccX
+ccX
ccW
-caY
-aXM
-cdj
-cds
-cdA
-cdf
-cdf
-aXZ
-aXZ
-aXZ
-cdf
-cdf
-cdf
-cdf
-cdf
-cdJ
-cdJ
-cdJ
-cdJ
-cdJ
-cdI
-cdN
+cdb
aaa
aaa
aaa
@@ -102742,29 +100244,29 @@ aaa
aaa
aaa
aaa
-cxT
-cSV
-cSV
-czB
-cTf
-cTj
-cxT
-cdN
-cdN
-cdI
-cdI
-cdM
-cdM
-cdM
-cdM
-cdM
-cdM
-cCL
+cxg
+cSf
+cSf
+cyO
+cSp
+cSt
+cxg
+cdb
+cdb
+ccW
+ccW
+cda
+cda
+cda
+cda
+cda
+cda
+cBY
aaa
aaa
aaa
abC
-cDr
+cCE
abC
aaa
abC
@@ -102853,29 +100355,29 @@ aaa
abC
abC
abC
-awC
-axz
-awC
+awB
+axy
+awB
abC
-awC
-axz
-awC
+awB
+axy
+awB
abC
abC
aaa
aaa
aaa
-afH
-afH
-afH
-aNA
-aOq
-aiE
-axF
-axF
-afE
-afH
-afH
+deK
+deK
+deK
+dgJ
+aOp
+dgQ
+axE
+axE
+deI
+deK
+deK
aaa
aaa
aaa
@@ -102890,138 +100392,138 @@ aaa
aaa
aaa
aaa
-aXm
-aXm
-aXm
+aXl
+aXl
+aXl
+aXu
+aXw
+aXz
+aXJ
+aXU
aXv
-aXx
-aXA
-aXK
-aXV
-aXw
-aXM
-aXs
-aXs
-aXs
-aXN
-aYT
-aXZ
-bAw
-cNE
-cNJ
-cNJ
-cNJ
-cOt
-cNJ
-cNJ
-cNE
-bAw
-cNi
-aXs
-aXs
-aXo
+aXL
+aXr
+aXr
+aXr
+dij
+aYS
+din
+bAu
+cMO
+cMT
+cMT
+cMT
+cND
+cMT
+cMT
+cMO
+bAu
+cMs
+aXr
+aXr
+aXn
+bpY
+bru
+bsT
+bum
+bvQ
+bxa
+bye
bpZ
-brv
-bsU
-bun
-bvR
-bxb
-byf
-bqa
+cPC
+cOB
+aXv
+bDD
+bEL
+bcW
+aXK
+aXK
+cQb
+bdK
cQs
-cPr
-aXw
-bDH
-bEQ
-bcX
+aXv
+aXL
+dij
+dij
+dij
+dij
+dij
+aXL
+aXZ
+bVg
aXL
aXL
-cQR
-bdL
-cRi
-aXw
-aXM
-aXN
-aXN
-aXN
-aXN
-aXN
-aXM
-aYa
-bVR
-aXM
-aXM
-aXM
-bTP
-bTP
-bTP
-bTP
-bTP
-bTP
-aXM
-caX
-caX
-cbs
-cbt
-ccu
-cbt
-cbt
+aXL
+bTs
+bTs
+bTs
+bTs
+bTs
+bTs
+aXL
+cal
+cal
+caG
+caH
+cbI
+caH
+caH
+cRq
+cam
+aXL
+ccy
+aXL
+aXL
+aXL
+cct
+cct
+din
+din
+din
+bch
+cct
+cct
+cct
+ccX
+ccX
+ccX
+ccX
+ccX
+ccW
+ccW
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cdb
+aaa
+aaa
+aaa
+cxg
cSg
-caY
-aXM
-cdk
-aXM
-aXM
-aXM
-cdf
-cdf
-aXZ
-aXZ
-aXZ
-bci
-cdf
-cdf
-cdf
-cdJ
-cdJ
-cdJ
-cdJ
-cdJ
-cdI
-cdI
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cdN
-aaa
-aaa
-aaa
-cxT
-cSW
-cSZ
-cTb
-cTg
-cTj
-cxT
-cdN
-cdN
-cdI
-cdI
-cdM
-cdM
-cdM
-cdM
-cdM
-cdM
-cdI
+cSj
+cSl
+cSq
+cSt
+cxg
+cdb
+cdb
+ccW
+ccW
+cda
+cda
+cda
+cda
+cda
+cda
+ccW
aaa
aaa
aaa
abC
-cDr
+cCE
abC
aaa
abC
@@ -103107,30 +100609,30 @@ abW
abW
abW
abW
-atl
-atl
-atl
-awD
-axA
-awH
-atl
-awH
-aCB
-aDN
-atl
-atl
+atk
+atk
+atk
+awC
+axz
+awG
+atk
+awG
+aCA
+aDM
+atk
+atk
abW
abW
aaa
abW
abW
-afE
-axF
-aiE
-ahf
-aQM
-aRO
-afH
+deI
+axE
+dgQ
+dha
+aQL
+aRN
+deK
abW
abW
aaa
@@ -103149,136 +100651,136 @@ aaa
aaa
aaa
aaa
-aXm
-aXm
-aXm
-aXm
+aXl
+aXl
+aXl
+aXl
+aXK
+aXV
+aXv
aXL
-aXW
-aXw
-aXM
-aXs
-aXs
-aXs
-aXN
-aXN
-aXL
-cNx
+aXr
+aXr
+aXr
+dij
+dij
+aXK
+cMH
+cMO
+cMT
+cNa
+cNo
cNE
-cNJ
-cNQ
-cOe
-cOu
-cOI
-cNJ
-cPd
-cPp
-aXN
-aXs
-aXs
-aXo
+cNS
+cMT
+cOn
+cOz
+dij
+aXr
+aXr
+aXn
+bpY
+bru
+bsU
+bun
+bvR
+bxb
+byf
bpZ
-brv
-bsV
-buo
-bvS
-bxc
-byg
-bqa
-cQs
-cPr
-aXw
-aXw
+cPC
+cOB
+aXv
+aXv
+aXK
aXL
-aXM
-aXM
-aXM
-cQS
-bdL
-bcX
-aXw
-aXM
-bER
-bER
-bER
-bER
-bTP
-bTP
-bTP
-bTP
-bTP
-bTP
-bTP
-bTP
-bYw
-bYw
-bYw
-bYw
-bTP
-aXM
-caY
-cbr
-cbs
-caX
-caY
-cSg
-cSg
-cSg
-aXo
-aXM
-aXM
-aXM
-aXo
-cdI
-cdJ
-cdf
-cdf
-cdf
-aXZ
-aXZ
-aXZ
-aXZ
-cdf
-cdf
-cdf
-cdf
-cdJ
-cdJ
-cdI
-cdI
-cdN
+aXL
+aXL
+cQc
+bdK
+bcW
+aXv
+aXL
+bEM
+bEM
+bEM
+bEM
+bTs
+bTs
+bTs
+bTs
+bTs
+bTs
+bTs
+bTs
+bXK
+bXK
+bXK
+bXK
+bTs
+aXL
+cam
+caF
+caG
+cal
+cam
+cRq
+cRq
+cRq
+aXn
+aXL
+aXL
+aXL
+aXn
+ccW
+ccX
+cct
+cct
+cct
+din
+din
+din
+din
+cct
+cct
+cct
+cct
+ccX
+ccX
+ccW
+ccW
+cdb
aaa
aaa
aaa
aaa
-cdN
-cqb
-cqU
-cqU
-cqU
-cqb
-cSX
-cSX
-czB
-cTh
-cTj
-cxT
-cdN
-cdN
-cdN
-cdI
-cdM
-cdM
-cdM
-cdM
-cdM
-cdM
+cdb
+cpo
+cqh
+cqh
+cqh
+cpo
+cSh
+cSh
+cyO
+cSr
+cSt
+cxg
+cdb
+cdb
+cdb
+ccW
+cda
+cda
+cda
+cda
+cda
+cda
aaa
aaa
aaa
aaa
abC
-cDr
+cCE
abC
aaa
abC
@@ -103352,7 +100854,7 @@ aaa
aaa
aaa
aaa
-aaa
+cFp
aaa
aaa
aaa
@@ -103364,30 +100866,30 @@ acH
acH
acH
acH
-atl
-aup
-avz
-awE
-axB
-azc
-aAr
-aBt
-awE
-awE
-aFg
-atl
+atk
+auo
+avy
+awD
+axA
+azb
+aAq
+aBs
+awD
+awD
+aFf
+atk
abW
acH
acH
acH
acH
-afE
-axF
-aOr
-aPR
-aQN
-aRP
-afH
+deI
+axE
+dgR
+aPQ
+aQM
+aRO
+deK
abW
abW
akm
@@ -103410,132 +100912,132 @@ abC
abC
abC
abC
+aXK
+aXW
+aYi
aXL
-aXX
-aYj
-aXM
-aXN
-aXN
-aXw
-aXw
-aXL
+dij
+dij
+aXv
+aXv
+aXK
+cMz
+bAu
+bcU
+cMT
+cNb
cNp
-bAw
-bcV
-cNJ
-cNR
-cOf
-cOv
-cOJ
-cNJ
-cNE
-cPp
-aXw
-aXs
-aXs
-aXo
-bqa
-brv
-bsW
-bup
-bvT
-bxd
-byh
+cNF
+cNT
+cMT
+cMO
+cOz
+aXv
+aXr
+aXr
+aXn
bpZ
-cQs
-cPr
-cNi
-aXM
-aXM
-aXM
-aXM
-aXM
-aXM
-bLE
-cRj
-aXM
-aXM
-bER
-bRm
-bSp
-bTc
-bTP
-bUr
-bVe
-bVS
-bWq
-cLb
-bXn
-bXX
-bYx
-bYZ
-bVe
-bVe
-bTP
-aXM
-caX
-cbs
-caX
-caX
-aXo
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXo
-aXo
-cdI
-cdJ
-cdJ
-cdJ
-cdf
-cdf
-bcx
-aXZ
-aXZ
-aXZ
-bcx
-cdf
-cdf
-cdJ
-cdJ
-cdJ
-cdI
-cdI
+bru
+bsV
+buo
+bvS
+bxc
+byg
+bpY
+cPC
+cOB
+cMs
+aXL
+aXL
+aXL
+aXL
+aXL
+aXL
+bLx
+cQt
+aXL
+aXL
+bEM
+bQX
+bRX
+bSH
+bTs
+bTT
+bUE
+bVh
+bVF
+cKn
+bWB
+bXl
+bXL
+bYn
+bUE
+bUE
+bTs
+aXL
+cal
+caG
+cal
+cal
+aXn
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXn
+aXn
+ccW
+ccX
+ccX
+ccX
+cct
+cct
+dio
+din
+din
+din
+dio
+cct
+cct
+ccX
+ccX
+ccX
+ccW
+ccW
aaa
aaa
aaa
aaa
-cdN
-cqb
-cqV
-crU
-crU
-cqb
-cyO
-cyO
-cTc
-cTh
-cTj
-cxT
-cyz
-cgv
-cdI
-cdI
-cdM
-cdM
-cdM
-cdM
-cdM
-cdM
+cdb
+cpo
+cqi
+crh
+crh
+dkw
+cyb
+cyb
+cSm
+cSr
+cSt
+cxg
+cxM
+djz
+ccW
+ccW
+cda
+cda
+cda
+cda
+cda
+cda
aaa
aaa
aaa
aaa
abC
-cDr
+cCE
abC
aaa
abC
@@ -103621,31 +101123,31 @@ acH
acH
acH
aep
-atm
-auq
-avA
-awF
-awF
-azd
-aAs
-awF
-aCC
-awF
-aFh
atl
+aup
+avz
+awE
+awE
+azc
+aAr
+awE
+aCB
+awE
+aFg
+atk
aep
-aqg
-afE
-afH
-afE
-afH
-afH
-aOs
-aPS
-afE
-afE
-afE
-adP
+dgg
+deI
+deK
+deI
+deK
+deK
+aOr
+aPR
+deI
+deI
+deI
+dgh
abW
abW
aaa
@@ -103666,133 +101168,133 @@ aaa
aaa
aaa
aaa
-aXo
-aXw
-aXY
-aXY
-aXY
-aXL
-aXL
-aZF
-cNk
-aXZ
-bCG
-bAy
-cNF
-cNJ
-cNS
-cOg
-cOw
-cOK
-cNJ
-cNE
-bdK
-aXL
-aXs
-aXs
-aXs
-bqa
-brw
-bsX
-buq
-bvU
-bxe
-brv
+aXn
+aXv
+aXX
+aXX
+aXX
+aXK
+aXK
+dim
+cMu
+din
+bCC
+bAw
+cMP
+cMT
+cNc
+cNq
+cNG
+cNU
+cMT
+cMO
+bdJ
+aXK
+aXr
+aXr
+aXr
bpZ
-bAl
-bkf
-aXw
-aXM
-aXM
-bER
-bER
-bER
-bER
-bER
-bER
-bER
-bER
-bER
-bRn
-bSq
-bTd
-bTQ
-bUs
-bUs
-bVT
-bUs
-bUs
-bXo
-bXY
-bUs
-bZa
-bZr
-bZI
-bTP
-aXM
+brv
+bsW
+bup
+bvT
+bxd
+bru
+bpY
+bAj
+bke
+aXv
+aXL
+aXL
+bEM
+bEM
+bEM
+bEM
+bEM
+bEM
+bEM
+bEM
+bEM
+bQY
+bRY
+bSI
+bTt
+bTU
+bTU
+bVi
+bTU
+bTU
+bWC
+bXm
+bTU
+bYo
+bYF
+bYW
+bTs
+aXL
+cal
+caG
caX
-cbs
-cbJ
-caX
-aXo
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXo
-cdI
-cdJ
-cdJ
-cdJ
-cdJ
-cdf
-cdf
-cdf
-cdf
-aXZ
-aXZ
-aXZ
-aXM
-aXM
-aXM
-cdI
-cdI
-cdI
+cal
+aXn
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXn
+ccW
+ccX
+ccX
+ccX
+ccX
+cct
+cct
+cct
+cct
+din
+din
+din
+aXL
+aXL
+aXL
+ccW
+ccW
+ccW
aaa
aaa
aaa
aaa
-cdN
-cqb
-cqW
-crU
-csR
-cqb
-cxT
-cxT
-cTd
-cTi
-cqb
-cqb
-cyA
-cgv
-cdU
-cgv
-cgw
-cdq
-cdq
-cdM
-cdI
-cdI
-cdI
+cdb
+cpo
+cqj
+crh
+cse
+dkx
+cxg
+cxg
+cxg
+cSs
+cpo
+cpo
+cxN
+djz
+djG
+djz
+djR
+djW
+djW
+cda
+ccW
+ccW
+ccW
aaa
aaa
aaa
abC
-cDr
+cCE
abC
aaa
abC
@@ -103878,31 +101380,31 @@ acH
acH
aep
aep
-atl
-aur
-avB
-awG
-axC
-azd
-aAr
-awG
-axC
+atk
+auq
+avA
awF
-aFi
-atl
-aHz
-afc
-aqh
-afc
-afc
-afc
-afc
-aOt
-aOt
-afc
-aRQ
-afH
-afH
+axB
+azc
+aAq
+awF
+axB
+awE
+aFh
+atk
+aHy
+deL
+dgo
+deL
+deL
+deL
+deL
+aOs
+aOs
+deL
+aRP
+deK
+deK
acH
acH
abE
@@ -103923,133 +101425,133 @@ aaa
aaa
aaa
aaa
-aXo
-aXM
-aXw
-aYk
-aXY
-aXY
-aXY
-aXY
-aXY
-aXY
-bAw
-cNy
-cNG
-cNJ
-cNJ
-cOh
-cOx
-cOL
-cNJ
-cPe
-bdL
+aXn
aXL
-aXw
-aXw
-aXN
-bqa
-bqa
-bqa
-bur
-bur
-bqa
-bqa
+aXv
+aYj
+aXX
+aXX
+aXX
+aXX
+aXX
+aXX
+bAu
+cMI
+cMQ
+cMT
+cMT
+cNr
+cNH
+cNV
+cMT
+cOo
+bdK
+aXK
+aXv
+aXv
+dij
bpZ
-bAm
-bkf
-aXw
-aXM
-aXM
-bER
-bHP
-bJr
-bKs
-bLF
-cHr
-bJr
-bNe
-bET
-bGp
-bHV
-bTe
-bTR
-bUt
-bUt
-bTR
-bWr
-bTR
-bXp
-bTR
-bUt
-bUt
-bZs
-bZJ
-bTP
-aXM
-caX
-cbs
-caX
-caX
-aXo
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXo
-cdI
-cdI
-cdJ
-cdJ
-cdJ
-cdJ
-cdJ
-cdf
-cdf
-aXZ
-aXZ
-aXZ
-aZT
-aXZ
-aXM
-aXN
-cdM
-cdI
-cdN
+bpZ
+bpZ
+buq
+buq
+bpZ
+bpZ
+bpY
+bAk
+bke
+aXv
+aXL
+aXL
+bEM
+bHK
+bJm
+bKm
+bLy
+cGE
+bJm
+bMW
+bEO
+bGk
+bHQ
+bSJ
+bTu
+bTV
+bTV
+bTu
+bVG
+bTu
+bWD
+bTu
+bTV
+bTV
+bYG
+bYX
+bTs
+aXL
+cal
+caG
+cal
+cal
+aXn
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXn
+ccW
+ccW
+ccX
+ccX
+ccX
+ccX
+ccX
+cct
+cct
+din
+din
+din
+aZS
+din
+aXL
+dij
+cda
+ccW
+cdb
aaa
aaa
aaa
-cdN
-cqb
-cqX
-crV
-cqX
-cqb
-ctZ
-cuN
-cLl
-cLn
-cLo
-cqb
-cyz
-cgv
-cgw
-cgy
-cdG
-cgw
-cgv
-cdM
-cdM
-cdM
-cdM
+cdb
+cpo
+cqk
+cri
+cqk
+dkx
+ctm
+cua
+cKv
+cKx
+cKy
+cpo
+cxM
+djz
+djR
+djF
+djE
+djR
+djz
+cda
+cda
+cda
+cda
aaa
aaa
aaa
abC
-cDr
+cCE
abC
aaa
abC
@@ -104122,44 +101624,44 @@ aaa
aaa
aaa
abC
-afH
+deK
aiW
aiW
aiW
-afH
+deK
acH
acH
acH
acH
aep
aep
-afH
-afH
-atl
-atl
-atl
-awH
-axD
-aze
-atl
-awH
-aCD
-awH
-aFj
-atl
-aHA
-aIG
-apK
-anY
-anY
-aMw
-afa
-anV
-aeJ
-afc
-afc
-aTA
-afH
+deK
+deK
+atk
+atk
+atk
+awG
+axC
+azd
+atk
+awG
+aCC
+awG
+aFi
+atk
+aHz
+aIF
+apJ
+dgt
+dgt
+aMv
+dgp
+dgS
+dhb
+deL
+deL
+dgq
+deK
aep
acH
abE
@@ -104179,134 +101681,134 @@ aaa
aaa
aaa
aaa
-aXo
-aXo
-aXo
-aXM
-aXM
-aYw
-aXY
-aXY
-aZT
-aXM
-aXM
-cNq
-cNz
-aXM
-cNJ
-cNT
-cOi
-cNV
-cOM
-cNJ
-cNF
-bdL
-bcX
-bcX
+aXn
+aXn
+aXn
aXL
-aXw
aXL
-aXM
-bsY
-bus
-cQd
-bxf
-aXM
-aXM
-cQs
-bkf
-aXw
+aYv
+aXX
+aXX
+aZS
aXL
-aXM
-bER
+aXL
+cMA
+cMJ
+aXL
+cMT
+cNd
+cNs
+cNf
+cNW
+cMT
+cMP
+bdK
+bcW
+bcW
+aXK
+aXv
+aXK
+aXL
+bsX
+bur
+cPn
+bxe
+aXL
+aXL
+cPC
+bke
+aXv
+aXK
+aXL
+bEM
+bHL
+bHL
+bHL
+bHL
+bHL
+bHL
+bHL
+bEM
+bGl
bHQ
-bHQ
-bHQ
-bHQ
-bHQ
-bHQ
-bHQ
-bER
-bGq
-bHV
-bTf
-bTP
-bUu
-bUu
-bTP
-bWs
-bTP
-bXq
-bTP
-bYy
-bYy
-bYy
-bYy
-bTP
-aXM
-caX
-cbt
-caX
-caX
-aXo
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-cdM
-cdM
-cdI
-cdI
-cdJ
-cdJ
-cdJ
-cdJ
-cdf
-aXM
-aXM
-aXM
-aXZ
-aXZ
-aYC
-aXN
-cdM
-cdI
-cdN
+bSK
+bTs
+bTW
+bTW
+bTs
+bVH
+bTs
+bWE
+bTs
+bXM
+bXM
+bXM
+bXM
+bTs
+aXL
+cal
+caH
+cal
+cal
+aXn
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+cda
+cda
+ccW
+ccW
+ccX
+ccX
+ccX
+ccX
+cct
+aXL
+aXL
+aXL
+din
+din
+dip
+dij
+cda
+ccW
+cdb
aaa
aaa
aaa
-cdI
-cqb
-cqY
-crW
-csS
-cqb
-cua
-cuO
-cvh
-cvZ
-cwU
-cLp
-cyB
-czs
-cTs
-cAM
-cAX
-ciW
-cgw
-cdq
-cdM
-cdM
-cdM
+ccW
+cpo
+cql
+crj
+csf
+dkx
+ctn
+cub
+cuu
+cvm
+cwh
+cKz
+cxO
+cyF
+cSC
+czZ
+cAk
+djT
+djR
+djW
+cda
+cda
+cda
aaa
aaa
aaa
abC
-cDr
+cCE
abC
aaa
abC
@@ -104379,44 +101881,44 @@ aaa
aaa
abW
abW
-afE
+deI
aiX
ajV
aiZ
-afE
+deI
acH
acH
acH
aep
-afE
+deI
ajW
-cLx
+dfl
ajW
-cLC
-aus
-avC
-awI
-axE
-azf
-aAt
-aBu
-aCE
-aDO
-aFk
-aGF
-cLJ
-aIH
-afa
+dfi
+aur
+avB
+awH
+axD
+aze
+aAs
+aBt
+aCD
+aDN
+aFj
+aGE
+dft
+aIG
+dgp
ajc
-afa
-aMx
-aNB
-aQL
-aPT
-atM
+dgp
+aMw
+aNA
+dgf
+aPS
+dhh
ajX
ajX
-apM
+apL
aep
acH
abW
@@ -104425,7 +101927,7 @@ abE
aaa
aaa
aaa
-cGc
+cFp
aaa
aaa
aaa
@@ -104434,137 +101936,137 @@ aaa
aaa
aaa
aaa
-aXo
-aXs
-aXs
-aXs
-aXs
-aXs
-aXw
-aXw
-cNh
-cNi
+aXn
+aXr
+aXr
+aXr
+aXr
+aXr
+aXv
+aXv
+cMr
+cMs
+aXK
+aXK
+aXK
+cMB
+cMK
+aXK
+cMT
+cNe
+cNt
+cNI
+cNX
+cMT
+cOp
+cOA
+cOJ
+cOJ
+diq
+cOJ
+cOJ
+diq
+diq
+diq
+cOJ
+cOJ
+cOJ
+cOJ
+cPD
+bke
+cPP
+aXv
+bEM
+bEM
+cGA
+bHL
+bHM
+bHL
+bHM
+bHL
+bHM
+bEM
+bQZ
+bRZ
+bSL
+bTs
+bTs
+bTs
+bTs
+bTs
+bTs
+bTs
+bTs
+bTs
+bTs
+bTs
+bTs
+bTs
+bEM
+bEM
+caI
+bEM
+bEM
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+cda
+cda
+ccW
+ccW
+ccX
+ccX
+ccX
+ccX
+ccX
+ccW
+ccW
aXL
aXL
+din
+din
aXL
-cNr
-cNA
-aXL
-cNJ
-cNU
-cOj
-cOy
-cON
-cNJ
-cPf
-cPq
-cPz
-cPz
-aZE
-cPz
-cPz
-aZE
-aZE
-aZE
-cPz
-cPz
-cPz
-cPz
-cQt
-bkf
-cQF
-aXw
-bER
-bER
-cHn
-bHQ
-bHR
-bHQ
-bHR
-bHQ
-bHR
-bER
-bRo
-bSr
-bTg
-bTP
-bTP
-bTP
-bTP
-bTP
-bTP
-bTP
-bTP
-bTP
-bTP
-bTP
-bTP
-bTP
-bER
-bER
-cbu
-bER
-bER
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-cdM
-cdM
-cdI
-cdI
-cdJ
-cdJ
-cdJ
-cdJ
-cdJ
-cdI
-cdI
-aXM
-aXM
-aXZ
-aXZ
-aXM
-cdM
-cdI
-cdN
+cda
+ccW
+cdb
aaa
aaa
aaa
-cdI
-cqb
-cqX
-crX
-cqX
-ctw
-cub
-cuP
-cvi
-cwa
-cwV
-cqb
-cyC
-cdG
-cdG
-ctU
-cAY
-cTH
-cgv
-cgw
-cdM
-cdM
-cdI
+ccW
+cpo
+cqk
+crk
+cqk
+csJ
+cto
+crm
+cuv
+cvn
+cwi
+cpo
+cxP
+djE
+djE
+djM
+cAl
+cSR
+djz
+djR
+cda
+cda
+ccW
aaa
aaa
aaa
-cgv
-cEf
-cgv
+djz
+cDs
+djz
aaa
abC
aaa
@@ -104636,45 +102138,45 @@ aaa
aaa
abW
abW
-afH
+deK
aiY
ajW
akG
-afH
+deK
abW
aep
-afH
-cLv
-afE
-cLC
-cLI
-cLK
-cLJ
-aut
-avD
-awJ
-axF
-azg
-aAu
-aBv
-aCF
-aDP
-aFl
-cMr
-aQL
-aII
-afc
-afH
-afH
-aMy
-aNC
-afH
-afE
-afE
-afE
+deK
+dfb
+deI
+dfi
+dfm
+dfp
+dft
+aus
+avC
+awI
+axE
+azf
+aAt
+aBu
+aCE
+aDO
+aFk
+cLB
+dgf
+aIH
+deL
+deK
+deK
+aMx
+aNB
+deK
+deI
+deI
+deI
ajW
akT
-afE
+deI
aep
abW
abW
@@ -104691,139 +102193,139 @@ aaa
aaa
aaa
aaa
-aXs
-aXs
-aXs
-aXs
-aXL
-aXL
-aXw
-bcX
-aXY
-cNj
-aXL
-bcj
-cNn
-cNs
-cNB
+aXr
+aXr
+aXr
+aXr
+aXK
+aXK
+aXv
bcW
-cNJ
-cNV
-bfz
-cNV
-bhz
-cNJ
-bjf
-bkd
-bkT
-cPM
-blZ
-blZ
-bqb
-blZ
-bsZ
-but
-cPM
-cPM
-cPM
-cPM
-cPM
-bBE
-aXY
-bcx
-bER
-bGm
-bGn
-bGn
-bKt
-bHQ
-bNf
-bNf
-bNf
-bQr
-bNf
-bSs
-bTh
-bTS
-bUv
-bVf
-bVU
-bWt
-bWt
-bWt
-bWt
-bWt
-bWt
-bWt
-bWt
-bWt
-bWt
-bVU
-bGn
-cbK
-bER
-aXs
-aXs
-aXs
-aXs
-aXs
-aXo
-aXo
-aXo
-aXs
-cdM
-cdM
-cdI
-cdI
-cdI
-cdI
-cdI
-cdI
-cdI
-cdI
-cdI
-aXM
-aXZ
-aXZ
-aXZ
-aXM
-cdM
-cdI
-cdN
+aXX
+cMt
+aXK
+bci
+cMx
+cMC
+cML
+bcV
+cMT
+cNf
+bfy
+cNf
+bhy
+cMT
+bje
+bkc
+bkS
+cOW
+blY
+blY
+bqa
+blY
+bsY
+bus
+cOW
+cOW
+cOW
+cOW
+cOW
+bBC
+aXX
+dio
+bEM
+bGh
+bGi
+bGi
+bKn
+bHL
+bMX
+bMX
+bMX
+bQd
+bMX
+bSa
+bSM
+bTv
+bTX
+bUF
+bVj
+bVI
+bVI
+bVI
+bVI
+bVI
+bVI
+bVI
+bVI
+bVI
+bVI
+bVj
+bGi
+caY
+bEM
+aXr
+aXr
+aXr
+aXr
+aXr
+aXn
+aXn
+aXn
+aXr
+cda
+cda
+ccW
+ccW
+ccW
+ccW
+ccW
+ccW
+ccW
+ccW
+ccW
+aXL
+din
+din
+din
+aXL
+cda
+ccW
+cdb
aaa
aaa
aaa
-cdI
-cqb
-cqZ
-crY
-csT
-crY
-cuc
-crZ
-cLm
-cwb
-cwW
-cqb
-chh
-cgZ
-cgw
-cdq
-cTA
-cgv
-cBA
-cgv
-cdM
-cdM
-cdI
-cdI
-cdI
-cdI
-cgv
-cEg
-cgv
-cEE
-cgv
+ccW
+cpo
+cqm
+crl
+csg
+dkA
+ctp
+crm
+cKw
+cvo
+cwj
+cpo
+djX
+djQ
+djR
+djW
+cSK
+djz
+cAN
+djz
+cda
+cda
+ccW
+ccW
+ccW
+ccW
+djz
+cDt
+djz
+cDR
+djz
aaa
aaa
aaa
@@ -104893,46 +102395,46 @@ abW
abW
acH
acH
-afE
+deI
aiZ
ajW
ajX
-afE
+deI
acH
aep
-cLz
-aBJ
-cFi
-cFl
-aro
-aro
-aro
-aro
-aro
-awK
-aro
-aro
-aro
-aro
-aro
-aDQ
-aFm
-aro
-aqg
-anh
-aTA
-afH
-aLD
-aMz
-aND
-cLW
-aPU
-aQO
-afH
+cKJ
+dfc
+cEv
+cEy
+arn
+arn
+arn
+arn
+arn
+awJ
+arn
+arn
+arn
+arn
+arn
+aDP
+aFl
+arn
+dgg
+dgk
+dgq
+deK
+aLC
+aMy
+aNC
+dgT
+aPT
+aQN
+deK
ajW
-afH
-aTS
-afH
+deK
+aTR
+deK
abW
abW
abE
@@ -104946,143 +102448,143 @@ aaa
aaa
aaa
aaa
-aXo
-aXo
-aXo
-aXo
-aXo
-aXo
-aXL
-cNf
-cbE
-bcX
-aXL
-aXL
-aXL
-bck
-bcX
-cNt
-bSl
-cNH
-cNJ
-cNW
-bfA
-bgL
-bhA
-cNJ
-bjg
-bke
+aXn
+aXn
+aXn
+aXn
+aXn
+aXn
+aXK
+cMp
+caS
+bcW
+aXK
+aXK
+aXK
+bcj
+bcW
+cMD
+bRT
+cMR
+cMT
+cNg
+bfz
+bgK
+bhz
+cMT
+bjf
+bkd
+bkT
+aYS
+aYv
+boA
+aXK
+aXK
+cMt
+aXK
bkU
-aYT
-aYw
-boB
-aXL
-aXL
-cNj
-aXL
-bkV
-bkV
-bkV
-bkV
-bkV
-bkV
-aXY
-bad
-bES
-bGn
-bHS
-bJs
-bKu
-bLG
-bLG
-bLG
-bLG
-bLG
-bLG
-bSt
-bLI
-bTT
-bUw
-bVg
-bVU
-bWt
-bWt
-bWt
-bWt
-bWt
-bWt
-bWt
-bWt
-bWt
-bWt
-bVU
-bVg
-cbL
-bER
-aXs
-aXs
-aXs
-aXs
-aXs
-aXo
-bhP
-aXo
-aXo
-cdI
-cdI
-cdN
-cdI
-cdN
-cdI
-cdI
-cdI
-cdM
-cdM
-aXN
-aXM
-aXZ
+bkU
+bkU
+bkU
+bkU
+bkU
+aXX
+diC
+bEN
+bGi
+bHN
+bJn
+bKo
+bLz
+bLz
+bLz
+bLz
+bLz
+bLz
+bSb
+bLB
+bTw
+bTY
+bUG
+bVj
+bVI
+bVI
+bVI
+bVI
+bVI
+bVI
+bVI
+bVI
+bVI
+bVI
+bVj
+bUG
+caZ
+bEM
+aXr
+aXr
+aXr
+aXr
+aXr
+aXn
+bhO
+aXn
+aXn
+ccW
+ccW
cdb
-bcx
-aXM
-aXN
-cdI
-cdI
+ccW
+cdb
+ccW
+ccW
+ccW
+cda
+cda
+dij
+aXL
+din
+ccp
+dio
+aXL
+dij
+ccW
+ccW
aaa
aaa
aaa
-cdI
-cqb
-cLk
-crZ
-cLk
-crZ
-crZ
-crZ
-cTe
-cwc
-cwX
-cqb
-cxQ
-cxQ
-cxQ
-cxQ
-cTB
-cle
-cTI
-cgw
-cdM
-cdM
-cdM
-cdI
-cdU
-cdU
-cgv
+ccW
+cpo
+cKu
+crm
+cKu
+crm
+cSo
+crm
+crm
+cvp
+cwk
+cpo
+cxd
+cxd
+cxd
+cxd
+cSL
+dkc
+cSS
+djR
+cda
+cda
+cda
+ccW
+djG
+djG
+djz
+cDs
+djR
+cDS
+djz
+cEf
cEf
-cgw
-cEF
-cgv
-cES
-cES
aaa
aaa
aaa
@@ -105150,45 +102652,45 @@ acH
acH
acH
acH
-afH
+deK
aja
-axF
+axE
akH
-afE
+deI
aep
-afH
-cLA
-aro
-cFj
-cFm
-aro
-asi
-atn
-aro
-avE
-awL
-axG
-azh
-aAv
-aBw
-aCG
-aDR
-aFn
-aro
-afH
-anh
-aJM
-afE
-aLE
+deK
+cKK
+arn
+cEw
+cEz
+arn
+ash
+atm
+arn
+avD
+awK
axF
-axF
-cMU
-cLY
-cLW
-afE
+azg
+aAu
+aBv
+aCF
+aDQ
+aFm
+arn
+deK
+dgk
+aJL
+deI
+aLD
+axE
+axE
+cMe
+dhc
+dgT
+deI
ajW
ajW
-cLx
+dfl
aep
acH
abW
@@ -105207,139 +102709,139 @@ abC
abC
abC
abD
-aXo
-aXo
-aXL
-cNg
-bcX
-aXw
-aXL
-aXN
-aXL
-cNl
-bSl
-bdL
-bSl
-bfB
+aXn
+aXn
+aXK
+cMq
+bcW
+aXv
+aXK
+dij
+aXK
+cMv
+bRT
+bdK
+bRT
+bfA
+cMT
+cNh
+cNu
cNJ
-cNX
-cOk
-cOz
-cOO
-cNJ
-bjh
-bkf
-aYa
-aXM
-aXM
-aXM
-aXM
-aXM
-aXM
-aXM
-bkV
-bxg
-byi
+cNY
+cMT
+bjg
+bke
+aXZ
+aXL
+aXL
+aXL
+aXL
+aXL
+aXL
+aXL
+bkU
+bxf
+byh
+bzd
bze
-bzf
-bkV
-bio
-bad
-bES
-bGo
-bHT
-bJt
-bKv
-bLH
-bNg
-bNg
-bNg
-bNg
-bNg
-bSu
-bTi
-bJw
-bUx
-bVh
-bVU
-bWt
-bWt
-bWt
-bWt
-bWt
-bWt
-bWt
-bWt
-bWt
-bWt
-bVU
-bVh
-cbM
-bER
-aXs
-aXs
-aXs
-aXo
-aXo
-bhP
-bhP
-aXo
-aXo
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdI
-cdM
-cdM
-aXN
-bcx
-aXZ
-aXZ
-ccq
+bkU
+bin
+diC
+bEN
+bGj
+bHO
+bJo
+bKp
+bLA
+bMY
+bMY
+bMY
+bMY
+bMY
+bSc
+bSN
+bJr
+bTZ
+bUH
+bVj
+bVI
+bVI
+bVI
+bVI
+bVI
+bVI
+bVI
+bVI
+bVI
+bVI
+bVj
+bUH
+cba
+bEM
+aXr
+aXr
+aXr
+aXn
+aXn
+bhO
+bhO
+aXn
+aXn
cdb
-aXM
-cdM
-cdM
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+ccW
+cda
+cda
+dij
+dio
+din
+din
+cbE
+ccp
+aXL
+cda
+cda
aaa
-cno
+cmB
aaa
-cdI
-cqb
-cra
-crZ
-csU
-ctx
-cud
-crZ
-cTe
-cwd
-cwY
-cqb
-cyD
-czt
-cAc
+ccW
+cpo
+cqn
+crm
+csh
+csK
+ctq
+crm
+crm
+cvq
+cwl
+cpo
cxQ
-cTC
-cgv
-cTJ
-cgv
-cdq
-cdq
-cdq
-cdU
-cdU
-cdU
-cgw
-cEh
-cEt
-cEG
-cEt
-cET
-cES
+cyG
+czp
+cxd
+cSM
+djz
+cST
+djz
+djW
+djW
+djW
+djG
+djG
+djG
+djR
+cDu
+dkl
+cDT
+dkl
+cEg
+cEf
aaa
aaa
aaa
@@ -105407,45 +102909,45 @@ acH
acH
acH
aep
-afH
-afH
-afE
+deK
+deK
+deI
akI
-afE
+deI
aep
ajW
-cLA
-aro
-cFk
-cFn
-cFo
-asj
-ato
-auu
-avF
-cGW
-axH
-azi
-aAw
-azi
-aCH
-aDS
-aFo
-aro
-afE
-anh
-aJN
-afE
-aLF
-aMA
-aNE
-aOu
-aPV
-cMR
-afH
-cLS
-aTu
-afE
+cKK
+arn
+cEx
+cEA
+cEB
+asi
+atn
+aut
+avE
+cGj
+axG
+azh
+aAv
+azh
+aCG
+aDR
+aFn
+arn
+deI
+dgk
+aJM
+deI
+aLE
+aMz
+aND
+aOt
+aPU
+cMb
+deK
+dhq
+aTt
+deI
aep
acH
abE
@@ -105464,139 +102966,139 @@ aaa
aaa
aaa
aaa
-aXo
-aXo
+aXn
+aXn
+aXK
+aXv
+aXv
+aXv
+dij
+dij
+aXK
+cMw
+cMy
+cME
+bck
+cMS
+cMT
+beJ
+bfB
+beJ
+cNZ
+cMT
+bjg
+bke
+bkU
+bkU
+bnx
+bkU
+bkU
+bkU
+bkU
+bkU
+bkU
+bxf
+bxf
+bze
+bze
+bkU
+aXX
+bDE
+bEM
+bGk
+bHP
+bJp
+bKn
+bLB
+bMZ
+bNU
+bOU
+bOU
+bRa
+bHL
+bSO
+bEM
+bUa
+bUH
+bVj
+bVI
+bVI
+bVI
+bVI
+bVI
+bVI
+bVI
+bVI
+bVI
+bVI
+bVj
+bUH
+cbb
+bEM
+aXr
+aXn
+aXn
+bhO
+bhO
+bhO
+bhO
+aXn
+bhO
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+ccW
+cda
+cda
+dij
aXL
-aXw
-aXw
-aXw
-aXN
-aXN
aXL
-cNm
-cNo
-cNu
-bcl
-cNI
-cNJ
-beK
-bfC
-beK
-cOP
-cNJ
-bjh
-bkf
-bkV
-bkV
-bny
-bkV
-bkV
-bkV
-bkV
-bkV
-bkV
-bxg
-bxg
-bzf
-bzf
-bkV
-aXY
-bDI
-bER
-bGp
-bHU
-bJu
-bKt
-bLI
-bNh
-bOe
-bPf
-bPf
-bRp
-bHQ
-bTj
-bER
-bUy
-bVh
-bVU
-bWt
-bWt
-bWt
-bWt
-bWt
-bWt
-bWt
-bWt
-bWt
-bWt
-bVU
-bVh
-cbN
-bER
-aXs
-aXo
-aXo
-bhP
-bhP
-bhP
-bhP
-aXo
-bhP
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdI
-cdM
-cdM
-aXN
-aXM
-aXM
-aXL
-cbI
-cjK
-aXL
-cdM
-cdM
+aXK
+caW
+ciY
+aXK
+cda
+cda
+clQ
cmC
-cnp
-cmC
-cdI
-cqb
-crb
-csa
-crb
-cty
-cue
-cuQ
-cvj
-cwe
-cwZ
-cqb
-cyE
-cyH
-cyE
-cxQ
-cTC
-cgw
-cgv
-cgw
-cgw
-cdq
-cgw
-cgw
-cgv
-cdT
-cgw
-cEi
-cEu
-cEH
-cEt
-cEU
-cgv
+clQ
+ccW
+cpo
+cqo
+crn
+cqo
+csL
+ctr
+cud
+cuw
+cvr
+cwm
+cpo
+cxR
+cxU
+dkD
+cxd
+cSM
+djR
+djz
+djR
+djR
+djW
+djR
+djR
+djz
+djD
+djR
+cDv
+cDH
+cDU
+dkl
+cEh
+djz
aaa
aaa
aaa
@@ -105640,11 +103142,11 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
abC
aaa
@@ -105663,49 +103165,49 @@ acH
acH
acH
acH
-afE
-cFb
-apM
+deI
+cEo
+apL
ajX
akJ
ajX
ajX
ajW
-cLA
-aro
-aro
-aro
-aro
-ask
-ato
-auu
-avG
-cGW
-cGW
-azj
-cGW
-cGW
-aCI
-aDT
-aFp
-aro
-adP
-aIJ
-afH
-afH
-aLG
-aEt
-afH
-cYZ
-aPW
-aKq
-aKq
-aSr
-aSr
-aKr
-aKr
+cKK
+arn
+arn
+arn
+arn
+asj
+atn
+aut
+avF
+cGj
+cGj
+azi
+cGj
+cGj
+aCH
+aDS
+aFo
+arn
+dgh
+aII
+deK
+deK
+aLF
+dgz
+deK
+cYj
+aPV
+aKp
+aKp
+aSq
+aSq
aKq
aKq
+aKp
+aKp
abE
abE
aaa
@@ -105724,136 +103226,136 @@ aaa
aaa
aaa
aaa
-aXo
-aXs
-aXs
-aXs
-aYx
-aYx
-bcm
-aYx
+aXn
+aXr
+aXr
+aXr
+aYw
+aYw
+bcl
+aYw
+cMF
+beK
+beK
+cMT
+cNi
cNv
-beL
-beL
-cNJ
+cNk
cNY
-cOl
-cOa
-cOO
-cNJ
-bjh
-bkf
-bkV
-bma
-bnz
-boC
-bqc
-brx
-bta
-buu
-bvV
-bxg
-bxg
-bzf
-bzf
-bkV
-aXY
-aXL
-bER
-bGq
-bHV
-bJu
-bKt
-bLJ
-bNh
-bOf
-bPg
-bPh
-bRq
+cMT
+bjg
+bke
+bkU
+blZ
+bny
+boB
+bqb
+brw
+bsZ
+but
+bvU
+bxf
+bxf
+bze
+bze
+bkU
+aXX
+aXK
+bEM
+bGl
bHQ
-bTk
-bER
-bUz
-bVh
-bVU
-bWt
-bWt
-bWt
-bWt
-bWt
-bWt
-bWt
-bWt
-bWt
-bWt
-bVU
-bVh
-cbO
-bER
-aXo
-aXo
-aXo
-bhP
-bhP
-bhP
-bhP
-bhP
-bhP
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdI
-cdM
-cdM
-cfI
-cfI
-cfI
-cje
-cje
-cfI
-cfI
-cdI
-cmC
-cnq
-cmC
-cdI
-cqc
-cqc
-cqc
-cqc
-cqc
-cqc
-cqc
-cvk
-cwe
-cxa
-cqb
-cyF
-czu
-cyF
-cxQ
-cTD
-cBo
-cBB
-cTL
-cBo
-cBo
-cTL
-cBo
-cBB
-cDA
-cDP
-cEj
-cEv
-cEI
-cEt
-cEt
-cgv
+bJp
+bKn
+bLC
+bMZ
+bNV
+bOV
+bOW
+bRb
+bHL
+bSP
+bEM
+bUb
+bUH
+bVj
+bVI
+bVI
+bVI
+bVI
+bVI
+bVI
+bVI
+bVI
+bVI
+bVI
+bVj
+bUH
+cbc
+bEM
+aXn
+aXn
+aXn
+bhO
+bhO
+bhO
+bhO
+bhO
+bhO
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+ccW
+cda
+cda
+ceW
+ceW
+ceW
+cis
+cis
+ceW
+ceW
+ccW
+clQ
+cmD
+clQ
+ccW
+cpp
+cpp
+cpp
+cpp
+cpp
+cpp
+cpp
+cux
+cvr
+cwn
+cpo
+cxS
+cyH
+dkE
+cxd
+cSN
+cAB
+cAO
+cSV
+cAB
+cAB
+cSV
+cAB
+cAO
+cCN
+cDc
+cDw
+cDI
+cDV
+dkl
+dkl
+djz
aaa
aaa
aaa
@@ -105897,11 +103399,11 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
abC
aaa
@@ -105920,197 +103422,197 @@ acH
acH
acH
acH
-auC
+auB
ajX
-afc
-afc
-afc
+deL
+deL
+deL
ajX
ajX
ajX
-aAU
-aBJ
-apx
-anT
-aro
-asl
-atp
-aro
-avH
-awM
-awM
-awM
-awM
-awM
-aCJ
-aDU
-aFq
-aGG
-aGG
-aGG
-aGG
-aGG
-aGG
-aGG
-aGG
-aOw
-aPX
-aQP
-aKq
-aSs
-aSs
-aTa
-aLo
+deY
+dfc
+dfc
+dfj
+arn
+ask
+ato
+arn
+avG
+awL
+awL
+awL
+awL
+awL
+aCI
+aDT
+aFp
+aGF
+aGF
+aGF
+aGF
+aGF
+aGF
+aGF
+aGF
+aOv
+aPW
+aQO
+aKp
+aSr
+aSr
+aSZ
aLn
-aKq
+aLm
+aKp
abE
abE
abE
-aWs
-aWs
-aWs
+aWr
+aWr
+aWr
aaa
-aWs
-aWs
-aWs
-aWs
+aWr
+aWr
+aWr
+aWr
aaa
-aWs
-aWs
-aWs
-aWs
-aWs
-aWs
-aXo
-aXs
-aXs
-aXo
-aYx
-aZU
-bav
-aYx
-aYx
-aYx
-cNJ
-cNJ
-cNZ
-cOm
-cOA
-cOQ
-cNJ
-bji
-cPr
-bkV
-bmb
-bnA
-boD
-boD
-boD
-boD
-buv
-boF
-boF
-boF
-boF
-bAn
-bkV
-aXY
+aWr
+aWr
+aWr
+aWr
+aWr
+aWr
+aXn
+aXr
+aXr
+aXn
+aYw
+aZT
bau
-bET
-bGr
-bHW
-bJu
-bKt
-bLI
-bNh
-bOf
-bPh
-bPh
-bRq
-bHQ
-bHQ
-bET
-bUA
-bVh
-bVU
-bVU
-bVU
-bVU
-bXZ
-bVU
-bVU
-bXZ
-bVU
-bVU
-bVU
-bVU
-bVh
-bUA
-bER
-aXo
-aXo
-bhP
-bhP
-bhP
-bhP
-bhP
-bhP
-bhP
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdI
-cdM
-cdM
-cfI
-chZ
-ciy
-cjf
-ciz
-ckv
-cfI
-cdI
-cmC
-cnr
-cmC
-cdI
-cph
-cUJ
-crc
-csV
-cGK
-csV
-cqc
-cvl
-cwf
-cxb
-cqb
-cyG
-czv
-cAd
-cxQ
-cBa
-czs
-cTK
-czs
-czs
-cTQ
-cTQ
-cTQ
-czs
-cDB
-cDQ
-cEk
-cEw
-cEJ
-chK
-cEV
-cgv
+aYw
+aYw
+aYw
+cMT
+cMT
+cNj
+cNw
+cNK
+cOa
+cMT
+bjh
+cOB
+bkU
+bma
+bnz
+boC
+boC
+boC
+boC
+buu
+boE
+boE
+boE
+boE
+bAl
+bkU
+aXX
+bat
+bEO
+bGm
+bHR
+bJp
+bKn
+bLB
+bMZ
+bNV
+bOW
+bOW
+bRb
+bHL
+bHL
+bEO
+bUc
+bUH
+bVj
+bVj
+bVj
+bVj
+bXn
+bVj
+bVj
+bXn
+bVj
+bVj
+bVj
+bVj
+bUH
+bUc
+bEM
+aXn
+aXn
+bhO
+bhO
+bhO
+bhO
+bhO
+bhO
+bhO
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+ccW
+cda
+cda
+ceW
+chn
+chM
+cit
+chN
+cjJ
+ceW
+ccW
+clQ
+cmE
+clQ
+ccW
+cou
+cTT
+cqp
+csi
+cFX
+csi
+cpp
+cuy
+cvs
+cwo
+dkB
+cxT
+cyI
+czq
+cxd
+cAn
+cyF
+cSU
+cyF
+cyF
+cTa
+cTa
+cTa
+cyF
+cCO
+cDd
+cDx
+cDJ
+cDW
+djA
+cEi
+djz
aaa
aaa
aaa
@@ -106154,11 +103656,11 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
abC
aaa
@@ -106192,34 +103694,34 @@ afd
afd
afd
afd
-aro
-aro
-aro
-aro
-aro
-aro
-aro
-aCK
-aDV
-aFr
-aGG
-aHB
-aIK
-aJO
-aKA
-aLH
-aMB
-aGG
-aOx
-aPY
-aQQ
-aKq
-aMl
-aMl
-aMl
-aMl
-aLp
-aKq
+arn
+arn
+arn
+arn
+arn
+arn
+arn
+aCJ
+aDU
+aFq
+aGF
+aHA
+aIJ
+aJN
+aKz
+aLG
+aMA
+aGF
+aOw
+aPX
+aQP
+aKp
+aMk
+aMk
+aMk
+aMk
+aLo
+aKp
abE
abE
abE
@@ -106238,136 +103740,136 @@ abC
aaa
aaa
aaa
-aXo
-aXs
-aXs
-aXo
-aYx
-aZV
-cZe
-baw
-baw
-cZe
-cNJ
-cNN
-cOa
-cOk
-cOa
-cOR
-cNJ
-bjh
-cPr
-bkV
-bmb
-bnB
+aXn
+aXr
+aXr
+aXn
+aYw
+aZU
+cYo
+bav
+bav
+cYo
+cMT
+cMX
+cNk
+cNu
+cNk
+cOb
+cMT
+bjg
+cOB
+bkU
+bma
+bnA
+boD
+boD
+boD
+bta
+buv
+bvV
+bxg
+bxg
+bzf
boE
-boE
-boE
-btb
-buw
-bvW
-bxh
-bxh
-bzg
-boF
-bny
-aXY
-aZF
-bER
-bGs
-bHV
-bJv
-bKt
-bLI
-bNh
-bOg
-bPi
-bPi
-bRr
+bnx
+aXX
+dim
+bEM
+bGn
bHQ
-bTk
-bER
-bUA
-bVh
-bVV
-bPj
-bQs
-bPj
-bGn
-bYz
-bZb
-bGn
-bPj
-bPj
-bQs
-bVV
-bVh
-bUA
-bER
-aXo
-bhP
-bhP
-bhP
-bhP
-bhP
-bhP
-bhP
-bhP
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdI
-cdI
-cfI
-cia
-ciz
-cjg
-ciz
-ckv
-cfI
-cfI
-cmD
-cns
-cmD
-cph
-cph
-crd
-csb
-csW
-csb
-csW
-cqc
-cvm
-cwg
-cxc
-cqb
-cyH
-czw
-cAe
-cxQ
-cBb
-ctU
-chh
-cdT
-cCn
-cgw
-cgv
-cdU
-cdT
-cdG
-cgw
-cDT
-cEx
-cEK
-cEt
-cEW
-cgv
+bJq
+bKn
+bLB
+bMZ
+bNW
+bOX
+bOX
+bRc
+bHL
+bSP
+bEM
+bUc
+bUH
+bVk
+bOY
+bQe
+bOY
+bGi
+bXN
+bYp
+bGi
+bOY
+bOY
+bQe
+bVk
+bUH
+bUc
+bEM
+aXn
+bhO
+bhO
+bhO
+bhO
+bhO
+bhO
+bhO
+bhO
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+ccW
+ccW
+ceW
+cho
+chN
+ciu
+chN
+cjJ
+ceW
+ceW
+clR
+cmF
+clR
+cou
+cou
+cqq
+cro
+csj
+cro
+csj
+cpp
+cuz
+cvt
+cwp
+cpo
+cxU
+cyJ
+czr
+cxd
+cAo
+djM
+djX
+djD
+cBA
+djR
+djz
+djG
+djD
+djE
+djR
+dki
+cDK
+cDX
+dkl
+dkj
+djz
aaa
aaa
aaa
@@ -106411,11 +103913,11 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
abC
aaa
@@ -106444,41 +103946,41 @@ alR
amR
anD
alm
-apy
+apx
amR
-arp
+aro
alm
-atq
+atp
amR
-avI
+avH
alm
-axI
+axH
amR
-aAx
+aAw
afd
-aCL
-aDW
-aFs
-aGH
-aHC
-aIL
-aIL
-aKB
-aIL
-aIL
+aCK
+aDV
+aFr
aGG
-aOy
-aPZ
-aQR
-aRR
-aSt
-aMl
-aMl
-aMl
-aUK
-aKq
-aKq
-aKq
+aHB
+aIK
+aIK
+aKA
+aIK
+aIK
+aGF
+aOx
+aPY
+aQQ
+aRQ
+aSs
+aMk
+aMk
+aMk
+dkq
+aKp
+aKp
+aKp
aaa
aaa
abC
@@ -106497,134 +103999,134 @@ aaa
aaa
aaa
aaa
-aYx
-aYx
-aYx
-cZd
-cZe
-cZe
-bbC
-bcn
-cNJ
-cNJ
-cNJ
-cOn
-beK
-cOS
-cNJ
-bjh
-cPr
-bkV
-bmc
-bnC
-boF
-boF
-boF
-boF
-boF
-boF
-boF
-boF
-bzh
-boF
-bkV
-aXY
aYw
-bER
-bGt
-bHV
-bJu
-bKt
-bLI
-bNh
-bGn
-bPj
-bQs
-bRs
+aYw
+aYw
+cYn
+cYo
+cYo
+bbB
+bcm
+cMT
+cMT
+cMT
+cNx
+beJ
+cOc
+cMT
+bjg
+cOB
+bkU
+bmb
+bnB
+boE
+boE
+boE
+boE
+boE
+boE
+boE
+boE
+bzg
+boE
+bkU
+aXX
+aYv
+bEM
+bGo
bHQ
-bTk
-bER
-bUB
-bVi
-bJs
-bJs
-bJs
-bJs
-bJs
-bYA
-bZc
-bZt
-bZt
-bZt
-bZt
-bZt
-cbv
-cbP
-bER
-bER
-bER
-bhP
-bhP
-bhP
-bhP
-bhP
-bhP
-bhP
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cfI
-cfI
-cfI
-cib
-ciz
-ciz
-ciz
-ciz
-cfI
-cfI
-cfI
-cnt
-cfI
-cph
-cqd
-cre
-csb
-csX
-csb
-cuf
-cph
-cvn
-cwh
+bJp
+bKn
+bLB
+bMZ
+bGi
+bOY
+bQe
+bRd
+bHL
+bSP
+bEM
+bUd
+bUI
+bJn
+bJn
+bJn
+bJn
+bJn
+bXO
+bYq
+bYH
+bYH
+bYH
+bYH
+bYH
+caJ
+cbd
+bEM
+bEM
+bEM
+bhO
+bhO
+bhO
+bhO
+bhO
+bhO
+bhO
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+ceW
+ceW
+ceW
+chp
+chN
+chN
+chN
+chN
+ceW
+ceW
+ceW
+cmG
+ceW
+cou
+cpq
+cqr
+cro
+csk
+cro
+cts
+cou
+cuA
+cvu
+cwq
+cxc
+dkC
+cyK
+czs
cxd
-cxP
-cyH
-czx
-cAf
-cxQ
-cAZ
-cdG
-cgv
-cgw
-cdU
-cdU
-cdU
-cdU
-cgw
-cgw
-cgw
-cEl
-cEx
-cEL
-chK
-cEX
-cES
+cAm
+djE
+djz
+djR
+djG
+djG
+djG
+djG
+djR
+djR
+djR
+cDy
+cDK
+cDY
+djA
+cEk
+cEf
aaa
aaa
aaa
@@ -106668,11 +104170,11 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
abC
aaa
@@ -106701,187 +104203,187 @@ alS
amS
amS
alm
-apz
+apy
amS
amS
alm
-atr
+atq
ana
amS
alm
-axJ
+axI
amS
amS
afd
-aCM
-aDX
-aFt
-aGI
-aHD
-aIM
-aJP
-aHD
-aHD
-aMC
-aGG
-aOx
-aQa
-aQS
-aKq
-aSu
-aTv
-aTv
-aTv
-aUT
-aVj
-aVw
-aVK
-aWc
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aXg
-aYy
-aYU
-aZw
-aZW
-bax
-baX
-cZf
-cZf
-baX
-bdM
-cNJ
-bfC
-beK
-cOP
-cNJ
-bjj
-bkg
-bkV
-bmd
-bnD
-boG
-bqd
-bry
-btc
-bux
-bvX
-bxi
-byj
-bzh
-bAo
-bkV
-bCA
-bDJ
-bER
-bGu
-bHX
-bJu
-bKt
-bLI
-bNh
-bGn
-bPk
-bQt
-bRt
-bGn
-bTl
-bER
-bUC
-bVj
-bVW
-bWu
-bVj
-bXr
-bYa
-bYB
-bZd
-bJt
-bJt
-bJt
-caF
-bJt
-bJt
-cbQ
-ccf
-ccv
-ccF
-ccK
-bhP
-bhP
-bhP
-bhP
-bhP
-bhP
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cfh
-cfH
-cgf
-cgM
-chl
-cic
-cic
-cic
-cjL
-ckw
-cfI
-cfI
-ciz
-ciz
-coz
-cph
-cqd
-cre
-csb
-csb
-csb
-cug
-cph
-cvo
-cwi
-cuU
-cxQ
-cxQ
-cxQ
-cxQ
-cxQ
-cAZ
-cdG
-chQ
-cgv
-cdq
-cdU
-cdU
-cdU
-cdU
-cdU
-cgw
-cgv
-cgv
-cEM
-cgw
-cES
-cES
+aCL
+aDW
+aFs
+aGH
+aHC
+aIL
+aJO
+aHC
+aHC
+aMB
+aGF
+aOw
+aPZ
+aQR
+aKp
+aSt
+aTu
+aTu
+aTu
+aUS
+aVi
+aVv
+aVJ
+aWb
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aXf
+aYx
+aYT
+aZv
+aZV
+baw
+baW
+cYp
+cYp
+baW
+bdL
+cMT
+bfB
+beJ
+cNZ
+cMT
+bji
+bkf
+bkU
+bmc
+bnC
+boF
+bqc
+brx
+btb
+buw
+bvW
+bxh
+byi
+bzg
+bAm
+bkU
+bCx
+bDF
+bEM
+bGp
+bHS
+bJp
+bKn
+bLB
+bMZ
+bGi
+bOZ
+bQf
+bRe
+bGi
+bSQ
+bEM
+bUe
+bUJ
+bVl
+bVJ
+bUJ
+bWF
+bXo
+bXP
+bYr
+bJo
+bJo
+bJo
+bZT
+bJo
+bJo
+cbe
+cbt
+cbJ
+cbT
+cbY
+bhO
+bhO
+bhO
+bhO
+bhO
+bhO
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+cev
+ceV
+cft
+cga
+cgz
+chq
+chq
+chq
+ciZ
+cjK
+ceW
+ceW
+chN
+chN
+cnM
+cou
+cpq
+cqr
+cro
+cro
+cro
+ctt
+cou
+cuB
+cvv
+cuh
+cxd
+cxd
+cxd
+cxd
+cxd
+cAm
+djE
+dkd
+djz
+djW
+djG
+djG
+djG
+djG
+djG
+djR
+djz
+djz
+cDZ
+djR
+cEf
+cEf
aaa
aaa
aaa
@@ -106925,11 +104427,11 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
abC
aaa
@@ -106970,173 +104472,173 @@ alT
amS
anE
afd
-aCM
-aDY
-aFu
-aGJ
-aHE
-aIN
-aJQ
-aKC
-aLI
-aMD
-aGG
-aOx
-aQa
-aQT
-aKq
-aKq
-aKq
-aKq
-aOc
-aKq
-aKq
-aKq
-aKq
-aWd
-aWt
-aWt
-cWV
-aWt
-aWt
-aWt
-cWV
-aWt
-aWt
-cWV
-aWt
-aWt
-aWt
-cWV
-aWt
-aWt
-aYl
-aYx
-aYx
-aYx
-aYx
-aYx
-baY
-aYx
-aYx
-aYx
-bdN
-cNJ
-cOo
-cOB
-cOT
-cNJ
-bjk
-bkh
-bkV
-bkV
-bnE
-bkV
-bkV
-brz
-brz
-brz
-brz
-bkV
-bkV
-bzi
-bkV
-cGg
-bCB
-bCB
-bER
-bER
-bHY
-bJw
-bKw
-bLK
-bKw
-bJw
-bER
-bER
-bER
-bER
-bER
-bET
-bER
-bER
-bER
-bER
-bER
-bER
-bLK
-bYC
-bZe
-bJw
-bER
-bER
-bER
-cGt
-bER
-bER
-bER
-bER
-bER
-ccL
-ccX
-ccX
-ccX
-cYT
-ccX
-ccX
-cYT
-ccX
-ccX
-cYT
-ccX
-ccX
-ccX
-cfi
-cfI
-cfI
-cfI
-chm
-cfI
-cfI
-cfI
-cfI
-ckx
-cfI
-cfI
-cfI
-cnu
-cfI
-cph
-cph
-crf
-csc
-csY
-ctz
-cuh
-cph
-cvo
-cwi
+aCL
+aDX
+aFt
+aGI
+aHD
+aIM
+aJP
+aKB
+aLH
+aMC
+aGF
+aOw
+aPZ
+aQS
+aKp
+aKp
+aKp
+aKp
+aOb
+aKp
+aKp
+aKp
+aKp
+aWc
+aWs
+aWs
+cWf
+aWs
+aWs
+aWs
+cWf
+aWs
+aWs
+cWf
+aWs
+aWs
+aWs
+cWf
+aWs
+aWs
+aYk
+aYw
+aYw
+aYw
+aYw
+aYw
+baX
+aYw
+aYw
+aYw
+bdM
+cMT
+cNy
+cNL
+cOd
+cMT
+bjj
+bkg
+bkU
+bkU
+bnD
+bkU
+bkU
+bry
+bry
+bry
+bry
+bkU
+bkU
+bzh
+bkU
+cFt
+bCy
+bCy
+bEM
+bEM
+bHT
+bJr
+bKq
+bLD
+bKq
+bJr
+bEM
+bEM
+bEM
+bEM
+bEM
+bEO
+bEM
+bEM
+bEM
+bEM
+bEM
+bEM
+bLD
+bXQ
+bYs
+bJr
+bEM
+bEM
+bEM
+cFG
+bEM
+bEM
+bEM
+bEM
+bEM
+cbZ
+ccl
+ccl
+ccl
+cYd
+ccl
+ccl
+cYd
+ccl
+ccl
+cYd
+ccl
+ccl
+ccl
+cew
+ceW
+ceW
+ceW
+cgA
+ceW
+ceW
+ceW
+ceW
+cjL
+ceW
+ceW
+ceW
+cmH
+ceW
+cou
+cou
+cqs
+crp
+csl
+csM
+ctu
+cou
+cuB
+cvv
+cwr
cxe
-cxR
-cyI
-czy
-cvG
-cdT
-cAZ
-ctU
-chh
-cgv
-cgw
-cdq
-cdq
-cdU
-cdU
-cdU
-cdI
-cdN
-cgv
-cEN
-cgv
+cxV
+cyL
+cuT
+djD
+cAm
+djM
+djX
+djz
+djR
+djW
+djW
+djG
+djG
+djG
+ccW
+cdb
+djz
+cEa
+djz
aaa
aaa
aaa
@@ -107182,11 +104684,11 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
abC
abE
@@ -107216,182 +104718,182 @@ amT
anF
alm
alU
-aqv
+aqu
anF
alm
alU
-auv
+auu
anF
alm
alU
-azk
+azj
anF
afd
-cHK
-aDY
-aFv
-aGG
-aHF
-aIO
-aJR
-aKD
-aLJ
-aME
-aNF
-aOx
-aQa
-aQU
-aRA
-aSv
-aRA
-aRA
-aUn
-aRA
-aUf
-aRA
-aRx
-cWT
-cWT
-cWT
-cWT
-cWT
-cWT
-cWT
-cXb
-cWT
-cWT
-cXi
-cWT
-cWT
-cWT
-cWT
-cWT
-cWT
-cWT
-aYz
-aYV
-aZx
-aZX
-bay
-baZ
-baZ
-bco
-baZ
-bdO
-cOb
-bfD
-baZ
-bHZ
-biq
-bjl
-bki
-aZX
-baZ
-bnF
-baZ
-bqe
-brA
-baZ
-baZ
-baZ
-bxj
-byk
-bzj
-baZ
-baZ
-baZ
-baZ
-bEU
-cHl
-bHZ
-baZ
-baZ
-bLL
-baZ
-baZ
-bPl
-brA
-bqe
-bco
-bTm
-baZ
-baZ
-aZX
-baZ
-baZ
-bWV
-baZ
-bYb
-bYD
-bZf
-bZu
-baZ
-bco
-byk
-baZ
-bqe
-cbR
-ccg
-ccw
-aYz
-ccM
-ccM
-ccM
-ccM
-cdl
-ccM
-ccM
-cdO
-ccM
-ccM
-cdl
-ccM
-ccM
-ccM
-ccM
-cfJ
-cgg
-cgg
-chn
-cid
-ciA
-ciA
+cGX
+aDX
+aFu
+aGF
+aHE
+aIN
+aJQ
+aKC
+aLI
+aMD
+aNE
+aOw
+aPZ
+aQT
+aRz
+aSu
+aRz
+dkp
+aUm
+aRz
+aUe
+aRz
+aRw
+cWd
+cWd
+cWd
+cWd
+cWd
+cWd
+cWd
+cWl
+cWd
+cWd
+cWs
+cWd
+cWd
+cWd
+cWd
+cWd
+cWd
+cWd
+aYy
+aYU
+aZw
+aZW
+bax
+baY
+baY
+bcn
+baY
+bdN
+cNl
+bfC
+baY
+bHU
+bip
+bjk
+bkh
+aZW
+baY
+bnE
+baY
+bqd
+brz
+baY
+baY
+baY
+bxi
+byj
+bzi
+baY
+baY
+baY
+baY
+bEP
+cGy
+bHU
+baY
+baY
+bLE
+baY
+baY
+bPa
+brz
+bqd
+bcn
+bSR
+baY
+baY
+aZW
+baY
+baY
+bWj
+baY
+bXp
+bXR
+bYt
+bYI
+baY
+bcn
+byj
+baY
+bqd
+cbf
+cbu
+cbK
+aYy
+cca
+cca
+cca
+cca
+ccz
+cca
+cca
+cdc
+cca
+cca
+ccz
+cca
+cca
+cca
+cca
+ceX
+cfu
+cfu
+cgB
+chr
+chO
+chO
+cja
cjM
-cky
-ciA
-clN
-cmE
-ciA
-coA
-cpi
-cqe
-crg
-crg
-cHH
-crg
-cui
-cuR
-cvp
-cwi
-cuU
-cuU
-cuU
-czz
-cvG
-chh
-cBc
-cBp
-cdG
-cdG
-cgv
-cdq
-cdq
-cdU
-cdU
-cdU
-cdI
-cdN
-cdN
+chO
+clb
+clS
+chO
+cnN
+cov
+cpr
+cqt
+cqt
+cGU
+cqt
+ctv
+cue
+cuC
+cvv
+cuh
+cuh
+cuh
+cyM
+cuT
+djX
+cAp
+cAC
+djE
+djE
+djz
+djW
+djW
+djG
+djG
+djG
+ccW
+cdb
+cdb
aaa
aaa
aaa
@@ -107465,190 +104967,190 @@ agY
anE
aip
ajh
-cFe
+cEr
ajZ
aln
alV
amU
anG
aoL
-apA
+apz
amU
anG
-asm
-apA
+asl
+apz
amU
anG
-awN
-axK
-azl
-aAy
+awM
+axJ
+azk
+aAx
afd
-aCM
-aDZ
-aFw
-aGG
-aHG
-aIP
-aJR
-aKE
-aLK
-aMF
-aGG
-aOx
-cFH
-aQV
-aQk
-aSw
-aQk
-aQk
-aQk
-aQk
-aQk
-aQk
-aQw
-cWT
-cWT
-cWT
-cWT
-cWT
-cWT
-cWT
-cWT
-cYL
-cWT
-cXj
-cWT
-cWT
-cWT
-cWT
-cWT
-cWT
-cWT
-aYA
-aYW
-aZy
-aZY
-aZY
-aZY
-aZY
-bcp
-aZY
-bdP
-aZY
-aZY
-bgM
-cOU
-aZY
-bjm
-bkj
-bkW
-bkW
-bnG
-boH
-bqf
-brB
-cGe
-aYW
-aYW
-aYW
-aYW
-aYW
-aYW
-aYW
-aYW
-bDK
-cHj
-aYW
-bIa
-aYW
-aYW
-aYW
-bNi
-aYW
-bPm
-bQu
-aYW
-bEV
-aYW
-aYW
-aYW
-aYW
-aYW
-aYW
-aYW
-bDK
-bPm
-bIa
-bZg
-bZv
-aYW
-bEV
-aYW
-aYW
-aYW
-bQu
-aYW
-aYW
-aYA
-ccM
-ccM
-ccM
-ccM
-ccM
-ccM
-ccM
-ccM
-ccM
-ccM
-ccM
-ccM
-ccM
-ccM
-ccM
-cfK
-cgh
-cgh
-cho
-cgh
-cgh
-cgh
-cjN
-cgh
-cgh
-cgh
-cgh
-cgh
-cGC
-cpj
-cqe
-crg
-crg
-cta
-crg
-cuj
-cuR
-cvq
-cwj
-cuU
-cxS
-cyJ
-czA
-cvG
-cAN
-chh
-cBq
-cBp
-cdT
-cdq
-cdq
-cdq
-cdq
-cdq
-cdU
-cdI
-cdN
-cdN
+aCL
+aDY
+aFv
+aGF
+aHF
+aIO
+aJQ
+aKD
+aLJ
+aME
+aGF
+aOw
+cEU
+aQU
+aQj
+aSv
+aQj
+aQj
+aQj
+aQj
+aQj
+aQj
+aQv
+cWd
+cWd
+cWd
+cWd
+cWd
+cWd
+cWd
+cWd
+cXV
+cWd
+cWt
+cWd
+cWd
+cWd
+cWd
+cWd
+cWd
+cWd
+aYz
+aYV
+aZx
+aZX
+aZX
+aZX
+aZX
+bco
+aZX
+bdO
+aZX
+aZX
+bgL
+cOe
+aZX
+bjl
+bki
+bkV
+bkV
+bnF
+boG
+bqe
+brA
+cFr
+aYV
+aYV
+aYV
+aYV
+aYV
+aYV
+aYV
+aYV
+bDG
+cGw
+aYV
+bHV
+aYV
+aYV
+aYV
+bNa
+aYV
+bPb
+bQg
+aYV
+bEQ
+aYV
+aYV
+aYV
+aYV
+aYV
+aYV
+aYV
+bDG
+bPb
+bHV
+bYu
+bYJ
+aYV
+bEQ
+aYV
+aYV
+aYV
+bQg
+aYV
+aYV
+aYz
+cca
+cca
+cca
+cca
+cca
+cca
+cca
+cca
+cca
+cca
+cca
+cca
+cca
+cca
+cca
+ceY
+cfv
+cfv
+cgC
+cfv
+cfv
+cfv
+cjb
+cfv
+cfv
+cfv
+cfv
+cfv
+cFP
+cow
+cpr
+cqt
+cqt
+csn
+cqt
+ctw
+cue
+cuD
+cvw
+cuh
+cxf
+cxW
+cyN
+cuT
+cAa
+djX
+cAD
+cAC
+djD
+djW
+djW
+djW
+djW
+djW
+djG
+ccW
+cdb
+cdb
aaa
aaa
aaa
@@ -107731,181 +105233,181 @@ anH
ajm
ajm
ajm
-arq
+arp
ajm
ajm
ajm
anH
-awO
-axL
-azm
-aAz
-aAB
-aCM
-aDY
-aFx
+awN
+axK
+azl
+aAy
+aAA
+aCL
+aDX
+aFw
+aGJ
aGK
-aGL
-aGL
-aGL
-aGL
-aGL
-aGL
-aGL
-aOx
-aQa
-aQW
-aRu
-aSx
-aRu
-aRu
-aUo
-aRu
-aRu
-aRu
-aRw
-cWT
-cWT
-cWT
-cWW
-cWT
-cWT
-cWT
-cXc
-cWT
-cWT
-cXk
-cXl
-cXl
-cXl
-cXm
-cXl
-cXl
-cXl
-aYB
-cXo
-aZz
-aZZ
-aZZ
-aZZ
-aZZ
-bcq
-bcZ
-bdQ
-aZZ
-aZZ
-bgN
-bgN
-aZZ
-bjn
-bkk
-bkX
-bme
-bnH
-boI
-bqg
-brC
-btd
-buy
-bvY
-btd
-btd
-btd
-btd
-btd
-btd
-bDL
-cHk
-btd
-bDL
-btd
-btd
-btd
-btd
-bvY
-bPn
-bkX
-bRu
-bEW
-btd
-btd
-btd
-btd
-btd
-btd
-bme
-bXs
-bYc
-bYE
-bZh
-bZw
-bZK
-cao
-caG
-aYX
-aYX
-cbS
-aYX
-cKd
-cKf
-ccN
-ccN
-ccN
-ccN
-cYU
-cYW
-cYW
-cdP
-cYW
-cYW
-cYW
-cYW
-cYW
-cYW
-cYW
-cfL
-cKg
-cgN
-cgi
-cie
-cgi
-cjh
-cjO
-ckz
-clk
-clk
-clk
-cnv
-coB
-cpk
-cph
-crh
-csd
-ctb
-ctA
-cuk
-cuS
-cvr
-cwk
-cxf
-cTk
-cTk
-cTk
-cTt
-cTk
-cTk
-cTk
-cAZ
-ctU
-cgw
-cdU
-cdq
-cdq
-cdq
-cdU
-cdI
-cdI
-cdN
+aGK
+aGK
+aGK
+aGK
+aGK
+aGK
+aOw
+aPZ
+aQV
+aRt
+aSw
+aRt
+aRt
+aUn
+aRt
+aRt
+aRt
+aRv
+cWd
+cWd
+cWd
+cWg
+cWd
+cWd
+cWd
+cWm
+cWd
+cWd
+cWu
+cWv
+cWv
+cWv
+cWw
+cWv
+cWv
+cWv
+aYA
+cWy
+aZy
+aZY
+aZY
+aZY
+aZY
+bcp
+bcY
+bdP
+aZY
+aZY
+bgM
+bgM
+aZY
+bjm
+bkj
+bkW
+bmd
+bnG
+boH
+bqf
+brB
+btc
+bux
+bvX
+btc
+btc
+btc
+btc
+btc
+btc
+bDH
+cGx
+btc
+bDH
+btc
+btc
+btc
+btc
+bvX
+bPc
+bkW
+bRf
+bER
+btc
+btc
+btc
+btc
+btc
+btc
+bmd
+bWG
+bXq
+bXS
+bYv
+bYK
+bYY
+bZC
+bZU
+aYW
+aYW
+cbg
+aYW
+cJp
+cJr
+ccb
+ccb
+ccb
+ccb
+cYe
+cYg
+cYg
+cdd
+cYg
+cYg
+cYg
+cYg
+cYg
+cYg
+cYg
+ceZ
+cJs
+cgb
+cfw
+chs
+cfw
+civ
+cjc
+cjN
+cky
+cky
+cky
+cmI
+cnO
+cox
+cou
+cqu
+crq
+cso
+csN
+ctx
+cuf
+cuE
+cvx
+cws
+cSu
+cSu
+cSu
+cSD
+cSu
+cSu
+cSu
+cAm
+djM
+djR
+djG
+djW
+djW
+djW
+djG
+ccW
+ccW
+cdb
aaa
aaa
aaa
@@ -107974,7 +105476,7 @@ acN
acN
acN
acN
-cUL
+cTV
acN
acN
afd
@@ -107993,183 +105495,183 @@ anI
anI
aoM
anI
-awP
-axM
+awO
+axL
anI
anI
-aBx
-aCN
-aEa
-aFy
-aGL
-aHH
+aBw
+aCM
+aDZ
+aFx
+aGK
+aHG
+aIP
+aJR
+aKE
aIQ
-aJS
-aKF
-aIR
-aMG
-aNG
-aOx
-aQa
-aQS
-aRS
-aRS
-aRS
-aRS
-cFJ
-aRS
-aKq
-aKq
-aKq
-aWe
-aWe
-aWe
-cWX
-aWe
-aWe
-aWe
-cWX
-aWe
-aWe
-cWX
-aWe
-aWe
-aWe
-cWX
-aWe
-aWe
-aWe
-aYx
-aYY
-aZA
-baa
-baa
-baa
-cFQ
-baa
-baa
-baa
-baa
-baa
-baa
-baa
-baa
-bjo
-bkl
-bkY
-bjo
-baa
-boJ
-bqh
-brD
-bzq
-btk
-btk
-btk
-ddI
-ddI
-btk
-btk
-btk
-cJZ
-btk
-cKa
-cKa
-cKa
-cKa
-cKa
-cKa
-cKa
-bPo
-bQv
-bRv
-cKa
-cKa
-cKa
-bUD
-cKb
-cGs
-bWb
-bWW
-bXt
-bYd
-bYF
-bWb
-cKc
-bZL
-cKb
-caH
-cKb
-cKb
-cKb
-cKb
-cKe
-aYx
-ccO
-ccY
-ccY
-ccY
-cYV
-ccY
-ccY
-cYV
-ccY
-ccY
-cYV
-ccY
-ccY
-ccY
-cfj
-cfI
-cfI
-cKh
-cKi
-cKi
-cKj
-cKi
-cKi
-ckA
-cKi
-cKi
-cKp
-cnw
-cgh
-cpl
-cqf
-cri
-crg
-csZ
-ctB
-cul
-cuR
-cvq
-cwj
-cxg
-cxU
-cyK
-cTn
-cTl
-cTw
-cTE
-cTk
-cAZ
-cyA
-cgv
-cgv
-cgw
-cdq
-cdq
-cdU
-cdI
-cdN
-cdN
+aMF
+aNF
+aOw
+aPZ
+aQR
+aRR
+aRR
+aRR
+aRR
+cEW
+aRR
+aKp
+aKp
+aKp
+aWd
+aWd
+aWd
+cWh
+aWd
+aWd
+aWd
+cWh
+aWd
+aWd
+cWh
+aWd
+aWd
+aWd
+cWh
+aWd
+aWd
+aWd
+aYw
+aYX
+aZz
+aZZ
+aZZ
+aZZ
+cFd
+aZZ
+aZZ
+aZZ
+aZZ
+aZZ
+aZZ
+aZZ
+aZZ
+bjn
+bkk
+bkX
+bjn
+aZZ
+boI
+bqg
+brC
+bzo
+btj
+btj
+btj
+dcL
+dcL
+btj
+btj
+btj
+cJl
+btj
+cJm
+cJm
+cJm
+cJm
+cJm
+cJm
+cJm
+bPd
+bQh
+bRg
+cJm
+cJm
+cJm
+bUf
+cJn
+cFF
+bVq
+bWk
+bWH
+bXr
+bXT
+bVq
+cJo
+bYZ
+cJn
+bZV
+cJn
+cJn
+cJn
+cJn
+cJq
+aYw
+ccc
+ccm
+ccm
+ccm
+cYf
+ccm
+ccm
+cYf
+ccm
+ccm
+cYf
+ccm
+ccm
+ccm
+cex
+ceW
+ceW
+cJt
+cJu
+cJu
+cJv
+cJu
+cJu
+cjO
+cJu
+cJu
+cJB
+cmJ
+cfv
+coy
+cps
+cqv
+cqt
+csm
+csO
+cty
+cue
+cuD
+cvw
+cwt
+cxh
+cxX
+cSx
+cSv
+cSG
+cSO
+cSu
+cAm
+cxN
+djz
+djz
+djR
+djW
+djW
+djG
+ccW
+cdb
+cdb
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -108232,8 +105734,8 @@ aeq
aeq
aeq
agd
-cUM
-cUN
+cTW
+cTX
air
akc
akb
@@ -108244,37 +105746,37 @@ amW
anI
anJ
anJ
-aqw
-arr
-asn
+aqv
+arq
+asm
anJ
anJ
anI
-awQ
-axM
+awP
+axL
anI
anI
-aAE
-aCM
-aDY
-aFy
-aGL
-aHI
-aIR
-aIR
-aIR
-aIR
-aMH
-aNH
-aOx
-aQa
-aQX
-aRT
-aSy
-aTw
-aTT
-aUp
-aUU
+aAD
+aCL
+aDX
+aFx
+aGK
+aHH
+aIQ
+aIQ
+aIQ
+aIQ
+aMG
+aNG
+aOw
+aPZ
+aQW
+aRS
+aSx
+aTv
+aTS
+aUo
+aUT
abE
abE
aaa
@@ -108295,138 +105797,138 @@ aaa
aaa
aaa
aaa
-aXo
-aXM
-aXX
-aZB
-baa
-baz
+aXn
+dif
+dik
+aZA
+aZZ
+bay
+baZ
+bbC
+aZZ
+bcZ
+bdQ
bba
-bbD
-baa
-bda
-bdR
-bbb
-bfE
-bgO
-bhB
-bir
-bhE
-bkm
-bkZ
-bmf
-bjo
-boK
-bqi
-brE
-cJJ
-btf
-bvZ
-bwe
-byl
-bwc
+bfD
+bgN
+bhA
+biq
+bhD
+bkl
+bkY
+bme
+bjn
+boJ
+bqh
+brD
+cIW
bte
-bzk
-dew
-bDM
-bte
-bGw
-bIb
-bJx
-bGv
-bLM
-bNj
-bOh
-bPp
-bQw
-bRw
-bSv
-bSv
-bGv
-bUE
-bVk
-bVn
-bWv
-bWX
-bWD
-bYe
-bYG
-bZi
-bZx
-bZM
-aYx
-caI
-caZ
-caZ
-caZ
-cch
-ccx
-cch
-ccP
-bhP
-bhP
-bhP
-bhP
-bhP
-bhP
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cfk
-cfM
-cfM
-cgO
-chp
-cif
-ciB
-cji
+bvY
+bwd
+byk
+bwb
+btd
+bzj
+ddk
+bDI
+btd
+bGr
+bHW
+bJs
+bGq
+bLF
+bNb
+bNX
+bPe
+bQi
+bRh
+bSd
+bSd
+bGq
+bUg
+bUK
+bUN
+bVK
+bWl
+bVS
+bXs
+bXU
+bYw
+bYL
+bZa
+aYw
+bZW
+can
+can
+can
+cbv
+cbL
+cbv
+ccd
+bhO
+bhO
+bhO
+bhO
+bhO
+bhO
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+cey
+cfa
+cfa
+cgc
+cgD
+cht
+chP
+ciw
+cjd
cjP
-ckB
-cfI
-cdI
-cKq
-cnx
-cgh
-cpm
-cqg
-crj
-cse
-ctc
-crg
-cum
-cph
-cvs
-cwl
-cxh
-cxV
-cyL
-cTo
-cTu
-cTx
-cBd
-cTk
-cBC
-cTM
-cle
-cit
-cgw
-cdU
-cdU
-cdU
-cdI
-cdI
-cdN
+ceW
+ccW
+cJC
+cmK
+cfv
+coz
+cpt
+cqw
+crr
+csp
+cqt
+ctz
+cou
+cuF
+cvy
+cwu
+cxi
+cxY
+cSy
+cSE
+cSH
+cAq
+cSu
+cAP
+cSW
+dkc
+chH
+djR
+djG
+djG
+djG
+ccW
+ccW
+cdb
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -108481,7 +105983,7 @@ abW
abW
acN
acN
-cWm
+cVw
adS
adR
aer
@@ -108489,8 +105991,8 @@ aeK
afe
afy
age
-cUM
-cUO
+cTW
+cTY
ais
akc
akc
@@ -108498,40 +106000,40 @@ ajj
afd
alX
amW
-cFf
+cEs
anJ
-apB
-aqx
-ars
-aso
-ats
+apA
+aqw
+arr
+asn
+atr
anJ
-cFg
-awP
-axM
-cLV
-aAA
+cEt
+awO
+axL
+cLf
+aAz
afd
-aCL
-aEb
-aFz
-aGM
-aHJ
-aIS
-aIS
-aKG
-aLL
-aMI
-aNI
-aOx
-aQb
-aQY
-aRU
-aSz
-aTx
-aTU
-aUq
-aUU
+aCK
+aEa
+aFy
+aGL
+aHI
+aIR
+aIR
+aKF
+aLK
+aMH
+aNH
+aOw
+aQa
+aQX
+aRT
+aSy
+aTw
+aTT
+aUp
+aUT
abE
aaa
aaa
@@ -108552,138 +106054,138 @@ aaa
aaa
aaa
aaa
-aXo
-aXM
-aXZ
-aZa
-baa
-baA
-bbb
-bbE
-baa
-bdb
-bdS
-beM
-bfF
-bgP
-bhC
-bis
-bjp
-bkn
-bla
-bmg
-bnI
-boL
-bqj
-brF
-cJK
-btg
-btg
-bxk
-bym
-bzl
-bte
-dem
-bwf
-bDN
-bte
-bGx
-bIc
-bJy
-bKx
-bIe
-bIe
-bOi
-bPp
-bQw
-bRx
-bSw
-bTn
-bGv
-bGv
-bGv
-bVn
-bWw
-bWY
-bWD
-bYe
-bYH
-bZj
-bZx
-bVn
-aYx
-baw
-baw
-baw
-cbT
-aYx
-aYx
-aYx
-bhP
-bhP
-bhP
-bhP
-bhP
-bhP
-bhP
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cfI
-cfI
-cfI
-ciC
-cjj
+aXn
+dif
+aXY
+aYZ
+aZZ
+baz
+bba
+bbD
+aZZ
+bda
+bdR
+beL
+bfE
+bgO
+bhB
+bir
+bjo
+bkm
+bkZ
+bmf
+bnH
+boK
+bqi
+brE
+cIX
+btf
+btf
+bxj
+byl
+bzk
+btd
+ddg
+bwe
+bDJ
+btd
+bGs
+bHX
+bJt
+bKr
+bHZ
+bHZ
+bNY
+bPe
+bQi
+bRi
+bSe
+bSS
+bGq
+bGq
+bGq
+bUN
+bVL
+bWm
+bVS
+bXs
+bXV
+bYx
+bYL
+bUN
+aYw
+bav
+bav
+bav
+cbh
+aYw
+aYw
+aYw
+bhO
+bhO
+bhO
+bhO
+bhO
+bhO
+bhO
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+ceW
+ceW
+ceW
+chQ
+cix
+cje
cjQ
-ckC
-cfI
-cdI
-cKq
-cny
-cgh
-cpm
-cph
-crk
-csf
-ctd
-ctC
-cun
-cuT
-cvt
-cwm
-cxi
-cxW
-cTl
-cTp
-cAg
-cTy
-cBe
-cTk
-cdU
-cTC
-cgv
-cgw
-cgw
-cgv
-cdU
-cgw
-cdU
-cdI
-cdI
+ceW
+ccW
+cJC
+cmL
+cfv
+coz
+cou
+cqx
+crs
+csq
+csP
+ctA
+cug
+cuG
+cvz
+cwv
+cxj
+cSv
+cSz
+czt
+cSI
+cAr
+cSu
+djG
+cSM
+djz
+djR
+djR
+djz
+djG
+djR
+djG
+ccW
+ccW
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -108727,7 +106229,7 @@ aaa
aaa
aaa
aaa
-cGc
+cFp
aaa
aaa
abE
@@ -108738,7 +106240,7 @@ abW
abW
acN
acN
-cWn
+cVx
adS
aes
aes
@@ -108758,37 +106260,37 @@ amW
anK
aoN
aoP
-asp
-art
-cGS
-att
-auw
+aso
+ars
+cGf
+ats
+auv
anK
-awP
-axM
+awO
+axL
afd
-aAB
+aAA
afd
-aCM
-aEc
-aFA
-aGN
-aHK
-aIT
-aJT
-aKH
-cGZ
-aMJ
-aGL
-aOz
-aQc
-aQZ
-aRV
-aSA
-aTy
-aTV
-aUr
-aUU
+aCL
+aEb
+aFz
+aGM
+aHJ
+aIS
+aJS
+aKG
+cGm
+aMI
+aGK
+aOy
+aQb
+aQY
+aRU
+aSz
+aTx
+aTU
+aUq
+aUT
abE
aaa
aaa
@@ -108808,139 +106310,139 @@ aaa
aaa
aaa
aaa
-aXo
-aXs
-aXM
-aXY
-aZC
-baa
-baB
-bbc
-bbF
-bcr
-bdc
-bdT
-beN
-bfG
-bgQ
-bhD
-bit
-bjq
-bko
-blb
-bmh
-bnJ
-boM
-bqk
-brG
-cJL
-bth
-bth
-bxl
-ddJ
-ddX
-bte
-dem
-cHi
-bDU
-bte
-bGy
-bId
-bJz
-bGv
-cZi
-bNk
-bJA
-bPp
-bQw
-bRx
-bSw
-bSw
-bTU
-bUF
-bVl
+aXn
+aXr
+dif
+dil
+aZB
+aZZ
+baA
+bbb
+bbE
+bcq
+bdb
+bdS
+beM
+bfF
+bgP
+bhC
+bis
+bjp
+bkn
+bla
+bmg
+bnI
+boL
+bqj
+brF
+cIY
+btg
+btg
+bxk
+dcM
+dcW
+btd
+ddg
+cGv
+bDQ
+btd
+bGt
+bHY
+bJu
+bGq
+cYs
+bNc
+bJv
+bPe
+bQi
+bRi
+bSe
+bSe
+bTx
+bUh
+bUL
+bUN
bVn
-bVY
-bVY
-bWD
-bYe
-bYI
-bVY
-bZy
-bZN
-aYx
-baw
-baw
-baw
-aZV
-aYx
-aXo
-bhP
-bhP
-bhP
-bhP
-bhP
-bhP
-bhP
-bhP
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdI
-cdI
-cdI
-cfI
-ciD
-cjk
+bVn
+bVS
+bXs
+bXW
+bVn
+bYM
+bZb
+aYw
+bav
+bav
+bav
+aZU
+aYw
+aXn
+bhO
+bhO
+bhO
+bhO
+bhO
+bhO
+bhO
+bhO
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+ccW
+ccW
+ccW
+ceW
+chR
+ciy
+cjf
cjR
-ckD
-cfI
-cdI
-cKq
-cnz
-coC
-cpn
-cph
-crl
-csg
-cte
-ctD
-cuo
-cph
-cvu
-cwn
-cxj
-cxX
-cUk
-cyN
-cTv
-cAO
-cBf
-cTk
-cdU
-cAZ
-chK
-chK
-chK
-chK
-chK
-cTX
-cdU
-cdI
-cdI
+ceW
+ccW
+cJC
+cmM
+cnP
+coA
+cou
+cqy
+crt
+csr
+csQ
+ctB
+cou
+cuH
+cvA
+cww
+cxk
+cTu
+cya
+cSF
+cAb
+cAs
+cSu
+djG
+cAm
+djA
+djA
+djA
+djA
+djA
+cTh
+djG
+ccW
+ccW
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -108984,7 +106486,7 @@ aaa
aaa
aaa
aaa
-cGc
+cFp
aaa
aaa
abE
@@ -108996,7 +106498,7 @@ abW
acN
acN
adz
-cWo
+cVy
adT
aet
aeL
@@ -109014,38 +106516,38 @@ ama
amX
anL
aoO
-apC
-aqy
-aru
-apC
-atu
-aux
-avJ
-awR
-axN
-azn
-aAC
-azn
-aCO
-aEd
-aFB
-aGO
-aHL
-aIU
-aJU
-aKI
-aLM
-aMK
-aGL
-aOA
-aQd
-aQS
-aRS
-aRS
-aRS
-aTW
-aRS
-aRS
+apB
+aqx
+art
+apB
+att
+auw
+avI
+awQ
+axM
+azm
+aAB
+azm
+aCN
+aEc
+aFA
+aGN
+aHK
+aIT
+aJT
+aKH
+aLL
+aMJ
+aGK
+aOz
+aQc
+aQR
+aRR
+aRR
+aRR
+aTV
+aRR
+aRR
abE
abC
abC
@@ -109063,141 +106565,141 @@ abC
abC
abC
abC
-aXB
-aXo
-aXo
-aXM
-aXL
-aYZ
-aZD
-bab
-baC
-bbd
-bbG
+aXA
+aXn
+aXn
+dif
+dih
+aYY
+aZC
baa
-bdd
-bdU
-beO
-bfH
-bgR
-bhE
-biu
-bjr
-bkp
-blc
-bhE
-bjo
-boN
-aYW
-brI
-bzr
-bti
-ddt
-bte
-byn
-bzm
-bte
-dem
-bCC
-bDO
-bte
-bGv
-bGv
-bGv
-bGv
-bLN
-bIe
-bOj
-bPp
-bQw
-bRy
-bSx
-bSx
-bGv
-bUG
-bVm
-bVn
-bWx
-bWX
-bWD
-bYe
-bYJ
-bWX
-bZx
-bZO
-aYx
-caJ
-cba
-cba
-aZV
-aYx
-aXo
-bhP
-bhP
-bhP
-bhP
-bhP
-bhP
-bhP
-bhP
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdI
-cdI
-cdI
-cfI
-cfI
-cfI
-cfI
-cfI
-cfI
-cdI
-cKq
-cnA
-cgh
-cpo
-cGF
-crm
-csh
-csb
-ctE
-cup
-cph
-cvv
-cwj
-cxk
-cTk
-cTm
-czC
-cAh
-cTz
-cTF
-cTk
-cdU
-cTN
-cTO
-cTO
-cCo
-cCZ
-cTV
-cDD
-cgw
-cdI
-cdI
+baB
+bbc
+bbF
+aZZ
+bdc
+bdT
+beN
+bfG
+bgQ
+bhD
+bit
+bjq
+bko
+blb
+bhD
+bjn
+boM
+aYV
+brH
+bzp
+bth
+dcB
+btd
+bym
+bzl
+btd
+ddg
+bCz
+bDK
+btd
+bGq
+bGq
+bGq
+bGq
+bLG
+bHZ
+bNZ
+bPe
+bQi
+bRj
+bSf
+bSf
+bGq
+bUi
+bUM
+bUN
+bVM
+bWl
+bVS
+bXs
+bXX
+bWl
+bYL
+bZc
+aYw
+bZX
+cao
+cao
+aZU
+aYw
+aXn
+bhO
+bhO
+bhO
+bhO
+bhO
+bhO
+bhO
+bhO
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+ccW
+ccW
+ccW
+ceW
+ceW
+ceW
+ceW
+ceW
+ceW
+ccW
+cJC
+cmN
+cfv
+coB
+cFS
+cqz
+cru
+cro
+csR
+ctC
+cou
+cuI
+cvw
+cwx
+cSu
+cSw
+cyP
+czu
+cSJ
+cSP
+cSu
+djG
+cSX
+cSY
+cSY
+cBB
+cCm
+cTf
+dkh
+djR
+ccW
+ccW
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aab
@@ -109241,7 +106743,7 @@ aaa
aaa
aaa
aaa
-cGc
+cFp
aaa
aaa
abE
@@ -109271,33 +106773,33 @@ amb
amX
anM
aoP
-apD
-aqz
-arv
-aqz
-aqz
-aqz
-avK
-awS
-axO
-azo
-aAD
-azo
-aCP
-aEe
-aFy
-cFw
-aGL
-aGL
-aGL
-aGL
-aGL
-aGL
-aGL
-aOB
-aQa
-aQS
-aKq
+apC
+aqy
+aru
+aqy
+aqy
+aqy
+avJ
+awR
+axN
+azn
+aAC
+azn
+aCO
+aEd
+aFx
+cEJ
+aGK
+aGK
+aGK
+aGK
+aGK
+aGK
+aGK
+aOA
+aPZ
+aQR
+aKp
abW
abW
abW
@@ -109320,141 +106822,141 @@ aaa
aaa
aaa
aaa
-aXo
-aXs
-aXs
-aXM
-aYC
-aZa
-aXM
-baa
-baD
-bbe
-bbH
-baa
-bde
-bbb
-beO
-bfH
-bgR
-bhE
-biv
-bjs
-bkq
-bkZ
-bmi
-bnK
-boO
-aYW
-brH
-bzr
-buz
-bwa
-ddA
-byo
-ddY
-bte
-den
-dex
-bte
-bzq
-bGz
-bIe
-bIe
-bIe
-bIe
-bNl
-bOk
-bPp
-bQw
-bRx
-bSw
-bTn
-bGv
-bGv
-bGv
-bVn
-bWy
-bWY
-bWD
-bYe
-bYH
-bWY
-bZz
-bZP
-aYx
-aYx
-aYx
-aYx
-aYx
-aYx
-aXo
-aXo
-bhP
-bhP
-bhP
-bhP
-bhP
-bhP
-bhP
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdI
-cdI
-cdI
-cdM
-cdM
-cdM
-cdM
-cdI
-cdI
-cdI
-cdI
-cKr
-cnw
-cgh
-cpp
-cph
-crn
-csi
-ctf
-ctF
-cuq
-cph
-cvw
-cwo
-cxl
-cKL
-cKN
-cKN
-cKN
-cKO
-cTG
-cTk
-cdU
-cdU
-cdU
-cgy
-cgw
-cgw
-cTC
-cDT
-cgw
-cdU
-cdI
+aXn
+aXr
+aXr
+dif
+aYB
+aYZ
+dif
+aZZ
+baC
+bbd
+bbG
+aZZ
+bdd
+bba
+beN
+bfG
+bgQ
+bhD
+biu
+bjr
+bkp
+bkY
+bmh
+bnJ
+boN
+aYV
+brG
+bzp
+buy
+bvZ
+dcG
+byn
+dcX
+btd
+ddh
+ddl
+btd
+bzo
+bGu
+bHZ
+bHZ
+bHZ
+bHZ
+bNd
+bOa
+bPe
+bQi
+bRi
+bSe
+bSS
+bGq
+bGq
+bGq
+bUN
+bVN
+bWm
+bVS
+bXs
+bXV
+bWm
+bYN
+bZd
+aYw
+aYw
+aYw
+aYw
+aYw
+aYw
+aXn
+aXn
+bhO
+bhO
+bhO
+bhO
+bhO
+bhO
+bhO
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+ccW
+ccW
+ccW
+cda
+cda
+cda
+cda
+ccW
+ccW
+ccW
+ccW
+cJD
+cmJ
+cfv
+coC
+cou
+cqA
+crv
+css
+csS
+ctD
+cou
+cuB
+cvB
+cuh
+cJX
+cJZ
+cJZ
+cJZ
+cKa
+cSQ
+cSu
+djG
+djG
+djG
+djF
+djR
+djR
+cSM
+dki
+djR
+djG
+ccW
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aad
aad
@@ -109498,7 +107000,7 @@ aaa
aaa
aaa
aaa
-cGc
+cFp
aaa
aaa
abE
@@ -109528,33 +107030,33 @@ amc
amW
anN
aoQ
-apE
-cGR
-art
-aqA
+apD
+cGe
+ars
+aqz
aoP
-auy
-avL
-awT
-axP
+aux
+avK
+awS
+axO
afd
-aAE
+aAD
afd
-aCQ
-aDY
-aFu
-cHO
-aHM
-cHV
-cHY
-cIe
-cFy
-cFC
-cFE
-cFF
-aQa
-aQS
-aKq
+aCP
+aDX
+aFt
+cHb
+aHL
+cHi
+cHl
+cHr
+cEL
+cEP
+cER
+cES
+aPZ
+aQR
+aKp
abW
abW
abW
@@ -109577,134 +107079,134 @@ aaa
aaa
aaa
aaa
-aXo
-aXs
-aXs
-aXM
-aXZ
-aZa
-aXM
-baa
-baE
-bbe
-bbb
-baa
-bdf
+aXn
+aXr
+aXr
+dif
+aXY
+aYZ
+dif
+aZZ
+baD
bbd
-beO
-bfH
-bgR
-bhE
-biw
-bhE
-bkr
-bkZ
-bhE
-baa
-boP
-aYW
-brI
-bzr
-buA
-bwb
-bxm
-ddK
-ddZ
-bAp
-deo
-bCD
-deD
-bzr
-bGA
-bIf
-bJA
-bJA
-bJA
-bNm
-bNm
-bPp
-bQw
-bRx
-bSw
-bSw
-bTU
-bUF
-cHt
-bVn
-bWA
-cHv
-bWD
-bYe
-bYK
-cHv
-bZA
-bZQ
-cap
-cap
-cap
-cap
-cap
-cap
-cap
-aXo
-aXo
-bhP
-bhP
-bhP
-bhP
-bhP
-bhP
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdN
-cdI
-cdI
-cdI
-cdM
-cdM
-cdM
-cdM
-cdI
-cdI
-cdI
-cdI
-cKh
-cKt
-cKu
-cpq
-cKC
-cKJ
-cKJ
-cKJ
-cKJ
-cur
-cKJ
-cvx
-cwp
-cKK
-cKM
-cyP
-czD
-cAi
-cKP
-cAP
-cAP
-cAP
-cAP
-cAP
-cAP
-cAP
-cAP
-cTC
-chK
-cTZ
-cdU
-cdI
+bba
+aZZ
+bde
+bbc
+beN
+bfG
+bgQ
+bhD
+biv
+bhD
+bkq
+bkY
+bhD
+aZZ
+boO
+aYV
+brH
+bzp
+buz
+bwa
+bxl
+dcN
+dcY
+bAn
+ddi
+bCA
+ddo
+bzp
+bGv
+bIa
+bJv
+bJv
+bJv
+bNe
+bNe
+bPe
+bQi
+bRi
+bSe
+bSe
+bTx
+bUh
+cGG
+bUN
+bVP
+cGI
+bVS
+bXs
+bXY
+cGI
+bYO
+bZe
+bZD
+bZD
+bZD
+bZD
+bZD
+bZD
+bZD
+aXn
+aXn
+bhO
+bhO
+bhO
+bhO
+bhO
+bhO
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+cdb
+ccW
+ccW
+ccW
+cda
+cda
+cda
+cda
+ccW
+ccW
+ccW
+ccW
+cJt
+cJF
+cJG
+coD
+cJO
+cJV
+cJV
+cJV
+cJV
+ctE
+cJV
+cuK
+cvC
+cJW
+cJY
+cyc
+cyQ
+czv
+cKb
+cAc
+cAc
+cAc
+cAc
+cAc
+cAc
+cAc
+cAc
+cSM
+djA
+cTj
+djG
+ccW
aaa
aaa
aaa
@@ -109783,35 +107285,35 @@ akc
afd
amd
amW
-cFg
+cEt
anJ
-apF
-aqB
-art
-asq
-atv
+apE
+aqA
+ars
+asp
+atu
anJ
-cFf
-awP
-axM
-cLV
-aAA
+cEs
+awO
+axL
+cLf
+aAz
afd
-aCM
-cHL
-aFC
-cHP
-aHN
-cHW
-cHZ
-cHZ
-cFz
-cHZ
-cIu
-cFG
-aQa
-aQS
-aKq
+aCL
+cGY
+aFB
+cHc
+aHM
+cHj
+cHm
+cHm
+cEM
+cHm
+cHH
+cET
+aPZ
+aQR
+aKp
abW
acH
acH
@@ -109834,134 +107336,134 @@ aaa
aaa
aaa
aaa
-aXo
-aXs
-aXs
-aXM
-aXZ
-aZb
-aZE
-bac
-baF
-bbf
-bbI
-bcs
-bdg
-bdV
-baa
-bfI
-bgS
-bhF
-bix
-bhF
-bks
-bld
-bmj
-bnL
-boQ
-bql
-brI
-bzr
-ddn
-bwc
-ddB
-ddv
-dea
-bAq
-ddo
-dey
-deE
-bzr
-bGB
-bIe
-bJB
-bKy
-bKy
-bKy
-bKy
-bPq
-bQx
-bRz
-bSy
-bSy
-bGv
-bUG
-bVm
-bVn
-bWz
-bWZ
-bXu
-bYf
-bYL
-bZk
-bZB
-bZR
-caq
-caK
-cbb
-bZV
-cbU
-cci
+aXn
+aXr
+aXr
+dif
+aXY
+aZa
+aZD
+bab
+baE
+bbe
+bbH
+bcr
+bdf
+bdU
+aZZ
+bfH
+bgR
+bhE
+biw
+bhE
+bkr
+blc
+bmi
+bnK
+boP
+bqk
+brH
+bzp
+dcx
+bwb
+dcH
+dcD
+dcZ
+bAo
+dcy
+ddm
+ddp
+bzp
+bGw
+bHZ
+bJw
+bKs
+bKs
+bKs
+bKs
+bPf
+bQj
+bRk
+bSg
+bSg
+bGq
+bUi
+bUM
+bUN
+bVO
+bWn
+bWI
+bXt
+bXZ
+bYy
+bYP
+bZf
+bZE
+bZY
cap
-aXo
-aXo
-bhP
-bhP
-bhP
-bhP
-bhP
-bhP
-cdN
-cdN
-cdN
-cdN
-cdN
-ceu
-ceu
-ceu
-ceu
-ceu
-ceu
-ceu
-ceu
-ceu
-ceu
-ceu
-ceu
-ceu
-ceu
-ceu
-cnw
-cgh
-cpr
-cKD
-cro
-csj
-ctg
-cqh
-cus
-csj
-cvy
-cwq
-csk
-cxZ
-cyQ
-czE
-cAj
-cKQ
-cAP
-cBg
-cBg
-cBS
-cBg
-cBg
-cCM
-cAP
-cTC
-chK
-cDD
-cdU
+bZj
+cbi
+cbw
+bZD
+aXn
+aXn
+bhO
+bhO
+bhO
+bhO
+bhO
+bhO
+cdb
+cdb
+cdb
+cdb
+cdb
cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+cmJ
+cfv
+coE
+cJP
+cqB
+crw
+cst
+cpu
+ctF
+crw
+cuL
+cvD
+crx
+cxm
+cyd
+cyR
+czw
+cKc
+cAc
+cAt
+cAt
+cBf
+cAt
+cAt
+cBZ
+cAc
+cSM
+djA
+dkh
+djG
+ccW
aaa
aaa
aaa
@@ -110026,7 +107528,7 @@ acN
adC
adW
aev
-cWp
+cVz
aeO
afh
aev
@@ -110043,32 +107545,32 @@ amW
anI
anJ
anJ
-aqw
-arw
-asn
+aqv
+arv
+asm
anJ
anJ
-avM
-awP
-axM
+avL
+awO
+axL
anI
anI
-aAB
-aCL
-cHM
+aAA
+aCK
+cGZ
+cHa
+cHd
+aHN
+cHg
+aJU
+cHs
+cHx
+cHB
+cHI
cHN
-cHQ
-aHO
-cHT
-aJV
-cIf
-cIk
-cIo
-cIv
-cIA
-aQa
-aQS
-aKq
+aPZ
+aQR
+aKp
abW
acH
acH
@@ -110091,134 +107593,134 @@ aaa
aaa
aaa
aaa
-aXo
-aXo
-aXo
-aXw
-aYk
-aZc
-aXM
-baa
-baG
-baG
-baG
-baG
-baG
-bdW
-beP
-bfJ
-bgT
-bjt
-biy
-bjt
-bkt
-bhE
-bmk
-baa
-boR
-aYW
-brI
-btj
-ddo
-bwc
-ddB
-ddv
-dea
-dej
-ddo
-dey
-cUI
-bzr
-bGC
-bIg
-bJC
-bKz
-bLO
-bLO
-bLO
-bPr
-bQy
-bRA
-bSw
-bTn
-bGv
-bGv
-bGv
-bVn
-bWA
-bWA
-bWD
-bWD
-bYK
-bWA
-bZC
-bZS
-car
-caL
-cbc
-car
-cbV
-ccj
-cap
-cap
-aXo
-aXo
-aXo
-bhP
-bhP
-bhP
-bhP
-cdN
-cdN
-cdN
-cdN
-cdN
-ceu
-ceL
-cfl
-cfl
-cfl
-cfl
-cfl
-cfl
-cfl
-cjl
-ceu
-ckE
-cll
-clO
-ceu
-cnB
-coD
-cps
-cqi
-crp
-csk
-cth
-ctG
-cut
-csk
-cvz
-cwr
-cuU
-cxY
-cyR
-czF
-cAk
-cAP
-cAP
-cBg
-cBg
-cBT
-cBg
-cBg
-cBg
-cAP
-cTC
-cyA
-cgw
-cdU
+aXn
+aXn
+aXn
+dig
+dii
+aZb
+dif
+aZZ
+baF
+baF
+baF
+baF
+baF
+bdV
+beO
+bfI
+bgS
+bjs
+bix
+bjs
+bks
+bhD
+bmj
+aZZ
+boQ
+aYV
+brH
+bti
+dcy
+bwb
+dcH
+dcD
+dcZ
+ddd
+dcy
+ddm
+cTS
+bzp
+bGx
+bIb
+bJx
+bKt
+bLH
+bLH
+bLH
+bPg
+bQk
+bRl
+bSe
+bSS
+bGq
+bGq
+bGq
+bUN
+bVP
+bVP
+bVS
+bVS
+bXY
+bVP
+bYQ
+bZg
+bZF
+bZZ
+caq
+bZF
+cbj
+cbx
+bZD
+bZD
+aXn
+aXn
+aXn
+bhO
+bhO
+bhO
+bhO
+cdb
+cdb
+cdb
+cdb
+cdb
cdI
+cdZ
+cez
+cez
+cez
+cez
+cez
+cez
+cez
+ciz
+cdI
+cjS
+ckz
+clc
+cdI
+cmO
+cnQ
+coF
+cpv
+cqC
+crx
+csu
+csT
+ctG
+crx
+cuM
+cvE
+cuh
+cxl
+cye
+cyS
+czx
+cAc
+cAc
+cAt
+cAt
+cBg
+cAt
+cAt
+cAt
+cAc
+cSM
+cxN
+djR
+djG
+ccW
aaa
aaa
aaa
@@ -110280,7 +107782,7 @@ abW
abW
acN
acN
-cUK
+cTU
acN
acN
acN
@@ -110306,35 +107808,35 @@ anI
anI
aoR
anI
-awP
-axM
+awO
+axL
anI
anI
-aBx
-aCN
-aEa
-aFD
-aEh
-aHP
-aEh
-aEh
-aEh
-aEh
-aML
-cIw
-aOD
-cIG
-aRg
-cIK
-adP
-adP
-aep
-aep
-aUV
-aUV
-aUV
-aUV
-aWf
+aBw
+aCM
+aDZ
+aFC
+aEg
+aHO
+aEg
+aEg
+aEg
+aEg
+aMK
+cHJ
+aOC
+cHT
+aRf
+cHX
+dhr
+dhr
+dhs
+dhs
+aUU
+aUU
+aUU
+aUU
+aWe
abW
aaa
aaa
@@ -110348,134 +107850,134 @@ aaa
aaa
aaa
aaa
-aXs
-aXs
-aXs
-aXM
-aXZ
-aZa
-aXM
-aXM
-baG
-bbg
-bbi
-bbi
-baG
-cFR
-baG
-baG
-bgU
-cUF
-biz
-bju
-bju
-bju
-baG
-baG
-boR
-aYW
-brI
-btj
-buB
-ddu
-ddD
-ddN
-bzn
-bAr
-buB
-ddY
-bDP
-bzr
-bGD
-bGD
-bJD
-bKA
-bGD
-bGD
-bGD
-bGD
-bQz
-bRx
-bSw
-bSw
-bTU
-bUF
-bVl
-bVn
-bWB
-bXa
-bXv
-bXv
-bYM
-bXa
+aXr
+aXr
+aXr
+dif
+aXY
+aYZ
+dif
+dif
+baF
+bbf
+bbh
+bbh
+baF
+cFe
+baF
+baF
+bgT
+cTP
+biy
+bjt
+bjt
+bjt
+baF
+baF
+dks
+aYV
+brH
+bti
+buA
+dcC
+dcI
+dcO
+bzm
+bAp
+buA
+dcX
+bDL
+bzp
+bGy
+bGy
+bJy
+bKu
+bGy
+bGy
+bGy
+bGy
+bQl
+bRi
+bSe
+bSe
+bTx
+bUh
+bUL
+bUN
+bVQ
+bWo
+bWJ
+bWJ
+bYa
+bWo
+bYR
+bZh
+bZG
+caa
+car
+caK
bZD
-bZT
-cas
-caM
-cbd
-cbw
-cap
-cck
-ccy
-cap
-aXo
-aXo
-aXo
-bhP
-bhP
-bhP
-bhP
-cdN
-cdN
-cdN
-cdN
-cdN
-ceu
-ceM
-cfm
-cfm
-cfm
-cfm
-cfm
-cfm
-cfm
-cjm
-cjS
-ckF
-clm
-clP
-ceu
-cnw
-coE
-cpt
-cKE
-crq
-csl
-cti
-cqj
-cuu
-cuU
-cvo
-cwj
-cuU
-cxY
-cyS
-czF
-cAl
-cAP
-cAP
-cBg
-cBg
-cBg
-cBg
-cCx
-cBg
-cAP
-cAZ
-chK
-cSQ
-cdU
+cby
+cbM
+bZD
+aXn
+aXn
+aXn
+bhO
+bhO
+bhO
+bhO
+cdb
+cdb
+cdb
+cdb
+cdb
cdI
+cea
+ceA
+ceA
+ceA
+ceA
+ceA
+ceA
+ceA
+ciA
+cjg
+cjT
+ckA
+cld
+cdI
+cmJ
+cnR
+coG
+cJQ
+cqD
+cry
+csv
+cpw
+ctH
+cuh
+cuB
+cvw
+cuh
+cxl
+cyf
+cyS
+czy
+cAc
+cAc
+cAt
+cAt
+cAt
+cAt
+cBK
+cAt
+cAc
+cAm
+djA
+cSa
+djG
+ccW
aaa
aaa
aaa
@@ -110547,8 +108049,8 @@ acN
afd
afd
afd
-cWz
-cWv
+cVJ
+cVF
akh
akR
alp
@@ -110559,41 +108061,41 @@ aoS
anO
aoS
aoS
-asr
+asq
aoS
aoS
anO
-awU
-axL
-azm
-aAF
+awT
+axK
+azl
aAE
-aCM
-cHL
-aFE
-cHR
-cHS
-cHR
-aJW
-cIg
-cIl
-cIp
-aNJ
-cIB
-cIH
-aQS
-cIL
-aep
-adP
-aep
-aep
-aUW
-aVk
-aVx
-aVL
-aWf
-aWf
-aWf
+aAD
+aCL
+cGY
+aFD
+cHe
+cHf
+cHe
+aJV
+cHt
+cHy
+cHC
+aNI
+cHO
+cHU
+aQR
+cHY
+dhs
+dhr
+dhs
+dhs
+aUV
+aVj
+aVw
+aVK
+aWe
+aWe
+aWe
abC
abC
abC
@@ -110605,134 +108107,134 @@ aaa
aaa
aaa
aaa
-aXs
-aXs
-aXs
-aXM
-aXZ
-aZd
-aXL
-aXM
-baG
-bbh
-bbl
-bct
-bdh
-bdX
-beQ
-bfK
-bgV
-bhG
-biA
-bhK
-bhK
-bhK
-bml
-baG
-boR
-aYW
-brI
-btj
-ddo
-ddv
-ddB
-ddv
-dea
-bwc
-ddo
-dey
-bDQ
-bzr
-bGE
-bIh
-bJE
-bKB
-bLP
-bNn
-bOl
-bGD
-bGD
-bRB
-bSz
-bSz
-bGv
-bUG
-bVm
-bVn
-bWA
-bWA
-bXw
-bWD
-bWA
-cHv
-bZA
-bZU
-cat
-caN
-cbe
-bZV
-cbW
-ccl
-ccz
-cap
-aXo
-aXo
-aXo
-bhP
-bhP
-bhP
-bhP
-cdN
-cdN
-cdN
-cdN
-cdN
-ceu
-ceM
-cfm
-cfm
-cfm
-cfm
-cfm
-cfm
-cfm
-cjm
-cjS
-ckF
-cln
-clQ
-ceu
-cnw
-cgh
-cpu
-cKF
-cqk
-cqk
-cqk
-cqk
-cuv
-cqk
-cvA
-cws
-cxm
-cya
-cyT
-czG
-cAm
-cAQ
-cAP
-cBg
-cBg
-cBg
-cBg
-cCy
-cBg
-cAP
-cTW
-cDT
-cdq
-cdU
+aXr
+aXr
+aXr
+dif
+aXY
+aZc
+dih
+dif
+baF
+bbg
+bbk
+bcs
+bdg
+bdW
+beP
+bfJ
+bgU
+bhF
+biz
+bhJ
+bhJ
+bhJ
+bmk
+baF
+boQ
+aYV
+brH
+bti
+dcy
+dcD
+dcH
+dcD
+dcZ
+bwb
+dcy
+ddm
+bDM
+bzp
+bGz
+bIc
+bJz
+bKv
+bLI
+bNf
+bOb
+bGy
+bGy
+bRm
+bSh
+bSh
+bGq
+bUi
+bUM
+bUN
+bVP
+bVP
+bWK
+bVS
+bVP
+cGI
+bYO
+bZi
+bZH
+cab
+cas
+bZj
+cbk
+cbz
+cbN
+bZD
+aXn
+aXn
+aXn
+bhO
+bhO
+bhO
+bhO
+cdb
+cdb
+cdb
+cdb
+cdb
cdI
+cea
+ceA
+ceA
+ceA
+ceA
+ceA
+ceA
+ceA
+ciA
+cjg
+cjT
+ckB
+cle
+cdI
+cmJ
+cfv
+coH
+cJR
+cpx
+cpx
+cpx
+cpx
+ctI
+cpx
+cuN
+cvF
+cwz
+cxn
+cyg
+cyT
+czz
+cAd
+cAc
+cAt
+cAt
+cAt
+cAt
+cBL
+cAt
+cAc
+cTg
+dki
+djW
+djG
+ccW
aaa
aaa
aaa
@@ -110802,194 +108304,194 @@ abW
abW
abW
afd
-cWq
-cWv
-cWA
+cVA
+cVF
+cVK
ajq
ajZ
akS
-cWE
+cVO
amg
-cWF
-apG
+cVP
+apF
amU
-cWI
-cWK
-cWL
+cVS
+cVU
+cVV
amU
-apG
+apF
amU
anP
-awV
-axQ
-azl
-aAG
+awU
+axP
+azk
+aAF
afd
-aCL
-aEf
-aFF
-aGR
-aHQ
-aGR
-aJX
+aCK
+aEe
+aFE
aGQ
+aHP
aGQ
-cIq
-aNK
-aOE
-aQa
-aQS
-cIL
-aep
-adP
-aoX
-afc
-aUW
-aVl
-aVy
-aVM
-aWg
-aWu
-aWg
-aWO
-aWO
-aWO
-aWO
-aWc
+aJW
+aGP
+aGP
+cHD
+aNJ
+aOD
+aPZ
+aQR
+cHY
+dhs
+dhr
+dhx
+dhw
+aUV
+aVk
+aVx
+aVL
+aWf
+aWt
+aWf
+aWN
+aWN
+aWN
+aWN
+dic
abC
abC
abC
abC
abC
abC
-aXs
-aXs
-aXs
-aXM
-aXZ
-aZa
-aZF
-aXM
-baG
-bbi
-bbg
-bbi
-bbl
-bdY
-baG
-bfL
-bgW
-bhH
-biB
-bhK
-bhH
-bhK
-bhK
-baG
-boR
-aYW
-brJ
-bzr
-ddn
-ddv
-ddB
-ddv
-dea
-bwc
-ddo
-dey
-bDR
-bzr
-bGF
-bGI
-bJE
-bKC
-bLQ
-bLQ
-bOm
-bPs
+aXr
+aXr
+aXr
+dif
+aXY
+aYZ
+aZE
+dif
+baF
+bbh
+bbf
+bbh
+bbk
+bdX
+baF
+bfK
+bgV
+bhG
+biA
+bhJ
+bhG
+bhJ
+bhJ
+baF
+boQ
+aYV
+brI
+bzp
+dcx
+dcD
+dcH
+dcD
+dcZ
+bwb
+dcy
+ddm
+bDN
+bzp
+bGA
bGD
-bGD
-bGD
-bGD
-bGD
-bGD
-bVn
-bVn
-bWC
-bWX
-bWD
-bWD
-bWx
-bZl
-bZA
-bZV
-cau
-caO
-cbf
-cbx
-cap
-ccm
-ccA
-cap
-aXo
-aXo
-aXo
-bhP
-bhP
-bhP
-bhP
-cdN
-cdN
-cdN
-cdN
-cdN
-ceu
-ceM
-cfm
-cfm
-cfm
-cgP
-cfm
-cfm
-cfm
-cjm
-ceu
-ckG
-cln
-clR
-ceu
-cnC
-cgh
-cpv
-cKF
-crr
-csm
-ctj
-ctH
-cuw
-cqk
-cvw
-cwt
-cxl
-cyb
-cyb
-cyb
-cyb
-cAP
-cAP
-cAP
-cBD
-cBg
-cBg
-cCz
-cAP
-cAP
-cTC
-cEW
-cgw
-cdU
+bJz
+bKw
+bLJ
+bLJ
+bOc
+bPh
+bGy
+bGy
+bGy
+bGy
+bGy
+bGy
+bUN
+bUN
+bVR
+bWl
+bVS
+bVS
+bVM
+bYz
+bYO
+bZj
+bZI
+cac
+cat
+caL
+bZD
+cbA
+cbO
+bZD
+aXn
+aXn
+aXn
+bhO
+bhO
+bhO
+bhO
+cdb
+cdb
+cdb
+cdb
+cdb
cdI
+cea
+ceA
+ceA
+ceA
+cgd
+ceA
+ceA
+ceA
+ciA
+cdI
+cjU
+ckB
+clf
+cdI
+cmP
+cfv
+coI
+cJR
+cqE
+crz
+csw
+csU
+ctJ
+cpx
+cuB
+cvw
+cuh
+cxo
+cxo
+cxo
+cxo
+cAc
+cAc
+cAc
+cAQ
+cAt
+cAt
+cBM
+cAc
+cAc
+cSM
+dkj
+djR
+djG
+ccW
aaa
aaa
aaa
@@ -111059,194 +108561,194 @@ abW
abW
abW
afd
-cWr
-cWw
-cWw
-cWC
+cVB
+cVG
+cVG
+cVM
afd
amh
amZ
anQ
alm
amh
-aqC
+aqB
anQ
alm
-cWM
+cVW
alm
amh
-auz
+auy
anQ
alm
amh
-azp
+azo
anQ
afd
-aCM
-aDY
-aFG
-aEh
-cHT
-aEh
-cIa
-cIh
-aGQ
-cIr
-aEh
-aOF
-aQa
-aQS
-cIL
-aep
-aep
-afc
-aUs
-aUX
-aVm
-aVz
-aVN
-aWf
-aWf
-aWf
+aCL
+aDX
+aFF
+aEg
+cHg
+aEg
+cHn
+cHu
+aGP
+cHE
+aEg
+aOE
+aPZ
+aQR
+cHY
+dhs
+dhs
+dhw
+aUr
+aUW
+aVl
+aVy
+aVM
+aWe
+aWe
+aWe
abC
abC
abC
abC
-aXb
+aXa
abC
aaa
aaa
aaa
aaa
-aXo
-aXs
-aXs
-aXs
-aXM
-aYD
-aZe
-aZG
-aXM
-baG
-bbj
-bbJ
-bcu
-bbl
-bdZ
-baG
-bfM
-bgW
-bhI
-biC
-bjv
-bku
-bhK
-bhK
-cUG
-boR
-aYW
-brK
-bzr
-byq
-bwd
-bxn
-ddQ
-ddY
+aXn
+aXr
+aXr
+aXr
+dif
+aYC
+aZd
+aZF
+dif
+baF
+bbi
+bbI
+bct
+bbk
+bdY
+baF
+bfL
+bgV
+bhH
+biB
+bju
+bkt
+bhJ
+bhJ
+cTQ
+boQ
+aYV
+brJ
+bzp
byp
-det
-bzm
-bDS
-bzr
-bGG
-bIj
-bJF
-bKD
-bLR
-bNo
-bOn
-bPt
+bwc
+bxm
+dcP
+dcX
+byo
+ddj
+bzl
+bDO
+bzp
+bGB
+bIe
+bJA
+bKx
+bLK
+bNg
+bOd
+bPi
+bGy
+bRn
+bSi
bGD
-bRC
-bSA
-bGI
-bSA
-bRC
-bVn
-bVX
-bWy
-bWY
-bWD
-bWD
-bWy
-bWY
-bZE
-bZW
-cap
-cap
-cap
-cap
-cap
-cGv
-cap
-cap
-aXo
-aXo
-aXo
-bhP
-bhP
-bhP
-bhP
-cdN
-cdN
-cdN
-cdN
-cdN
-ceu
-ceM
-cfm
-cfm
-cSj
-cgQ
-cSr
-cfm
-cfm
-cjm
-cjT
-ckH
-clo
-clS
-cmF
-cnD
-coF
-cpt
-cKF
-crs
-csn
-ctk
-ctI
-cux
-cqk
-cvo
-cwj
-cxk
-cyb
-cyU
-czH
-cAn
-cAQ
-cBh
-cBr
-cBE
-cBU
-cCp
-cCA
-cCN
-cAP
-cTC
-chK
-cdq
-cdU
+bSi
+bRn
+bUN
+bVm
+bVN
+bWm
+bVS
+bVS
+bVN
+bWm
+bYS
+bZk
+bZD
+bZD
+bZD
+bZD
+bZD
+cFI
+bZD
+bZD
+aXn
+aXn
+aXn
+bhO
+bhO
+bhO
+bhO
+cdb
+cdb
+cdb
+cdb
+cdb
cdI
+cea
+ceA
+ceA
+cRt
+cge
+cRB
+ceA
+ceA
+ciA
+cjh
+cjV
+ckC
+clg
+clT
+cmQ
+cnS
+coG
+cJR
+cqF
+crA
+csx
+csV
+ctK
+cpx
+cuB
+cvw
+cwx
+cxo
+cyh
+cyU
+czA
+cAd
+cAu
+cAE
+cAR
+cBh
+cBC
+cBN
+cCa
+cAc
+cSM
+djA
+djW
+djG
+ccW
aaa
aaa
aaa
@@ -111316,10 +108818,10 @@ acH
abW
abW
afd
-cWs
-cWx
-cWB
-cWC
+cVC
+cVH
+cVL
+cVM
afd
ami
amS
@@ -111329,7 +108831,7 @@ ami
amS
anR
alm
-cWN
+cVX
alm
ami
amS
@@ -111339,171 +108841,171 @@ ami
amS
anR
afd
-aCR
-aDY
-aFH
+aCQ
+aDX
+aFG
+aGO
+cHh
+cHk
+aJY
aGP
-cHU
-cHX
-aJZ
-aGQ
-aGQ
-cIs
-cIx
-cIA
-aQf
-aRb
-cIL
-aep
-afH
-alw
-anh
-aUW
-aUW
+aGP
+cHF
+cHK
+cHN
+aQe
+aRa
+cHY
+dhs
+dhv
+dhE
+dht
aUV
-aUW
-aWf
+aUV
+aUU
+aUV
+aWe
abW
aaa
aaa
aaa
aaa
abC
-aXb
+aXa
abC
aaa
aaa
aaa
aaa
-aXo
-aXs
-aXs
-aXs
-aXM
-aXL
-aXZ
-aZa
-aXM
-baG
-bbk
-bbK
-bcv
-bdi
-bdi
-beR
-bfN
-bgX
+aXn
+aXr
+aXr
+aXr
+dif
+dih
+aXY
+aYZ
+dif
+baF
+bbj
+bbJ
+bcu
+bdh
+bdh
+beQ
+bfM
+bgW
+bhI
+biC
+bjv
+bku
+bld
bhJ
-biD
-bjw
-bkv
-ble
-bhK
-baG
-boS
-bqm
-brL
-bzr
-ddr
-ddr
-bxo
-ddR
-dee
-bAs
-cUH
-bCE
-deF
-bzr
-bGH
-bIi
-bJF
-bKD
-bLS
-bNp
-bOo
-bPt
+baF
+boR
+bql
+brK
+bzp
+dcz
+dcz
+bxn
+dcQ
+dda
+bAq
+cTR
+bCB
+ddq
+bzp
+bGC
+bId
+bJA
+bKx
+bLL
+bNh
+bOe
+bPi
+bGy
bGD
-bGI
-bSA
-bTo
-bSA
-bGI
+bSi
+bST
+bSi
+bGD
+bUN
bVn
-bVY
-bWD
-bWD
-bWD
-bWD
-bWD
-bWD
-bVY
-bZX
-cav
-cav
-cav
+bVS
+bVS
+bVS
+bVS
+bVS
+bVS
bVn
-cap
-ccn
-cap
-aXM
-aXo
+bZl
+bZJ
+bZJ
+bZJ
+bUN
+bZD
+cbB
+bZD
+diB
+aXn
aaa
-bhP
-bhP
-bhP
-bhP
-bhP
-cdN
-cdN
-cdN
-cdN
-cdN
-ceu
-ceM
-cfm
-cfm
-cfm
-cgR
-cfm
-cfm
-cfm
-cjm
-ceu
-ckI
-clp
-clT
-cmG
-cnE
-coG
-cpm
-cql
-crt
-cso
-ctl
-ctJ
-cuy
-cuV
-cvB
-cwu
-cxn
-cyb
-cyU
-czH
-cAo
-cyb
-cBi
-cBs
-cBF
-cBV
-cCq
-cCB
-cBi
-cyb
-cDi
-cyA
-cgv
-cdU
+bhO
+bhO
+bhO
+bhO
+bhO
+cdb
+cdb
+cdb
+cdb
+cdb
cdI
+cea
+ceA
+ceA
+ceA
+cgf
+ceA
+ceA
+ceA
+ciA
+cdI
+cjW
+ckD
+clh
+clU
+cmR
+cnT
+coz
+cpy
+cqG
+crB
+csy
+csW
+ctL
+cui
+cuO
+cvH
+cwA
+cxo
+cyh
+cyU
+czB
+cxo
+cAv
+cAF
+cAS
+cBi
+cBD
+cBO
+cAv
+cxo
+cCv
+cxN
+djz
+djG
+ccW
aaa
aaa
aaa
@@ -111573,50 +109075,50 @@ acH
abW
abW
afd
-cWt
-cWy
-cWy
-cWD
+cVD
+cVI
+cVI
+cVN
afd
amj
ana
amS
alm
-apH
+apG
amS
amS
alm
-cWN
+cVX
alm
-atw
+atv
amS
amS
alm
-axR
+axQ
amS
amS
afd
-aCS
-cHM
-aJY
-aJY
-aHS
-aIV
+aCR
+cGZ
+aJX
+aJX
aHR
-aJY
-aJY
-aMM
-cIy
-cIC
-aQe
-aRa
-cIM
-aep
-afc
-aos
-aoU
-aep
-adP
+aIU
+aHQ
+aJX
+aJX
+aML
+cHL
+cHP
+aQd
+aQZ
+cHZ
+dhs
+dhw
+dhF
+dhG
+dhs
+dhr
abW
abW
abW
@@ -111626,141 +109128,141 @@ aaa
aaa
aaa
abC
-aXb
+aXa
abC
aaa
aaa
aaa
aaa
-aXo
-aXo
-aXo
-aXo
-aXo
-aXM
-aXZ
-aZa
-bad
-baH
-bbl
-bbl
-bcw
-bdj
-bea
+aXn
+aXn
+aXn
+aXn
+aXn
+dif
+aXY
+aYZ
+bac
baG
-bfO
-bgY
-bhK
-bhK
-bhK
-bhK
-bhK
-bmm
-baG
-boR
-aYW
-brM
-bzr
-bte
-bwe
-bxp
-ddS
-bte
-bAt
-bwe
-bwe
-bte
-bzr
-bGI
-cHo
-bJF
-bKD
-bLS
-bNq
-bOp
-bPu
+bbk
+bbk
+bcv
+bdi
+bdZ
+baF
+bfN
+bgX
+bhJ
+bhJ
+bhJ
+bhJ
+bhJ
+bml
+baF
+boQ
+aYV
+brL
+bzp
+btd
+bwd
+bxo
+dcR
+btd
+bAr
+bwd
+bwd
+btd
+bzp
bGD
-bGI
-bSB
-bGI
-bGI
-bGI
+cGB
+bJA
+bKx
+bLL
+bNi
+bOf
+bPj
+bGy
+bGD
+bSj
+bGD
+bGD
+bGD
+bUN
+bVo
+bVS
+bWp
+bWp
+bWp
+bWp
+bVS
bVn
-bVZ
-bWD
-bXb
-bXb
-bXb
-bXb
-bWD
-bVY
-bZX
-cav
-cav
-cav
-bVn
-cGu
-aXZ
-aYC
-aXN
-aXo
+bZl
+bZJ
+bZJ
+bZJ
+bUN
+cFH
+diE
+diM
+dix
+aXn
aaa
aaa
aaa
aaa
aaa
aaa
-cdN
-cdN
-cdN
-cdN
-cdN
-ceu
-ceM
-cfm
-cfm
-cfm
-cfm
-cfm
-cfm
-cfm
-cjm
-cjS
-ckJ
-clq
-clU
-ceu
-cnF
-cgh
-cpm
-cql
-cru
-csp
-ctm
-ctK
-cuz
-cuW
-cvy
-cwj
-cuU
-cyb
-cyV
-czI
-cAp
-cAR
-cAp
-cAp
-cAp
-cBW
-cAq
-cCC
-cAq
-cyb
-cDi
-ctU
-cgv
-cdU
+cdb
+cdb
+cdb
+cdb
+cdb
cdI
+cea
+ceA
+ceA
+ceA
+ceA
+ceA
+ceA
+ceA
+ciA
+cjg
+cjX
+ckE
+cli
+cdI
+cmS
+cfv
+coz
+cpy
+cqH
+crC
+csz
+csX
+ctM
+csz
+cuL
+cvw
+cuh
+cxo
+cyi
+cyV
+czC
+cAe
+czC
+czC
+czC
+cBj
+czD
+cBP
+czD
+cxo
+cCv
+djM
+djz
+djG
+ccW
aaa
aaa
aaa
@@ -111830,49 +109332,49 @@ acH
abW
abW
afd
-cWu
-cWs
-cWs
+cVE
+cVC
+cVC
ahc
afd
amk
anb
anS
alm
-apI
+apH
anb
-arx
+arw
alm
aiy
alm
-atx
+atw
anb
-avN
+avM
alm
-axS
+axR
anb
-aAH
+aAG
afd
-aCT
-aEg
-aFI
-aGS
-aHT
-cHX
-cIb
-cIi
-cIm
-cIt
-cIx
-cIA
-aQa
-aRc
-cIL
-adP
-aoX
-anh
-aep
-aep
+aCS
+aEf
+aFH
+aGR
+aHS
+cHk
+cHo
+cHv
+cHz
+cHG
+cHK
+cHN
+aPZ
+aRb
+cHY
+dhr
+dhx
+dht
+dhs
+dhs
abW
abW
abW
@@ -111883,7 +109385,7 @@ aaa
aaa
aaa
abC
-aXb
+aXa
abC
aaa
aaa
@@ -111891,76 +109393,76 @@ aaa
aaa
aaa
aaa
-aXB
-aXs
-aXs
-aXN
+aXA
+aXr
+aXr
aXM
-aZe
-aZG
-baG
-baG
-baG
-baG
-baG
-baG
-baG
-bfP
-bgZ
-bhL
-biE
-bjx
-bkw
-blf
-bmn
-baG
-boR
-aYW
-brK
-bzr
-buC
-ddy
-bxq
-ddT
-ddV
-bAu
-ddG
-ddV
-bDT
-bzr
-bGJ
-bGI
-bJE
-bKD
-bIh
-bIh
-bIh
-bIh
-bQA
-bRD
-bSC
-bTp
-bSC
-bRD
+dif
+aZd
+aZF
+baF
+baF
+baF
+baF
+baF
+baF
+baF
+bfO
+bgY
+bhK
+biD
+bjw
+bkv
+ble
+bmm
+baF
+boQ
+aYV
+brJ
+bzp
+buB
+dcE
+bxp
+dcS
+dcU
+bAs
+dcJ
+dcU
+bDP
+bzp
+bGE
+bGD
+bJz
+bKx
+bIc
+bIc
+bIc
+bIc
+bQm
+bRo
+bSk
+bSU
+bSk
+bRo
+bUN
bVn
-bVY
-bWD
-bXb
-bWD
-bYg
-bXb
-bWD
-bVY
-bZY
-bVY
-bVY
-bVY
+bVS
+bWp
+bVS
+bXu
+bWp
+bVS
bVn
-cco
-aXZ
-aXN
-aXN
-aXo
+bZm
+bVn
+bVn
+bVn
+bUN
+cbC
+diE
+dix
+dix
+aXn
aaa
aaa
aaa
@@ -111970,54 +109472,54 @@ aaa
aaa
aaa
aaa
-cdN
-cdN
-ceu
-ceM
-cfm
-cfm
-cfm
-cfm
-cfm
-cfm
-cfm
-cjm
-cjS
-ckJ
-clr
-clV
-ceu
-cnw
-cgh
-cpm
-cqm
-crv
-csq
-ctn
-ctL
-cuA
-cuX
-crp
-cwv
-cxo
-cyb
-cyW
-czJ
-cHJ
-cAq
-cAq
-cBt
-cAq
-cAq
-cHJ
-cCD
-cCO
-cyb
-cTC
-ctU
-cgw
-cdq
+cdb
+cdb
cdI
+cea
+ceA
+ceA
+ceA
+ceA
+ceA
+ceA
+ceA
+ciA
+cjg
+cjX
+ckF
+clj
+cdI
+cmJ
+cfv
+coz
+cpz
+cqI
+crD
+csA
+csY
+ctN
+cuk
+cqC
+cvI
+cwB
+cxo
+cyj
+cyW
+cGW
+czD
+czD
+cAG
+czD
+czD
+cGW
+cBQ
+cCb
+cxo
+cSM
+djM
+djR
+djW
+ccW
aaa
aaa
aaa
@@ -112100,7 +109602,7 @@ afd
afd
afd
afd
-cWO
+cVY
afd
afd
afd
@@ -112110,114 +109612,114 @@ afd
afd
afd
afd
-aCU
-aEh
-aFJ
-aEh
-aEh
-aEh
-aEh
-aFJ
-aEh
-aEh
-aEh
-cID
-aQa
-aQS
-cIL
-adP
-aTz
-anh
-aep
-aep
+aCT
+aEg
+aFI
+aEg
+aEg
+aEg
+aEg
+aFI
+aEg
+aEg
+aEg
+cHQ
+aPZ
+aQR
+cHY
+dhr
+dhy
+dht
+dhs
+dhs
abW
abW
abW
abW
aaa
-aWF
-aWF
-aWF
-aWF
-aWF
-aXb
-aWF
-aWF
-aWF
-aWF
-aWF
+aWE
+aWE
+aWE
+aWE
+aWE
+aXa
+aWE
+aWE
+aWE
+aWE
+aWE
aaa
aaa
-aXo
-aXs
-aXs
-aXs
-aXM
-aZH
-bae
-baI
-baI
-bbL
+aXn
+aXr
+aXr
+aXr
+dif
aZG
-aYC
-aXM
-baG
-baG
-baG
-baG
-baG
-baG
-baG
-baG
-bmo
-baG
-boR
-aYW
-brN
-bzr
-buD
-bwg
-bxr
-ddU
+bad
+baH
+baH
+bbK
+aZF
+aYB
+dif
+baF
+baF
+baF
+baF
+baF
+baF
+baF
+baF
+bmn
+baF
+boQ
+aYV
+brM
bzp
-dek
-bBG
-bwg
-ddG
-bzr
-bGK
-bIk
-bJG
-bKD
-bLT
-bNr
-bOq
-bPv
-bQB
-bGL
-bGL
-bGL
-bGL
-bGL
-bVo
-bWa
-bWE
-bWD
-bXx
-bWD
-bWD
-bWE
-bVY
-bZX
-cav
-cav
-cbg
+buC
+bwf
+bxq
+dcT
+bzn
+dde
+bBD
+bwf
+dcJ
+bzp
+bGF
+bIf
+bJB
+bKx
+bLM
+bNj
+bOg
+bPk
+bQn
+bGG
+bGG
+bGG
+bGG
+bGG
+bUO
+bVp
+bVT
+bVS
+bWL
+bVS
+bVS
+bVT
bVn
-bAw
-aXZ
-aXM
-aXM
-aXo
+bZl
+bZJ
+bZJ
+cau
+bUN
+div
+diE
+diB
+diB
+aXn
aaa
aaa
aaa
@@ -112229,52 +109731,52 @@ aaa
aaa
aaa
aaa
-ceu
-ceN
-cfn
-cfn
-cfn
-cfn
-cfn
-cfn
-cfn
-cjn
-ceu
-ckK
-cls
-clW
-ceu
-cnw
-cgh
-cpm
-cqn
-crw
-csq
-csq
-ctM
-cuB
-cqk
-cvo
-cww
-cxp
-cyb
-cyW
-czJ
-cAq
-cAq
-cAq
-cAq
-cAq
-cAq
-cAq
-cAq
-cAq
-cDa
-cDj
-chK
-cdq
-cdM
cdI
+ceb
+ceB
+ceB
+ceB
+ceB
+ceB
+ceB
+ceB
+ciB
+cdI
+cjY
+ckG
+clk
+cdI
+cmJ
+cfv
+coz
+cpA
+cqJ
+crD
+crD
+csZ
+ctO
+cpx
+cuB
+cvJ
+cwC
+cxo
+cyj
+cyW
+czD
+czD
+czD
+czD
+czD
+czD
+czD
+czD
+czD
+cCn
+cCw
+djA
+djW
+cda
+ccW
aaa
aaa
aaa
@@ -112364,116 +109866,116 @@ adP
adP
adP
adP
-azq
-aAI
-aBy
-aCV
-aEi
-aFK
-aGT
-azq
-aIZ
-cIc
-aIZ
-aIZ
-aIZ
-aKq
-aOG
-aQa
-aQS
-cIL
-adP
-aTA
-anh
-aep
-aep
+azp
+aAH
+aBx
+aCU
+aEh
+aFJ
+aGS
+azp
+aIY
+cHp
+aIY
+aIY
+aIY
+aKp
+aOF
+aPZ
+aQR
+cHY
+dhr
+dhz
+dht
+dhs
+dhs
abW
abW
aaa
aaa
aaa
-aWG
-aWG
-aWG
-aWG
-aWG
-aXc
-aXj
-aXj
-aXj
-aXj
-aXj
+aWF
+aWF
+aWF
+aWF
+aWF
+aXb
+aXi
+aXi
+aXi
+aXi
+aXi
aaa
aaa
-aXo
-aXs
-aXs
-aXs
-aXM
-aXw
-baf
-aXZ
-aXZ
-aXZ
-aZe
-baI
-baI
-baI
-bfQ
-bha
-bhM
-biF
-bjy
-bkx
-blg
-bmp
-bnM
-boT
-bqf
-brO
-bzr
-buE
-ddz
-ddG
-ddV
-ddG
-del
-ddV
-deC
-ddV
-bzr
-bQB
-bGL
-bGL
-bKE
-bGL
-bGL
-bGL
-bGL
-bQC
-aXM
-aXN
-aXN
-aXN
-aXM
-bVp
-bWb
-bWb
-bWb
-bWb
-bWb
-bWb
-bWb
-bWb
-bZZ
-bVn
-bVn
-bVn
-bVn
-bAw
-bDI
-aXw
-aXo
+aXn
+aXr
+aXr
+aXr
+dif
+dig
+bae
+aXY
+aXY
+aXY
+aZd
+baH
+baH
+baH
+bfP
+bgZ
+bhL
+biE
+bjx
+bkw
+blf
+bmo
+bnL
+boS
+bqe
+brN
+bzp
+buD
+dcF
+dcJ
+dcU
+dcJ
+ddf
+dcU
+ddn
+dcU
+bzp
+bQn
+bGG
+bGG
+bKy
+bGG
+bGG
+bGG
+bGG
+bQo
+diB
+dix
+dix
+dix
+diB
+bUP
+bVq
+bVq
+bVq
+bVq
+bVq
+bVq
+bVq
+bVq
+bZn
+bUN
+bUN
+bUN
+bUN
+div
+diS
+diI
+aXn
aaa
aaa
aaa
@@ -112486,52 +109988,52 @@ aaa
aaa
aaa
aaa
-ceu
-ceu
-ceu
-ceu
-ceu
-ceu
-ceu
-ceu
-ceu
-ceu
-ceu
-ceu
-ceu
-ceu
-ceu
-cHD
-cHE
-cHF
-cKF
-crx
-csr
-cto
-ctN
-cuC
-cqk
-cvC
-cwx
-cxq
-cyb
-cyW
-czK
-cAr
-cAS
-cBj
-cAS
-cAS
-cAS
-cCr
-cCE
-cCP
-cyb
-cDk
-chK
-cUa
-cdM
cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+cGQ
+cGR
+cGS
+cJR
+cqK
+crE
+csB
+cta
+ctP
+cpx
+cuP
+cvK
+cwD
+cxo
+cyj
+cyX
+czE
+cAf
+cAw
+cAf
+cAf
+cAf
+cBE
+cBR
+cCc
+cxo
+cCx
+djA
+cTk
+cda
+ccW
aaa
aaa
aaa
@@ -112610,127 +110112,127 @@ agk
ahP
agk
agl
-cWG
+cVQ
agl
aix
ajp
-cWP
+cVZ
agk
adP
adP
adP
adP
adP
-azq
-aAJ
-aBz
-aCW
-aEj
-aFL
-aGU
-aHU
-aIW
+azp
+aAI
+aBy
+aCV
+aEi
+aFK
+aGT
+aHT
+aIV
+aIX
+aIX
aIY
-aIY
-aIZ
-aMN
-aKq
-aOH
-aQg
-cHb
-cIL
-aep
-ans
-axU
-afE
-aep
-adP
+aMM
+aKp
+aOG
+aQf
+cGo
+cHY
+dhs
+dhA
+axT
+dhH
+dhs
+dhr
abW
aaa
aaa
aaa
-aWH
-aWH
-aWH
-aWH
-aWH
-aXd
-aWH
-aWH
-aWH
-aWH
-aWH
+aWG
+aWG
+aWG
+aWG
+aWG
+aXc
+aWG
+aWG
+aWG
+aWG
+aWG
aaa
aaa
aaa
-aXo
-aXs
-aXs
-aXs
-aXN
+aXn
+aXr
+aXr
+aXr
aXM
-aXM
-aXL
-aXZ
-bcx
-aZH
-aXZ
-aXZ
-bad
-bhb
-bhN
-biG
-bjz
-bky
-aXL
-bmq
-aXL
-boU
-aZY
-brP
-cJM
-buF
-btk
-bxs
-byr
-bzq
-btk
-btk
-btk
-btk
-bEX
-dei
-bTq
-aXZ
-bCG
-bip
-bNs
-bip
-bPw
-aYa
-aZF
-aXN
-aXN
-aXN
-aXN
-bCG
-bip
-bip
-bip
-bXy
-bip
-bip
-bZm
-bip
-bJH
-bip
-bip
-bip
-cby
-bAy
-bCH
-aXN
-aXo
+dif
+dif
+dih
+aXY
+bcw
+aZG
+aXY
+aXY
+bac
+bha
+bhM
+biF
+bjy
+bkx
+dih
+bmp
+dih
+boT
+aZX
+brO
+cIZ
+buE
+btj
+bxr
+byq
+bzo
+btj
+btj
+btj
+btj
+bES
+ddc
+bSV
+diE
+diF
+diy
+bNk
+diy
+diG
+diH
+diD
+dix
+dix
+dix
+dix
+diA
+diy
+diy
+diy
+bWM
+diy
+diy
+bYA
+diy
+bJC
+diy
+diy
+diy
+caM
+diw
+bCD
+dix
+aXn
aaa
aad
aaa
@@ -112744,51 +110246,51 @@ aad
aaa
aaa
abC
-cdI
-cdI
-cdM
-cdM
-cdM
-cdM
-cdI
-cdI
-cdI
-cdI
-cdI
-cdM
-cdM
-cfI
-cnw
-cgh
+ccW
+ccW
+cda
+cda
+cda
+cda
+ccW
+ccW
+ccW
+ccW
+ccW
+cda
+cda
+ceW
+cmJ
+cfv
+coJ
+cJR
+cpx
+cpx
+cpx
+cpx
+cpx
+cpx
cpw
-cKF
-cqk
-cqk
-cqk
-cqk
-cqk
-cqk
-cqj
-cwy
-cxr
-cqj
-cyX
-czL
-cqj
-cAT
+cvL
+cwE
+cpw
+cyk
+cyY
+cpw
+cAg
+cAx
+cAH
+czD
cBk
-cBu
-cAq
-cBX
-cCs
-cCF
-cCQ
-cyb
-cTC
-chK
-cgw
-cdM
-cdI
+cBF
+cBS
+cCd
+cxo
+cSM
+djA
+djR
+cda
+ccW
aaa
aaa
aaa
@@ -112869,7 +110371,7 @@ akj
aml
aiy
agl
-cWJ
+cVT
agk
agk
agk
@@ -112878,30 +110380,30 @@ adP
adP
adP
adP
-azq
-aAK
-aBA
-aCX
-aEk
-aFM
-aGV
-aHV
-aIX
-aIX
-aIX
-aLN
-aMO
-aKq
-aOC
-aQa
-aQS
-cIL
-aep
-afc
-anh
-afc
-aep
-adP
+azp
+aAJ
+aBz
+aCW
+aEj
+aFL
+aGU
+aHU
+aIW
+aIW
+aIW
+aLM
+aMN
+aKp
+aOB
+aPZ
+aQR
+cHY
+dhs
+dhw
+dht
+dhw
+dhs
+dhr
abW
aaa
aaa
@@ -112911,7 +110413,7 @@ abC
abC
abC
abC
-aqV
+did
abC
abC
abC
@@ -112920,75 +110422,75 @@ abC
aaa
aaa
aaa
-aXo
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXN
-aXN
-aXM
-aXL
+aXn
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
aXM
aXM
-aXM
-aXL
-bhO
-biH
-bjA
-bkz
-aXL
-bmr
-aXL
-boV
-aZY
-brQ
-btl
-buG
-caE
-cak
-bys
-deh
-bAv
-aXN
-bCG
-deH
-bip
-deJ
-bip
-bip
-bAy
-aXZ
-aZH
-aXZ
-bPx
-bip
-bip
-bip
-bip
-bip
-bJH
-bAy
-aXZ
-aZH
-aXY
-aYC
-aZF
-aXN
-aXw
-aXN
-boB
-aXZ
-bTq
-aZH
-cbz
-aXM
-aXM
-aXN
-aXs
-aXo
+dif
+dih
+dif
+dif
+dif
+dih
+bhN
+biG
+bjz
+bky
+dih
+bmq
+dih
+boU
+aZX
+brP
+btk
+buF
+bZS
+bZy
+byr
+ddb
+bAt
+dix
+diA
+ddr
+diy
+dds
+diy
+diy
+diw
+diE
+diz
+diE
+bPm
+diy
+diy
+diy
+diy
+diy
+bJC
+diw
+diE
+diz
+diK
+diM
+diD
+dix
+diI
+dix
+diO
+diE
+bSV
+diz
+caN
+diB
+diB
+dix
+aXr
+aXn
aaa
aaa
aaa
@@ -113003,49 +110505,49 @@ aaa
abC
aaa
aaa
-cdI
-cdI
-cfN
-cfN
-cfN
-cfN
-cfN
-cdI
-cdI
-cdI
-cdM
-cGA
-cnG
-coB
-cpl
-cKr
-che
-css
-chc
-ctO
-cuD
-cqj
-cvD
-cwz
-cxs
-cyc
-cyY
-czM
-cqj
-cqj
-cyb
-cyb
-cBG
-cyb
-cyb
-cyb
-cCR
-cyb
-cDl
-chK
-cgw
-cdM
-cdI
+ccW
+ccW
+cfb
+cfb
+cfb
+cfb
+cfb
+ccW
+ccW
+ccW
+cda
+cFN
+cmT
+cnO
+coy
+cJD
+djy
+crF
+djN
+ctb
+ctQ
+cpw
+cuQ
+cvM
+cwF
+cxp
+cyl
+cyZ
+cpw
+cpw
+cxo
+cxo
+cAT
+cxo
+cxo
+cxo
+cCe
+cxo
+cCy
+djA
+djR
+cda
+ccW
aaa
aaa
aaa
@@ -113124,7 +110626,7 @@ agk
alr
aml
anc
-cWH
+cVR
ajp
aki
agl
@@ -113133,119 +110635,119 @@ afE
afE
afH
afH
-awW
+awV
afE
-cFs
-aAL
-aBB
+cEF
+aAK
+aBA
+aCX
aCY
-aCZ
-aFN
-aGW
-aHU
-aIY
-aIY
-cGY
-aLO
-aMP
-aKq
-aOI
-aQa
-aRe
-cIL
-aep
-aep
-anh
-afc
-aep
-adP
+aFM
+aGV
+aHT
+aIX
+aIX
+cGl
+aLN
+aMO
+aKp
+aOH
+aPZ
+aRd
+cHY
+dhs
+dhs
+dht
+dhw
+dhs
+dhr
abW
aaa
aaa
aaa
-aWF
-aWF
-aWF
-aWF
-aWF
-aqV
-aWF
-aWF
-aWF
-aWF
-aWF
+aWE
+aWE
+aWE
+aWE
+aWE
+did
+aWE
+aWE
+aWE
+aWE
+aWE
aaa
aaa
aaa
-aXo
-aXo
-aXo
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXo
-aXs
-aXs
-aXs
-aXN
-aXL
-aXL
-aXL
-aXL
-aXL
-aXL
-bms
-aXL
-boW
-aYA
+aXn
+aXn
+aXn
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXn
+aXr
+aXr
+aXr
+aXM
+dih
+dih
+dih
+dih
+dih
+dih
+bmr
+dih
+boV
aYz
-aXL
-buH
-bcX
-cak
-byt
-cak
-bAx
-bip
-bAy
-aZF
-aXM
-aXL
-bIl
-bIl
-bIl
-bIl
-aXL
-aXM
-bPy
-aXM
-bRE
-aXZ
-bTq
-aXZ
-aXZ
-aXZ
-aXN
-aXL
-bXc
-aXL
-aXN
-aXN
-aXN
-bYN
-bYN
-bYN
-bYN
-bYN
-cbA
-bYN
-aXo
-aXs
-aXs
-aXo
+aYy
+dis
+buG
+dit
+bZy
+bys
+bZy
+bAv
+diy
+diw
+diD
+diB
+dis
+bIg
+bIg
+bIg
+bIg
+dis
+diB
+bPn
+diB
+bRp
+diE
+bSV
+diE
+diE
+diE
+dix
+dis
+bWq
+dis
+dix
+dix
+dix
+bYb
+bYb
+bYb
+bYb
+bYb
+caO
+bYb
+aXn
+aXr
+aXr
+aXn
aaa
aaa
aaa
@@ -113261,48 +110763,48 @@ abC
aaa
aaa
aaa
-cdI
-cfN
-chq
-cig
-ciE
-cfN
-cfN
-cfN
-cfN
-cfN
-cfN
-cnw
-cgh
-cpl
-cKq
-cry
-cst
-cSR
-ctP
-cuE
-cqj
-cvE
-cwA
-csj
-cyd
-cyZ
-cuU
-cqj
-cdU
-cdU
-cyb
-cGP
-cBY
+ccW
+cfb
+cgE
+chu
+chS
+cfb
+cfb
+cfb
+cfb
+cfb
+cfb
+cmJ
+cfv
+coy
+cJC
+cqL
+crG
+cSb
+ctc
+ctR
+cpw
+cuR
+cvN
+crw
+cxq
+cym
+cuh
+cpw
+djG
+djG
+cxo
+cGc
+cBl
+cAO
+cAO
+cCf
cBB
-cBB
-cCS
-cCo
-cDm
-cyA
-cgv
-cdM
-cdI
+cCz
+cxN
+djz
+cda
+ccW
aaa
aaa
aaa
@@ -113386,123 +110888,123 @@ agm
afD
afD
afH
-ass
-aty
-auA
+asr
+atx
+auz
afE
-ajW
-axT
-azq
-aAM
-aBC
-aCZ
-aEl
-aCZ
-aCZ
-aHW
-aIZ
-aIZ
-aIZ
-aIZ
-aIZ
-aNL
-aOC
-aQa
-aQT
-cIL
-aep
-afc
-anh
-afc
-aep
-adP
+deN
+axS
+azp
+aAL
+aBB
+aCY
+aEk
+aCY
+aCY
+aHV
+aIY
+aIY
+aIY
+aIY
+aIY
+aNK
+aOB
+aPZ
+aQS
+cHY
+dhs
+dhw
+dht
+dhw
+dhs
+dhr
abW
aaa
aaa
aaa
-aWG
-aWG
-aWG
-aWG
-aWG
-aqV
-aXj
-aXj
-aXj
-aXj
-aXj
+aWF
+aWF
+aWF
+aWF
+aWF
+did
+aXi
+aXi
+aXi
+aXi
+aXi
aaa
aaa
aaa
-aXo
-aXo
-aXo
-aXs
-aXs
-aXs
-aXs
-aXs
-aXs
-aXo
-aXs
-aXs
-aXs
-aXs
-aXo
-aXo
-aXo
-aXo
-aXo
-aXL
-bmt
-bnN
-cJw
-cXw
-cXw
-cXH
-buI
-aXL
-ddH
-ddW
-dei
-bAw
-aZH
-bCH
-aXM
-aXM
-aXL
-bhP
-bhP
-bhP
-bhP
-aXL
-aXM
-aXM
-aXN
-aXw
-aXM
-aXM
-aXN
-aXN
-aXN
-aXN
-aXL
-cRR
-aXL
-aXo
-bYN
-bYN
-bYN
-caa
-caw
+aXn
+aXn
+aXn
+aXr
+aXr
+aXr
+aXr
+aXr
+aXr
+aXn
+aXr
+aXr
+aXr
+aXr
+aXn
+aXn
+aXn
+aXn
+aXn
+dih
+bms
+bnM
+cIJ
+cWG
+cWG
+cWR
+buH
+dis
+dcK
+dcV
+ddc
+div
+diz
+bCD
+diB
+diB
+dis
+bhO
+bhO
+bhO
+bhO
+dis
+diB
+diB
+dix
+diI
+diB
+diB
+dix
+dix
+dix
+dix
+dis
+cRb
+dis
+aXn
+bYb
+bYb
+bYb
+bZo
+bZK
+cad
+bZp
caP
-cab
-cbB
-bYN
-bYN
-aXs
-aXs
-aXo
+bYb
+bYb
+aXr
+aXr
+aXn
aaa
aaa
aad
@@ -113515,51 +111017,51 @@ aaa
aaa
aaa
abC
-cev
-cfo
-cfN
-cfN
-cgS
-chr
-cih
-ciF
-cfN
-cjU
-ckL
-clt
-clX
-cfN
-cnH
-coH
-cpx
-cqo
-crz
-csu
-ctp
-ctQ
-cip
-cqj
-cvF
-cwB
-cxt
-cye
-cuU
-czN
-cqj
-cdU
-cdU
-cyb
-cBH
-cGQ
-ctU
-cSq
-chM
-ctU
-ctU
-cTY
-cdU
-cdI
-cdI
+cdJ
+ceC
+cfb
+cfb
+cgg
+cgF
+chv
+chT
+cfb
+cji
+cjZ
+ckH
+cll
+cfb
+cmU
+cnU
+coK
+cpB
+cqM
+crH
+csC
+ctd
+djS
+cpw
+cuS
+cvO
+cwG
+cxr
+cuh
+cza
+cpw
+djG
+djG
+cxo
+cAU
+cGd
+djM
+djO
+djH
+djM
+djM
+cTi
+djG
+ccW
+ccW
aaa
aaa
aaa
@@ -113643,123 +111145,123 @@ ajr
afD
acH
afH
-axF
-atz
-axF
+dfq
+aty
+dfq
afE
-ajW
-cLA
-cFt
-aAL
-aBD
-aDa
+deN
+dfd
+cEG
+aAK
+aBC
aCZ
-aFO
-aGW
-aHU
+aCY
+aFN
+aGV
+aHT
+aIX
+aIX
+aIX
+aLO
aIY
-aIY
-aIY
-aLP
-aIZ
-aNM
-aOJ
-aQh
-aRf
-cIN
-aSB
-ahd
-aTX
-aUt
-aep
-adP
+aNL
+aOI
+aQg
+aRe
+cIa
+aSA
+dhB
+aTW
+aUs
+dhs
+dhr
akm
abC
abC
abC
-aWH
-aWH
-aWH
-aWH
-aWH
-aqV
-aWH
-aWH
-aWH
-aWH
-aWH
+aWG
+aWG
+aWG
+aWG
+aWG
+did
+aWG
+aWG
+aWG
+aWG
+aWG
abC
abC
abC
abC
abD
-aXo
-aXo
-aXo
-aXo
-aXo
-aXo
-aXo
-aXs
-aXs
-aXs
-aXs
-aXs
-aXo
-aXo
-bhP
-bhP
-bhP
-bhP
-aqV
-bnO
-cJw
-cXw
-cXw
-cXH
-buJ
-bwh
-bxt
-bcY
-bcY
-bAy
-aXL
-aXM
-aXM
-aXL
-aXL
-bhP
+aXn
+aXn
+aXn
+aXn
+aXn
+aXn
+aXn
+aXr
+aXr
+aXr
+aXr
+aXr
+aXn
+aXn
+bhO
+bhO
+bhO
+bhO
+aqU
+bnN
+cIJ
+cWG
+cWG
+cWR
+buI
+bwg
+bxs
+diu
+diu
+diw
+dis
+diB
+diB
+dis
+dis
+bhO
aaa
aaa
-bhP
-aXL
-aXL
-aXo
-aXs
-aXs
-aXo
-aXo
-aXs
-aXs
-aXs
-aXs
-aXL
-bXc
-aXL
-aXo
-bYN
-bZn
-bZF
-cab
-cae
-cae
-cab
-cbC
-cbX
-bYN
-aXs
-aXs
-aXo
+bhO
+dis
+dis
+aXn
+aXr
+aXr
+aXn
+aXn
+aXr
+aXr
+aXr
+aXr
+dis
+bWq
+dis
+aXn
+bYb
+bYB
+bYT
+bZp
+bZs
+bZs
+bZp
+caQ
+cbl
+bYb
+aXr
+aXr
+aXn
aaa
aaa
aaa
@@ -113771,52 +111273,52 @@ aaa
aaa
aaa
aaa
-cev
-ceO
-cfp
-cfN
-cgj
-cfN
-chs
-cih
-ciG
-cjo
-cjV
-cjV
-cjV
-cjV
-cmH
-cnI
-coF
-cpy
-cKq
-cgv
-csv
-ctq
-ctq
-ctq
-ctq
-cvG
-cqj
-cxu
-cyf
-cza
-cvG
-cvG
-cvG
-ctq
-ctq
-ctq
-cgv
-ckh
-cTR
-ckZ
-cdG
-cdU
-cdq
-cdq
-cdM
-cdI
+cdJ
+cec
+ceD
+cfb
+cfx
+cfb
+cgG
+chv
+chU
+ciC
+cjj
+cjj
+cjj
+cjj
+clV
+cmV
+cnS
+coL
+cJC
+djz
+crI
+csD
+csD
+csD
+csD
+cuT
+cpw
+cwH
+cxs
+cyn
+cuT
+cuT
+cuT
+csD
+csD
+csD
+djz
+cjv
+cTb
+dkb
+djE
+djG
+djW
+djW
+cda
+ccW
aaa
aaa
aaa
@@ -113900,36 +111402,36 @@ abW
abW
acH
afH
-ast
-axF
-cLP
-akn
-awX
-cLU
-cFt
-aAK
-aBE
-aDb
-aEm
-aFP
-aDb
-aHX
-aJa
-aJa
-aJa
-aLQ
-aMQ
-aNN
-aOK
-aQi
-cMX
-cIO
-aSC
-afc
-afH
-aep
-aep
-adP
+ass
+dfq
+cKZ
+dfz
+awW
+cLe
+cEG
+aAJ
+aBD
+aDa
+aEl
+aFO
+aDa
+aHW
+aIZ
+aIZ
+aIZ
+aLP
+aMP
+aNM
+aOJ
+aQh
+cMh
+cIb
+aSB
+dhw
+dhv
+dhs
+dhs
+dhr
abW
aaa
aaa
@@ -113939,7 +111441,7 @@ abC
abC
abC
abC
-aqV
+did
abC
abC
abC
@@ -113949,131 +111451,131 @@ aaa
aaa
aaa
aaa
-aVO
+aVN
aaa
aaa
aaa
aaa
aaa
-aXo
-aXo
-aXs
-aXs
-aXs
-aXs
-aXs
-aXo
-bhP
-aXB
+aXn
+aXn
+aXr
+aXr
+aXr
+aXr
+aXr
+aXn
+bhO
+aXA
aaa
aaa
aaa
-aqV
-bnO
-cJw
-cXw
-cXw
-cXH
-buK
-aXL
-aXo
-aXo
-aXo
-aXo
-aXo
-aXo
-aXo
-aXo
-bhP
+aqU
+bnN
+cIJ
+cWG
+cWG
+cWR
+buJ
+dis
+aXn
+aXn
+aXn
+aXn
+aXn
+aXn
+aXn
+aXn
+bhO
aaa
aaa
aaa
aaa
-bhP
-aXo
-aXo
-aXo
-aXo
-aXo
-aXo
-aXo
-aXo
-aXo
-aXo
-bhP
-bhP
-bhP
-aXo
-bYN
-bZo
-bYN
-cac
-caw
-caw
-bZn
-cbh
-cbY
-bYN
-aXs
-aXs
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+bhO
+aXn
+aXn
+aXn
+aXn
+aXn
+aXn
+aXn
+aXn
+aXn
+aXn
+bhO
+bhO
+bhO
+aXn
+bYb
+bYC
+bYb
+bZq
+bZK
+bZK
+bYB
+cav
+cbm
+bYb
+aXr
+aXr
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
-cew
-ceP
-cfq
-cfO
-cgk
-cfO
-cht
-cii
-cht
-cht
-cht
-cht
-cht
-cht
-cmI
-cnJ
-cgh
-cpl
-cKq
-crA
-csw
-ctq
-ctR
-cuF
-cuY
-cvH
-cwC
-cxv
-cyg
-cxz
-czO
-cAs
-ctR
-cuF
-cuY
-ctq
-cdU
-chP
-cdG
-cdG
-chf
-cdU
-cdM
-cdM
-cdM
-cdI
+cdK
+ced
+ceE
+cfc
+cfy
+cfc
+cgH
+chw
+cgH
+cgH
+cgH
+cgH
+cgH
+cgH
+clW
+cmW
+cfv
+coy
+cJC
+cqN
+crJ
+csD
+cte
+ctS
+cul
+cuU
+cvP
+cwI
+cxt
+cwM
+czb
+czF
+cte
+ctS
+cul
+csD
+djG
+dkf
+djE
+djE
+dke
+djG
+cda
+cda
+cda
+ccW
aaa
aaa
aaa
@@ -114150,91 +111652,91 @@ adP
adP
adP
adP
-aep
-aep
-aep
-aep
-aep
-aep
+deO
+deO
+deO
+deO
+deO
+deO
afH
afH
afH
afH
afH
-cLT
-cLA
-azq
-aAN
-aBF
-aDc
-aEn
-aFQ
-aGX
-aHU
-cGY
-aIY
-aIY
-aLR
-aMR
-aKq
-aOL
-aQa
-cMX
-cIL
-anh
-aep
-aep
-aep
-aep
+cLd
+dfd
+azp
+aAM
+aBE
+aDb
+aEm
+aFP
+aGW
+aHT
+cGl
+aIX
+aIX
+aLQ
+aMQ
+aKp
+aOK
+aPZ
+cMh
+cHY
+dht
+dhs
+dhs
+dhs
+dhs
abW
abW
aaa
aaa
aaa
-aWF
-aWF
-aWF
-aWF
-aWF
-aqV
-aWF
-aWF
-aWF
-aWF
-aWF
+aWE
+aWE
+aWE
+aWE
+aWE
+did
+aWE
+aWE
+aWE
+aWE
+aWE
aaa
aaa
aaa
-aVO
+aVN
aaa
aaa
aaa
aaa
aaa
aaa
-aXo
-aXo
-aXo
-aXo
-aXo
-aXo
-aXo
-aXo
+aXn
+aXn
+aXn
+aXn
+aXn
+aXn
+aXn
+aXn
aaa
abC
aaa
aaa
aaa
-aqV
-cXq
-cXs
-cXw
-cXw
-ddm
-dds
+aqU
+cWA
+cWC
+cWG
+cWG
+dcw
+dcA
aaa
-aXo
-aXo
+aXn
+aXn
aaa
aaa
aaa
@@ -114246,91 +111748,91 @@ aaa
aaa
aaa
aaa
-bhP
-bhP
-aXo
-aXo
-bhP
-bhP
-aXo
-aXo
-aXo
-aXo
-aXo
-bhP
-bhP
-bhP
-aXs
-bYN
-bYN
-bZG
-cad
-cax
-caQ
-cbh
+bhO
+bhO
+aXn
+aXn
+bhO
+bhO
+aXn
+aXn
+aXn
+aXn
+aXn
+bhO
+bhO
+bhO
+aXr
+bYb
+bYb
+bYU
+bZr
+bZL
cae
-cbZ
-bYN
-aXo
-aXo
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cav
+bZs
+cbn
+bYb
+aXn
+aXn
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
-cex
-ceQ
-cfr
-cfN
-cgl
-cfN
-chu
-cih
-cih
-cjp
-cih
-ckM
-clu
-clu
-cmJ
-cnK
-cgh
-cpz
-cKq
-chK
-chM
-ctq
+cdL
+cee
+ceF
+cfb
+cfz
+cfb
+cgI
+chv
+chv
+ciD
+chv
+cka
+ckI
+ckI
+clX
+cmX
+cfv
+coM
+cJC
+djA
+djH
+csD
+ctf
+ctT
+cul
+cuV
+cvQ
+cwJ
+cxu
+cwN
+czc
+czG
+cte
ctS
-cuG
-cuY
-cvI
-cwD
-cxw
-cyh
-cxA
-czP
-cAt
-ctR
-cuF
-cBv
-ctq
-cgv
-chM
-cgv
-cgv
-cgv
-cgv
-cdM
-cdI
-cdI
-cdI
+cAI
+csD
+djz
+djH
+djz
+djz
+djz
+djz
+cda
+ccW
+ccW
+ccW
aaa
aaa
aaa
@@ -114402,7 +111904,7 @@ afE
afi
afc
afc
-aTA
+aTz
adP
afE
afH
@@ -114410,37 +111912,37 @@ alt
afE
afH
afH
-aep
-aep
-aep
-aep
+deO
+deO
+deO
+deO
adP
-atA
-aqg
-cLv
-ajW
-cLA
-azq
-aAO
-aBG
-aDd
-aEo
-aFR
-aGY
-azq
-azq
-azq
-cFt
-azq
-azq
-aKq
-aOM
-aQa
-cMX
-cIL
-aSD
-aep
-aep
+atz
+aqf
+cKF
+deN
+dfd
+azp
+aAN
+aBF
+aDc
+aEn
+aFQ
+aGX
+azp
+azp
+azp
+cEG
+azp
+azp
+aKp
+aOL
+aPZ
+cMh
+cHY
+aSC
+dhs
+dhs
abW
abW
abW
@@ -114448,20 +111950,20 @@ abW
aaa
aaa
aaa
-aWG
-aWG
-aWG
-aWG
-aWG
-aqV
-aXj
-aXj
-aXj
-aXj
-aXj
+aWF
+aWF
+aWF
+aWF
+aWF
+did
+aXi
+aXi
+aXi
+aXi
+aXi
aaa
aaa
-aVO
+aVN
aaa
aaa
aaa
@@ -114469,12 +111971,12 @@ aaa
aaa
aaa
aaa
-aXB
-aXo
-aXo
-aXo
-aXo
-aXo
+aXA
+aXn
+aXn
+aXn
+aXn
+aXn
aaa
aaa
aaa
@@ -114482,13 +111984,13 @@ abC
aaa
aaa
aaa
-aqV
-bnO
-cJw
-cXw
-cXw
-cXI
-aqV
+aqU
+bnN
+cIJ
+cWG
+cWG
+cWS
+aqU
aaa
aaa
aaa
@@ -114497,97 +111999,97 @@ aaa
aaa
abC
aaa
-cGc
+cFp
aaa
aaa
aaa
aaa
aaa
aaa
-bhP
-bhP
-bhP
-bhP
-bhP
-bhP
-aXo
-aXo
-aXo
-aXo
-bhP
-bhP
-bhP
-aXs
-aXs
-aXs
-bYN
-cae
-cae
-cae
-cae
-bZn
-bYN
-bYN
-aXo
-aXo
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+bhO
+bhO
+bhO
+bhO
+bhO
+bhO
+aXn
+aXn
+aXn
+aXn
+bhO
+bhO
+bhO
+aXr
+aXr
+aXr
+bYb
+bZs
+bZs
+bZs
+bZs
+bYB
+bYb
+bYb
+aXn
+aXn
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
-cex
-cfs
-cfN
-cfN
-cgS
+cdL
+ceG
+cfb
+cfb
+cgg
+cgJ
chv
-cih
-ciH
-cfN
-cjW
-ckN
-clv
-clY
-cfN
-cnL
-cgh
-cpl
-cKq
-chK
-chI
-ctq
-ctT
-cuH
-cuZ
-cvJ
-cwE
-cxx
-cyi
-czb
-czQ
-cAu
-cAU
-cuH
-cBw
-ctq
-cgv
-cTP
-cle
-cTI
-cSo
-cgv
-cdM
-cdI
-cdI
-cdN
+chV
+cfb
+cjk
+ckb
+ckJ
+clm
+cfb
+cmY
+cfv
+coy
+cJC
+djA
+djI
+csD
+ctg
+ctU
+cum
+cuW
+cvR
+cwK
+cxv
+cyo
+czd
+czH
+cAh
+ctU
+cAJ
+csD
+djz
+cSZ
+dkc
+cSS
+dkg
+djz
+cda
+ccW
+ccW
+cdb
aaa
aaa
aaa
@@ -114662,41 +112164,41 @@ ahQ
aiB
ahd
ahd
-cLs
-aBJ
+cKC
+aBI
amm
-cLy
+cKI
anT
afH
-aqg
+aqf
afH
alw
afc
-ajX
-cLv
-ajW
-ajW
-cLA
-azq
-azq
-azq
-azq
-azq
-azq
-azq
-azq
-cMy
-cMO
-aNA
-aPQ
-aMS
-aKq
-aON
-aQa
-cMX
-cIP
-aRX
-cIT
+deQ
+cKF
+deN
+deN
+dfd
+azp
+azp
+azp
+azp
+azp
+azp
+azp
+azp
+dgl
+cLY
+aNz
+aPP
+aMR
+aKp
+aOM
+aPZ
+cMh
+cIc
+aRW
+cIg
abW
abW
abW
@@ -114705,20 +112207,20 @@ abW
aaa
aaa
aaa
-aWH
-aWH
-aWH
-aWH
-aWH
-aqV
-aWH
-aWH
-aWH
-aWH
-aWH
+aWG
+aWG
+aWG
+aWG
+aWG
+did
+aWG
+aWG
+aWG
+aWG
+aWG
aaa
aaa
-aVO
+aVN
aaa
aaa
aaa
@@ -114728,10 +112230,10 @@ aaa
aaa
abC
aaa
-aXo
-aXo
-aXo
-aXo
+aXn
+aXn
+aXn
+aXn
aaa
aaa
aaa
@@ -114739,112 +112241,112 @@ abC
aaa
aaa
aaa
-aqV
-bnO
-cJw
-cXw
-cXw
-cXI
-aqV
+aqU
+bnN
+cIJ
+cWG
+cWG
+cWS
+aqU
aaa
aaa
aaa
-cGc
+cFp
aaa
aaa
abC
aaa
-cGc
+cFp
aaa
aaa
aaa
aaa
aaa
aaa
-aXB
-bhP
-bhP
-bhP
-bhP
-bhP
-aXo
-aXB
+aXA
+bhO
+bhO
+bhO
+bhO
+bhO
+aXn
+aXA
aaa
aaa
abC
-bhP
-aXs
-aXs
-aXs
-aXs
-bYN
-caf
-cay
-cae
-cbi
-bYN
-bYN
-aXo
-aXo
-bhP
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+bhO
+aXr
+aXr
+aXr
+aXr
+bYb
+bZt
+bZM
+bZs
+caw
+bYb
+bYb
+aXn
+aXn
+bhO
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
aaa
-cdI
-cdI
-cfN
-chw
-cij
-ciI
-cfN
-cfN
-cfN
-cfN
-cfN
-cfN
-cnM
-cgh
-cpl
-cKq
-chb
-cSt
-ctq
-ctq
-ctq
-ctq
-ctq
-ctq
-cxy
-cHI
-czc
-ctq
-ctq
-ctq
-ctq
-ctq
-ctq
-cdU
-chM
-cgv
-chK
-cTT
-cgv
-cdM
-cdI
-cdN
-cdN
+ccW
+ccW
+cfb
+cgK
+chx
+chW
+cfb
+cfb
+cfb
+cfb
+cfb
+cfb
+cmZ
+cfv
+coy
+cJC
+djB
+djJ
+csD
+csD
+csD
+csD
+csD
+csD
+cwL
+cGV
+cyp
+csD
+csD
+csD
+csD
+csD
+csD
+djG
+djH
+djz
+djA
+cTd
+djz
+cda
+ccW
+cdb
+cdb
aaa
aaa
aaa
@@ -114918,42 +112420,42 @@ afE
afE
adP
ajs
-ajW
-ajW
-ajW
-aAU
-aBJ
-aBJ
-aBJ
-apJ
+deN
+deN
+deN
+aAT
+aBI
+aBI
+aBI
+apI
ahd
-ary
-asu
-cLM
-cLM
-avP
-cLK
-axV
-azr
-aAP
-aBH
-aDe
-aEp
-aAP
-aAP
-aAP
-aJb
-aAP
-aAP
-aBH
-cMS
-aNO
-aOO
-aQj
-cMY
-aRX
-aSE
-cIU
+arx
+ast
+cKW
+cKW
+avO
+cKU
+axU
+azq
+aAO
+aBG
+aDd
+aEo
+aAO
+aAO
+aAO
+aJa
+aAO
+aAO
+aBG
+cMc
+aNN
+aON
+aQi
+cMi
+aRW
+aSD
+cIh
abW
abW
abW
@@ -114967,7 +112469,7 @@ abC
abC
abC
abC
-aqV
+did
abC
abC
abC
@@ -114996,13 +112498,13 @@ abC
aaa
aaa
aaa
-aqV
-bnO
-cJw
-cXw
-cXw
-cXI
-aqV
+aqU
+bnN
+cIJ
+cWG
+cWG
+cWS
+aqU
aaa
aaa
aaa
@@ -115011,7 +112513,7 @@ aaa
aaa
abC
aaa
-cGc
+cFp
aaa
aaa
aaa
@@ -115029,79 +112531,79 @@ abC
aaa
aaa
abC
-bhP
-aXo
-aXo
-aXs
-aXs
-bYN
-cag
-cag
-cag
-cag
-bYN
-aXo
-aXo
-aXo
+bhO
+aXn
+aXn
+aXr
+aXr
+bYb
+bZu
+bZu
+bZu
+bZu
+bYb
+aXn
+aXn
+aXn
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
aaa
-cdI
-cdI
-cfN
-cfN
-cfN
-cfN
-cfN
-cdI
-cdI
-cdI
-cfI
-cmK
-cnN
-cgh
-cpl
-cKq
-chK
-chM
-ctq
-ctR
-cuF
-cuY
-cvK
-cwF
-cxz
-cyj
-cxz
-czR
-cAv
-ctR
-cuF
-cuY
-ctq
-cdT
-chM
-cgv
-cTS
-cTU
-cgv
-cdI
-cdI
-cdI
-cdN
+ccW
+ccW
+cfb
+cfb
+cfb
+cfb
+cfb
+ccW
+ccW
+ccW
+ceW
+clY
+cna
+cfv
+coy
+cJC
+djA
+djH
+csD
+cte
+ctS
+cul
+cuX
+cvS
+cwM
+cxw
+cwM
+cze
+czI
+cte
+ctS
+cul
+csD
+djD
+djH
+djz
+cTc
+cTe
+djz
+ccW
+ccW
+ccW
+cdb
aaa
aaa
aaa
@@ -115176,63 +112678,63 @@ afH
adP
afH
afH
-cLt
-cLv
-aep
+cKD
+cKF
+deO
afH
adP
-ajW
+deN
ahR
-aQL
+aQK
anV
amo
-cLN
-auD
-cLE
+cKX
+auC
+cKO
afE
-axW
-azs
-ajW
-ajW
-cMb
-cLG
-cLy
-cLt
-cLx
-cMF
-cLv
-ajW
-ajW
-aut
-akn
-aOL
-aQk
-cMX
+axV
+azr
+deN
+deN
+cLl
+dfS
+cKI
+cKD
+dgi
+cLP
+cKF
+deN
+deN
+dgA
+dfz
+aOK
+aQj
+cMh
+aRV
+aSE
+cIc
aRW
-aSF
-cIP
-aRX
-aRX
-cIT
+aRW
+cIg
abW
abW
aaa
aaa
aaa
-aWF
-aWF
-aWF
-aWF
-aWF
-aXb
-aWF
-aWF
-aWF
-aWF
-aWF
+aWE
+aWE
+aWE
+aWE
+aWE
+aXa
+aWE
+aWE
+aWE
+aWE
+aWE
aaa
aaa
-aVO
+aVN
aaa
aaa
aaa
@@ -115253,13 +112755,13 @@ abC
aaa
aaa
aaa
-aqV
-bnO
-cJw
-cXw
-cXw
-cXI
-aqV
+aqU
+bnN
+cIJ
+cWG
+cWG
+cWS
+aqU
aaa
aaa
aaa
@@ -115286,79 +112788,79 @@ abC
aaa
aaa
abC
-aqV
+aqU
abC
-aXo
-aXo
-aXo
-aXs
-bhP
-bhP
-bhP
-bhP
-aXo
-aXo
+aXn
+aXn
+aXn
+aXr
+bhO
+bhO
+bhO
+bhO
+aXn
+aXn
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
-cdM
-cdM
-cdI
-cdI
-cdI
-cdI
-cdI
-cdI
-cdI
-cdI
-cdM
-cfI
-cmL
-cnN
-cgh
-cpl
-cKG
-crB
-chM
-ctq
-ctS
-cuI
+cda
+cda
+ccW
+ccW
+ccW
+ccW
+ccW
+ccW
+ccW
+ccW
+cda
+ceW
+clZ
+cna
+cfv
+coy
+cJS
+cqO
+djH
+csD
+ctf
+ctV
+cul
cuY
-cvL
-cwD
-cxA
-cyh
-cxA
-czP
-cAw
-ctR
-cuF
-cBv
-ctq
-cdG
-chM
-cgv
-cgv
-cgv
-cgv
-cdM
-cdI
-cdI
-cdN
+cvQ
+cwN
+cxu
+cwN
+czc
+czJ
+cte
+ctS
+cAI
+csD
+djE
+djH
+djz
+djz
+djz
+djz
+cda
+ccW
+ccW
+cdb
aaa
aaa
aaa
@@ -115432,64 +112934,64 @@ ahf
afH
adP
adP
-aep
-aep
+deO
+deO
afH
-aep
-aep
+deO
+deO
ahR
-aQL
+aQK
aiF
-cLC
-cLK
-cLJ
+cKM
+cKU
+cKT
afH
ahf
-ajW
+deN
afE
-axX
-azt
-aAQ
-aAQ
-aAQ
-aAQ
-cGX
-cGX
-cGX
-cGX
-cGX
-aFS
-aFS
-aFS
-aFS
-aOP
-aQk
-cMX
-aRW
-aSG
-aTB
-aTY
-aUu
-cIU
+axW
+azs
+aAP
+aAP
+aAP
+aAP
+cGk
+cGk
+cGk
+cGk
+cGk
+aFR
+aFR
+aFR
+aFR
+aOO
+aQj
+cMh
+aRV
+aSF
+aTA
+aTX
+aUt
+cIh
abW
abW
aaa
aaa
aaa
-aWG
-aWG
-aWG
-aWG
-aWG
-aXe
-aXj
-aXj
-aXj
-aXj
-aXj
+aWF
+aWF
+aWF
+aWF
+aWF
+aXd
+aXi
+aXi
+aXi
+aXi
+aXi
abC
abC
-aVO
+aVN
aaa
aaa
aaa
@@ -115510,13 +113012,13 @@ abC
aaa
aaa
aaa
-aqV
-cXq
-cXs
-cXw
-cXx
-btm
-aqV
+aqU
+cWA
+cWC
+cWG
+cWH
+btl
+aqU
aaa
aaa
aaa
@@ -115543,12 +113045,12 @@ abC
aaa
aaa
abC
-aqV
+aqU
abC
-aXo
-aXo
-aXo
-bhP
+aXn
+aXn
+aXn
+bhO
aaa
aaa
aaa
@@ -115558,64 +113060,64 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
-cdM
-cdM
-cdI
-cgm
-cgm
-cgm
-cdI
-cdI
-cdI
-cdM
-cdM
-cfI
-cmM
-cnN
-coE
-cpy
-cKq
-crC
-chM
-ctq
-ctT
-cuH
+cda
+cda
+ccW
+cfA
+cfA
+cfA
+ccW
+ccW
+ccW
+cda
+cda
+ceW
+cma
+cna
+cnR
+coL
+cJC
+cqP
+djH
+csD
+ctg
+ctU
+cum
cuZ
-cvM
-cwE
-cxz
-cyk
-cxz
-czQ
-cAx
-cAU
-cuH
-cBw
-ctq
-cdG
-chM
-cjb
-cgv
-cdM
-cdM
-cdM
-cdI
-cdI
-cdM
+cvR
+cwM
+cxx
+cwM
+czd
+czK
+cAh
+ctU
+cAJ
+csD
+djE
+djH
+cip
+djz
+cda
+cda
+cda
+ccW
+ccW
+cda
aaa
aaa
aaa
@@ -115691,62 +113193,62 @@ adP
adP
adP
adP
-aep
-aep
+deO
+deO
adP
ahf
-cLC
-cLI
-cLJ
+cKM
+cKS
+cKT
afH
afE
adP
ahf
-ajW
+deN
afE
-axY
-azu
-aAR
-aBI
-aDf
-aEq
-aFS
-aGZ
-aHY
-aJc
-aFS
-aKJ
-aFS
-aMT
-aFS
-aOL
-aQk
-cMX
-aRW
-aSH
+axX
+azt
+aAQ
+aBH
+aDe
+aEp
+aFR
+aGY
+aHX
+aJb
+aFR
+aKI
+aFR
+aMS
+aFR
+aOK
+aQj
+cMh
+aRV
aSG
-aTZ
-aUv
-cIU
+aSF
+aTY
+aUu
+cIh
abW
abW
aaa
aaa
aaa
-aWH
-aWH
-aWH
-aWH
-aWH
-aXb
-aWH
-aWH
-aWH
-aWH
-aWH
+aWG
+aWG
+aWG
+aWG
+aWG
+aXa
+aWG
+aWG
+aWG
+aWG
+aWG
aaa
aaa
-aVO
+aVN
aaa
aaa
aaa
@@ -115767,13 +113269,13 @@ abC
aaa
aaa
aaa
-aqV
-bnO
-cJw
-cXw
-cXw
-cXI
-aqV
+aqU
+bnN
+cIJ
+cWG
+cWG
+cWS
+aqU
aaa
aaa
aaa
@@ -115800,7 +113302,7 @@ abC
aaa
aaa
abC
-aqV
+aqU
abC
aaa
aaa
@@ -115815,64 +113317,64 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
-cdM
-cdM
-cgm
-cgm
-cgm
-cgm
-cgm
-cgm
-cgm
-cgm
-cdM
-cfI
-cfI
-cnO
-cgh
-cpl
-cKq
-cSM
-chM
-ctq
-ctq
-ctq
-ctq
-ctq
-ctq
-cxB
-cyl
-czd
-ctq
-ctq
-ctq
-ctq
-ctq
-ctq
-chQ
-chM
-cgy
-cgw
-cgv
-cgv
-cgw
-cgw
-cgv
-cdM
+cda
+cda
+cfA
+cfA
+cfA
+cfA
+cfA
+cfA
+cfA
+cfA
+cda
+ceW
+ceW
+cnb
+cfv
+coy
+cJC
+cRW
+djH
+csD
+csD
+csD
+csD
+csD
+csD
+cwO
+cxy
+cyq
+csD
+csD
+csD
+csD
+csD
+csD
+dkd
+djH
+djF
+djR
+djz
+djz
+djR
+djR
+djz
+cda
aaa
aaa
aaa
@@ -115948,61 +113450,61 @@ adP
adP
adP
adP
-aep
-aep
+deO
+deO
afE
anU
-cLD
+cKN
adP
adP
adP
adP
adP
-aOr
-cLS
+aOq
+cLc
afH
-axZ
-azv
-cLW
-axF
-axF
-aEr
-aFS
-aFS
-aHZ
-aFS
-aFS
-aKK
-aFS
-aMU
-aFS
-aOL
-aQk
-cMX
-aRW
-aSI
-aSG
-aSG
-aUw
-cIU
+axY
+azu
+cLg
+dfq
+dfq
+aEq
+aFR
+aFR
+aHY
+aFR
+aFR
+aKJ
+aFR
+aMT
+aFR
+aOK
+aQj
+cMh
+aRV
+aSH
+aSF
+aSF
+aUv
+cIh
abW
abW
-aVO
-aVO
+aVN
+aVN
aaa
aaa
abC
aaa
aaa
aaa
-aXf
+aXe
aaa
aaa
aaa
abC
aaa
aaa
-aVO
+aVN
aaa
aaa
aaa
@@ -116024,13 +113526,13 @@ abC
aaa
aaa
aaa
-aqV
-bnO
-cJw
-cXw
-cXw
-cXI
-aqV
+aqU
+bnN
+cIJ
+cWG
+cWG
+cWS
+aqU
aaa
aaa
aaa
@@ -116057,7 +113559,7 @@ abC
aaa
aaa
abC
-aqV
+aqU
abC
aaa
aaa
@@ -116072,64 +113574,64 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
-cdM
-cdM
-cgm
-cgm
-chx
-cik
-cgm
-cgm
-cgm
-cgm
-cgm
-cgm
-cmN
-cnN
-cgh
-cpl
-cKq
-cSN
-chN
-ctq
-ctR
-cuF
-cuY
-cvN
-cwG
+cda
+cda
+cfA
+cfA
+cgL
+chy
+cfA
+cfA
+cfA
+cfA
+cfA
+cfA
+cmb
+cna
+cfv
+coy
+cJC
+cRX
+chb
+csD
+cte
+ctS
+cul
+cva
+cvT
+cwM
cxz
-cym
-cxz
-czS
-cAy
-ctR
-cuF
-cuY
-ctq
-cSM
-chM
-cdG
-cgv
-cDb
-chK
-cDC
-cDR
-cgv
-cdM
+cwM
+czf
+czL
+cte
+ctS
+cul
+csD
+cRW
+djH
+djE
+djz
+cCo
+djA
+cCP
+dkk
+djz
+cda
aaa
aaa
aaa
@@ -116205,48 +113707,48 @@ adP
adP
adP
adP
-aep
-aep
+deO
+deO
afE
-cLB
-cLD
+cKL
+cKN
afH
-aqD
-aqD
-aqD
-aqD
-auE
-akn
-aqD
+aqC
+aqC
+aqC
+aqC
+auD
+dfz
+aqC
afH
afH
-aAT
-ajW
-axF
-aEs
-aFS
-aHa
-aHa
-aHa
-aHa
-aKL
-aHa
-aHa
-aFS
-aOL
-aQk
-cMX
-aRW
-aSJ
-aSG
-cHc
-aUx
-cIU
+aAS
+deN
+dfq
+aEr
+aFR
+aGZ
+aGZ
+aGZ
+aGZ
+aKK
+aGZ
+aGZ
+aFR
+aOK
+aQj
+cMh
+aRV
+aSI
+aSF
+cGp
+aUw
+cIh
abW
abE
aaa
aaa
-aVO
+aVN
aaa
abC
aaa
@@ -116258,7 +113760,7 @@ aaa
aaa
abC
aaa
-aVO
+aVN
aaa
aaa
aaa
@@ -116281,13 +113783,13 @@ abC
aaa
aaa
aaa
-aqV
-bnO
-cJw
-cXw
-cXw
-cXI
-aqV
+aqU
+bnN
+cIJ
+cWG
+cWG
+cWS
+aqU
aaa
aaa
aaa
@@ -116314,7 +113816,7 @@ abC
aaa
aaa
abC
-aqV
+aqU
abC
aaa
aag
@@ -116329,64 +113831,64 @@ aaa
aaa
aaa
aac
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
-cdM
-cdM
-cdM
-cgm
-cgm
-chy
-cil
-ciJ
-cjq
-cjX
-cgm
-cgm
-cgm
-cgm
-cnN
-cgh
-cpA
-cKq
-chg
-chM
-ctq
+cda
+cda
+cda
+cfA
+cfA
+cgM
+chz
+chX
+ciE
+cjl
+cfA
+cfA
+cfA
+cfA
+cna
+cfv
+coN
+cJC
+djC
+djH
+csD
+ctf
ctS
-cuF
-cuY
-cvO
-cwD
-cxA
-cyh
-cxA
-czP
-cAz
-ctR
-cuI
-cBv
-ctq
-cBZ
-chM
-cmo
-cCT
-crB
-chK
-chK
-cDS
-cgw
-cdM
+cul
+cvb
+cvQ
+cwN
+cxu
+cwN
+czc
+czM
+cte
+ctV
+cAI
+csD
+cBm
+djH
+djU
+cCg
+cqO
+djA
+djA
+cDf
+djR
+cda
aaa
aaa
aaa
@@ -116466,46 +113968,46 @@ adP
afH
afH
ahh
-cLD
-aep
-aqD
-arz
-asv
-atB
-auF
-avQ
-awY
-aya
-aqD
-cLX
-cLY
-cLY
-aEt
-aFS
-aHa
-aIa
-aIa
-aKa
-aKM
-aHa
-aMV
-aFS
-aOL
-aQl
-cMZ
-aRW
-aSK
-aSG
-aSG
-aUx
-aUY
+cKN
+deO
+aqC
+ary
+asu
+atA
+auE
+avP
+awX
+axZ
+aqC
+cLh
+cLi
+cLi
+aEs
+aFR
+aGZ
+aHZ
+aHZ
+aJZ
+aKL
+aGZ
+aMU
+aFR
+aOK
+aQk
+cMj
+aRV
+aSJ
+aSF
+aSF
+aUw
+aUX
abE
abE
aaa
aaa
aaa
-aVO
-aVO
+aVN
+aVN
aaa
aaa
aaa
@@ -116513,8 +114015,8 @@ abC
aaa
aaa
aaa
-aVO
-aVO
+aVN
+aVN
aaa
aaa
aaa
@@ -116538,13 +114040,13 @@ abC
aaa
aaa
aaa
-aqV
-bnO
-cJw
-cXw
-cXw
-cXI
-aqV
+aqU
+bnN
+cIJ
+cWG
+cWG
+cWS
+aqU
aaa
aaa
aac
@@ -116571,7 +114073,7 @@ abC
aaa
aaa
abC
-aqV
+aqU
abC
aaa
aaa
@@ -116586,64 +114088,64 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
-cdM
-cdM
-cdM
-cgm
-cgm
-chz
-cim
-ciK
-cjr
-cjr
-ckO
-clw
-clZ
-clw
-cnI
-coF
-cpB
-cKq
-cdT
-chM
-ctq
-ctT
-cuH
-cuZ
-cvP
-cwE
-cxz
-cyg
-cxz
-czQ
-cAA
-cAU
-cuH
-cBw
-ctq
-cdG
-chM
-cCn
-cgw
-cDc
-cDn
-cDD
-cDT
-cgv
-cdN
+cda
+cda
+cda
+cfA
+cfA
+cgN
+chA
+chY
+ciF
+ciF
+ckc
+ckK
+cln
+ckK
+cmV
+cnS
+coO
+cJC
+djD
+djH
+csD
+ctg
+ctU
+cum
+cvc
+cvR
+cwM
+cxt
+cwM
+czd
+czN
+cAh
+ctU
+cAJ
+csD
+djE
+djH
+cBA
+djR
+cCp
+cCA
+dkh
+dki
+djz
+cdb
aaa
aaa
aaa
@@ -116723,39 +114225,39 @@ adP
afH
ahR
aiF
-cLD
+cKN
adP
-aqE
-arA
-cGT
-asw
-asw
-asz
-awZ
-asz
aqD
+arz
+cGg
+asv
+asv
+asy
+awY
+asy
+aqC
+aqC
+aqC
+aqC
aqD
-aqD
-aqD
-aqE
-aqD
-aqD
-aFS
-aFS
-aKb
-aKN
-aLS
-aFS
-aFS
-aOL
-aQk
-cMX
-aRW
-aSL
-aSG
-aSG
-aUy
-aUY
+aqC
+aqC
+aFR
+aFR
+aKa
+aKM
+aLR
+aFR
+aFR
+aOK
+aQj
+cMh
+aRV
+aSK
+aSF
+aSF
+aUx
+aUX
abE
abE
aaa
@@ -116764,11 +114266,11 @@ aaa
aaa
aaa
aaa
-aVO
-aVO
-aVO
-aVO
-aVO
+aVN
+aVN
+aVN
+aVN
+aVN
aaa
aaa
aaa
@@ -116795,13 +114297,13 @@ abC
aaa
aaa
aaa
-aqV
-cXq
-cXt
-cXw
-cXw
-btm
-aqV
+aqU
+cWA
+cWD
+cWG
+cWG
+btl
+aqU
aaa
aaa
aaa
@@ -116828,7 +114330,7 @@ abC
aaa
aaa
abC
-aqV
+aqU
abC
aaa
aaa
@@ -116843,64 +114345,64 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
-cdI
-cdM
-cdM
-cdM
-cgm
-cgm
+ccW
+cda
+cda
+cda
+cfA
+cfA
+cgO
chA
-cim
-ciL
-cjs
-cil
-ckP
-clx
-cma
-clx
-cnP
-cgh
-cpC
-cKq
-cdG
-chM
-ctq
-ctq
-ctq
-ctq
-ctq
-ctq
-cxC
-cyg
-cze
-ctq
-ctq
-ctq
-ctq
-ctq
-ctq
-cdT
-chM
-cdG
-cgv
-cgv
-chK
-chK
-chK
-cEm
-cdN
+chZ
+ciG
+chz
+ckd
+ckL
+clo
+ckL
+cnc
+cfv
+coP
+cJC
+djE
+djH
+csD
+csD
+csD
+csD
+csD
+csD
+cwP
+cxt
+cyr
+csD
+csD
+csD
+csD
+csD
+csD
+djD
+djH
+djE
+djz
+djz
+djA
+djA
+djA
+cDz
+cdb
aaa
aaa
aaa
@@ -116976,43 +114478,43 @@ aiC
ajt
akk
afa
-aQL
-aQL
+aQK
+aQK
and
ahe
-cLD
-aNy
-aqD
-cFp
-asx
-atC
-auG
-asz
+cKN
+aNx
+aqC
+cEC
+asw
+atB
auF
-avQ
-azw
-avQ
-aBK
-aDg
-aEu
-aFT
-aqD
-aIb
+asy
+auE
+avP
+azv
+avP
+aBJ
+aDf
+aEt
+aFS
+aqC
+aIa
+aJc
+aKb
+aKN
aJd
-aKc
-aKO
-aJe
-aMW
-aqD
-aOQ
-aQm
-cNa
-aRY
-aSM
-aTC
-aSG
-aUz
-aUY
+aMV
+aqC
+aOP
+aQl
+cMk
+aRX
+aSL
+aTB
+aSF
+aUy
+aUX
abE
abE
aaa
@@ -117052,13 +114554,13 @@ abC
aaa
aaa
aaa
-aqV
-bnO
-cJw
-cXw
-cXw
-cXI
-aqV
+aqU
+bnN
+cIJ
+cWG
+cWG
+cWS
+aqU
aaa
aaa
aaa
@@ -117085,7 +114587,7 @@ abC
aaa
aaa
abC
-aqV
+aqU
abC
aaa
aaa
@@ -117100,64 +114602,64 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
-cdI
-cdI
-cdI
-cdI
-cgm
-cgm
-chB
-cim
-ciM
-cjt
-cjt
-ckQ
-cly
-cmb
-cly
-cnQ
-cgh
-cpC
-cKq
-cdG
-cki
-ctq
-ctR
-cuF
-cuY
-cvQ
-cwH
-cxz
-cyg
-cxz
-czT
-cAB
-ctR
-cuF
-cuY
-ctq
-cdG
-chM
-chh
-cdq
-cgv
-cDo
-cDE
-cDU
-cEm
-cdN
+ccW
+ccW
+ccW
+ccW
+cfA
+cfA
+cgP
+chA
+cia
+ciH
+ciH
+cke
+ckM
+clp
+ckM
+cnd
+cfv
+coP
+cJC
+djE
+djK
+csD
+cte
+ctS
+cul
+cvd
+cvU
+cwM
+cxt
+cwM
+czg
+czO
+cte
+ctS
+cul
+csD
+djE
+djH
+djX
+djW
+djz
+cCB
+cCR
+cDh
+cDz
+cdb
aaa
aaa
aaa
@@ -117238,38 +114740,38 @@ afa
afa
anW
aoT
-apL
-aqD
-arA
+apK
+aqC
+arz
+asx
+atC
+auG
+avQ
asy
-atD
-auH
-avR
-asz
-asz
-asz
-asw
-awZ
-aDh
-aEu
-aFU
-aqD
-aIb
-aJe
-aKd
-aKP
-aLT
-aMX
-aqD
-aOR
-aQn
-aRh
-aRZ
-aSN
-aTD
-aUa
-aUA
-cIU
+asy
+asy
+asv
+awY
+aDg
+aEt
+aFT
+aqC
+aIa
+aJd
+aKc
+aKO
+aLS
+aMW
+aqC
+aOQ
+aQm
+aRg
+aRY
+aSM
+aTC
+aTZ
+aUz
+cIh
abE
aaa
aaa
@@ -117309,13 +114811,13 @@ abC
aaa
aaa
aaa
-aqV
-bnO
-cJw
-cXw
-cXw
-cXI
-aqV
+aqU
+bnN
+cIJ
+cWG
+cWG
+cWS
+aqU
aaa
aaa
aaa
@@ -117328,7 +114830,7 @@ aaa
aaa
aaa
aaa
-deP
+ddx
abC
abC
abC
@@ -117342,7 +114844,7 @@ abC
aaa
aaa
abC
-aqV
+aqU
abC
aaa
aaa
@@ -117357,64 +114859,64 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
-cdI
-cdM
-cdI
-cdI
-cgm
-cgm
-chy
-cil
-ciN
-cjq
-cjY
-cgm
-cgm
-cgm
-cgm
-cnR
-cgh
-cpC
-cKq
-cdT
-chM
-ctq
-ctS
-cuJ
-cuY
-cvR
-cwD
-cxA
-cyn
+ccW
+cda
+ccW
+ccW
+cfA
+cfA
+cgM
+chz
+cib
+ciE
+cjm
+cfA
+cfA
+cfA
+cfA
+cne
+cfv
+coP
+cJC
+djD
+djH
+csD
+ctf
+ctW
+cul
+cve
+cvQ
+cwN
cxA
+cwN
+czc
czP
-cAC
-ctR
-cuF
-cBv
-ctq
-cdG
-chM
-ckt
-cgv
-cgw
-cgw
-cgw
-cgv
-cgv
-cdM
+cte
+ctS
+cAI
+csD
+djE
+djH
+cjH
+djz
+djR
+djR
+djR
+djz
+djz
+cda
aaa
aaa
aaa
@@ -117494,39 +114996,39 @@ adP
afE
alw
aeJ
-cLA
-cLt
-aqD
-arB
-asw
-asw
-asw
-asz
-axa
-cGT
-azx
+dfd
+cKD
+aqC
+arA
+asv
+asv
+asv
asy
awZ
-aDi
-aEu
-aFT
-aqD
-aIb
-aJe
-aKd
-aKO
-aJe
-aMX
-aqD
-aOS
-aQk
-cNb
-cIQ
-aRX
-aRX
-aRX
-aRX
-cIV
+cGg
+azw
+asx
+awY
+aDh
+aEt
+aFS
+aqC
+aIa
+aJd
+aKc
+aKN
+aJd
+aMW
+aqC
+aOR
+aQj
+cMl
+cId
+aRW
+aRW
+aRW
+aRW
+cIi
abW
aaa
aaa
@@ -117566,13 +115068,13 @@ abC
aaa
aaa
aaa
-aqV
-bnO
-cJw
-cXw
-cXw
-cXI
-aqV
+aqU
+bnN
+cIJ
+cWG
+cWG
+cWS
+aqU
aaa
aaa
aaa
@@ -117584,14 +115086,14 @@ aaa
aaa
aaa
aaa
-aXS
-deQ
-aXS
-aXE
-aYh
-aXE
-aXE
-aXE
+aXR
+ddy
+aXR
+aXD
+aYg
+aXD
+aXD
+aXD
aaa
aaa
aaa
@@ -117599,7 +115101,7 @@ abC
aaa
aaa
abC
-aqV
+aqU
abC
aaa
aaa
@@ -117614,64 +115116,64 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
-cdI
-cdI
-cdM
-cdM
-cgm
-cgm
-chC
-cin
-cgm
-cgm
-cgm
-cgm
-cgm
-cgm
-cmN
-cnS
-cgh
-cpC
-cKq
-chg
-chM
-ctq
-ctT
-cuH
-cuZ
-cvS
-cwE
-cxD
-cyo
-cxz
+ccW
+ccW
+cda
+cda
+cfA
+cfA
+cgQ
+chB
+cfA
+cfA
+cfA
+cfA
+cfA
+cfA
+cmb
+cnf
+cfv
+coP
+cJC
+djC
+djH
+csD
+ctg
+ctU
+cum
+cvf
+cvR
+cwQ
+cxB
+cwM
+czd
czQ
-cAD
-cAU
-cuH
-cBw
-ctq
-chf
-chM
-cjb
-cgv
-cdM
-cdM
-cdI
-cdI
-cdI
-cdI
+cAh
+ctU
+cAJ
+csD
+dke
+djH
+cip
+djz
+cda
+cda
+ccW
+ccW
+ccW
+ccW
aaa
aaa
aaa
@@ -117751,34 +115253,34 @@ afH
afc
amo
anX
-cLE
+cKO
adP
-aqD
-arC
-asv
-asv
-asv
-asv
-asv
-ayb
-azy
-aAV
-aBL
-aDi
-aEu
-cMm
-aqD
-aIb
-aJe
-aKd
-aKO
-aJe
-aMY
-aqD
-aOS
-aQk
-cMX
-cIL
+aqC
+arB
+asu
+asu
+asu
+asu
+asu
+aya
+azx
+aAU
+aBK
+aDh
+aEt
+cLw
+aqC
+aIa
+aJd
+aKc
+aKN
+aJd
+aMX
+aqC
+dko
+aQj
+cMh
+cHY
acH
acH
acH
@@ -117823,13 +115325,13 @@ abC
aaa
aaa
aaa
-aqV
-cXq
-cXt
-cXw
-cXy
-btm
-aqV
+aqU
+cWA
+cWD
+cWG
+cWI
+btl
+aqU
aaa
aaa
aaa
@@ -117839,24 +115341,24 @@ aaa
abD
aaa
aaa
-aXE
-aXE
-aXS
-deR
-aXS
-aXS
-aXS
-aXE
-aXE
-aXE
-aXE
-aXE
-aXE
-aYh
-aXS
-aXS
-aXE
-aXE
+aXD
+aXD
+aXR
+ddy
+aXR
+aXR
+aXR
+aXD
+aXD
+aXD
+aXD
+aXD
+aXD
+aYg
+aXR
+aXR
+aXD
+aXD
abC
aaa
aaa
@@ -117871,63 +115373,63 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
-cdI
-cdI
-cdM
-cdM
-cgm
-cgm
-cgm
-cgm
-cgm
-cgm
-cgm
-cgm
-cdI
-cdI
-cfI
-cnN
-cgh
-cpC
-cKq
-cdG
-chM
-ctq
-ctq
-ctq
-ctq
-ctq
-cwI
-cxE
-cxE
-cxE
-cwI
-ctq
-ctq
-ctq
-ctq
-ctq
-cdU
-chM
-cdG
-cdq
-cdM
-cdM
-cdI
-cdI
-cdI
+ccW
+ccW
+cda
+cda
+cfA
+cfA
+cfA
+cfA
+cfA
+cfA
+cfA
+cfA
+ccW
+ccW
+ceW
+cna
+cfv
+coP
+cJC
+djE
+djH
+csD
+csD
+csD
+csD
+csD
+cvV
+cwR
+cwR
+cwR
+cvV
+csD
+csD
+csD
+csD
+csD
+djG
+djH
+djE
+djW
+cda
+cda
+ccW
+ccW
+ccW
aaa
aaa
aaa
@@ -118010,32 +115512,32 @@ amp
afE
adP
adP
-aqD
-arD
-asz
-atE
-auI
-avS
-avS
-ayc
-azz
-asz
-awZ
-aDj
-aqD
-aqD
-aqD
-aqD
-aqD
-aKd
-aKO
-aqD
-aqD
-aqD
-aOT
-aQk
-cMX
-cIL
+aqC
+arC
+asy
+atD
+auH
+avR
+avR
+ayb
+azy
+asy
+awY
+aDi
+aqC
+aqC
+aqC
+aqC
+aqC
+aKc
+aKN
+aqC
+aqC
+aqC
+aOS
+aQj
+cMh
+cHY
acH
acH
acH
@@ -118073,50 +115575,50 @@ aaa
aaa
aaa
aaa
-cGc
+cFp
aaa
aaa
abC
aaa
aaa
aaa
-aqV
-bnO
-cJw
-cXw
-cXz
-cXI
-aqV
+aqU
+bnN
+cIJ
+cWG
+cWJ
+cWS
+aqU
aaa
aaa
aaa
aaa
aaa
aaa
-aXS
-aXS
-aXS
-aXS
-aXS
-aXS
-deS
-aXS
-aXS
-aXS
-aXS
-aXS
-aXS
-aXS
-aXS
-aXS
-aXS
-aXS
-aXE
-aXE
-aXE
-aXS
-aXS
-aXS
+aXR
+aXR
+aXR
+aXR
+aXR
+aXR
+ddy
+aXR
+aXR
+aXR
+aXR
+aXR
+aXR
+aXR
+aXR
+aXR
+aXR
+aXR
+aXD
+aXD
+aXD
+aXR
+aXR
+aXR
aaa
aaa
aaa
@@ -118128,63 +115630,63 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cdM
-cdI
-cdI
-cdI
-cdI
-cdI
-cgm
-cgm
-cgm
-cdI
-cdI
-cdI
-cdI
-cdI
-cdI
-chm
-cnT
-coB
-cpC
-cKH
-cdG
-cfV
-chF
-ctU
-ciW
-cdU
-cvT
-cwJ
-cwK
-cwK
-cwK
-czU
-cAE
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cda
+ccW
+ccW
+ccW
+ccW
+ccW
+cfA
+cfA
+cfA
+ccW
+ccW
+ccW
+ccW
+ccW
+ccW
+cgA
+cng
+cnO
+coP
+cJT
+djE
+djL
+cgT
+djM
+djT
+djG
+cvg
+cvW
+cvX
+cvX
+cvX
+czh
+czR
+cAi
+cAy
+cvg
cAV
-cBl
-cvT
-cBI
-cCa
-ckZ
-cdG
-cdU
-cdM
-cdM
-cdI
-cdI
-cdI
+cBn
+dkb
+djE
+djG
+cda
+cda
+ccW
+ccW
+ccW
aaa
aaa
aaa
@@ -118268,42 +115770,42 @@ adP
aoV
aoV
aoV
-arE
-asA
-atF
+arD
+asz
+atE
aoV
aoV
-cFr
-ayd
-azA
-aAW
-aBM
-aDk
-aEv
-aEv
-aHb
-aIc
-aJf
-aDk
-aKQ
-aEv
-aEv
-aNP
-aOU
-aQo
-cMX
-cIL
+cEE
+ayc
+azz
+aAV
+aBL
+aDj
+aEu
+aEu
+aHa
+aIb
+aJe
+aDj
+aKP
+aEu
+aEu
+aNO
+aOT
+aQn
+cMh
+cHY
acH
acH
acH
acH
-aSO
-aSO
-aSO
-aSO
-aSO
-aSO
-aSO
+aSN
+aSN
+aSN
+aSN
+aSN
+aSN
+aSN
abC
aaa
aaa
@@ -118337,43 +115839,43 @@ abC
aaa
aaa
aaa
-aqV
-bnO
-cJw
-cXw
-cXz
-cXI
-aqV
+aqU
+bnN
+cIJ
+cWG
+cWJ
+cWS
+aqU
aaa
aaa
aaa
-aXE
-aXS
-aXS
-aXS
-aYg
-aYg
-aYg
-aXS
-aXS
-deT
-aXS
-aXS
-aXS
-aYg
-aYg
-aYg
-aYg
-aXS
-aXS
-aXS
-aXS
-aXE
-aXE
-aXE
-aXE
-aXS
-aXS
+aXD
+aXR
+aXR
+aXR
+aYf
+aYf
+aYf
+aXR
+aXR
+ddy
+aXR
+aXR
+aXR
+aYf
+aYf
+aYf
+aYf
+aXR
+aXR
+aXR
+aXR
+aXD
+aXD
+aXD
+aXD
+aXR
+aXR
aaa
aaa
aaa
@@ -118385,61 +115887,61 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
-cdI
-cdI
-cdI
-cdI
-cdM
-cdM
-cdM
-cdM
-cdI
-cju
-cju
-cju
-cju
-cju
-cfI
-cnU
-coC
-cpD
-cKq
-cgy
-cSO
-chM
-chK
-ctU
-cmo
-cvU
-cwK
-cxF
-cwK
-cxF
-cwK
-cAF
-cAV
-cBm
-cBx
-cBJ
-cCb
-cdG
-cCn
-cgv
-cdI
-cdI
-cdI
+ccW
+ccW
+ccW
+ccW
+cda
+cda
+cda
+cda
+ccW
+ciI
+ciI
+ciI
+ciI
+ciI
+ceW
+cnh
+cnP
+coQ
+cJC
+djF
+cRY
+djH
+djA
+djM
+djU
+cvh
+cvX
+cwS
+cvX
+cwS
+cvX
+czS
+cAi
+cAz
+cAK
+cAW
+cBo
+djE
+cBA
+djz
+ccW
+ccW
+ccW
aaa
aaa
aaa
@@ -118523,44 +116025,44 @@ afc
amp
afH
aoV
-apN
-aqF
-arF
-asB
-atG
-aqF
-avT
+apM
+aqE
+arE
+asA
+atF
+aqE
+avS
aoV
-aye
-azB
-aAX
-avS
-aDl
-avS
-avS
-aHc
-aId
-avS
-aDl
-avS
-avS
-avS
-aNQ
-aOV
-aQp
-cMZ
-aSa
-aSO
-aSO
-aSO
-aSO
-aSO
+ayd
+azA
+aAW
+avR
+aDk
+avR
+avR
+aHb
+aIc
+avR
+aDk
+avR
+avR
+avR
+aNP
+aOU
+aQo
+cMj
+aRZ
+aSN
+aSN
+aSN
+aSN
+aSN
+aVm
aVn
-aVo
-aVP
-aWh
-aWv
-aSO
+aVO
+aWg
+aWu
+aSN
abC
aaa
aaa
@@ -118594,45 +116096,45 @@ abC
aaa
aaa
aaa
-aqV
-bnO
-cJw
-cXw
-cXz
-cXI
-aqV
+aqU
+bnN
+cIJ
+cWG
+cWJ
+cWS
+aqU
aaa
aaa
aaa
-aXS
-aXS
-bxK
-bxK
-bzs
-bzs
-bzs
-bzs
-bzs
-deU
-bxK
-bxK
-bwA
-cHu
-bwA
-bzs
-aYg
-aYg
-aXS
-aXS
-aXS
-aXS
-bwA
-bXe
-bwA
-aXS
-aXS
-aXS
-aXS
+aXR
+aXR
+bxJ
+bxJ
+bzq
+bzq
+bzq
+bzq
+bzq
+ddz
+bxJ
+bxJ
+bwz
+cGH
+bwz
+bzq
+aYf
+aYf
+aXR
+aXR
+aXR
+aXR
+bwz
+bWs
+bwz
+aXR
+aXR
+aXR
+aXR
aaa
aaa
aaa
@@ -118642,62 +116144,62 @@ aaa
aad
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
-cdM
-cdI
-cft
-cft
-cft
-cft
-cft
-cdI
-cdI
-cju
-cjZ
-ckR
-clz
+cda
+ccW
+ceH
+ceH
+ceH
+ceH
+ceH
+ccW
+ccW
+ciI
+cjn
+ckf
+ckN
+clq
cmc
-cmO
-cnV
-cgh
-cpC
-cKq
-cdU
-ctU
-cfV
-cSs
-cuK
-cdU
-cvT
-cwL
-cxG
-cyp
-cxG
-czV
-cAE
-cAV
-cBn
-cvT
-ckh
-ckZ
-cdG
-cdG
-cgv
-cdM
-cdM
-cdI
-cdI
+cni
+cfv
+coP
+cJC
+djG
+djM
+djL
+djP
+ctX
+djG
+cvg
+cvY
+cwT
+cxC
+cwT
+czi
+czR
+cAi
+cAA
+cvg
+cjv
+dkb
+djE
+djE
+djz
+cda
+cda
+ccW
+ccW
aaa
aaa
aaa
@@ -118708,21 +116210,21 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -118776,48 +116278,48 @@ adP
adP
adP
alu
-ajX
+deQ
amp
afH
aoV
-apO
-aqG
-arG
-asB
-atH
-auJ
-avU
-axb
-axb
-axb
-aAY
-aBN
-aDm
-axb
-axb
-axb
-awZ
-asz
-aKe
-asz
-asz
-asz
-aNR
-aOW
-aQm
-cNa
-aSb
-aSP
-aTE
-aUb
-aUB
-aUZ
-cFK
-aUZ
-aUZ
-aUZ
-aWw
+apN
+aqF
+arF
+asA
+atG
+auI
+avT
+axa
+axa
+axa
+aAX
+aBM
+aDl
+axa
+axa
+axa
+awY
+asy
+aKd
+asy
+asy
+asy
+aNQ
+aOV
+aQl
+cMk
+aSa
aSO
+aTD
+aUa
+aUA
+aUY
+cEX
+aUY
+aUY
+aUY
+aWv
+aSN
abC
aaa
aaa
@@ -118851,45 +116353,45 @@ abC
aaa
aaa
aaa
-aqV
-bnO
-cJw
-cXw
-cXz
-cXI
-aqV
+aqU
+bnN
+cIJ
+cWG
+cWJ
+cWS
+aqU
aaa
aaa
aaa
-aXS
+aXR
+bxJ
+bwz
+bwz
+bAy
+cGH
+bwz
+bzq
+bwz
+ddA
+cGH
+bwz
+bvg
+cPt
bxK
-bwA
-bwA
-bAA
-cHu
-bwA
-bzs
-bwA
-deV
-cHu
-bwA
-bvh
-cQj
-bxL
-bxK
-cHu
-bwA
-bxK
-bzs
-aYg
-aXS
-cHu
-bVL
-bwA
-aXS
-aXS
-aXS
-aXS
+bxJ
+cGH
+bwz
+bxJ
+bzq
+aYf
+aXR
+cGH
+bVa
+bwz
+aXR
+aXR
+aXR
+aXR
aaa
aaa
aaa
@@ -118899,62 +116401,62 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
-cdM
-cdI
-cft
-cfP
-cgn
-cgT
-cft
-cdM
-cdI
-cju
-cka
-ckS
-clA
+cda
+ccW
+ceH
+cfd
+cfB
+cgh
+ceH
+cda
+ccW
+ciI
+cjo
+ckg
+ckO
+clr
cmd
-cmP
-cnW
-coH
-cYb
-cKq
-cgv
-chb
-cSq
-cSS
-cdU
-cgv
-cvT
-cvT
-cvT
-cvT
-cvT
-cvT
-cvT
-cvT
-cvT
-cvT
-chM
-cdG
-cdG
-ciW
-cgv
-cdM
-cdM
-cdI
-cdI
+cnj
+cnU
+cXl
+cJC
+djz
+djB
+djO
+cSc
+djG
+djz
+cvg
+cvg
+cvg
+cvg
+cvg
+cvg
+cvg
+cvg
+cvg
+cvg
+djH
+djE
+djE
+djT
+djz
+cda
+cda
+ccW
+ccW
aaa
aaa
aaa
@@ -118965,21 +116467,21 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -119039,42 +116541,42 @@ adP
aoV
aoV
aoV
-arG
-asB
-atI
+arF
+asA
+atH
aoV
aoV
-axb
-ayf
-azC
-aAZ
-aBO
-aDn
-azC
-aFV
-axb
-aIe
-aJg
-aKf
-aJg
-aLU
-cFD
-aqD
-aOX
-aQq
-cNc
-aSc
-aSQ
-aTF
-aUc
-aUC
-aVa
-aVo
-aVa
-aVQ
-aWi
-aWx
-aSO
+axa
+aye
+azB
+aAY
+aBN
+aDm
+azB
+aFU
+axa
+aId
+aJf
+aKe
+aJf
+aLT
+cEQ
+aqC
+aOW
+aQp
+cMm
+aSb
+aSP
+aTE
+aUb
+aUB
+aUZ
+aVn
+aUZ
+aVP
+aWh
+aWw
+aSN
abC
aaa
aaa
@@ -119108,110 +116610,110 @@ abC
aaa
aaa
aaa
-aqV
-cXq
-cXs
-cXw
-cXA
-btm
-aqV
+aqU
+cWA
+cWC
+cWG
+cWK
+btl
+aqU
aaa
aaa
-aXE
-aXS
-bxK
-bwA
-bCI
-bwy
-cQI
-bwA
-cHu
-cHu
-deW
-cQe
-cQC
-cRq
-bYq
-bYq
-bYq
-cRJ
-cRL
-bTV
-bwA
-bxK
-bwA
-bwA
-cRS
-cHu
-aYg
-aXS
-aXS
-aXS
-aXS
-aXS
-aXS
+aXD
+aXR
+bxJ
+bwz
+bCE
+bwx
+cPS
+bwz
+cGH
+cGH
+ddB
+cPo
+cPM
+cQA
+bXE
+bXE
+bXE
+cQT
+cQV
+bTy
+bwz
+bxJ
+bwz
+bwz
+cRc
+cGH
+aYf
+aXR
+aXR
+aXR
+aXR
+aXR
+aXR
aaa
aaa
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
-cdI
-cft
-cfQ
-cgn
-cgU
-cft
-cdM
-cdI
-cju
-ckb
-ckT
-clB
-cme
-cmO
-cnX
-cgh
-cpE
-cKq
-cgv
-chK
-cSq
-cST
-cSs
-cgv
-cgv
-cdU
-cdU
-cyq
-cdU
-cdU
-cgv
-cdU
-cgv
+ccW
+ceH
+cfe
+cfB
+cgi
+ceH
+cda
+ccW
+ciI
+cjp
ckh
-ckZ
-cdT
-cgv
-cgv
-cgv
-cdM
-cdM
-cdI
-cdI
+ckP
+cls
+cmc
+cnk
+cfv
+coR
+cJC
+djz
+djA
+djO
+cSd
+djP
+djz
+djz
+djG
+djG
+cxD
+djG
+djG
+djz
+djG
+djz
+cjv
+dkb
+djD
+djz
+djz
+djz
+cda
+cda
+ccW
+ccW
aaa
aaa
aaa
@@ -119222,21 +116724,21 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -119289,49 +116791,49 @@ adP
adP
adP
adP
-cLw
+cKG
amp
-aep
-aep
+deO
+deO
aoV
-apN
-aqH
-arG
-asB
-atI
-aqF
-avT
-axb
-ayg
-azD
-aBa
-aBO
-aDo
-aEw
-aFW
-axb
+apM
+aqG
+arF
+asA
+atH
+aqE
+avS
+axa
+ayf
+azC
+aAZ
+aBN
+aDn
+aEv
+aFV
+axa
+aIe
aIf
-aIg
-aKg
-aIg
-aLV
-aqD
-aNS
-aOS
-aQk
-aRi
-aSd
-aSR
-aTG
-aUd
-aUD
-aVb
-cFL
+aKf
+aIf
+aLU
+aqC
+aNR
+aOR
+aQj
+aRh
+aSc
+aSQ
+aTF
+aUc
+aUC
aVa
-aVa
-aVa
-aVo
-aSO
+cEY
+aUZ
+aUZ
+aUZ
+aVn
+aSN
abC
aaa
aaa
@@ -119365,48 +116867,48 @@ abC
aaa
aaa
aaa
-aqV
-bnO
-cJw
-cXw
-cXz
-cXI
-aqV
+aqU
+bnN
+cIJ
+cWG
+cWJ
+cWS
+aqU
aaa
aaa
-aXS
-bxK
-bxK
-bwy
-bBI
-cUT
-cUT
-cUU
-cUV
-cUW
-deX
-cUY
-cUY
-cUY
-cUZ
-cUY
-cUY
-cUZ
-cUY
-cUY
-cUY
-cUY
-cUZ
-cUZ
-bXf
-bzs
-bzs
-aXS
-aXS
-aXS
-aXS
-aXS
-aXS
+aXR
+bxJ
+bxJ
+bwx
+bBF
+cUd
+cUd
+cUe
+cUf
+cUg
+ddC
+cUi
+cUi
+cUi
+cUj
+cUi
+cUi
+cUj
+cUi
+cUi
+cUi
+cUi
+cUj
+cUj
+bWt
+bzq
+bzq
+aXR
+aXR
+aXR
+aXR
+aXR
+aXR
aaa
aaa
aaa
@@ -119426,49 +116928,49 @@ aaa
aaa
aaa
aaa
-cdI
-cft
-cfR
-cgo
-cgV
-cft
-cdM
-cdI
-cju
-ckc
-ckc
-cju
-cmf
-cju
-cgg
-cgh
-cYc
-cKq
-cgv
-cSP
-cdU
-cdT
-cfV
-cgu
-cgu
-cgu
-cxH
-cyr
-cgu
-cTq
-cAG
-cSz
-cgu
-ckZ
-cdG
-cdq
-cdq
-cdM
-cdM
-cdM
-cdI
-cdI
-cdI
+ccW
+ceH
+cff
+cfC
+cgj
+ceH
+cda
+ccW
+ciI
+cjq
+cjq
+ciI
+clt
+ciI
+cfu
+cfv
+cXm
+cJC
+djz
+cRZ
+djG
+djD
+djL
+djV
+djV
+djV
+djY
+cxE
+djV
+cSA
+czT
+dka
+djV
+dkb
+djE
+djW
+djW
+cda
+cda
+cda
+ccW
+ccW
+ccW
aaa
aaa
aaa
@@ -119479,21 +116981,21 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -119549,46 +117051,46 @@ afE
alw
amq
afE
-aep
+deO
aoV
-apP
-aqI
-arH
-asB
-atJ
-auK
-avV
-axb
-axb
-axb
-aBa
-aBO
-aDp
-axb
-axb
-axb
-cFx
-aIg
-aIg
-aIg
-aIg
-aqD
-aNT
-aOS
-aQk
-aQT
-aSa
-aSO
-aSO
-aSO
-aSO
-aSO
-aVp
+apO
+aqH
+arG
+asA
+atI
+auJ
+avU
+axa
+axa
+axa
+aAZ
+aBN
+aDo
+axa
+axa
+axa
+cEK
+aIf
+aIf
+aIf
+aIf
+aqC
+aNS
+aOR
+aQj
+aQS
+aRZ
+aSN
+aSN
+aSN
+aSN
+aSN
aVo
-aVR
-aVo
-aWv
-aWI
+aVn
+aVQ
+aVn
+aWu
+aWH
abC
aaa
aaa
@@ -119622,48 +117124,48 @@ abC
aaa
aaa
aaa
-aqV
-bnO
-cJw
-cXw
-cXz
-cXI
-aqV
+aqU
+bnN
+cIJ
+cWG
+cWJ
+cWS
+aqU
aaa
aaa
-aXS
-bzs
-cHu
-bAB
-bBJ
-bDV
-bDV
-bDV
-bDV
-bDV
-bDZ
-bDV
-bxK
-cHu
-bwA
-bxK
-cRH
-cRK
-cRM
-bYq
-bYq
-cRP
-cRJ
-bYq
-cVb
-cVd
-bxK
-aXS
-aXS
-aXS
-aXS
-aXS
-aXS
+aXR
+bzq
+cGH
+bAz
+bBG
+bDR
+bDR
+bDR
+bDR
+bDR
+bDU
+bDR
+bxJ
+cGH
+bwz
+bxJ
+cQR
+cQU
+cQW
+bXE
+bXE
+cQZ
+cQT
+bXE
+cUl
+cUn
+bxJ
+aXR
+aXR
+aXR
+aXR
+aXR
+aXR
aaa
aaa
aaa
@@ -119683,48 +117185,48 @@ aaa
aaa
aaa
aaa
-cdI
-cft
-cft
-cgp
-cgW
-cft
-cft
-cdI
-cdI
+ccW
+ceH
+ceH
+cfD
+cgk
+ceH
+ceH
+ccW
+ccW
abC
abC
-cju
-cmg
-cju
-cgg
-cgh
-cYc
-cKq
-cdI
-cSQ
-cgv
-cgZ
-cdG
-cdG
-cdG
-chh
-cdG
-cgZ
-cdG
-cfV
-cjC
-ckZ
-cdG
-cdG
-cgZ
-cgv
-cdM
-cdM
-cdM
-cdM
-cdI
-cdI
+ciI
+clu
+ciI
+cfu
+cfv
+cXm
+cJC
+ccW
+cSa
+djz
+djQ
+djE
+djE
+djE
+djX
+djE
+djQ
+djE
+djL
+djZ
+dkb
+djE
+djE
+djQ
+djz
+cda
+cda
+cda
+cda
+ccW
+ccW
aaa
aaa
aaa
@@ -119736,21 +117238,21 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -119802,50 +117304,50 @@ afE
adP
adP
adP
-aep
+deO
alx
amr
afH
-aep
+deO
aoV
aoV
aoV
-arI
-asB
-atJ
+arH
+asA
+atI
aoV
aoV
-axb
-ayf
-azC
-aBa
-aBO
-aDp
-azC
-aFX
-axb
-aIh
-aJh
-aKh
-aKR
-aLW
-aqD
-aNU
-aOS
-aQk
-aQS
-cIL
+axa
+aye
+azB
+aAZ
+aBN
+aDo
+azB
+aFW
+axa
+aIg
+aJg
+aKg
+aKQ
+aLV
+aqC
+aNT
+aOR
+aQj
+aQR
+cHY
acH
acH
acH
acH
-aSO
-aSO
-aSO
-aSO
-aSO
-aSO
-aSO
+aSN
+aSN
+aSN
+aSN
+aSN
+aSN
+aSN
abC
aaa
aaa
@@ -119879,48 +117381,48 @@ abC
aaa
aaa
aaa
-aqV
-bnO
-cJw
-cXw
-cXz
-cXI
-aqV
+aqU
+bnN
+cIJ
+cWG
+cWJ
+cWS
+aqU
aaa
-aXS
-aXS
-bzs
-bwA
-bwy
-bBJ
-bDV
-bEY
-bEY
-bIm
-bJI
-deY
-bLU
-bLU
-bLU
-bLU
-bLU
-bLU
-bLU
-bLU
-bLU
-bLU
-bLU
-bLU
-bLU
-cQC
-cVe
-bwA
-bxK
-bzs
-cHu
-bwA
-bxK
-aXS
+aXR
+aXR
+bzq
+bwz
+bwx
+bBG
+bDR
+bET
+bET
+bIh
+bJD
+ddD
+bLN
+bLN
+bLN
+bLN
+bLN
+bLN
+bLN
+bLN
+bLN
+bLN
+bLN
+bLN
+bLN
+cPM
+cUo
+bwz
+bxJ
+bzq
+cGH
+bwz
+bxJ
+aXR
aaa
aaa
aaa
@@ -119941,47 +117443,47 @@ aaa
aaa
aaa
aaa
-cdM
-cft
-cgq
-cgX
-chD
-cft
-cdM
-cdI
+cda
+ceH
+cfE
+cgl
+cgR
+ceH
+cda
+ccW
aaa
aaa
-cju
-cmh
-cju
-cnY
-cgh
-cpF
-cKI
-cdI
-cdI
-cgv
-cgw
-cgv
-cgy
-cdG
-chh
-cdG
-cgv
-cdG
-ctU
-ctU
-cdG
-cgy
-cgv
-cgv
-cgv
-cdM
-cdM
-cdM
-cdM
-cdI
-cdI
+ciI
+clv
+ciI
+cnl
+cfv
+coS
+cJU
+ccW
+ccW
+djz
+djR
+djz
+djF
+djE
+djX
+djE
+djz
+djE
+djM
+djM
+djE
+djF
+djz
+djz
+djz
+cda
+cda
+cda
+cda
+ccW
+ccW
aaa
aaa
aaa
@@ -119993,21 +117495,21 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -120065,33 +117567,33 @@ ams
anf
adP
aoV
-apQ
-aqF
-arH
-asB
-atJ
-aqF
-avT
-axb
-ayh
-azE
-aBb
-aBO
-aDq
-aEx
-aFY
-axb
-aqD
-aqD
+apP
aqE
+arG
+asA
+atI
+aqE
+avS
+axa
+ayg
+azD
+aBa
+aBN
+aDp
+aEw
+aFX
+axa
+aqC
+aqC
aqD
-aqD
-aqD
-aqD
-aOY
-cHa
-aRj
-cIL
+aqC
+aqC
+aqC
+aqC
+aOX
+cGn
+aRi
+cHY
acH
acH
abE
@@ -120126,59 +117628,59 @@ aaa
abC
abC
abC
-aXC
-aXC
-aXC
+aXB
+aXB
+aXB
+aXB
aXC
aXD
-aXE
-aYh
-aXE
+aYg
+aXD
aaa
aaa
-aqV
-bnO
-cJw
-cXw
-cXz
-cXI
-aqV
-aXS
-aXS
-aXS
-bxK
-bxK
-bwy
-cUS
-bDV
-bEZ
-bGM
-bIn
-bJJ
-deZ
-bLU
-bNt
-bOr
-bNt
-bLU
-bRF
-bSE
-bRF
-bLU
-bUH
-bVq
-bUH
-bLU
-bYq
-cVb
-cVd
-cHu
-bwA
-bYq
-cah
-bwA
-bwA
-bwA
+aqU
+bnN
+cIJ
+cWG
+cWJ
+cWS
+aqU
+aXR
+aXR
+aXR
+bxJ
+bxJ
+bwx
+cUc
+bDR
+bEU
+bGH
+bIi
+bJE
+ddE
+bLN
+bNl
+bOh
+bNl
+bLN
+bRq
+bSm
+bRq
+bLN
+bUj
+bUQ
+bUj
+bLN
+bXE
+cUl
+cUn
+cGH
+bwz
+bXE
+bZv
+bwz
+bwz
+bwz
abC
abC
abC
@@ -120198,47 +117700,47 @@ abC
abC
abC
abC
-cft
-cft
-cft
-cgY
-chE
-cft
-cdM
-cdI
+ceH
+ceH
+ceH
+cgm
+cgS
+ceH
+cda
+ccW
aaa
aaa
aaa
-aqV
-cfI
-cfJ
-cfK
-cpG
-cfI
-cdI
-cdI
-cdU
-cdM
-cgv
-cdq
-cdq
-cgv
-cgv
-cgv
-cdU
-cTr
-cgv
-cgv
-cgv
-cgv
-cdM
-cdM
-cdM
-cdM
-cdM
-cdM
-cdI
-cdI
+aqU
+ceW
+ceX
+ceY
+coT
+ceW
+ccW
+ccW
+djG
+cda
+djz
+djW
+djW
+djz
+djz
+djz
+djG
+cSB
+djz
+djz
+djz
+djz
+cda
+cda
+cda
+cda
+cda
+cda
+ccW
+ccW
aaa
aaa
aaa
@@ -120250,21 +117752,21 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -120317,43 +117819,43 @@ abW
adP
adP
afH
-aep
+deO
afc
amp
adP
aoV
-apR
-aqJ
-arJ
-asC
-atJ
-auL
-avW
-axb
-axb
-axb
-aBc
-aBO
-aDq
-axb
-axb
-axb
+apQ
+aqI
+arI
+asB
+atI
+auK
+avV
+axa
+axa
+axa
+aBb
+aBN
+aDp
+axa
+axa
+axa
abW
abW
abW
abW
abW
abW
-aKq
-aOS
-aQk
-aQS
-cIL
+aKp
+aOR
+aQj
+aQR
+cHY
acH
abE
abE
abE
-aVc
+aVb
aaa
aaa
aaa
@@ -120380,66 +117882,66 @@ aaa
abC
abC
abC
-aXC
-aXC
-aXC
-aZi
-aXQ
-aYb
-bfR
-cFM
-aXS
-aXS
-aXE
-aXE
+aXB
+aXB
+aXB
+aZh
+aXP
+aYa
+bfQ
+cEZ
+aXR
+aXR
+aXD
+aXD
aaa
-aqV
-cXq
-cXs
-cXw
-cXz
-btm
-aqV
-aXS
-aXS
-aYg
-bxK
-bxK
-bBH
-bBJ
-bDV
-bFa
-bFa
-bIn
-bJK
-dfa
-bLU
-bNt
-bOs
-bNt
-bLU
-bRF
-bSF
-bRF
-bLU
-bUH
-bVr
-bUH
-bLU
-bwA
-cQe
-cVb
-cVd
-bwA
-bYq
-cQv
-caz
-bIO
-caz
-aXE
-aqV
-aqV
-aqV
+aqU
+cWA
+cWC
+cWG
+cWJ
+btl
+aqU
+aXR
+aXR
+aYf
+bxJ
+bxJ
+bBE
+bBG
+bDR
+bEV
+bEV
+bIi
+bJF
+ddF
+bLN
+bNl
+bOi
+bNl
+bLN
+bRq
+bSn
+bRq
+bLN
+bUj
+bUR
+bUj
+bLN
+bwz
+cPo
+cUl
+cUn
+bwz
+bXE
+cPF
+bZN
+bIJ
+bZN
+aXD
+aqU
+aqU
+aqU
abC
abC
abC
@@ -120451,51 +117953,51 @@ aaa
aaa
abC
abC
-aqV
-aqV
-aqV
-aqV
-cfu
-cfS
-cgr
-cgW
-cft
-cft
-cdM
-cdI
+aqU
+aqU
+aqU
+aqU
+ceI
+cfg
+cfF
+cgk
+ceH
+ceH
+cda
+ccW
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cKv
-cqp
-cdI
-cdI
-cdI
-cdM
-cdM
-cdM
-cdM
-cdM
-cdI
-cdI
-cdI
-cdI
-cdM
-cdM
-cdM
-cdM
-cdM
-cdI
-cdI
-cdI
-cdI
-cdI
-cdI
-cdI
+aqU
+cme
+cXi
+cXi
+cJH
+cpC
+ccW
+ccW
+ccW
+cda
+cda
+cda
+cda
+cda
+ccW
+ccW
+ccW
+ccW
+cda
+cda
+cda
+cda
+cda
+ccW
+ccW
+ccW
+ccW
+ccW
+ccW
+ccW
aaa
aaa
aaa
@@ -120507,21 +118009,21 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -120573,7 +118075,7 @@ abW
abW
abW
adP
-aep
+deO
afH
afc
amp
@@ -120582,30 +118084,30 @@ aoV
aoV
aoV
aoV
-asD
+asC
aoV
aoV
aoV
-axb
-ayf
-azC
-aBb
-aBO
-aDq
-azC
-aFV
-aHd
-aHd
-aHd
-aHd
-aHd
-aHd
+axa
+aye
+azB
+aBa
+aBN
+aDp
+azB
+aFU
+aHc
+aHc
+aHc
+aHc
+aHc
+aHc
abW
-aKq
-aOS
-aQk
-aRe
-cIL
+aKp
+aOR
+aQj
+aRd
+cHY
abE
abE
abE
@@ -120634,66 +118136,66 @@ aaa
aaa
abC
abC
+aXB
+aXB
+aXB
+bbl
+aZI
+bcx
+bdj
+baI
+beR
+bfR
aXC
-aXC
-aXC
-bbm
-aZJ
-bcy
-bdk
-baJ
-beS
-bfS
+aXR
+aXR
+aXD
aXD
-aXS
-aXS
-aXE
-aXE
aaa
-aqV
-bnO
-cJw
-cXw
-cXz
-cXI
-aqV
-aXE
-aXS
+aqU
+bnN
+cIJ
+cWG
+cWJ
+cWS
+aqU
+aXD
+aXR
+aYf
+bxJ
+cGH
+bwx
+bBG
+bDR
+bEW
+bEW
+bIi
+bJG
+ddG
+bLN
+bNm
+bOj
+bPo
+bLN
+bRr
+bSo
+bSW
+bLN
+bUk
+bUS
+bVr
+bLN
+bxJ
+cQR
+cRg
+cUp
+cUg
+cUh
+cUn
+cGH
+cGH
+bwz
aYg
-bxK
-cHu
-bwy
-bBJ
-bDV
-bFb
-bFb
-bIn
-bJL
-dfb
-bLU
-bNu
-bOt
-bPz
-bLU
-bRG
-bSG
-bTr
-bLU
-bUI
-bVs
-bWc
-bLU
-bxK
-cRH
-cRW
-cVf
-cUW
-cUX
-cVd
-cHu
-cHu
-bwA
-aYh
abC
abC
abC
@@ -120711,48 +118213,48 @@ aaa
abC
abC
abC
-ceR
-cft
-cft
-cft
-cft
-cft
-cdM
-cdM
-cdI
+cef
+ceH
+ceH
+ceH
+ceH
+ceH
+cda
+cda
+ccW
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cKv
-cqp
-cdI
-cdI
-cdI
-cdM
-cdM
-cdM
-cdM
-cdM
-cdM
-cdM
-cdI
-cdI
-cdM
-cdM
-cdM
-cdM
-cdM
-cdI
-cdI
-cdI
-cdI
-cdI
-cdI
-cdI
+aqU
+cme
+cXi
+cXi
+cJH
+cpC
+ccW
+ccW
+ccW
+cda
+cda
+cda
+cda
+cda
+cda
+cda
+ccW
+ccW
+cda
+cda
+cda
+cda
+cda
+ccW
+ccW
+ccW
+ccW
+ccW
+ccW
+ccW
aaa
aaa
aaa
@@ -120764,21 +118266,21 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -120830,39 +118332,39 @@ abW
abW
acH
acH
-aep
+deO
afE
-awt
+aws
amp
afE
adP
-cLt
-aqK
-cLv
-aiA
-atK
+cKD
+aqJ
+cKF
+dfr
+atJ
anT
-avX
-axb
-ayi
-azF
-aBd
-aBP
-aDq
-aEy
-aFZ
-aHd
-aIi
-aJi
-aKi
-aKS
-aHd
+avW
+axa
+ayh
+azE
+aBc
+aBO
+aDp
+aEx
+aFY
+aHc
+aIh
+aJh
+aKh
+aKR
+aHc
abW
-aKq
-aOZ
-aQk
-aQS
-aSe
+aKp
+aOY
+aQj
+aQR
+aSd
abE
abE
abE
@@ -120889,68 +118391,68 @@ aaa
aaa
aaa
abC
+aXB
+aXB
+aXP
+aYa
+aYo
+aZH
+aZH
+aYa
+bdk
+bea
+cGr
+bfS
aXC
-aXC
-aXQ
-aYb
-aYp
-aZI
-aZI
-aYb
-bdl
-beb
-cHe
-bfT
+aXR
+aXR
aXD
-aXS
-aXS
-aXE
-aXE
-aXE
-aqV
-bnO
-cJw
-cXw
-cXz
-cXI
-aqV
-aXE
-aXS
-aYg
-bzs
-bAz
-bBI
-bBK
-bDV
-bDV
-bDV
-bIo
-bDV
-bDZ
-bLU
-bNv
-bOu
-bPA
-bLU
-bNv
-bOu
-bTs
-bLU
-bUJ
-bOu
-bWd
-bLU
-bDV
-cHu
-cHu
-bwA
-cHu
-cQe
-cVj
-bwA
-bwA
-aXS
-aXS
+aXD
+aXD
+aqU
+bnN
+cIJ
+cWG
+cWJ
+cWS
+aqU
+aXD
+aXR
+aYf
+bzq
+bAx
+bBF
+bBH
+bDR
+bDR
+bDR
+bIj
+bDR
+bDU
+bLN
+bNn
+bOk
+bPp
+bLN
+bNn
+bOk
+bSX
+bLN
+bUl
+bOk
+bVs
+bLN
+bDR
+cGH
+cGH
+bwz
+cGH
+cPo
+cUt
+bwz
+bwz
+aXR
+aXR
aaa
aaa
aaa
@@ -120969,43 +118471,43 @@ aaa
aaa
aaa
aaa
-cdI
-cdI
-cdI
-cdI
-cdI
-cdI
-cdI
-cdI
+ccW
+ccW
+ccW
+ccW
+ccW
+ccW
+ccW
+ccW
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cKv
-cqp
+aqU
+cme
+cXi
+cXi
+cJH
+cpC
aaa
aaa
-aWs
+aWr
aaa
-cdI
-cdI
-cdM
-cdM
-cdM
-cdM
-cdM
-cdM
-cdM
-cdM
-cdM
-cdM
-cdM
-cdI
-cdI
-cdI
+ccW
+ccW
+cda
+cda
+cda
+cda
+cda
+cda
+cda
+cda
+cda
+cda
+cda
+ccW
+ccW
+ccW
aaa
aaa
aaa
@@ -121021,21 +118523,21 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -121096,30 +118598,30 @@ aoW
anY
anY
anY
-asE
-atL
-cLK
-avY
+asD
+atK
+cKU
+avX
afH
-axb
-axb
-axb
-aBQ
-aDr
-aDr
-aDr
-aHd
-aIj
-aJj
-aKj
-aKT
-aHd
+axa
+axa
+axa
+aBP
+aDq
+aDq
+aDq
+aHc
+aIi
+aJi
+aKi
+aKS
+aHc
abW
-aKq
-aPa
-aQk
-aQS
-aSe
+aKp
+aOZ
+aQj
+aQR
+aSd
abE
abE
abE
@@ -121145,69 +118647,69 @@ aaa
aaa
aaa
abC
-aYm
-aYE
-aZf
-aYI
-aYp
-baJ
-aYp
-aYp
-aYp
-bdm
-bec
-bec
-bfU
+aYl
+aYD
+aZe
+aYH
+aYo
+baI
+aYo
+aYo
+aYo
+bdl
+beb
+beb
+bfT
+aXC
+aYf
+aXR
+aXR
+aXR
aXD
-aYg
-aXS
-aXS
-aXS
-aXE
-bmu
-bnP
-cJw
-cXw
-cXz
-btn
-buL
-aXE
-aXS
-bxK
-bwA
-bxM
-cQB
-bxK
-bDV
-bFc
-bGN
-bGO
-deM
-dfc
-bLV
-bNw
-bLW
-bPB
-bQE
-bNw
-bLW
-bPB
-bTW
-bUK
-bLW
-bWe
-bWF
-bDV
-bYq
-cHy
-bYq
-bwA
-bYq
-cVj
-cRV
-bxK
-aXS
-aXS
+bmt
+bnO
+cIJ
+cWG
+cWJ
+btm
+buK
+aXD
+aXR
+bxJ
+bwz
+bxL
+cPL
+bxJ
+bDR
+bEX
+bGI
+bGJ
+ddu
+ddH
+bLO
+bNo
+bLP
+bPq
+bQq
+bNo
+bLP
+bPq
+bTz
+bUm
+bLP
+bVt
+bVU
+bDR
+bXE
+cGL
+bXE
+bwz
+bXE
+cUt
+cRf
+bxJ
+aXR
+aXR
aaa
aaa
aaa
@@ -121229,38 +118731,38 @@ aaa
aaa
aaa
aaa
-cdI
-cdI
-cdI
-cdI
-cdI
+ccW
+ccW
+ccW
+ccW
+ccW
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cKv
-cqp
+aqU
+cme
+cXi
+cXi
+cJH
+cpC
aaa
aaa
-aWs
+aWr
aaa
aaa
aaa
aaa
aaa
-cdI
-cdI
-cdM
-cdM
-cdM
-cdM
-cdM
-cdI
-cdI
-cdI
+ccW
+ccW
+cda
+cda
+cda
+cda
+cda
+ccW
+ccW
+ccW
aaa
aaa
aaa
@@ -121278,21 +118780,21 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -121353,30 +118855,30 @@ afc
afc
alx
afc
-aqg
-atM
-ajW
-avZ
-aQL
-aQL
-aQL
-aQL
-aQL
-aDs
-aEz
-aGa
-aHe
-aIk
-aJk
-aKk
-aKU
+aqf
+atL
+deN
+avY
+aQK
+aQK
+aQK
+aQK
+aQK
+aDr
+aEy
+aFZ
aHd
+aIj
+aJj
+aKj
+aKT
+aHc
abW
-aKq
-cIE
-aQk
-aQS
-aSe
+aKp
+cHR
+aQj
+aQR
+aSd
abE
abE
abE
@@ -121402,71 +118904,71 @@ aaa
aaa
aaa
abC
-aYm
-aYb
-aZg
-aZg
-aYp
-aYp
-aYG
-aYp
-aYp
-bdm
-bec
-bec
-bfV
-cFN
-aYg
-aYg
-aYg
-aYg
-aYK
-bmv
-aYK
-cJx
-aYN
-brR
-aYK
-buM
-aYK
-aXS
-bxK
-cHu
-bwy
-cUQ
-bCJ
-bDW
-bFd
-bGP
-bGP
-bGP
-bKF
-dfd
-dfe
-dfh
-bPC
-dfk
-dfn
-dfs
-dfy
-dfF
-dfQ
-dfV
-bWf
-bUK
-bDV
-cHw
-bYq
-cQv
-cHA
-cQT
-cVj
-cSc
-bwA
-aYg
-aXS
-aXS
-aXS
+aYl
+aYa
+aZf
+aZf
+aYo
+aYo
+aYF
+aYo
+aYo
+bdl
+beb
+beb
+bfU
+cFa
+aYf
+aYf
+aYf
+aYf
+aYJ
+bmu
+aYJ
+cIK
+aYM
+brQ
+aYJ
+buL
+aYJ
+aXR
+bxJ
+cGH
+bwx
+cUa
+bCF
+bDS
+bEY
+bGK
+bGK
+bGK
+bKz
+ddI
+ddJ
+ddM
+bPr
+ddO
+ddQ
+ddV
+dea
+deh
+deq
+dev
+bVu
+bUm
+bDR
+cGJ
+bXE
+cPF
+cGN
+cQd
+cUt
+cRm
+bwz
+aYf
+aXR
+aXR
+aXR
aaa
aaa
aaa
@@ -121494,30 +118996,30 @@ aaa
aaa
aaa
aaa
-aqV
-cXX
-cXZ
-cXY
-cYd
-cXX
+aqU
+cXh
+cXj
+cXi
+cXn
+cXh
aaa
aaa
-aWs
+aWr
aaa
aaa
aaa
aaa
aaa
-cdI
-cdI
-cdM
-cdM
-cdM
-cdM
-cdM
-cdI
-cdI
-cdI
+ccW
+ccW
+cda
+cda
+cda
+cda
+cda
+ccW
+ccW
+ccW
aaa
aaa
aaa
@@ -121535,21 +119037,21 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -121607,33 +119109,33 @@ adP
ani
anZ
aoX
-apS
-ajX
-arK
-arK
-arK
-arK
-arK
-arK
-ayj
-ayj
-ayj
-ayj
-ayj
-aEA
-aGb
-aHe
-aIl
-aJl
-aHe
-aHe
+apR
+deQ
+arJ
+arJ
+arJ
+arJ
+arJ
+arJ
+ayi
+ayi
+ayi
+ayi
+ayi
+aEz
+aGa
aHd
-aHe
-aHe
-aPb
-aQl
-aRa
-aSe
+aIk
+aJk
+aHd
+aHd
+aHc
+aHd
+aHd
+aPa
+aQk
+aQZ
+aSd
abE
abE
abE
@@ -121659,71 +119161,71 @@ aaa
aaa
aaa
abC
+aXB
+aYE
+aZf
+aZf
+aYo
+aXP
+aYE
+aYa
+aYo
+cGq
+bec
+bec
+cFh
aXC
-aYF
-aZg
-aZg
-aYp
-aXQ
-aYF
-aYb
-aYp
-cHd
-bed
-bed
-cFU
-aXD
-aYg
-aYg
-aYg
-aYg
-aYK
-bmw
-cJf
-cJy
-aZn
-cXB
-aYK
-cGf
-aYK
-aXS
-bxK
-bxK
-cQu
-cUR
-bCK
-bDX
-bFe
-bGQ
-bGQ
-deN
-bKG
-bLX
-bNy
-bOv
-bPD
-bTY
-bNy
-bNy
-bTu
-bTY
-bUL
-bVt
-bWg
-dge
-bDV
-cHx
-cHz
-bYq
-cHu
-bxK
-cVj
-cSd
-cRU
-aYg
-aXS
-aXS
-aXS
+aYf
+aYf
+aYf
+aYf
+aYJ
+bmv
+cIs
+cIL
+aZm
+cWL
+aYJ
+cFs
+aYJ
+aXR
+bxJ
+bxJ
+cPE
+cUb
+bCG
+bDT
+bEZ
+bGL
+bGL
+ddv
+bKA
+bLQ
+bNp
+bOl
+bPs
+bTA
+bNp
+bNp
+bSY
+bTA
+bUn
+bUT
+bVv
+deE
+bDR
+cGK
+cGM
+bXE
+cGH
+bxJ
+cUt
+cRn
+cRe
+aYf
+aXR
+aXR
+aXR
aaa
aaa
aaa
@@ -121751,29 +119253,29 @@ aaa
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cKv
-cqp
+aqU
+cme
+cXi
+cXi
+cJH
+cpC
aaa
aaa
-aWs
+aWr
aaa
aaa
aaa
aaa
aaa
-cdI
-cdI
-cdM
-cdM
-cdM
-cdM
-cdM
-cdI
-cdI
+ccW
+ccW
+cda
+cda
+cda
+cda
+cda
+ccW
+ccW
aaa
aaa
aaa
@@ -121792,21 +119294,21 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -121865,32 +119367,32 @@ akl
akl
akl
akl
-aqg
-arK
-asF
-atN
-auM
-awa
-asJ
-ayk
-azG
-aBe
-aBR
-ayo
-aEB
-aGc
-aHe
-aIm
-aJm
-cLd
-aKV
+aqf
+arJ
+asE
+atM
+auL
+avZ
+asI
+ayj
+azF
+aBd
+aBQ
+ayn
+aEA
+aGb
aHd
-aMZ
-aNV
-aPc
-aQk
-aQS
-aSe
+aIl
+aJl
+cKp
+aKU
+aHc
+aMY
+aNU
+aPb
+aQj
+aQR
+aSd
abE
abE
abE
@@ -121915,73 +119417,73 @@ abC
abC
abC
abC
-aXC
-aYb
-aYF
-aZh
-aZi
-aYp
-aYG
+aXB
+aYa
aYE
-aYb
-aYp
-bdn
-aYp
-aXQ
+aZg
+aZh
+aYo
aYF
-aXD
-aYg
-aYK
-aYK
-aYK
-aYK
-bmx
-cJm
+aYD
+aYa
+aYo
+bdm
+aYo
+aXP
+aYE
+aXC
+aYf
+aYJ
+aYJ
+aYJ
+aYJ
+bmw
+cIz
+aZl
aZm
-aZn
-cXB
-aYK
-buM
-aYK
-aYK
-aYK
-aYK
-bAB
-bBJ
-bCL
-bDZ
-bFf
-bGO
-bGO
-bJM
-bKH
-bQM
-dff
-bOw
-bPF
-bQH
-bQH
-bQH
-bTv
-bQH
-bVK
-bVu
-bWh
-bUK
-bLU
-bLU
-bLU
-bLU
-bLU
-bwA
-cVj
-bxL
-cHu
-aYg
-aXS
-aXS
-aXS
-aXS
+cWL
+aYJ
+buL
+aYJ
+aYJ
+aYJ
+aYJ
+bAz
+bBG
+bCH
+bDU
+bFa
+bGJ
+bGJ
+bJH
+bKB
+bQx
+ddK
+bOm
+bPt
+bQs
+bQs
+bQs
+bSZ
+bQs
+bUZ
+bUU
+bVw
+bUm
+bLN
+bLN
+bLN
+bLN
+bLN
+bwz
+cUt
+bxK
+cGH
+aYf
+aXR
+aXR
+aXR
+aXR
aaa
aaa
aaa
@@ -122008,15 +119510,15 @@ aaa
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cKv
-cqp
+aqU
+cme
+cXi
+cXi
+cJH
+cpC
aaa
aaa
-aWs
+aWr
aaa
aaa
aaa
@@ -122122,32 +119624,32 @@ anj
amw
aoY
akl
-ajW
-arK
-asG
-atO
-auN
-awb
-asJ
-ayl
-azH
-aBf
-aBS
-ayo
-aEC
-aGd
-aHe
-aIn
-aJn
-aKm
-aKW
+deN
+arJ
+asF
+atN
+auM
+awa
+asI
+ayk
+azG
+aBe
+aBR
+ayn
+aEB
+aGc
aHd
-cMT
-aNW
-aPc
-aQk
-aQS
-aSe
+aIm
+aJm
+aKl
+aKV
+aHc
+cMd
+aNV
+aPb
+aQj
+aQR
+aSd
abE
abE
abE
@@ -122172,73 +119674,73 @@ aaa
aaa
aaa
abC
-aXC
-aYn
-aYe
-aZi
+aXB
+aYm
+aYd
aZh
-aXQ
-aYp
-aYb
-aYb
-aYp
-bdo
-aYF
-beT
-cFV
-aXD
-aYg
-aYK
-bap
-bap
-blh
-bmy
-cJm
+aZg
+aXP
+aYo
+aYa
+aYa
+aYo
+bdn
+aYE
+beS
+cFi
+aXC
+aYf
+aYJ
+bao
+bao
+blg
+bmx
+cIz
+aZl
aZm
-aZn
-brS
-aYK
-buO
-bwi
-baO
-byu
-aYK
-bAC
-bBJ
-bxK
-bDZ
-bFg
-bGR
-bIp
-bJN
-bGO
-bGO
-bGO
-bOx
-dfi
-dfl
-dfo
-dft
-dfz
-dfG
-bUN
-bVu
-bWi
-bWG
-bXg
-bXz
-bYh
-bYh
-bLU
-cQj
-cVj
-cVo
-cVo
-cVp
-cVp
-cVo
-cVo
-aXS
+brR
+aYJ
+buN
+bwh
+baN
+byt
+aYJ
+bAA
+bBG
+bxJ
+bDU
+bFb
+bGM
+bIk
+bJI
+bGJ
+bGJ
+bGJ
+bOn
+ddK
+ddK
+ddR
+ddW
+deb
+dei
+bUo
+bUU
+bVx
+bVV
+bWu
+bWN
+bXv
+bXv
+bLN
+cPt
+cUt
+cUy
+cUy
+cUz
+cUz
+cUy
+cUy
+aXR
aaa
aaa
aaa
@@ -122265,15 +119767,15 @@ aaa
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cKv
-cqp
+aqU
+cme
+cXi
+cXi
+cJH
+cpC
aaa
aaa
-aWs
+aWr
aaa
aaa
aaa
@@ -122290,12 +119792,12 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -122378,33 +119880,33 @@ amu
ank
aoa
aoZ
-apT
-ajW
-arK
-asH
-atP
-auN
-awc
-asJ
-aym
-azI
-aBf
-aBT
-ayo
-aED
-aGe
-aHe
-aIo
-aJo
-aKl
-aKX
-cFA
-aNa
-aNW
-aPc
-aQk
-aQS
-aSe
+apS
+deN
+arJ
+asG
+atO
+auM
+awb
+asI
+ayl
+azH
+aBe
+aBS
+ayn
+aEC
+aGd
+aHd
+aIn
+aJn
+aKk
+aKW
+cEN
+aMZ
+aNV
+aPb
+aQj
+aQR
+aSd
abE
abE
abE
@@ -122429,72 +119931,72 @@ aaa
aaa
aaa
abC
-aXC
+aXB
+aYn
+aYF
aYo
-aYG
-aYp
-aYp
-aXQ
-aXQ
-aXQ
-aYp
-aYp
-bdp
-aXD
-aXD
-aXD
-aXD
-aYg
-aYK
-baO
-baO
-bli
-baO
-cJn
-boX
-aZn
-brT
-aYK
-buO
-baO
-baO
-byv
-bzt
-bAD
-bBJ
-bwA
-bDZ
-bFh
-deK
-bIq
-bJN
-bKJ
-bGO
-bGO
-bGO
-bNA
-bGO
-bQI
-dfu
-bPH
-dfH
-bUO
-bVu
-bWj
-bWH
-bOu
-bXA
-bYi
-bYO
-bLU
-cQe
-cVj
-cVp
-cVu
-cVA
-cVF
-cVL
-cVo
+aYo
+aXP
+aXP
+aXP
+aYo
+aYo
+bdo
+aXC
+aXC
+aXC
+aXC
+aYf
+aYJ
+baN
+baN
+blh
+baN
+cIA
+boW
+aZm
+brS
+aYJ
+buN
+baN
+baN
+byu
+bzr
+bAB
+bBG
+bwz
+bDU
+bFc
+ddt
+bIl
+bJI
+bKC
+bGJ
+bGJ
+bGJ
+bNq
+bGJ
+bQt
+ddX
+bPu
+dej
+def
+bUU
+bVy
+bVW
+bOk
+bWO
+bXw
+bYc
+bLN
+cPo
+cUt
+cUz
+cUE
+cUK
+cUP
+cUV
+cUy
aaa
aaa
aaa
@@ -122522,15 +120024,15 @@ aaa
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cKv
-cqp
+aqU
+cme
+cXi
+cXi
+cJH
+cpC
aaa
aaa
-aWs
+aWr
aaa
aaa
aaa
@@ -122547,12 +120049,12 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -122635,33 +120137,33 @@ amv
amv
aob
apa
-apU
-ajW
-arK
+apT
+deN
+arJ
+asH
+atP
+auM
+awc
asI
-atQ
-auN
-awd
-asJ
+aym
+azI
+aBe
+aBT
ayn
-azJ
-aBf
-aBU
-ayo
-aDt
-aGf
-aHe
-aIp
-aJp
-aKl
-cLe
-aLX
-aNa
-aNW
-aPc
-aQs
-aQS
-aSe
+aDs
+aGe
+aHd
+aIo
+aJo
+aKk
+cKq
+aLW
+aMZ
+aNV
+aPb
+aQr
+aQR
+aSd
abE
abE
abE
@@ -122685,79 +120187,79 @@ aaa
aaa
aaa
abC
+aXB
+aYa
+aXP
+aYo
+aZi
+aYo
+aYo
+aYa
+aYE
+baI
+baI
+bdp
+bed
+beT
+bfV
aXC
-aYb
-aXQ
-aYp
-aZj
-aYp
-aYp
-aYb
-aYF
-baJ
-baJ
-bdq
-bee
-beU
-bfW
-aXD
-aXS
-aYK
-baO
-baO
-bli
-bbw
-cJm
+aXR
+aYJ
+baN
+baN
+blh
+bbv
+cIz
+aZl
aZm
-aZn
-cXB
-aYK
-buN
-baO
-baO
-byv
-bzt
-bAE
-bBK
-cHu
-bDZ
-bFi
-deL
-bIr
-deO
-bKK
-bLZ
-bNB
-bOz
-bGO
-bGO
-dfp
-dfv
-bQJ
-dfI
-bUO
-bUP
-bWk
-bWI
-bXh
-bXB
-bYh
-bYh
-bLU
-bYq
-cVj
-cVo
-cVv
-cVv
-cVG
-cVM
-cVR
-cVW
-cWa
-cWa
-cWa
-cWa
-cWj
+cWL
+aYJ
+buM
+baN
+baN
+byu
+bzr
+bAC
+bBH
+cGH
+bDU
+bFd
+ddt
+bIm
+ddw
+bKD
+bLR
+bNr
+bOp
+bGJ
+bGJ
+ddS
+ddY
+bQu
+dek
+def
+bUp
+bVz
+bVX
+bWv
+bWP
+bXv
+bXv
+bLN
+bXE
+cUt
+cUy
+cUF
+cUF
+cUQ
+cUW
+cVb
+cVg
+cVk
+cVk
+cVk
+cVk
+cVt
aaa
aaa
aaa
@@ -122779,15 +120281,15 @@ aaa
aaa
aaa
aaa
-aqV
-cXX
-cYa
-cXY
-cpH
-cXX
+aqU
+cXh
+cXk
+cXi
+coU
+cXh
abC
abC
-aWs
+aWr
aaa
aaa
aaa
@@ -122801,16 +120303,16 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -122892,33 +120394,33 @@ amw
anl
aoc
amw
-apU
-aqL
-arK
-asJ
-asJ
-auO
-awe
-asJ
-ayo
-azK
-ayo
-aBV
-ayo
-aEE
-aGg
-aHf
-aIq
-aJq
-aKn
-aKY
-aLX
-aNa
-aNW
-aPc
-aQk
-aQS
-aSe
+apT
+aqK
+arJ
+asI
+asI
+auN
+awd
+asI
+ayn
+azJ
+ayn
+aBU
+ayn
+aED
+aGf
+aHe
+aIp
+aJp
+aKm
+aKX
+aLW
+aMZ
+aNV
+aPb
+aQj
+aQR
+aSd
abE
abE
abE
@@ -122942,79 +120444,79 @@ aaa
aaa
aaa
abC
+aXB
+aYb
+aYo
+aYo
+aYa
+aZH
+aYd
+aYo
+aYa
+bbL
+bbM
+bbM
+bbL
+bbN
+bfW
aXC
-aYc
-aYp
-aYp
-aYb
-aZI
-aYe
-aYp
-aYb
-bbM
-bbN
-bbN
-bbM
-bbO
-bfX
-aXD
-aXS
-aYK
-baO
-baO
-bli
+aXR
+aYJ
baN
-cJm
+baN
+blh
+baM
+cIz
+aZl
aZm
-aZn
-brU
-bto
-buP
-baO
-cPN
+brT
+btn
+buO
baN
-aYK
-bAF
-bwj
-bwj
-bDZ
-bFj
-bGS
-bIs
-bDZ
-bDV
-bDV
-dfg
-bOA
-bGO
-bGO
-bQK
-dfw
-bQJ
-dfJ
-dfR
-bVy
-dfX
-bWJ
-bLU
-bLU
-bLU
-bLU
-bLU
-cRP
-cVk
+cOX
+baM
+aYJ
+bAD
+bwi
+bwi
+bDU
+bFe
+bGN
+bIn
+bDU
+bDR
+bDR
+ddL
+bOq
+bGJ
+bGJ
+bQv
+ddY
+bQu
+dek
+der
+bUV
+dex
+bVY
+bLN
+bLN
+bLN
+bLN
+bLN
+cQZ
+cUu
+cUA
+cUG
+cUL
+cUR
+cUX
+cVc
+cVc
+cVc
+cVm
cVq
-cVw
-cVB
-cVH
-cVN
-cVS
-cVS
-cVS
-cWc
-cWg
-aqV
-aqV
+aqU
+aqU
aaa
aaa
aaa
@@ -123036,38 +120538,38 @@ aaa
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cKv
-cqp
+aqU
+cme
+cXi
+cXi
+cJH
+cpC
aaa
aaa
-aWs
+aWr
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -123149,33 +120651,33 @@ amx
alD
aod
apb
-apV
-apT
+apU
+apS
akl
-asK
-cFq
-auP
-awf
-awf
+asJ
+cED
+auO
+awe
+awe
+ayo
+azK
ayp
-azL
-ayq
-aBW
-aDt
-aEF
-aGh
-aCg
-aIr
-aDt
-aKo
-aKZ
-cFB
-aNa
-aNW
-aPc
-aQk
-aQS
-cIL
+aBV
+aDs
+aEE
+aGg
+aCf
+aIq
+aDs
+aKn
+aKY
+cEO
+aMZ
+aNV
+aPb
+aQj
+aQR
+cHY
abE
abE
abE
@@ -123199,79 +120701,79 @@ aaa
aaa
aaa
abC
-aXC
-aYd
-aYp
-aYp
-aZk
-aZJ
+aXB
+aYc
+aYo
+aYo
+aZj
aZI
-aYp
-aYp
+aZH
+aYo
+aYo
+bbM
+bcy
+bdq
bbN
-bcz
-bdr
-bbO
-bcB
-bfY
-aXD
-aXS
-aYK
-bcI
-bkA
-blj
-cPN
-cJm
-boY
-bqn
-brV
-aYK
-aYK
-bwj
-bwj
-bwj
-bzu
-bAG
-bBL
-bCM
-bEa
-bFk
-bGT
-bIt
-bJP
-bKL
-bMa
+bcA
+bfX
+aXC
+aXR
+aYJ
+bcH
+bkz
+bli
+cOX
+cIz
+boX
+bqm
+brU
+aYJ
+aYJ
+bwi
+bwi
+bwi
+bzs
+bAE
+bBI
+bCI
bDV
-bOB
+bFf
bGO
-bGO
-bRI
-bSI
-bQJ
-dfK
-bUO
-bUQ
-bWl
-bWG
-bXg
-bXC
-bYj
-bYj
-bLU
-bYq
-cVl
-cVo
-cVx
-cVC
-cVI
-cVO
-cVT
-cVX
-cVT
-cWd
-cWg
-cWg
-cWk
+bIo
+bJJ
+bKE
+bLS
+bDR
+bOr
+bGJ
+bGJ
+ddS
+ddY
+bQu
+dek
+def
+bUq
+bVA
+bVV
+bWu
+bWQ
+bXx
+bXx
+bLN
+bXE
+cUv
+cUy
+cUH
+cUM
+cUS
+cUY
+cVd
+cVh
+cVd
+cVn
+cVq
+cVq
+cVu
aaa
aaa
aaa
@@ -123293,38 +120795,38 @@ aaa
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cKv
-cqp
+aqU
+cme
+cXi
+cXi
+cJH
+cpC
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -123406,33 +120908,33 @@ amy
alD
aoe
amw
-apW
-aqM
-arL
+apV
+aqL
+arK
api
alD
-auQ
-awg
-awg
-ayq
-ayx
-ayq
-aBX
-aDt
-aEG
-aGh
-awg
-aIs
-aDt
-aKl
-aLa
-aLY
-aNb
-aNX
-aPc
-aQk
-aQS
-cIL
+auP
+awf
+awf
+ayp
+ayw
+ayp
+aBW
+aDs
+aEF
+aGg
+awf
+aIr
+aDs
+aKk
+aKZ
+aLX
+aNa
+aNW
+aPb
+aQj
+aQR
+cHY
abW
abE
abE
@@ -123455,80 +120957,80 @@ aaa
aaa
aaa
abC
-aXC
-aXO
-aXQ
-aYq
-aYH
-aYH
-aZK
-bag
-baK
-bbn
-bbN
-bcA
-cJk
-bef
-beV
-bfZ
-cJt
-cJi
-cJi
-cJi
-cJi
-blk
-cJi
-cJo
-boZ
-bqo
-brW
-aYK
-aYK
-bwj
-bxu
-byw
-bzv
-bAH
-byw
-byw
-bEb
-bFl
-bGU
-bIu
-bJP
-bKM
-bMb
-bDV
-bOC
-bGO
-bGO
-bQI
-bSJ
-dfA
-cHs
-bQI
-bUQ
-dfY
-bWH
-bOu
-bXD
-bYk
-bYP
-bLU
-bYq
+aXB
+aXN
+aXP
+aYp
+aYG
+aYG
+aZJ
+baf
+baJ
+bbm
+bbM
+bcz
+cIx
+bee
+beU
+bfY
+cIG
+cIv
+cIv
+cIv
+cIv
+blj
+cIv
+cIB
+boY
+bqn
+brV
+aYJ
+aYJ
+bwi
+bxt
+byv
+bzt
+bAF
+byv
+byv
+bDW
+bFg
+bGP
+bIp
+bJJ
+bKF
+bLT
+bDR
+bOs
+bGJ
+bGJ
+bQt
+bSp
+dec
+cGF
+bQt
+bUq
+dey
+bVW
+bOk
+bWR
+bXy
+bYd
+bLN
+bXE
+cUv
+cUz
+cUI
+cUN
+cUT
+cUZ
+cVe
+cVi
cVl
-cVp
-cVy
-cVD
-cVJ
-cVP
-cVU
-cVY
-cWb
-cWe
-cWh
-cWi
-cWl
+cVo
+cVr
+cVs
+cVv
aaa
aaa
aaa
@@ -123550,38 +121052,38 @@ aaa
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cKv
-cqp
+aqU
+cme
+cXi
+cXi
+cJH
+cpC
aaa
aaa
-aWs
+aWr
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -123663,33 +121165,33 @@ amz
alD
aof
amw
-apX
-aqN
+apW
+aqM
api
api
alD
-auR
-awg
-awg
-ayr
-azM
-aBg
-aBY
-aDu
-aEH
-aGh
-awg
-aIt
+auQ
+awf
+awf
+ayq
+azL
+aBf
+aBX
aDt
-arQ
-arQ
-arQ
-arQ
-arQ
-aOS
-aQk
-aQT
-cIL
+aEG
+aGg
+awf
+aIs
+aDs
+arP
+arP
+arP
+arP
+arP
+aOR
+aQj
+aQS
+cHY
abW
abW
abW
@@ -123712,80 +121214,80 @@ aaa
aaa
aaa
abC
+aXB
+aXO
+aXO
+aXO
+aYH
+aXO
+aXO
+aXO
aXC
-aXP
-aXP
-aXP
-aYI
-aXP
-aXP
-aXP
-aXD
-bbo
-bbM
-bbO
-bds
-beg
-beW
-bes
-bhc
-bhc
-bhc
-bjB
-bhc
-bll
-bmz
-bhc
-bpa
-bqp
-brX
-bhc
-buQ
-bwk
-bxv
-byx
-bzw
-bAI
-bBM
-bCN
-bEc
-bFm
-bGV
-bIv
-bJQ
-bKN
-bMc
-bNC
-bOD
-dfj
-bGO
-dfq
-bOy
-dfB
-dfL
-dfS
-bUP
-dfZ
-bWI
-bXh
-bXE
-bYj
-bYj
+bbn
+bbL
+bbN
+bdr
+bef
+beV
+ber
+bhb
+bhb
+bhb
+bjA
+bhb
+blk
+bmy
+bhb
+boZ
+bqo
+brW
+bhb
+buP
+bwj
+bxu
+byw
+bzu
+bAG
+bBJ
+bCJ
+bDX
+bFh
+bGQ
+bIq
+bJK
+bKG
bLU
-bYq
-cVm
+bNs
+bOt
+ddN
+bGJ
+ddT
+bOo
+ded
+del
+des
+bUp
+dez
+bVX
+bWv
+bWS
+bXx
+bXx
+bLN
+bXE
+cUw
+cUz
+cUJ
+cUO
+cUU
+cVa
+cVf
+cVj
+cVf
cVp
-cVz
-cVE
-cVK
-cVQ
-cVV
-cVZ
-cVV
-cWf
-cWg
-cWg
-cWk
+cVq
+cVq
+cVu
aaa
aaa
aaa
@@ -123807,38 +121309,38 @@ aaa
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cKv
-cqp
+aqU
+cme
+cXi
+cXi
+cJH
+cpC
abC
abC
-aWs
+aWr
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -123920,33 +121422,33 @@ amA
alD
aog
apc
-apY
-aqN
+apX
+aqM
api
api
alD
-auS
-awh
-awh
-awh
-ayx
-ayq
-aBZ
-cFv
-aEI
-aGh
+auR
awg
-ayx
-aCg
-aDu
-aLb
-aLZ
-aNc
-arQ
-aPd
-aQk
-aQS
-cIL
+awg
+awg
+ayw
+ayp
+aBY
+cEI
+aEH
+aGg
+awf
+ayw
+aCf
+aDt
+aLa
+aLY
+aNb
+arP
+aPc
+aQj
+aQR
+cHY
abW
abW
abW
@@ -123969,80 +121471,80 @@ aaa
aaa
aaa
abC
+aXB
+aXP
+aYd
+aYo
+aYE
+aYo
+aYo
+bag
aXC
-aXQ
-aYe
-aYp
-aYF
-aYp
-aYp
-bah
-aXD
-bbp
-bbO
-bcB
-bdt
-beh
-cFT
-cFW
-aZn
-aZn
-aZn
-aZn
-aZn
-blm
-bhU
-bhU
-bhU
-bqq
-brY
-btp
-buR
-bwl
-bxw
-byy
-bzx
-byy
-byy
-bCO
-bEd
-bFn
-bGW
-bIw
-bDZ
-bKM
-bMb
-bDV
-bGO
-bPL
-bQN
-dfr
-bPK
-dfC
-bGO
-bGO
-bUQ
-bWh
-bWK
-bLU
-bLU
-bLU
-bLU
-bLU
-bYq
-cVl
-cVo
-cVo
-cVo
-cVp
-cVo
-cVS
-cVS
-cVS
-cWg
-cWg
-aqV
-aqV
+bbo
+bbN
+bcA
+bds
+beg
+cFg
+cFj
+aZm
+aZm
+aZm
+aZm
+aZm
+bll
+bhT
+bhT
+bhT
+bqp
+brX
+bto
+buQ
+bwk
+bxv
+byx
+bzv
+byx
+byx
+bCK
+bDY
+bFi
+bGR
+bIr
+bDU
+bKF
+bLT
+bDR
+bGJ
+bPx
+bQy
+ddU
+bPw
+dee
+bGJ
+bGJ
+bUq
+bVw
+bVZ
+bLN
+bLN
+bLN
+bLN
+bLN
+bXE
+cUv
+cUy
+cUy
+cUy
+cUz
+cUy
+cVc
+cVc
+cVc
+cVq
+cVq
+aqU
+aqU
aaa
aaa
aaa
@@ -124064,38 +121566,38 @@ aaa
aaa
aaa
aaa
-aqV
-cXX
-cXZ
-cXY
-cKv
-cXX
+aqU
+cXh
+cXj
+cXi
+cJH
+cXh
aaa
aaa
-aWs
+aWr
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -124177,33 +121679,33 @@ amB
alD
aoh
apd
-apZ
-aqN
-arM
-asL
+apY
+aqM
+arL
+asK
alD
-auT
-awi
-axc
-ays
-azN
-ayq
-aCa
-aDv
-aEJ
-aGi
-aHg
-ayx
-aCg
-aDv
-aLc
-aMa
-awg
-aDv
-aPe
-aQq
-aQS
-cIL
+auS
+awh
+axb
+ayr
+azM
+ayp
+aBZ
+aDu
+aEI
+aGh
+aHf
+ayw
+aCf
+aDu
+aLb
+aLZ
+awf
+aDu
+aPd
+aQp
+aQR
+cHY
acH
acH
abW
@@ -124226,77 +121728,77 @@ aaa
aaa
aaa
abC
+aXB
+aXQ
+aYe
+aYq
+aYI
+aXO
+cFb
+cFc
aXC
-aXR
-aYf
-aYr
-aYJ
-aXP
-cFO
-cFP
-aXD
-bbq
-bbP
-bcC
-bdu
-bei
-beX
-bga
-bhd
-bhd
-bhd
-bhd
-bhd
-bln
-bmA
-bnQ
-bhd
-bqr
-brZ
-aZo
-buS
-bwm
-bxx
-byz
-bzy
-bAJ
-bBN
-bCP
-bEe
-bFo
-bGX
-bIx
+bbp
+bbO
+bcB
+bdt
+beh
+beW
+bfZ
+bhc
+bhc
+bhc
+bhc
+bhc
+blm
+bmz
+bnP
+bhc
+bqq
+brY
+aZn
+buR
+bwl
+bxw
+byy
+bzw
+bAH
+bBK
+bCL
bDZ
-bKO
-bMd
-bDV
-bOF
-bPM
-bQO
-bRK
-dfx
-dfD
-bTZ
-bGO
-bUQ
-dga
-bWG
-bXg
-bXF
-bYl
-bYl
-bLU
-cRW
-cVl
-cQw
-bwA
-aYg
-aXS
-aXS
-aXS
-aXS
-aXS
-aXS
+bFj
+bGS
+bIs
+bDU
+bKH
+bLV
+bDR
+bOu
+bPy
+bQz
+bRs
+ddZ
+def
+bTB
+bGJ
+bUq
+deA
+bVV
+bWu
+bWT
+bXz
+bXz
+bLN
+cRg
+cUv
+cPG
+bwz
+aYf
+aXR
+aXR
+aXR
+aXR
+aXR
+aXR
aaa
aaa
aaa
@@ -124321,38 +121823,38 @@ aaa
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cKv
-cqp
+aqU
+cme
+cXi
+cXi
+cJH
+cpC
aaa
aaa
-aWs
+aWr
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -124434,33 +121936,33 @@ akl
akl
aoi
ape
-aqa
-aqO
-arN
-asM
-atR
-auU
-awj
-awj
-ayt
-azO
-aBh
-aCb
-cMc
-aEK
-aGj
-aCb
-aIu
-aJr
-aDw
-aLd
-aMb
-aJr
-aDw
-aPf
-aQk
-aQS
-cIL
+apZ
+aqN
+arM
+asL
+atQ
+auT
+awi
+awi
+ays
+azN
+aBg
+aCa
+cLm
+aEJ
+aGi
+aCa
+aIt
+aJq
+cLm
+aLc
+aMa
+aJq
+cLm
+aPe
+aQj
+aQR
+cHY
acH
acH
abW
@@ -124483,77 +121985,77 @@ abC
abC
abC
abC
-aXD
-cFM
-aXD
-aXD
-aXD
-cFN
-aXD
-aXD
-aXD
-aXD
-aXD
-aXD
-cJl
+aXC
+cEZ
+aXC
+aXC
+aXC
+cFa
+aXC
+aXC
+aXC
+aXC
+aXC
+aXC
+cIy
+aZl
aZm
-aZn
-bgb
-bhe
-bhe
-bhe
-bhe
-cFX
-bhe
-bhe
-bhe
-bhe
-bhe
-bhe
-bhe
-bhe
-bhe
-bhe
-bhe
-bzz
-bAK
-bBO
-bCQ
-bhe
-bFp
-bGY
-bnT
-bEa
-bKP
-cRb
-cRb
-cRb
-cRb
-bQP
-bRL
-bTx
-bSL
-bJN
-bGO
-bUQ
-dgb
-bWH
-bOu
-bXG
-bYm
-bYQ
-bLU
-cSa
-cVn
-cSe
-cHu
-aYg
-aXS
-aXS
-aXS
-aXS
-aXS
-aXS
+bga
+bhd
+bhd
+bhd
+bhd
+cFk
+bhd
+bhd
+bhd
+bhd
+bhd
+bhd
+bhd
+bhd
+bhd
+bhd
+bhd
+bzx
+bAI
+bBL
+bCM
+bhd
+bFk
+bGT
+bnS
+bDV
+bKI
+cQl
+cQl
+cQl
+cQl
+bQA
+bRt
+bTa
+bSq
+bJI
+bGJ
+bUq
+deB
+bVW
+bOk
+bWU
+bXA
+bYe
+bLN
+cRk
+cUx
+cRo
+cGH
+aYf
+aXR
+aXR
+aXR
+aXR
+aXR
+aXR
aaa
aaa
aaa
@@ -124578,38 +122080,38 @@ aaa
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cKv
-cqp
+aqU
+cme
+cXi
+cXi
+cJH
+cpC
aaa
aaa
-aWs
+aWr
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -124691,33 +122193,33 @@ acH
akl
aoj
apf
-aqb
-aqP
-aqP
+aqa
+aqO
+aqO
apf
-atS
-auV
-awk
-axd
-ayu
-azP
-aBi
-aCc
-aDx
-aEL
-aGk
-aHh
-aIv
-aJs
-aKp
-aLe
-aMc
-aNd
-aKp
-aPg
-aQt
-aRa
-cIM
+atR
+auU
+awj
+axc
+ayt
+azO
+aBh
+aCb
+aDw
+aEK
+aGj
+aHg
+aIu
+aJr
+aKo
+aLd
+aMb
+aNc
+aKo
+aPf
+aQs
+aQZ
+cHZ
acH
acH
abW
@@ -124740,75 +122242,75 @@ aaa
aaa
aaa
aaa
-aXE
-aXS
-aXS
-aXS
-aXS
-aXS
-aZL
-bai
-baL
-bbr
-bbQ
-aZL
-cJm
-bej
-aZn
-bgc
-bhe
-bhQ
-biI
-biI
-biI
-biI
-biI
-biI
-biI
-biI
-bnR
-btq
-buT
-bwn
-cLf
+aXD
+aXR
+aXR
+aXR
+aXR
+aXR
+aZK
+bah
+baK
+bbq
+bbP
+aZK
+cIz
+bei
+aZm
+bgb
+bhd
+bhP
+biH
+biH
+biH
+biH
+biH
+biH
+biH
+biH
+bnQ
+btp
+buS
+bwm
+bjC
abC
abC
abC
abC
-bCR
-cQH
-cQJ
-bGZ
-bIy
-bJR
-bMe
-cRc
-bND
-blr
-bPN
-bQQ
-bRM
-bSM
-bTy
-bUa
-dfT
-bUR
-dgc
-bWI
-bXh
-bXH
-bYl
-bYl
-bLU
-bxK
-cQC
-cVr
-bzs
-aYg
-aXS
-aXS
-aXS
-aXS
+bCN
+cPR
+cPT
+bGU
+bIt
+bJL
+bLW
+cQm
+bNt
+blq
+bPz
+bQB
+bRu
+bSr
+bTb
+bTC
+det
+bUr
+deC
+bVX
+bWv
+bWV
+bXz
+bXz
+bLN
+bxJ
+cPM
+cUB
+bzq
+aYf
+aXR
+aXR
+aXR
+aXR
aaa
aaa
aaa
@@ -124835,29 +122337,29 @@ aaa
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cKv
-cqp
+aqU
+cme
+cXi
+cXi
+cJH
+cpC
aaa
aaa
-aWs
+aWr
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -124948,33 +122450,33 @@ acH
anm
aok
apg
-aqc
-aqQ
-arO
-asN
-atT
-auW
-awl
-awl
-ayv
-azQ
-aBj
-awf
-cMd
-aEM
-aGl
-aHi
-ayy
-aJt
-aDy
-aLf
-aMd
-aJt
-aDy
-aPh
-aQk
-aQS
-cIL
+aqb
+aqP
+arN
+asM
+atS
+auV
+awk
+awk
+ayu
+azP
+aBi
+awe
+cLn
+aEL
+aGk
+aHh
+ayx
+aJs
+cLn
+aLe
+aMc
+aJs
+cLn
+aPg
+aQj
+aQR
+cHY
acH
acH
abW
@@ -124997,75 +122499,75 @@ aaa
aaa
aaa
aaa
-aXE
-aXE
-aXS
-aXS
-aXS
-aXS
-aZL
-aZL
-baM
-bbs
-bbR
-aZL
-cJn
+aXD
+aXD
+aXR
+aXR
+aXR
+aXR
+aZK
+aZK
+baL
+bbr
+bbQ
+aZK
+cIA
+aZl
aZm
-aZn
-bgd
-bhe
-bhR
-biJ
-bjC
-biJ
-bjC
+bgc
+bhd
+bhQ
+biI
+bjB
+biI
+bjB
abC
-cLf
-cLf
-cLf
-cGb
-btr
-buU
-bkB
-cLf
-cLf
-cLf
-cLf
-cLf
-cLj
-bEg
-cQK
-bHa
-cQP
-cQP
-cQU
-bMf
-bNE
-cRr
-bPO
-bQQ
-bRN
-bSN
-bTz
-dfM
-bUb
-bTz
-dgd
-bWM
-bLU
-bLU
-bLU
-bLU
-bLU
-bYq
-cRJ
-cVs
-bwA
-aYg
-aXS
-aXS
-aXS
-aXS
+bjC
+bjC
+bjC
+cFo
+btq
+buT
+bkA
+bjC
+bjC
+bjC
+bjC
+bjC
+bCN
+bEb
+cPU
+bGV
+cPZ
+cPZ
+cQe
+bLX
+bNu
+cQB
+bPA
+bQB
+bRv
+bSs
+bTc
+dem
+bTD
+bTc
+deD
+bWa
+bLN
+bLN
+bLN
+bLN
+bLN
+bXE
+cQT
+cUC
+bwz
+aYf
+aXR
+aXR
+aXR
+aXR
aaa
aaa
aaa
@@ -125092,29 +122594,29 @@ aaa
aaa
aaa
aaa
-aqV
-cXX
-cYa
-cXY
-cYe
-cXX
+aqU
+cXh
+cXk
+cXi
+cXo
+cXh
aaa
aaa
-aWs
+aWr
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -125205,39 +122707,39 @@ abW
akl
aol
aph
-aqd
-aqR
-arP
+aqc
+aqQ
+arO
api
alD
-auX
-awm
-axe
-ays
-azN
-ayq
-aCd
-aDv
-aEN
-aGm
-aHj
-awg
-aCg
-aDv
-aLg
-aHj
-awg
-aDv
-aPi
-aQk
-aQS
-cIL
-aKq
-aKq
-aKq
-aKq
-aKq
-aKq
+auW
+awl
+axd
+ayr
+azM
+ayp
+aCc
+aDu
+aEM
+aGl
+aHi
+awf
+aCf
+aDu
+aLf
+aHi
+awf
+aDu
+aPh
+aQj
+aQR
+cHY
+aKp
+aKp
+aKp
+aKp
+aKp
+aKp
aaa
aaa
aaa
@@ -125255,73 +122757,73 @@ aaa
aaa
aaa
aaa
-aXE
-aXE
-aXS
-aXS
-aXS
-aYK
-aYK
-aYK
-aYK
-bbS
-aYK
-cJm
-aZm
-beY
-bgd
-bhe
-bhR
+aXD
+aXD
+aXR
+aXR
+aXR
+aYJ
+aYJ
+aYJ
+aYJ
+bbR
+aYJ
+cIz
+aZl
+beX
+bgc
+bhd
+bhQ
+biJ
biK
-biL
-bjE
-biL
-biI
-bnR
-bpb
-bqs
-bsa
-bts
-buV
-bwo
-bwo
-bwo
-bwo
-bAL
-bBP
-bCS
-bEh
-bFs
-bHb
-bIA
-bJS
-bMi
-bMg
-cRk
-cRs
-bPP
-dfm
-bRO
-bQG
-bTA
-dfN
-bUc
-bUS
-bWm
-bWN
-bXg
-bXI
-bYn
-bYn
-bLU
-cSb
-bxK
-cVl
-bzs
-aYg
-aXS
-aXS
-aXS
+bjD
+biK
+biH
+bnQ
+bpa
+bqr
+brZ
+btr
+buU
+bwn
+bwn
+bwn
+bwn
+bAJ
+bBM
+bCO
+bEc
+bFn
+bGW
+bIv
+bJM
+bMa
+bLY
+cQu
+cQC
+bPB
+ddP
+bRw
+bQr
+bTd
+den
+bTE
+bUs
+bVB
+bWb
+bWu
+bWW
+bXB
+bXB
+bLN
+cRl
+bxJ
+cUv
+bzq
+aYf
+aXR
+aXR
+aXR
aaa
aaa
aaa
@@ -125349,29 +122851,29 @@ aaa
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cKv
-cmQ
+aqU
+cme
+cXi
+cXi
+cJH
+cme
aaa
aaa
-aWs
+aWr
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -125461,40 +122963,40 @@ abW
abW
akl
aom
-cFh
-aqe
-aqe
-aqe
+cEu
+aqd
+aqd
+aqd
api
alD
-auY
-awn
-awn
-awn
-ayx
-ayq
-aBZ
-cFv
-aEO
-ayx
+auX
+awm
+awm
+awm
+ayw
+ayp
+aBY
+cEI
+aEN
+ayw
+awf
+awf
+aCf
+aDs
+aLg
+aMd
awg
-awg
-aCg
-aDt
-aLh
-aMe
-awh
-arQ
-aPj
-aQk
-aQS
-cIL
-aSS
-aTH
-aUe
-aUE
-aVd
-aKq
+arP
+aPi
+aQj
+aQR
+cHY
+aSR
+aTG
+aUd
+aUD
+aVc
+aKp
aaa
aaa
aaa
@@ -125512,91 +123014,91 @@ aaa
aaa
aaa
aaa
-aXE
-aXE
-aXE
-aXE
-aXS
-aYK
-baj
+aXD
+aXD
+aXD
+aXD
+aXR
+aYJ
+bai
+baM
baN
-baO
-bbT
-baO
-cJm
+bbS
+baN
+cIz
+aZl
aZm
-aZn
-bgd
-bhe
-bhR
-biK
-cLf
-cLf
-cLf
-cLf
-cLf
-bpc
-bqt
-bsb
-btt
-buW
-buW
-bxy
-byA
-byA
-bAM
-bBQ
-bCT
-bEi
-bFt
-bHc
-bIB
-bJT
-bKQ
-bMh
-cRk
-cRt
-cRA
-cWQ
-bRP
-bSO
-bGO
-dfO
-bUd
-bUT
-bVH
-bWO
-bOu
-bXJ
-bYn
-bYR
-bLU
-bxK
-bwA
-cVl
-bwA
-aYg
-aYg
-aYg
-aXS
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+bgc
+bhd
+bhQ
+biJ
+bjC
+bjC
+bjC
+bjC
+bjC
+bpb
+bqs
+bsa
+bts
+buV
+buV
+bxx
+byz
+byz
+bAK
+bBN
+bCP
+bEd
+bFo
+bGX
+bIw
+bJN
+bKJ
+bLZ
+cQu
+cQD
+cQK
+cWa
+bRx
+bSt
+bGJ
+deo
+bTF
+bUt
+bUW
+bWc
+bOk
+bWX
+bXB
+bYf
+bLN
+bxJ
+bwz
+cUv
+bwz
+aYf
+aYf
+aYf
+aXR
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -125606,29 +123108,29 @@ aaa
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cKv
-cqp
+aqU
+cme
+cXi
+cXi
+cJH
+cpC
aaa
aaa
-aWs
+aWr
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -125648,7 +123150,7 @@ aaa
aaa
aaa
aaa
-cEY
+cEl
aaa
aaa
aaa
@@ -125724,36 +123226,36 @@ akl
akl
akl
anm
-auZ
-awg
-awg
+auY
+awf
+awf
+ayv
ayw
-ayx
-aBg
-aCe
-aDu
-aEP
-ayx
-awg
-aIw
-arQ
-arQ
-arQ
-arQ
-arQ
-arQ
-aPk
-aQk
-aQX
-aSf
-aST
-aTI
-aTI
-aUF
-aVe
-aKq
-aKq
-aKq
+aBf
+aCd
+aDt
+aEO
+ayw
+awf
+aIv
+arP
+arP
+arP
+arP
+arP
+arP
+aPj
+aQj
+aQW
+aSe
+aSS
+aTH
+aTH
+aUE
+aVd
+aKp
+aKp
+aKp
aaa
aaa
aaa
@@ -125770,87 +123272,87 @@ aaa
aaa
aaa
aaa
-aXE
-aXE
-aYK
-aYK
-aYK
-bak
-baO
-baO
-bbU
-baO
-cJm
-bek
-aZn
-bgd
-bhe
-bhR
-biK
-cLf
-bkB
-blo
-bmB
-bnS
-bpd
-bqu
-cLf
-btu
-btu
-btu
-cLf
-byB
-bzA
-bAN
-bBR
-bCU
-cLj
-bFu
-cHm
-bIC
-bJU
-bMi
-cRd
-bNF
-cRu
-cRB
-cWR
-bRQ
-bQL
-bPJ
-bUe
-bPJ
-bPJ
-bVI
-bWP
-bXh
-bXK
-bYn
-bYn
-bLU
-bxK
-cHu
-cVl
-bwA
-aYg
-aYg
-aYg
+aXD
+aXD
+aYJ
+aYJ
+aYJ
+baj
+baN
+baN
+bbT
+baN
+cIz
+bej
+aZm
+bgc
+bhd
+bhQ
+biJ
+bjC
+bkA
+bln
+bmA
+bnR
+bpc
+bqt
+cKr
+btt
+btt
+btt
+cKr
+byA
+bzy
+bAL
+bBO
+bCQ
+bCN
+bFp
+cGz
+bIx
+bJO
+bMa
+cQn
+bNv
+cQE
+cQL
+cWb
+bRy
+bQw
+bPv
+bTG
+bPv
+bPv
+bUX
+bWd
+bWv
+bWY
+bXB
+bXB
+bLN
+bxJ
+cGH
+cUv
+bwz
+aYf
+aYf
+aYf
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cZo
-cZu
-cZJ
-cZQ
-cZQ
-cZJ
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cYy
+cYE
+cYT
+cZa
+cZa
+cYT
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -125863,29 +123365,29 @@ aaa
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cKv
-cqp
+aqU
+cme
+cXi
+cXi
+cJH
+cpC
aaa
aaa
-aWs
+aWr
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -125977,138 +123479,138 @@ aaa
aon
aon
aon
-aqS
-arQ
-asO
-arQ
-ava
-awg
-awg
-ayx
-ayx
-ayq
-aCf
-aDt
-aEQ
-ayx
-awg
-aIx
-arQ
+aqR
+arP
+asN
+arP
+auZ
+awf
+awf
+ayw
+ayw
+ayp
+aCe
+aDs
+aEP
+ayw
+awf
+aIw
+arP
abW
abW
abW
abW
-aKq
-aPl
-aQk
-aQS
-cIL
-aSU
-aTJ
-aTJ
-aUG
-aVf
-aVq
-aVA
-aVS
-aTg
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aNo
-aYL
-aZl
-aYL
-bal
-bal
-bbt
-bbV
-baO
-cJm
-bel
-aZn
-bgd
-bhe
-bhR
-biK
-cLf
-bkB
-blp
-cLf
-cGa
-bpe
-bqv
-cLf
-btv
-btv
-bwp
-cLf
-byB
-bzB
-bAO
-bBS
-bCV
-cLj
-bFv
-bHb
-bIC
-cQQ
-bKR
-bMj
-cRl
-cRv
-bPQ
-cWS
-bRR
-bSP
-bTB
-bUf
-dfU
-bGO
-bVJ
-bWQ
-bLU
-bLU
-bLU
-bLU
-bLU
-bxK
-bxK
-cVl
-bzs
-aYg
-aYg
-aYg
+aKp
+aPk
+aQj
+aQR
+cHY
+aST
+aTI
+aTI
+aUF
+aVe
+aVp
+aVz
+aVR
+aTf
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aNn
+aYK
+aZk
+aYK
+bak
+bak
+bbs
+bbU
+baN
+cIz
+bek
+aZm
+bgc
+bhd
+bhQ
+biJ
+bjC
+bkA
+blo
+bjC
+cFn
+bpd
+bqu
+cKr
+btu
+btu
+bwo
+cKr
+byA
+bzz
+bAM
+bBP
+bCR
+bCN
+bFq
+bGW
+bIx
+cQa
+bKK
+bMb
+cQv
+cQF
+bPC
+cWc
+bRz
+bSu
+bTe
+bTH
+deu
+bGJ
+bUY
+bWe
+bLN
+bLN
+bLN
+bLN
+bLN
+bxJ
+bxJ
+cUv
+bzq
+aYf
+aYf
+aYf
aaa
-cGc
-cGc
-cZo
-cZu
-cZm
-cZm
-cZm
-cZJ
-cZs
-cZs
-cZJ
-cZm
-cZm
-cZm
-cGc
-cGc
+cFp
+cFp
+cYy
+cYE
+cYw
+cYw
+cYw
+cYT
+cYC
+cYC
+cYT
+cYw
+cYw
+cYw
+cFp
+cFp
aaa
aaa
aaa
@@ -126120,29 +123622,29 @@ aaa
aaa
aaa
aaa
-aqV
-cXX
-cXZ
-cXY
-cpI
-cXX
+aqU
+cXh
+cXj
+cXi
+coV
+cXh
abC
abC
-aWs
+aWr
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -126233,185 +123735,185 @@ aaa
ann
aoo
apj
-aqf
-aqT
-arR
-asP
-arR
-avb
-awf
-awf
-ayy
-azR
-ayq
-aCg
-aDt
-aER
+aqe
+aqS
+arQ
+asO
+arQ
+ava
+awe
+awe
ayx
-aCg
-arQ
-arQ
+azQ
+ayp
+aCf
+aDs
+aEQ
+ayw
+aCf
+arP
+arP
abW
abW
abW
abW
-aKq
-aPm
-aQk
-aQS
-cIL
-aKq
-aKq
-aKq
-aKq
-aKq
-aKq
-aKq
-aKq
-aWj
-aWy
-aWy
-cWY
-aWy
-aWy
-aWy
-cWY
-aWy
-aWy
-cWY
-aWy
-aWy
-aWy
-cWY
-aWy
-aWy
-aYs
-aYK
-aYK
-cJf
-cJi
-cJi
-cJi
-bbW
-cJi
-cJo
+aKp
+aPl
+aQj
+aQR
+cHY
+aKp
+aKp
+aKp
+aKp
+aKp
+aKp
+aKp
+aKp
+aWi
+aWx
+aWx
+cWi
+aWx
+aWx
+aWx
+cWi
+aWx
+aWx
+cWi
+aWx
+aWx
+aWx
+cWi
+aWx
+aWx
+aYr
+aYJ
+aYJ
+cIs
+cIv
+cIv
+cIv
+bbV
+cIv
+cIB
+aZl
aZm
-aZn
-bgd
-bhe
-bhR
-biK
-cLf
-bkC
-blq
-bmC
-cLf
-bpf
-bqw
-cLf
-btw
-buX
-buX
-bqD
-cLf
-cLf
-bAP
-bBS
-bCW
-cGj
-bFw
-bHb
-bJV
-bKS
-cQV
-bMk
-cRm
-cRw
-bPR
-bQR
-bRS
-bSQ
-bTC
-bUg
-bUU
-dfW
-bWn
-bWR
-bDV
-bxK
-bxK
-bwA
-bxK
-bwA
-bYq
-cVl
-bzs
-aYg
-aYg
-aYg
+bgc
+bhd
+bhQ
+biJ
+bjC
+bkB
+blp
+bmB
+bjC
+bpe
+bqv
+cKr
+btv
+buW
+buW
+bqC
+cKr
+cKr
+bAN
+bBP
+bCS
+cFw
+bFr
+bGW
+bJP
+bKL
+cQf
+bMc
+cQw
+cQG
+bPD
+bQC
+bRA
+bSv
+bTf
+bTI
+bUu
+dew
+bVC
+bWf
+bDR
+bxJ
+bxJ
+bwz
+bxJ
+bwz
+bXE
+cUv
+bzq
+aYf
+aYf
+aYf
aaa
-cGc
-cZm
-cZm
-cZm
-cZm
-cZm
-cZm
+cFp
+cYw
+cYw
+cYw
+cYw
+cYw
+cYw
+cYU
+cZb
+cZb
+cZz
cZK
-cZR
-cZR
-dap
-daA
-cZm
-cZm
-cZm
-cZm
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cYw
+cYw
+cYw
+cYw
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cYX
-cYf
-cqp
+aqU
+cme
+cXi
+cYh
+cXp
+cpC
aaa
aaa
-aWs
+aWr
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -126477,9 +123979,9 @@ aaa
aaa
aaa
aaa
-afH
+deF
agD
-afH
+deF
aaa
aaa
aaa
@@ -126491,155 +123993,155 @@ aaa
aon
aon
aon
-aqS
-arS
-arS
-arS
-avc
-awo
-axf
-ayz
-azS
-ayz
-aCh
-ayz
-aES
-aGn
-aHk
-aEX
+aqR
+arR
+arR
+arR
+avb
+awn
+axe
+ayy
+azR
+ayy
+aCg
+ayy
+aER
+aGm
+aHj
+aEW
abW
abW
abW
abW
abW
-aKq
-aPm
-aQk
-aRk
-cIR
-aSV
-aRA
-aUf
-aUH
-aRA
-aRA
-aRA
-aRx
-cWU
-cWU
-cWU
+aKp
+aPl
+aQj
+aRj
+cIe
+aSU
+aRz
+aUe
+aUG
+aRz
+aRz
+aRz
+aRw
+cWe
+cWe
+cWe
+cXT
+cWe
+cWe
+cWe
+cXU
+cWe
+cWe
+cXU
+cWe
+cWe
+cWe
+cXT
+cWe
+cWe
+cWe
+aYL
+aZl
+cIt
+bal
+aZl
+aZl
+bbW
+bcC
+bdv
+bel
+aZm
+bgc
+bhd
+bhQ
+biJ
+bjC
+bkC
+bkA
+bkA
+bnS
+bpf
+bqw
+cKr
+btw
+btw
+btw
+bxy
+byB
+bzA
+bAO
+bBP
+bCT
+bEe
+bFl
+bGW
+bIx
+bKM
+bMd
+cQm
+cQm
+cQm
+cQm
+bQD
+bRB
+bSw
+deg
+dep
+bTg
+bDR
+bDR
+bDR
+bDR
+bwz
+bxJ
+cRh
+bwz
+bMt
+bww
+cUv
+cRd
+aYf
+aXR
+aaa
+aaa
+cFp
+cYw
+cYz
+cYF
cYJ
-cWU
-cWU
-cWU
-cYK
-cWU
-cWU
-cYK
-cWU
-cWU
-cWU
-cYJ
-cWU
-cWU
-cWU
-aYM
-aZm
-cJg
-bam
-aZm
-aZm
-bbX
-bcD
-bdw
-bem
-aZn
-bgd
-bhe
-bhR
-biK
-cLf
-bkD
-bkB
-bkB
-cLh
-bpg
-bqx
-cLf
-btx
-btx
-btx
-bxz
-byC
-bzC
-bAQ
-bBS
-bCX
-bEj
-bFq
-bHb
-bIC
-bKT
-bMl
-cRc
-cRc
-cRc
-cRc
-bQS
-bRT
-bSR
-dfE
-dfP
-bTD
-bDV
-bDV
-bDV
-bDV
-bwA
-bxK
-cRX
-bwA
-bMB
-bwx
-cVl
-cRT
-aYg
-aXS
-aaa
-aaa
-cGc
-cZm
-cZp
-cZv
-cZz
-cZm
-cZD
-cZL
-cZx
-cZs
-cZL
-cZm
-cZm
-cZm
-daU
-cZm
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cYw
+cYN
+cYV
+cYH
+cYC
+cYV
+cYw
+cYw
+cYw
+dae
+cYw
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cYf
-cqp
+aqU
+cme
+cXi
+cXi
+cXp
+cpC
aaa
aaa
aaa
@@ -126656,19 +124158,19 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -126734,14 +124236,14 @@ aaa
aaa
aaa
aaa
-afH
-agB
-afH
-afH
-afH
-afH
-afH
-abW
+deF
+deG
+deF
+deF
+deF
+deF
+deF
+deP
aaa
amC
abE
@@ -126749,157 +124251,157 @@ abW
aaa
abE
abW
-arS
-asQ
-atU
-avd
-awp
-axf
-ayA
-azT
-aBk
-aCi
+arR
+asP
+atT
+avc
+awo
+axe
ayz
-aET
-aGo
-aHl
-aEX
+azS
+aBj
+aCh
+ayy
+aES
+aGn
+aHk
+aEW
abW
-afH
-afH
-afH
-afH
-aKq
-aPn
-aQl
-aRl
-cIS
-aSW
-aQn
-aQn
-aQn
-aQn
-aQn
-aQn
-cIW
-cIX
-cIX
-cIX
-cIX
-cIX
-cIX
-cIX
-cIX
-cIX
-cIX
-cIX
-cIX
-cIX
-cIX
-cIX
-cIX
-cIX
-cIX
-cJa
-cJb
-cJh
-aZn
-aZn
-aZn
-bbY
-bcE
-bdx
-ben
-beZ
-bge
-cFX
-bhR
-biK
-cLf
-bkE
-bkB
-bmD
-cLh
-bph
-bph
-bsc
-bty
-buY
-bty
-bxA
-byD
-bzD
-bAR
-bBT
-bCY
-bEk
-bFr
-bHd
-bID
-bJW
-cQW
-bMm
-bNG
-bOG
-bPS
-bQT
-bRU
-bSS
-bTE
-cVa
-cVa
-cVa
-cVa
-cVa
-cVc
-cVa
-cVa
-cVg
-cRY
-bwx
-bwx
-cZj
-cHu
-aYg
+deF
+deF
+deF
+deF
+aKp
+aPm
+aQk
+aRk
+cIf
+aSV
+aQm
+aQm
+aQm
+aQm
+aQm
+aQm
+cIj
+cIk
+cIk
+cIk
+cIk
+cIk
+cIk
+cIk
+cIk
+cIk
+cIk
+cIk
+cIk
+cIk
+cIk
+cIk
+cIk
+cIk
+cIk
+cIn
+cIo
+cIu
+aZm
+aZm
+aZm
+bbX
+bcD
+bdw
+bem
+beY
+bgd
+cFk
+bhQ
+biJ
+bjC
+bkD
+bkA
+bmC
+bnS
+bpg
+bpg
+bsb
+btx
+buX
+btx
+bxz
+byC
+bzB
+bAP
+bBQ
+bCU
+bEf
+bFm
+bGY
+bIy
+bJQ
+cQg
+bMe
+bNw
+bOv
+bPE
+bQE
+bRC
+bSx
+bTh
+cUk
+cUk
+cUk
+cUk
+cUk
+cUm
+cUk
+cUk
+cUq
+cRi
+bww
+bww
+cYt
+cGH
+aYf
aaa
aaa
-cGc
-cGc
-cZm
-cZq
-cZr
-cZr
-cZm
-cZE
-cZL
-cZx
-cZR
-daq
-cZm
-daJ
-daS
-daM
-cZm
-cZm
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cYw
+cYA
+cYB
+cYB
+cYw
+cYO
+cYV
+cYH
+cZb
+cZA
+cYw
+cZT
+dac
+cZW
+cYw
+cYw
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cYf
-cmQ
+aqU
+cme
+cXi
+cXi
+cXp
+cme
aaa
aaa
-aWs
+aWr
aaa
aaa
aaa
@@ -126913,19 +124415,19 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -126991,198 +124493,198 @@ aaa
aaa
aaa
aaa
-afH
+deF
agE
ahr
ahV
aiG
aju
-afE
-afE
-adP
+deJ
+deJ
+deP
akm
abW
abW
acH
acH
acH
-arS
-asR
-atV
-avd
-awq
-axf
-ayB
-azU
-aBk
-aCj
-ayz
-aEU
-aGp
-aHm
-aEX
+arR
+asQ
+atU
+avc
+awp
+axe
+ayA
+azT
+aBj
+aCi
+ayy
+aET
+aGo
+aHl
+aEW
abW
-afH
-aLi
-aMf
-cLz
-aNY
-aPo
-aQk
-aRm
-aRu
-aSX
-aRu
-aRu
-aUI
-aRu
-aRu
-aRu
-aRw
-cWU
-cWU
-cWU
-cWU
-cWU
-cWU
-cWU
-cXd
-cWU
-cWU
-cYM
-cYN
-cYN
-cYN
-cYN
-cYN
-cYN
-cYN
-cYP
-cJc
-cYQ
-cYQ
-baP
-cYQ
-cYR
-bcF
-aZo
-beo
-bfa
-bgf
-bhe
-bhR
-biK
-cLf
-bkD
-bkB
-bkB
-cLh
-bpi
-bqy
-cLf
-btz
-btz
-btz
-bxB
-byE
-bzC
-bAS
-bBU
-bCZ
-bEl
-bFx
-bHb
-bIC
-bIC
-cQX
-cRe
-bNH
-bOH
-bPT
-bQU
-bRV
-bNN
-bNN
-bNN
-bNN
-bNN
-bwA
-bxL
-cRT
-bYq
-bwx
-cVh
-cVi
-cVi
-cVi
-cVt
-bwA
-bwA
-cZl
-cZl
-cZl
-bwA
-cZm
-cZr
-cZw
-cZw
-cZB
-cZF
-cZM
-cZx
-cZR
-dar
-daB
-daK
-daL
-daK
-dbc
-cZC
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-aaa
-aaa
-aaa
-aqV
+deF
+aLh
+aMe
+dgB
+aNX
+aPn
+aQj
+aRl
+aRt
+aSW
+aRt
+aRt
+aUH
+aRt
+aRt
+aRt
+aRv
+cWe
+cWe
+cWe
+cWe
+cWe
+cWe
+cWe
+cWn
+cWe
+cWe
+cXW
cXX
+cXX
+cXX
+cXX
+cXX
+cXX
+cXX
+cXZ
+cIp
cYa
-cXY
-cYf
-cXX
+cYa
+baO
+cYa
+cYb
+bcE
+aZn
+ben
+beZ
+bge
+bhd
+bhQ
+biJ
+bjC
+bkC
+bkA
+bkA
+bnS
+bph
+bqx
+cKr
+bty
+bty
+bty
+bxA
+byD
+bzA
+bAQ
+bBR
+bCV
+bEg
+bFs
+bGW
+bIx
+bIx
+cQh
+cQo
+bNx
+bOw
+bPF
+bQF
+bRD
+bND
+bND
+bND
+bND
+bND
+bwz
+bxK
+cRd
+bXE
+bww
+cUr
+cUs
+cUs
+cUs
+cUD
+bwz
+bwz
+cYv
+cYv
+cYv
+bwz
+cYw
+cYB
+cYG
+cYG
+cYL
+cYP
+cYW
+cYH
+cZb
+cZB
+cZL
+cZU
+cZV
+cZU
+dam
+cYM
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+aaa
+aaa
+aaa
+aqU
+cXh
+cXk
+cXi
+cXp
+cXh
abC
abC
-aWs
+aWr
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -127248,198 +124750,198 @@ aaa
aaa
aaa
aaa
-afH
+deF
agF
ahs
ahW
aiH
ajv
akn
-cLu
-afH
-afE
-adP
-aep
-aep
-aep
-aep
-arS
-asS
-atW
-avd
-awr
-axf
-ayC
-azV
-aBk
-aCk
-ayz
-aEV
-aGq
-aHn
-aEX
-adP
-afH
-aLj
-aMg
-aNe
-aNZ
-aPp
-aQk
-aQS
-aKq
-aKq
-aKq
-aKq
-aOc
-aKq
-aKq
-aKq
-aKq
-aWk
-aWz
-aWz
-cWZ
-aWz
-aWz
-aWz
-cWZ
-aWz
-aWz
-cWZ
-aWz
-aWz
-aWz
-cWZ
-aWz
-aWz
-aYt
-aYK
-cJd
-cJi
-cJi
-cJi
-cJi
-cJi
-cJi
-cJp
-bep
-bfb
-bgg
-bhe
-bhR
-biK
-cLf
-bkF
-cLg
-bmE
-cLf
-cLi
-bqz
-cLf
-btA
-buZ
-buZ
-bxC
-cLf
-cLf
-bAT
-bBS
-bCW
-cLj
-bFy
-bHe
-bIE
-cHp
-bIC
-bMi
-bNI
-bOI
-bPU
-bQV
-bRW
-bNN
-bTF
-bUh
-bUV
-bNN
-bxK
-bxK
-bwA
-cHu
-bwA
-bAB
-bwy
-bwy
-bww
-cZk
-caz
-cQo
-bYq
-bYq
-bYq
-caz
-cZn
-cZs
-cZx
-cZx
-cZC
-cZs
-cZs
-cZx
-cZR
-cZR
-cZC
-daL
-daK
-daV
-dbd
-cZC
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cKE
+deF
+deJ
+deP
+deV
+deV
+deV
+deV
+arR
+asR
+atV
+avc
+awq
+axe
+ayB
+azU
+aBj
+aCj
+ayy
+aEU
+aGp
+aHm
+aEW
+deP
+deF
+aLi
+aMf
+aNd
+aNY
+aPo
+aQj
+aQR
+aKp
+aKp
+aKp
+aKp
+aOb
+aKp
+aKp
+aKp
+aKp
+aWj
+aWy
+aWy
+cWj
+aWy
+aWy
+aWy
+cWj
+aWy
+aWy
+cWj
+aWy
+aWy
+aWy
+cWj
+aWy
+aWy
+aYs
+aYJ
+cIq
+cIv
+cIv
+cIv
+cIv
+cIv
+cIv
+cIC
+beo
+bfa
+bgf
+bhd
+bhQ
+biJ
+bjC
+bkE
+cKs
+bmD
+bjC
+cKt
+bqy
+cKr
+btz
+buY
+buY
+bxB
+cKr
+cKr
+bAR
+bBP
+bCS
+bCN
+bFt
+bGZ
+bIz
+cGC
+bIx
+bMa
+bNy
+bOx
+bPG
+bQG
+bRE
+bND
+bTi
+bTJ
+bUv
+bND
+bxJ
+bxJ
+bwz
+cGH
+bwz
+bAz
+bwx
+bwx
+bwv
+cYu
+bZN
+cPy
+bXE
+bXE
+bXE
+bZN
+cYx
+cYC
+cYH
+cYH
+cYM
+cYC
+cYC
+cYH
+cZb
+cZb
+cYM
+cZV
+cZU
+daf
+dan
+cYM
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cYf
-cqp
+aqU
+cme
+cXi
+cXi
+cXp
+cpC
aaa
aaa
-aWs
+aWr
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -127505,198 +125007,198 @@ aaa
aaa
aaa
aaa
-afH
+deF
agF
aht
ahX
ahX
ajw
akn
-cLu
+cKE
alG
-cLx
-ajW
-afH
-afE
-cLv
-aqU
-arS
-asT
-atX
-ave
-aws
-axf
-ayD
-azW
-aBl
-aCl
-ayz
+cKH
+deR
+deF
+deJ
+dfg
+aqT
+arR
+asS
+atW
+avd
+awr
+axe
+ayC
+azV
+aBk
+aCk
+ayy
+aEV
+aGq
+aHn
aEW
-aGr
-aHo
-aEX
-adP
-afH
-aNz
-aMh
-cLA
-aKq
-aPq
-aQk
-aQS
-aKq
-aSY
-aTK
-aUg
-aUJ
-aVg
-aVr
-aVB
-aVT
-aWl
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aYu
-aYP
-aZp
-aZM
-ban
-baO
-bbu
+deP
+deF
+aNy
+aMg
+dgC
+aKp
+aPp
+aQj
+aQR
+aKp
+aSX
+aTJ
+aUf
+aUI
+aVf
+aVq
+aVA
+aVS
+aWk
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aYt
+aYO
+aZo
+aZL
+bam
baN
-baN
-cJm
-bep
-bfb
-bgg
-bhe
-bhR
-biK
-cLf
-bkB
-bls
-cLf
-cGb
-bpe
-bqv
-cLf
-btB
-bva
-btB
-cLf
-byF
-bzE
-bAS
-bBS
-bCV
-cLj
-bFz
-bHb
-bIC
-bIC
-bIC
-bMn
-bNJ
-bOJ
-bPU
-bQV
-bRX
-bST
-bTG
-bUh
-bUW
-bNN
-bxK
-bxK
-bxK
-bxK
-bxK
-bwy
+bbt
+baM
+baM
+cIz
+beo
+bfa
+bgf
+bhd
+bhQ
+biJ
+bjC
+bkA
+blr
+bjC
+cFo
+bpd
+bqu
+cKr
+btA
+buZ
+btA
+cKr
+byE
+bzC
+bAQ
+bBP
+bCR
+bCN
+bFu
+bGW
+bIx
+bIx
+bIx
+bMf
+bNz
+bOy
+bPG
+bQG
+bRF
+bSy
+bTj
+bTJ
+bUw
+bND
+bxJ
+bxJ
+bxJ
+bxJ
+bxJ
bwx
-bwx
-bwx
-bVL
-cHu
-cHu
-cZl
-cZl
-cZl
-bwA
-cZm
-cZr
-cZr
-cZr
-cZB
-cZG
-cZF
-cZR
-cZR
-cZR
-daB
-daM
-daM
-daL
-dbe
-cZC
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+bww
+bww
+bww
+bVa
+cGH
+cGH
+cYv
+cYv
+cYv
+bwz
+cYw
+cYB
+cYB
+cYB
+cYL
+cYQ
+cYP
+cZb
+cZb
+cZb
+cZL
+cZW
+cZW
+cZV
+dao
+cYM
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cYf
-cqp
+aqU
+cme
+cXi
+cXi
+cXp
+cpC
aaa
aaa
-aWs
+aWr
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -127762,54 +125264,54 @@ aaa
aaa
aaa
aaa
-afH
+deF
agG
ahu
ahu
aiI
ajx
-afE
-afE
+deJ
+deJ
aiA
-ajW
-alx
-ajX
+deR
+deT
+deZ
alG
-ajW
-ajW
-arS
-arS
-arS
-arS
-arS
-arS
-ayE
-ayE
-ayE
-ayE
-ayE
-aEX
-aEX
-aEX
-aEX
-adP
-afH
-axF
-aMh
-aLE
-aKq
-aPr
-aQu
-aRn
-aSg
-aSZ
-aTL
-aTL
-aTL
-aVh
-aKq
-aKq
-aKq
+deR
+deR
+arR
+arR
+arR
+arR
+arR
+arR
+ayD
+ayD
+ayD
+ayD
+ayD
+aEW
+aEW
+aEW
+aEW
+deP
+deF
+dgu
+aMg
+dgD
+aKp
+aPq
+aQt
+aRm
+aSf
+aSY
+aTK
+aTK
+aTK
+aVg
+aKp
+aKp
+aKp
aaa
aaa
aaa
@@ -127828,132 +125330,132 @@ aaa
aaa
aaa
aaa
-aYK
-aYK
-aYK
-bao
-baQ
-bbv
-bbv
-bcG
-bdy
-beq
-bfc
-bgg
-bhe
-bhR
-biK
-cLf
-bkB
-cLg
-cLg
-bnU
-bpf
-bqA
-cLf
-btC
-btC
-btC
-cLf
-byF
-bzE
-bAS
-bBV
-bDa
-cLj
-bFA
-bHf
-bIF
-bJX
-bIF
-bMo
-bNK
-bOK
-bPV
-bQW
-bRX
-bST
-bTG
-bUh
-bUX
-bNN
-bxK
-bxK
-bxK
-bwA
-bYo
-bwy
+aYJ
+aYJ
+aYJ
+ban
+baP
+bbu
+bbu
+bcF
+bdx
+bep
+bfb
+bgf
+bhd
+bhQ
+biJ
+bjC
+bkA
+cKs
+cKs
+bnT
+bpe
+bqz
+cKr
+btB
+btB
+btB
+cKr
+byE
+bzC
+bAQ
+bBS
+bCW
+bCN
+bFv
+bHa
+bIA
+bJR
+bIA
+bMg
+bNA
+bOz
+bPH
+bQH
+bRF
+bSy
+bTj
+bTJ
+bUx
+bND
+bxJ
+bxJ
+bxJ
+bwz
+bXC
bwx
-bwA
-bxK
-bxK
-bxK
-aXS
+bww
+bwz
+bxJ
+bxJ
+bxJ
+aXR
aaa
aaa
-cGc
-cGc
-cZm
-cZq
-cZr
-cZr
-cZm
-cZH
-cZN
-cZx
-cZx
-das
-cZm
-daN
-daS
-daL
-cZm
-cZm
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cYw
+cYA
+cYB
+cYB
+cYw
+cYR
+cYX
+cYH
+cYH
+cZC
+cYw
+cZX
+dac
+cZV
+cYw
+cYw
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cYf
-cqp
+aqU
+cme
+cXi
+cXi
+cXp
+cpC
aaa
aaa
-aWs
+aWr
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -128019,52 +125521,52 @@ aaa
aaa
aaa
aaa
-afH
-afI
-afI
-afE
+deF
+deH
+deH
+deJ
aiJ
-afE
-afE
-adP
-adP
-afH
-afc
-ajX
-ajX
-ajX
-ajW
-cLG
-asU
-atY
-ahd
-apJ
-aBJ
-aBJ
-azX
-aBm
-aBJ
-cMe
-aBJ
-aGs
-aAS
-adP
-adP
-afH
-aLk
-aMi
-aNf
-aNY
-aPs
-aQk
-aRo
-aKq
-aMl
-aMl
-aMl
-aMl
-aMl
-aKq
+deJ
+deJ
+deP
+deP
+deF
+deU
+deZ
+deZ
+deZ
+deR
+dfn
+asT
+atX
+dfy
+dfA
+dfD
+dfD
+azW
+aBl
+dfD
+cLo
+dfD
+aGr
+aAR
+deP
+deP
+deF
+aLj
+aMh
+aNe
+aNX
+aPr
+aQj
+aRn
+aKp
+aMk
+aMk
+aMk
+aMk
+aMk
+aKp
abW
abW
aaa
@@ -128081,136 +125583,136 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
+cFp
+cFp
aaa
aaa
-aXE
-aXS
-aYK
-bap
-baR
-baO
-baO
-bcH
-cJm
-bep
-bfd
-bgg
-bhe
-bhR
-biK
-cLf
-cLf
-cLf
-cLf
-cLf
-bpe
-bqB
-bsd
-btD
-bvb
-bwq
-bxD
-byG
-byG
-bAU
-bBW
-bDb
-bDc
-bFt
-bHg
-bIC
-bJY
-bIC
-bMp
-bNJ
-bOL
-bPW
-bQX
-bRY
-bNN
-bTH
-bUh
-bUY
-bNN
-bxK
-bxK
-bxK
-bwA
-bwy
+aXD
+aXR
+aYJ
+bao
+baQ
+baN
+baN
+bcG
+cIz
+beo
+bfc
+bgf
+bhd
+bhQ
+biJ
+bjC
+bjC
+bjC
+bjC
+bjC
+bpd
+bqA
+bsc
+btC
+bva
+bwp
+bxC
+byF
+byF
+bAS
+bBT
+bCX
+bCY
+bFo
+bHb
+bIx
+bJS
+bIx
+bMh
+bNz
+bOA
+bPI
+bQI
+bRG
+bND
+bTk
+bTJ
+bUy
+bND
+bxJ
+bxJ
+bxJ
+bwz
bwx
-cRZ
-cHu
-aXS
-aXS
-aXS
-aXS
+bww
+cRj
+cGH
+aXR
+aXR
+aXR
+aXR
aaa
aaa
aaa
aaa
-cZm
-cZt
-cZy
-cZA
-cZm
-cZI
-cZO
-cZx
-cZx
-cZG
-cZm
-cZm
-cZm
-daW
-cZm
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cYw
+cYD
+cYI
+cYK
+cYw
+cYS
+cYY
+cYH
+cYH
+cYQ
+cYw
+cYw
+cYw
+dag
+cYw
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
-aqV
-cXX
-cXZ
-cXY
-cYg
-cXX
+aqU
+cXh
+cXj
+cXi
+cXq
+cXh
aaa
aaa
-aWs
+aWr
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -128279,49 +125781,49 @@ aaa
abC
abC
abC
-afI
+deH
aiK
ahu
-afH
+deF
abC
akm
-adP
-afH
-aTz
-cLF
-aqh
-ajX
-ajX
-ajX
-alv
-ajX
-ajX
-ajX
-ajW
-ajX
-ajX
-ajX
-ajX
-ajX
-ajX
-anh
-cMy
-afE
-afE
-aLl
-aMj
-aNg
-aKq
-aPt
-aQk
-aRp
-aKq
-aTa
-aTa
-aMl
-aUK
-aLo
-aKq
+deP
+deF
+aTy
+cKP
+aqg
+deZ
+deZ
+deZ
+dfu
+deZ
+deZ
+deZ
+deR
+deZ
+deZ
+deZ
+deZ
+deZ
+deZ
+dga
+cLI
+deJ
+deJ
+aLk
+aMi
+aNf
+aKp
+aPs
+aQj
+aRo
+aKp
+aSZ
+aSZ
+aMk
+aUJ
+aLn
+aKp
abW
abW
aaa
@@ -128340,134 +125842,134 @@ aaa
aaa
aaa
aaa
-cGc
+cFp
aaa
-aXE
-aXS
-aYK
-bap
-baS
-bbw
-baO
-bcI
-cJm
-bep
-bfd
-bgg
-bhe
-bhR
-biK
+aXD
+aXR
+aYJ
+bao
+baR
+bbv
+baN
+bcH
+cIz
+beo
+bfc
+bgf
+bhd
+bhQ
biJ
+biI
+bjB
+biI
+bjB
bjC
-biJ
-bjC
-cLf
-bpg
-bqC
-bse
-btE
-bse
-bwr
-bxE
-bse
-bse
-bAV
-bBX
-bDc
-bEm
-bFB
-bHh
-bIG
-bJZ
-bKU
-bMq
-bNL
-bOM
-bPX
-bQY
-bRZ
-bSU
-bTI
-bUi
-bUZ
-bNN
-bxK
-bxK
-bxK
-bwy
+bpf
+bqB
+bsd
+btD
+bsd
+bwq
+bxD
+bsd
+bsd
+bAT
+bBU
+bCY
+bEh
+bFw
+bHc
+bIB
+bJT
+bKN
+bMi
+bNB
+bOB
+bPJ
+bQJ
+bRH
+bSz
+bTl
+bTK
+bUz
+bND
+bxJ
+bxJ
+bxJ
bwx
-bwx
-bxK
-bxK
-aYg
-aYg
-aXS
-aXS
+bww
+bww
+bxJ
+bxJ
+aYf
+aYf
+aXR
+aXR
aaa
aaa
aaa
aaa
-cZm
-cZm
-cZm
-cZm
-cZm
-cZm
-cZP
-cZx
-cZR
-cZF
-daC
-cZm
-cZm
-cZm
-cZm
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cYw
+cYw
+cYw
+cYw
+cYw
+cYw
+cYZ
+cYH
+cZb
+cYP
+cZM
+cYw
+cYw
+cYw
+cYw
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cYf
-cqp
+aqU
+cme
+cXi
+cXi
+cXp
+cpC
aaa
aaa
-aWs
+aWr
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -128536,49 +126038,49 @@ aaa
aaa
aaa
abC
-afI
+deH
aiL
ajy
-afH
+deF
aaa
abW
abW
-aep
-aep
-afE
-aep
-afH
-cLv
-cLL
-aoX
-afc
-afc
-alv
-afH
-anZ
-aoX
-aqh
-ajX
-afc
-afc
-anh
-ajX
-aJu
-afE
-afE
-afH
-afH
-aKq
-aPm
-aQk
-aRq
-aKq
-aKq
-aKq
-aKq
-aKq
-aKq
-aKq
+deV
+deV
+deJ
+deV
+deF
+dfg
+cKV
+dfv
+deU
+deU
+dfu
+deF
+dfJ
+dfv
+aqg
+deZ
+deU
+deU
+dga
+deZ
+aJt
+deJ
+deJ
+deF
+deF
+aKp
+aPl
+aQj
+aRp
+aKp
+aKp
+aKp
+aKp
+aKp
+aKp
+aKp
abW
abW
aaa
@@ -128599,132 +126101,132 @@ aaa
aaa
aaa
aaa
-aXS
-aXS
-aYK
-aYK
-aYK
-aYK
-aYK
-aYK
-cJn
-bep
-bfd
-bgg
-bhe
-bhR
-biL
-bjE
-biL
-bjE
+aXR
+aXR
+aYJ
+aYJ
+aYJ
+aYJ
+aYJ
+aYJ
+cIA
+beo
+bfc
+bgf
+bhd
+bhQ
biK
-cLf
-bpj
-bqD
-cGa
-btF
-bvc
-bws
-bxF
-byH
-byH
-byH
-byH
-byH
-bEn
-bFC
-bHi
-bIz
-bIz
-bIz
-bMr
-bNH
-bON
-bPY
-bPW
-bSa
-bNN
-bTJ
-bTJ
-bTJ
-bNN
-bxK
-bxK
-bwA
-bXL
-bwx
-bwA
-bxK
-aXS
-aYg
-aYg
-aXS
-aXS
+bjD
+biK
+bjD
+biJ
+bjC
+bpi
+dir
+cFn
+btE
+bvb
+bwr
+bxE
+byG
+byG
+byG
+byG
+byG
+bEi
+bFx
+bHd
+bIu
+bIu
+bIu
+bMj
+bNx
+bOC
+bPK
+bPI
+bRI
+bND
+bTm
+bTm
+bTm
+bND
+bxJ
+bxJ
+bwz
+bWZ
+bww
+bwz
+bxJ
+aXR
+aYf
+aYf
+aXR
+aXR
aaa
aaa
-cGc
-cGc
-cGc
-cZo
-cZu
-cZm
-cZm
-cZm
-cZJ
-cZR
-cZs
-cZJ
-cZm
-cZm
-cZm
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cYy
+cYE
+cYw
+cYw
+cYw
+cYT
+cZb
+cYC
+cYT
+cYw
+cYw
+cYw
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cYf
-cqp
+aqU
+cme
+cXi
+cXi
+cXp
+cpC
aaa
aaa
-aWs
+aWr
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -128793,43 +126295,43 @@ aaa
aaa
aaa
abC
-afH
-afH
-agB
-afH
+deF
+deF
+deG
+deF
aaa
abW
abW
abW
acH
acH
-aep
-afH
-afE
-afH
-adP
-adP
-awt
-aqg
-adP
-afE
-aep
-aep
+deV
+deF
+deJ
+deF
+deP
+deP
+dfB
+dfE
+deP
+deJ
+deV
+deV
+cLp
+deU
+dfJ
+aHo
+dfD
+cLQ
+cLo
+cLZ
+cLo
cMf
-afc
-anZ
-aHp
-aBJ
-cMG
-cMe
-cMP
-cMe
-cMV
-aOa
-aPu
-aQk
-aRp
-aKq
+aNZ
+aPt
+aQj
+aRo
+aKp
acH
acH
acH
@@ -128856,132 +126358,132 @@ aaa
aaa
aaa
aaa
-aYg
-aYg
-aYg
-aXS
-aYg
-aYg
-aYg
-aYg
-cJm
-ber
-bfd
-bgh
-bhe
-bhS
-biI
-biI
-biI
-biI
-bjE
-abC
-abC
-bqE
-cLf
-btG
-bvd
-bwt
-cLf
-abC
-abC
-abC
-abC
+aYf
+aYf
+aYf
+aXR
+aYf
+aYf
+aYf
+aYf
+cIz
+beq
+bfc
+bgg
+bhd
+bhR
+biH
+biH
+biH
+biH
bjD
-bEf
-bFD
-bHj
-bIH
-bKa
-bIH
-bMs
-bNM
-bOO
-bPY
-bPW
-bSb
-bNN
-bTJ
-bTJ
-bVa
-bNN
-bxK
-bxK
-cHu
-cQu
-bwx
-bwA
-bzs
-aYg
-aYg
-aYg
-aXS
-aXS
+abC
+abC
+bqD
+bjC
+btF
+bvc
+bws
+cKr
+abC
+abC
+abC
+abC
+bjC
+bEa
+bFy
+bHe
+bIC
+bJU
+dkv
+bMk
+bNC
+bOD
+bPK
+bPI
+bRJ
+bND
+bTm
+bTm
+bUA
+bND
+bxJ
+bxJ
+cGH
+cPE
+bww
+bwz
+bzq
+aYf
+aYf
+aYf
+aXR
+aXR
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cZo
-cZu
-cZJ
-cZS
-cZS
-cZJ
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cYy
+cYE
+cYT
+cZc
+cZc
+cYT
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cYf
-cqp
+aqU
+cme
+cXi
+cXi
+cXp
+cpC
aaa
aaa
-aWs
+aWr
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -129051,9 +126553,9 @@ aaa
aaa
aaa
abC
-afH
-agC
-afH
+deF
+deM
+deF
abC
akm
abW
@@ -129065,28 +126567,28 @@ acH
acH
acH
acH
-aep
-aep
-aep
+deV
+deV
+deV
acH
acH
acH
-aep
-aDz
-afE
-afH
-aep
-afH
-cLv
-ajW
-cLG
-cMF
-aut
+deV
+aDy
+deJ
+deF
+deV
+deF
+dfg
+deR
+dfn
+dgx
+dgE
akn
-aOL
-aQk
-aRp
-aKq
+aOK
+aQj
+aRo
+aKp
acH
acH
acH
@@ -129111,134 +126613,134 @@ aaa
aaa
aaa
aaa
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-cJm
-bep
-bfd
-bgg
-bhe
-bhe
-bhe
-bhe
-cFX
-bhe
-bhe
-bhe
-bhe
-bhe
-bhe
-bhe
-bhe
-bhe
-bhe
-bhe
-bhe
-bhe
-bBY
-bhe
-bhe
-bFE
-bHk
-bnT
-bhe
-bhe
-bhe
-bNN
-bOP
-bPY
-bQZ
-bNN
-bNN
-bTK
-bUj
-bVa
-bNN
-bwA
-bxK
-bwy
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+cIz
+beo
+bfc
+bgf
+bhd
+bhd
+bhd
+bhd
+cFk
+bhd
+bhd
+bhd
+bhd
+bhd
+bhd
+bhd
+bhd
+bhd
+bhd
+bhd
+bhd
+bhd
+bBV
+bhd
+bhd
+bFz
+bHf
+bnS
+bhd
+bhd
+bhd
+bND
+bOE
+bPK
+bQK
+bND
+bND
+bTn
+bTL
+bUA
+bND
+bwz
+bxJ
bwx
-bwx
-cHu
-aYg
-aYg
-aYg
-aYg
-aXS
-aXS
+bww
+bww
+cGH
+aYf
+aYf
+aYf
+aYf
+aXR
+aXR
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cYf
-cqp
+aqU
+cme
+cXi
+cXi
+cXp
+cpC
abC
abC
-aWs
+aWr
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -129326,24 +126828,24 @@ acH
acH
acH
acH
-aep
-afE
-afE
-ajW
-aep
+deV
+deJ
+deJ
+deR
+deV
acH
acH
-aep
-aep
-afE
-afH
-aKq
-aKq
-aKq
-aOQ
-aQq
-aRr
-aKq
+deV
+deV
+deJ
+deF
+aKp
+aKp
+aKp
+aOP
+aQp
+aRq
+aKp
acH
acH
acH
@@ -129368,81 +126870,81 @@ aaa
aaa
aaa
aaa
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-cJm
-bep
-bfe
-bgi
-bdw
-bhT
-bdw
-bdw
-bdw
-blt
-bmF
-bnV
-bmF
-bqF
-bsf
-btH
-bve
-bwu
-bxG
-byI
-bzF
-bAW
-bBZ
-bDd
-bEo
-bFF
-bHl
-bII
-bHp
-bHp
-bHp
-bHp
-bOQ
-bPZ
-bPW
-bSc
-bNN
-bNN
-bNN
-bNN
-bNN
-bQD
-bwy
-bwy
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+cIz
+beo
+bfd
+bgh
+bdv
+bhS
+bdv
+bdv
+bdv
+bls
+bmE
+bnU
+bmE
+bqE
+bse
+btG
+bvd
+bwt
+bxF
+byH
+bzD
+bAU
+bBW
+bCZ
+bEj
+bFA
+bHg
+bID
+bHk
+bHk
+bHk
+bHk
+bOF
+bPL
+bPI
+bRK
+bND
+bND
+bND
+bND
+bND
+bQp
bwx
-bBH
-bzs
-aYg
-aYg
-aYg
-aYg
-aXS
-aXS
+bwx
+bww
+bBE
+bzq
+aYf
+aYf
+aYf
+aYf
+aXR
+aXR
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -129461,41 +126963,41 @@ aaa
aaa
aaa
aaa
-aqV
-cXX
-cYa
-cXY
-cYf
-cXX
+aqU
+cXh
+cXk
+cXi
+cXp
+cXh
aaa
aaa
-aWs
+aWr
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -129583,24 +127085,24 @@ abW
abW
abW
abW
-adP
-ajW
-ajW
-ajW
-aep
+deP
+deR
+deR
+deR
+deV
acH
acH
acH
acH
acH
abW
-aKq
-aNi
-aOb
-aPv
-aQv
-aRs
-aKq
+aKp
+aNh
+aOa
+aPu
+aQu
+aRr
+aKp
acH
acH
acH
@@ -129625,81 +127127,81 @@ abC
abC
abC
abC
-aYh
-aXS
-aXS
aYg
-aYg
-aYg
-baT
-baT
-baT
-baT
-cJq
-bep
-bff
-bgj
-bhf
-bhU
-bhU
-bhU
-bhU
-blu
-bhU
-bhU
-bpk
-bqq
-bsg
-btI
-bvf
-bwv
-bxH
-byJ
-byJ
-bAX
-bCa
-bCa
-byJ
-bAX
-bHm
-bIJ
-bHp
-bKV
-bMt
-bHp
-bOR
-bQa
-bPW
-bSd
-bNN
-bxK
-bxK
-bxK
-bwA
-bAC
-bwy
+aXR
+aXR
+aYf
+aYf
+aYf
+baS
+baS
+baS
+baS
+cID
+beo
+bfe
+bgi
+bhe
+bhT
+bhT
+bhT
+bhT
+blt
+bhT
+bhT
+bpj
+bqp
+bsf
+btH
+bve
+bwu
+bxG
+byI
+byI
+bAV
+bBX
+bBX
+byI
+bAV
+bHh
+bIE
+bHk
+bKO
+bMl
+bHk
+bOG
+bPM
+bPI
+bRL
+bND
+bxJ
+bxJ
+bxJ
+bwz
+bAA
bwx
-cRO
-bwA
-bzs
-aYg
-aYg
-aXS
-aXS
-aXS
+bww
+cQY
+bwz
+bzq
+aYf
+aYf
+aXR
+aXR
+aXR
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -129718,12 +127220,12 @@ aaa
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cYf
-cqp
+aqU
+cme
+cXi
+cXi
+cXp
+cpC
aaa
aaa
aaa
@@ -129731,28 +127233,28 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -129838,26 +127340,26 @@ abW
abW
abW
abW
-afE
-afE
-afE
-afE
-cLG
-afH
-adP
+deJ
+deJ
+deJ
+deJ
+dfn
+deF
+deP
abW
abW
abW
abW
-aKq
-aKq
-aKq
-aNj
-aKq
-aPw
-aQk
-aQS
-aKq
+aKp
+aKp
+aKp
+aNi
+aKp
+aPv
+aQj
+aQR
+aKp
acH
acH
acH
@@ -129882,81 +127384,81 @@ aaa
aaa
aaa
aaa
-aXS
-aXS
-aXS
-aYg
-aYg
-aYg
-baT
-bbx
-bbZ
-bcJ
-cJq
-bes
-bfg
-bgk
-bhg
-bhV
-bhV
-bjF
-bhV
-blv
-bmG
-bhV
-bpl
-bqo
-bsh
-btJ
-bvg
-bwm
-bxI
-byx
-bzG
-bAY
-bCb
-bDe
-bEp
-bFG
-bHn
-bIK
-bKb
-bKW
-bMu
-bHp
-bOS
-bQb
-bRa
-bSe
-bNN
-bxK
-bxK
-bxK
-cHu
-bwy
+aXR
+aXR
+aXR
+aYf
+aYf
+aYf
+baS
+bbw
+bbY
+bcI
+cID
+ber
+bff
+bgj
+bhf
+bhU
+bhU
+bjE
+bhU
+blu
+bmF
+bhU
+bpk
+bqn
+bsg
+btI
+bvf
+bwl
+bxH
+byw
+bzE
+bAW
+bBY
+bDa
+bEk
+bFB
+bHi
+bIF
+bJV
+bKP
+bMm
+bHk
+bOH
+bPN
+bQL
+bRM
+bND
+bxJ
+bxJ
+bxJ
+cGH
bwx
-cRU
-bWS
-cHu
-cHu
-bWS
-aYg
-aYg
-aYg
-aXS
+bww
+cRe
+bWg
+cGH
+cGH
+bWg
+aYf
+aYf
+aYf
+aXR
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -129975,31 +127477,31 @@ aaa
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cYf
-cqp
+aqU
+cme
+cXi
+cXi
+cXp
+cpC
aaa
aaa
-aWs
+aWr
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -130095,29 +127597,29 @@ abW
abW
abW
abW
-afE
-ayF
-ajW
-cLx
-ajW
-afE
-adP
+deJ
+ayE
+deR
+cKH
+deR
+deJ
+deP
abW
abW
abW
abW
-aKq
+aKp
+aLl
aLm
-aLn
-aNj
-aKq
-aPx
-aQr
-aRd
-aKq
-aKq
-aKq
-aKq
+aNi
+aKp
+aPw
+aQq
+aRc
+aKp
+aKp
+aKp
+aKp
abE
abE
abE
@@ -130139,81 +127641,81 @@ aaa
aaa
aaa
aaa
-aXE
-aXS
-aXS
-aYg
-aYg
-aYg
-baT
-bby
-bca
-bca
-cJr
-cJs
-bfh
-bgl
-bfh
-cJs
-cJu
-cJi
-cJi
-blw
-cJi
-cJi
-bpm
-cJb
-bsi
-cJi
-cJi
-cJQ
-bxJ
-byK
-bzH
-bAZ
-bCc
-bDf
-bEq
-bFH
-bHo
-bIL
-bKc
-bKX
-bMv
-bHp
-bNN
-bNN
-bRb
-bNN
-bNN
-cHu
-bwA
-bwA
-cHu
-bwy
+aXD
+aXR
+aXR
+aYf
+aYf
+aYf
+baS
+bbx
+bbZ
+bbZ
+cIE
+cIF
+bfg
+bgk
+bfg
+cIF
+cIH
+cIv
+cIv
+blv
+cIv
+cIv
+bpl
+cIo
+bsh
+cIv
+cIv
+cJd
+bxI
+byJ
+bzF
+bAX
+bBZ
+bDb
+bEl
+bFC
+bHj
+bIG
+bJW
+bKQ
+bMn
+bHk
+bND
+bND
+bQM
+bND
+bND
+cGH
+bwz
+bwz
+cGH
bwx
-bWS
-cHu
-bYp
-bYS
-cHu
-aYg
-aYg
-aYg
+bww
+bWg
+cGH
+bXD
+bYg
+cGH
+aYf
+aYf
+aYf
aaa
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -130232,15 +127734,15 @@ aaa
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cYf
-cqp
+aqU
+cme
+cXi
+cXi
+cXp
+cpC
abC
abC
-aWs
+aWr
aaa
aaa
aaa
@@ -130352,29 +127854,29 @@ abW
abW
abW
abW
-afE
-ayG
-ajW
-cFu
-afH
-afH
+deJ
+ayF
+deR
+cEH
+deF
+deF
abW
abW
abW
abW
abW
-aKq
-aLn
+aKp
+aLm
+aMj
+aNi
+aOb
+aPx
+aQj
+aRs
+aSg
+aTa
aMk
-aNj
-aOc
-aPy
-aQk
-aRt
-aSh
-aTb
-aMl
-aKq
+aKp
abE
abE
abE
@@ -130396,81 +127898,81 @@ aaa
aaa
aaa
aaa
-aXE
-aXS
-aXS
-aYg
-aYg
-aYg
-baT
-bbz
-bca
-bca
-bdz
-bet
-bfi
-bgm
-bhh
-bhW
-biM
-bjG
-bkG
-blx
-baN
-aYK
-bpn
-bqG
-bsj
-aYK
-bvh
-cJR
-cJS
-cJT
-bzI
-bBa
-bCd
-bDg
-bEr
-byL
-bHp
-bHp
-bHp
-bKY
-bMw
-bHp
-bHp
-bNN
-cGq
-cGr
-bYq
-cHy
-cHu
-cHu
-bwy
+aXD
+aXR
+aXR
+aYf
+aYf
+aYf
+baS
+bby
+bbZ
+bbZ
+bdy
+bes
+bfh
+bgl
+bhg
+bhV
+biL
+bjF
+bkF
+blw
+baM
+aYJ
+bpm
+bqF
+bsi
+aYJ
+bvg
+cJe
+cJf
+cJg
+bzG
+bAY
+bCa
+bDc
+bEm
+byK
+bHk
+bHk
+bHk
+bKR
+bMo
+bHk
+bHk
+bND
+cFD
+cFE
+bXE
+cGL
+cGH
+cGH
bwx
-bwx
-bXi
-bXM
-bXN
-bYq
-bWS
-aYg
-aYg
-aYg
+bww
+bww
+bWw
+bXa
+bXb
+bXE
+bWg
+aYf
+aYf
+aYf
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -130489,15 +127991,15 @@ aaa
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cYf
-cqp
+aqU
+cme
+cXi
+cXi
+cXp
+cpC
aaa
aaa
-aWs
+aWr
aaa
aaa
aaa
@@ -130505,9 +128007,9 @@ aaa
aaa
aaa
aaa
-cyv
-cAa
-cyv
+cxI
+czn
+cxI
aaa
aaa
aaa
@@ -130609,29 +128111,29 @@ abW
abW
akm
abW
-afH
-ayH
-azY
-afH
-afH
+deF
+ayG
+azX
+deF
+deF
abW
abW
abW
abW
abW
abW
-aKq
-aLo
-aMl
-aNj
-aKq
-aPz
-aQk
-aRu
-aKq
-aTc
-aTM
-aKq
+aKp
+aLn
+aMk
+aNi
+aKp
+aPy
+aQj
+aRt
+aKp
+aTb
+aTL
+aKp
abE
abE
abE
@@ -130653,81 +128155,81 @@ aaa
aaa
aaa
aaa
-aXE
-aXE
-aXS
-aYg
-aYg
-aYg
-baT
-bbz
-bcb
-bcK
-bdA
-beu
-bfj
-bgn
-bhi
-bhX
-biM
-baO
-baO
-bly
+aXD
+aXD
+aXR
+aYf
+aYf
+aYf
+baS
+bby
+bca
+bcJ
+bdz
+bet
+bfi
+bgm
+bhh
+bhW
+biL
baN
-aYK
-aZo
-cJA
-bsk
-btK
-bvi
-cQe
-bxK
-cJU
-bzJ
-bBb
-bCe
-bDh
-bEs
-byL
-bHp
-bIM
-bKd
-bKZ
-bMx
-bHp
-bHp
-bNN
-bRc
-bNN
-bxK
-bYq
-bYq
-bwx
-bwx
+baN
+blx
+baM
+aYJ
+aZn
+cIN
+bsj
+btJ
+bvh
+cPo
+bxJ
+cJh
+bzH
+bAZ
+bCb
+bDd
+bEn
+byK
+bHk
+bIH
+bJX
+bKS
+bMp
+bHk
+bHk
+bND
+bQN
+bND
+bxJ
+bXE
+bXE
bww
-bWS
-cHu
-cHu
-bYq
-bYT
-cHu
-aYg
-aYg
-aYg
+bww
+bwv
+bWg
+cGH
+cGH
+bXE
+bYh
+cGH
+aYf
+aYf
+aYf
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -130746,26 +128248,26 @@ aaa
aaa
aaa
aaa
-aqV
-cXX
-cXZ
-cXY
-cYh
-cXX
+aqU
+cXh
+cXj
+cXi
+cXr
+cXh
aaa
aaa
-aWs
+aWr
aaa
aaa
aaa
aaa
aaa
aaa
-cyv
-czn
-czo
-czn
-cyv
+cxI
+cyA
+cyB
+cyA
+cxI
aaa
aaa
aaa
@@ -130866,10 +128368,10 @@ aaa
aaa
abC
aaa
-afH
-aiW
-aiW
-afH
+deF
+dfH
+dfH
+deF
abW
abW
abW
@@ -130877,18 +128379,18 @@ abW
abW
abW
abW
-aKq
-aLo
-aMl
-aNj
-aKq
-aPA
-aQk
-aRu
-aKq
-aTc
-aMl
-aKq
+aKp
+aLn
+aMk
+aNi
+aKp
+aPz
+aQj
+aRt
+aKp
+aTb
+aMk
+aKp
abE
abE
abE
@@ -130910,77 +128412,77 @@ aaa
aaa
aaa
aaa
-aXE
-aXE
-aXS
-aYg
-aYg
-aYg
-baT
-bbA
-bcc
-bcL
-bcL
-bev
-bfk
-bgo
-bhj
-bhY
-biM
-bbw
-baO
-blz
-bmH
-aYK
-aZo
-cJA
-cXC
-btL
-bvj
-bYq
-bxL
-cJU
-bzK
-bBc
-bCf
-bDi
-bEt
-byL
-bHp
-bIN
-bIN
-bIN
-bMy
-bHp
-bHp
-cGo
-cGo
-cGo
+aXD
+aXD
+aXR
+aYf
+aYf
+aYf
+baS
+bbz
+bcb
+bcK
+bcK
+beu
+bfj
+bgn
+bhi
+bhX
+biL
+bbv
+baN
+bly
+bmG
+aYJ
+aZn
+cIN
+cWM
+btK
+bvi
+bXE
bxK
-cHu
-bwx
-bwx
-bwx
-bwx
-cHu
-bXj
-bXN
-bYq
-bYq
-cHu
-aXS
+cJh
+bzI
+bBa
+bCc
+bDe
+bEo
+byK
+bHk
+bII
+bII
+bII
+bMq
+bHk
+bHk
+cFB
+cFB
+cFB
+bxJ
+cGH
+bww
+bww
+bww
+bww
+cGH
+bWx
+bXb
+bXE
+bXE
+cGH
+aXR
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -131003,26 +128505,26 @@ aaa
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cYf
-cqp
+aqU
+cme
+cXi
+cXi
+cXp
+cpC
aaa
aaa
-aWs
+aWr
aaa
aaa
aaa
aaa
aaa
aaa
-cyw
-czo
-czo
-cAI
-cyw
+cxJ
+cyB
+cyB
+czV
+cxJ
aaa
aaa
aaa
@@ -131134,18 +128636,18 @@ abW
abW
abW
abW
-aKq
-aLp
-aMm
-aNj
-aKq
-aPy
-aQk
-aRu
-aKq
-aTc
-aMm
-aKq
+aKp
+aLo
+aMl
+aNi
+aKp
+aPx
+aQj
+aRt
+aKp
+aTb
+aMl
+aKp
abE
abE
abE
@@ -131167,119 +128669,119 @@ aaa
aaa
aaa
aaa
-aXE
-aXE
-aXS
-aYg
-aYg
-aYg
-baT
-bbz
-bca
-bca
-bdB
-bew
-bfl
-bgp
-bhk
-bhZ
-biM
-baO
-baO
-blA
-bmI
-bdv
-aZo
-cJA
-bsl
-aYK
-bvk
-bYq
-bYq
-cJU
-bzL
-bBd
-bCg
-bDj
-bEu
-byL
-bHp
-bIN
-bIN
-bLa
-bMz
-bHp
-bHp
-bxK
-bxK
-bxK
-bxK
-bxK
-bSD
-bwy
+aXD
+aXD
+aXR
+aYf
+aYf
+aYf
+baS
+bby
+bbZ
+bbZ
+bdA
+bev
+bfk
+bgo
+bhj
+bhY
+biL
+baN
+baN
+blz
+bmH
+bdu
+aZn
+cIN
+bsk
+aYJ
+bvj
+bXE
+bXE
+cJh
+bzJ
+bBb
+bCd
+bDf
+bEp
+byK
+bHk
+bII
+bII
+bKT
+bMr
+bHk
+bHk
+bxJ
+bxJ
+bxJ
+bxJ
+bxJ
+bSl
bwx
-cRQ
-cHu
-bXk
-bXO
-bXN
-bXN
-cHu
-aXS
+bww
+cRa
+cGH
+bWy
+bXc
+bXb
+bXb
+cGH
+aXR
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
aag
aaa
-aaa
-cdZ
-cdZ
-ceo
-abC
-abC
-cfv
-cfT
-cfT
-cdZ
-cdZ
+djk
+cdn
+cdn
+cdC
+djp
+djp
+ceJ
+cfh
+cfh
+cdn
+cdn
aaa
aaa
aaa
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cYf
-cqp
+aqU
+cme
+cXi
+cXi
+cXp
+cpC
aaa
aaa
-aWs
+aWr
aaa
aaa
aaa
aaa
aaa
aaa
-cyw
-czp
-czo
-cAJ
-cyw
+cxJ
+cyC
+cyB
+czW
+cxJ
aaa
aaa
aaa
@@ -131391,18 +128893,18 @@ abW
abW
abW
abW
-aKq
-aKq
-aKq
-aNk
-aKq
-aPB
-aQk
-aQP
-aKq
-aTd
-aKq
-aKq
+aKp
+aKp
+aKp
+aNj
+aKp
+aPA
+aQj
+aQO
+aKp
+aTc
+aKp
+aKp
abE
abE
abE
@@ -131424,107 +128926,107 @@ aaa
aaa
aaa
aaa
-aXE
-aXE
-aXS
-aYg
-aYg
-aYg
-baT
-bbz
-bca
-bca
-bdC
-bet
-bfm
-bgq
-bhl
-bia
-biM
-bap
-bap
-blB
-bmJ
-aYK
-aZo
-cJA
-bsm
-aYK
-bvl
-bwz
-bYq
-cJV
-cJT
-cJX
-byL
-byL
-byL
-byL
-bHp
-bIN
-bIN
-bIN
-bMA
-bHp
-bHp
-bxK
-bxK
-bxK
-bxK
-bwA
-bVb
+aXD
+aXD
+aXR
+aYf
+aYf
+aYf
+baS
+bby
+bbZ
+bbZ
+bdB
+bes
+bfl
+bgp
+bhk
+bhZ
+biL
+bao
+bao
+blA
+bmI
+aYJ
+aZn
+cIN
+bsl
+aYJ
+bvk
bwy
+bXE
+cJi
+cJg
+cJj
+byK
+byK
+byK
+byK
+bHk
+bII
+bII
+bII
+bMs
+bHk
+bHk
+bxJ
+bxJ
+bxJ
+bxJ
+bwz
+bUB
bwx
-bxK
-cHu
-bWS
-bWS
-bYr
-bYU
-cHu
-aXS
+bww
+bxJ
+cGH
+bWg
+bWg
+bXF
+bYi
+cGH
+aXR
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
aaa
aaa
-aqV
-abC
-aqV
-aWO
-aWc
-ceS
-aWO
-aWO
-cgs
-aXc
-aqV
+djl
+djp
+djl
+djq
+djs
+ceg
+djq
+djq
+cfG
+djt
+djl
aaa
aaa
aaa
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cYf
-cqp
+aqU
+cme
+cXi
+cXi
+cXp
+cpC
aaa
-aWs
+aWr
aaa
aaa
aaa
@@ -131532,11 +129034,11 @@ aaa
aaa
aaa
aaa
-cyx
-czq
-czo
-cAK
-cyx
+cxK
+cyD
+cyB
+czX
+cxK
aaa
aaa
aaa
@@ -131593,36 +129095,36 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
abC
aaa
aaa
@@ -131637,8 +129139,8 @@ aaa
aaa
abC
aaa
-cGc
-cGc
+cFp
+cFp
aaa
aaa
aaa
@@ -131650,15 +129152,15 @@ abW
abW
abW
abW
-aKq
-aNl
-aKq
-aPy
-aQk
-aRv
-aKq
-aTe
-aKq
+aKp
+aNk
+aKp
+aPx
+aQj
+aRu
+aKp
+aTd
+aKp
aaa
aaa
aaa
@@ -131681,107 +129183,107 @@ aaa
aaa
aaa
aaa
-aXE
-aXE
-aXS
-aXS
-aYg
-aYg
-baT
-baT
-baT
-baT
-baT
-baT
-baT
-baT
-baT
-baT
-biM
-aYK
-aYK
-aYK
-bmK
-aYK
-aZo
-cJA
-cXC
-aYK
-bvm
-bwA
-bYq
-bYq
-cJV
-cJY
-byL
-bzs
-bzs
-bzs
-bHp
-bHp
-bHp
-bHp
-bHp
-bHp
-bHp
-bxK
-bxK
-bxK
-bxK
-bwA
-bwy
+aXD
+aXD
+aXR
+aXR
+aYf
+aYf
+baS
+baS
+baS
+baS
+baS
+baS
+baS
+baS
+baS
+baS
+biL
+aYJ
+aYJ
+aYJ
+bmJ
+aYJ
+aZn
+cIN
+cWM
+aYJ
+bvl
+bwz
+bXE
+bXE
+cJi
+cJk
+byK
+bzq
+bzq
+bzq
+bHk
+bHk
+bHk
+bHk
+bHk
+bHk
+bHk
+bxJ
+bxJ
+bxJ
+bxJ
+bwz
bwx
-bVL
-bwA
-aYg
-aYg
-cHu
-bWS
-cHu
-cHu
-aXS
+bww
+bVa
+bwz
+aYf
+aYf
+cGH
+bWg
+cGH
+cGH
+aXR
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
aaa
aaa
-cdV
-cdV
-cdV
-abC
-aXc
-abC
-cdZ
-cdV
-cdV
-cdV
-cdZ
+cdj
+cdj
+cdj
+djp
+djt
+djp
+cdn
+cdj
+cdj
+cdj
+cdn
aaa
aaa
aaa
aaa
aaa
aaa
-aqV
-cmQ
-cXY
-cXY
-cYf
-cqp
+aqU
+cme
+cXi
+cXi
+cXp
+cpC
aaa
-aWs
+aWr
aaa
aaa
aaa
@@ -131789,11 +129291,11 @@ aaa
aaa
aaa
aaa
-cyw
-czq
-czo
-cAK
-cyw
+cxJ
+cyD
+cyB
+czX
+cxJ
aaa
aaa
aaa
@@ -131881,12 +129383,12 @@ aaa
ahF
ajz
ahF
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -131894,9 +129396,9 @@ aaa
aaa
abC
aaa
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
aaa
aaa
abW
@@ -131907,15 +129409,15 @@ abW
abW
abW
abW
-aKq
-aNm
-aKq
-aPC
-aQw
-aRw
-aKq
-aTd
-aKq
+aKp
+aNl
+aKp
+aPB
+aQv
+aRv
+aKp
+aTc
+aKp
abC
abC
abC
@@ -131938,65 +129440,65 @@ abC
abC
abC
abC
-aYh
-aXS
-aXS
-aXS
aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aXS
-aXS
-aXS
-aYK
-bmL
-aYK
-bpo
-cJA
-cXC
-aYK
-bvn
-cHu
-cQj
-bYq
-bzs
-bzs
-cHu
-cHu
-cHu
-bXL
-bHp
-bHp
-bHp
-bHp
-bHp
-bHp
-bHp
-bxK
-bxK
-bxK
-bwA
-bwy
-bww
+aXR
+aXR
+aXR
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aXR
+aXR
+aXR
+aYJ
+bmK
+aYJ
+bpn
+cIN
+cWM
+aYJ
+bvm
+cGH
+cPt
+bXE
+bzq
+bzq
+cGH
+cGH
+cGH
+bWZ
+bHk
+bHk
+bHk
+bHk
+bHk
+bHk
+bHk
+bxJ
+bxJ
+bxJ
+bwz
bwx
-bwA
-bzs
-aXS
-aXS
-aXS
-aXS
-aXS
-aXS
-aXS
+bwv
+bww
+bwz
+bzq
+aXR
+aXR
+aXR
+aXR
+aXR
+aXR
+aXR
aaa
aaa
aaa
@@ -132018,8 +129520,8 @@ aaa
aaa
aaa
abC
-aXh
-ceT
+dju
+ceh
aaa
aaa
aaa
@@ -132031,13 +129533,13 @@ aaa
aaa
aaa
aaa
-aqV
-cmR
-cnZ
-coI
-cpJ
-cmR
-aWs
+aqU
+cmf
+cnm
+cnV
+coW
+cmf
+aWr
aaa
aaa
aaa
@@ -132046,11 +129548,11 @@ aaa
aaa
aaa
aaa
-cyw
-czq
-czo
-cAK
-cyw
+cxJ
+cyD
+cyB
+czX
+cxJ
aaa
aaa
aaa
@@ -132151,9 +129653,9 @@ aaa
aaa
abC
aaa
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
aaa
aaa
abW
@@ -132165,13 +129667,13 @@ abW
abW
abW
aaa
-aNn
-aOd
-aqW
-aqW
-aqW
-aSi
-aTf
+aNm
+aOc
+aqV
+aqV
+aqV
+aSh
+aTe
aaa
aaa
aaa
@@ -132195,64 +129697,64 @@ aaa
aaa
aaa
aaa
-aXS
-aXS
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aXS
-aXS
-aXE
-aYK
-bmM
-aYK
-aYO
-cJB
-bsn
-aYK
-bvm
-bwA
-bxK
-cQo
-bYq
-bYq
-cQC
-cQe
+aXR
+aXR
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aXR
+aXR
+aXD
+aYJ
+bmL
+aYJ
+aYN
+cIO
+bsm
+aYJ
+bvl
+bwz
+bxJ
+cPy
+bXE
+bXE
+cPM
+cPo
+bww
+bAy
bwx
-bAA
-bwy
-bwy
-bwy
-bLb
-bwA
-bxK
-bxK
-bwA
-bxK
-bxK
-cHu
-bwy
bwx
-bwA
-bzs
-aYg
-aXS
-aXS
-aXS
-aXS
-aXS
-aXS
+bwx
+bKU
+bwz
+bxJ
+bxJ
+bwz
+bxJ
+bxJ
+cGH
+bwx
+bww
+bwz
+bzq
+aYf
+aXR
+aXR
+aXR
+aXR
+aXR
+aXR
aaa
aaa
aaa
@@ -132275,26 +129777,26 @@ aaa
aaa
aaa
abC
-aXh
+dju
abC
aaa
aaa
aaa
aaa
-ccG
-ccG
-ccG
+cbU
+cbU
+cbU
aaa
aaa
aaa
-cjv
-cmi
-cjv
-coa
-coJ
-cpK
-cqq
-ccH
+ciJ
+clw
+ciJ
+cnn
+cnW
+coX
+cpD
+cbV
aaa
aaa
aaa
@@ -132303,11 +129805,11 @@ aaa
aaa
aaa
aaa
-cyw
-czq
-czo
-cAK
-cyw
+cxJ
+cyD
+cyB
+czX
+cxJ
aaa
aaa
aaa
@@ -132408,9 +129910,9 @@ aaa
aaa
abC
aaa
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -132422,13 +129924,13 @@ abW
abW
abW
aaa
+aqU
+aOd
aqV
-aOe
-aqW
-aqW
-aqW
-aSj
aqV
+aqV
+aSi
+aqU
aaa
aaa
aaa
@@ -132453,63 +129955,63 @@ aaa
aaa
aaa
aaa
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aXS
-aXS
-aXE
-aXE
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aXR
+aXR
+aXD
+aXD
aaa
-bmN
-bnW
-aPD
-cJC
-cXD
-btM
-bvo
-aXS
-bxK
-bwA
-bYq
-cQv
+bmM
+bnV
+aPC
+cIP
+cWN
btL
-bAD
-bwx
+bvn
+aXR
+bxJ
+bwz
+bXE
+cPF
+btK
+bAB
+bww
+bww
+bww
+bww
+bwv
bwx
+cQp
+bwz
+bxJ
+cQM
+bQO
+bwz
bwx
bwx
bww
-bwy
-cRf
-bwA
-bxK
-cRC
-bRd
-bwA
-bwy
-bwy
-bwx
-cHu
-aYg
-aYg
-aXS
-aXS
-aXS
-aXS
-aXS
-aXS
+cGH
+aYf
+aYf
+aXR
+aXR
+aXR
+aXR
+aXR
+aXR
aaa
aaa
aaa
@@ -132531,28 +130033,28 @@ aaa
aaa
aaa
aaa
-cef
-cey
-cef
-ccG
-ccG
-ccG
-ccG
-ccG
-ccG
-ccH
-ccH
-ccG
-ccG
-cjv
-cmj
-cjv
-coa
-coK
-cpL
-cmR
-ccH
-ccH
+cdt
+cdM
+cdt
+cbU
+cbU
+cbU
+cbU
+cbU
+cbU
+cbV
+cbV
+cbU
+cbU
+ciJ
+clx
+ciJ
+cnn
+cnX
+coY
+cmf
+cbV
+cbV
aaa
aaa
aaa
@@ -132560,11 +130062,11 @@ aaa
aaa
aaa
aaa
-cyy
-czq
-czo
-cAK
-cyy
+cxL
+cyD
+cyB
+czX
+cxL
aaa
aaa
aaa
@@ -132665,9 +130167,9 @@ aaa
aaa
abC
aaa
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -132679,13 +130181,13 @@ aaa
aaa
aaa
aaa
+aqU
+aOd
aqV
-aOe
-aqW
-aqW
-aqW
-aSj
aqV
+aqV
+aSi
+aqU
aaa
aaa
aaa
@@ -132710,63 +130212,63 @@ aaa
aaa
aaa
aaa
-aYg
-aYg
-aYg
-aYg
-aYg
-aXS
-aXS
-aXS
-aXS
-aXS
-aXS
-aYg
-aYg
-aYg
-aXS
-aXS
-aXE
-aXE
+aYf
+aYf
+aYf
+aYf
+aYf
+aXR
+aXR
+aXR
+aXR
+aXR
+aXR
+aYf
+aYf
+aYf
+aXR
+aXR
+aXD
+aXD
aaa
-aqV
-bnX
-aPD
-cJC
-cXD
-btN
-aqV
-aXS
-aXS
-bxK
-bwA
-cQw
-bwA
-bwy
-byM
-bAB
-bwy
-bwy
+aqU
+bnW
+aPC
+cIP
+cWN
+btM
+aqU
+aXR
+aXR
+bxJ
+bwz
+cPG
+bwz
+bwx
+byL
+bAz
bwx
bwx
-bwy
-cQu
-bwy
-bwy
-bwy
-bAA
-bwy
+bww
+bww
bwx
-cRO
-cHu
-aYg
-aYg
-aXS
-aXS
-aXS
-aXS
-aXS
-aXS
+cPE
+bwx
+bwx
+bwx
+bAy
+bwx
+bww
+cQY
+cGH
+aYf
+aYf
+aXR
+aXR
+aXR
+aXR
+aXR
+aXR
aaa
aaa
aaa
@@ -132788,28 +130290,28 @@ aaa
aaa
aaa
aaa
-cef
-cez
-cef
-ccG
-ccG
-ccG
-ccH
-ccH
-ccH
-ccH
-cjv
-ckd
-ckd
-cjv
-cmk
-cjv
-cob
-coK
-cpL
-cmR
-ccH
-ccH
+cdt
+cdN
+cdt
+cbU
+cbU
+cbU
+cbV
+cbV
+cbV
+cbV
+ciJ
+cjr
+cjr
+ciJ
+cly
+ciJ
+cno
+cnX
+coY
+cmf
+cbV
+cbV
aaa
aaa
aaa
@@ -132817,11 +130319,11 @@ aaa
aaa
aaa
aaa
-cyw
-czr
-czo
-cAL
-cyw
+cxJ
+cyE
+cyB
+czY
+cxJ
aaa
aaa
aaa
@@ -132922,9 +130424,9 @@ aaa
aaa
abC
aaa
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -132936,13 +130438,13 @@ aaa
aaa
aaa
aaa
+aqU
+aOd
aqV
-aOe
-aqW
-aqW
-aqW
-aSj
aqV
+aqV
+aSi
+aqU
aaa
aaa
aaa
@@ -132971,59 +130473,59 @@ aaa
aaa
aaa
aaa
-aXS
-aXS
-aXS
-aXE
-aXE
-aXE
-aXE
+aXR
+aXR
+aXR
+aXD
+aXD
+aXD
+aXD
+aYf
+aYf
+aYf
+aYf
+aXD
+aXD
aYg
-aYg
-aYg
-aYg
-aXE
-aXE
-aYh
aaa
-aqV
-bnX
-aPD
-cJC
-cXD
-btN
-aqV
-aXS
-aXS
-aXS
-bzs
-bzs
-bwA
-cHu
-bwA
-bzs
-cHu
-cHu
-bwA
-bwx
-bwx
-bwx
+aqU
+bnW
+aPC
+cIP
+cWN
+btM
+aqU
+aXR
+aXR
+aXR
+bzq
+bzq
+bwz
+cGH
+bwz
+bzq
+cGH
+cGH
+bwz
bww
-bwx
-bwx
-bwx
-bwx
-bwx
-cHu
-bwA
-aYg
-aXS
-aXS
-aXS
-aXS
-aXS
-aXS
-aXS
+bww
+bww
+bwv
+bww
+bww
+bww
+bww
+bww
+cGH
+bwz
+aYf
+aXR
+aXR
+aXR
+aXR
+aXR
+aXR
+aXR
aaa
aaa
aaa
@@ -133043,30 +130545,30 @@ aaa
aaa
aaa
aaa
-ccG
-cef
-cef
-ceA
-cef
-cef
-ccG
-ccH
-ccH
-cde
-cde
-cde
-cjv
-cke
-ckU
-clC
-cml
-cmS
-coc
-coL
-cpM
-cmR
-ccH
-ccH
+cbU
+cdt
+cdt
+cdO
+cdt
+cdt
+cbU
+cbV
+cbV
+ccs
+ccs
+ccs
+ciJ
+cjs
+cki
+ckQ
+clz
+cmg
+cnp
+cnY
+coZ
+cmf
+cbV
+cbV
aaa
aaa
aaa
@@ -133074,11 +130576,11 @@ aaa
aaa
aaa
aaa
-cyw
-czq
-czo
-cAK
-cyw
+cxJ
+cyD
+cyB
+czX
+cxJ
aaa
aaa
aaa
@@ -133179,9 +130681,9 @@ aaa
aaa
abC
aaa
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -133193,13 +130695,13 @@ aaa
aaa
aaa
aaa
+aqU
+cXC
+cXH
aqV
-cYs
-cYx
-aqW
-cYF
-cYH
-aqV
+cXP
+cXR
+aqU
aaa
aaa
aaa
@@ -133228,57 +130730,57 @@ aaa
aaa
aaa
aaa
-aXE
-aXE
-aXE
-aXE
-aXE
-aXS
-aXS
-aXS
-aXS
-aYg
-aYg
-aXE
+aXD
+aXD
+aXD
+aXD
+aXD
+aXR
+aXR
+aXR
+aXR
+aYf
+aYf
+aXD
aaa
abC
aaa
-aqV
-cXr
-cXu
-cJC
-cXE
-cXJ
-aqV
-aXS
-aXS
-aXS
-aXS
-aXS
-aYg
-aYg
-aYg
-aXS
-aXS
-aXS
-bwA
-bwA
-bzs
-bzs
-cHu
-bzs
-bzs
-bwA
-cHu
-cHu
-bwA
-aYg
-aYg
-aXS
-aXS
-aXS
-aXS
-aXE
+aqU
+cWB
+cWE
+cIP
+cWO
+cWT
+aqU
+aXR
+aXR
+aXR
+aXR
+aXR
+aYf
+aYf
+aYf
+aXR
+aXR
+aXR
+bwz
+bwz
+bzq
+bzq
+cGH
+bzq
+bzq
+bwz
+cGH
+cGH
+bwz
+aYf
+aYf
+aXR
+aXR
+aXR
+aXR
+aXD
aaa
aaa
aaa
@@ -133299,43 +130801,43 @@ aaa
aaa
aaa
aaa
-ccH
-ccG
-ceg
-cep
-ceB
-ceU
-ceh
-cgw
-cgv
-cdU
-cdq
-cdq
-cdq
-cjv
-ckf
-ckV
-clD
-cmm
-cmT
-cod
-coK
-cpN
-cmR
-ccH
-ccH
-ccH
+cbV
+cbU
+cdu
+cdD
+cdP
+cei
+cdv
+cfK
+cfJ
+cdi
+ccE
+ccE
+ccE
+ciJ
+cjt
+ckj
+ckR
+clA
+cmh
+cnq
+cnX
+cpa
+cmf
+cbV
+cbV
+cbV
aaa
aaa
aaa
aaa
aaa
aaa
-cyw
-cyx
-cAb
-cyx
-cyw
+cxJ
+cxK
+czo
+cxK
+cxJ
aaa
aaa
aaa
@@ -133436,9 +130938,9 @@ aaa
aaa
abC
aaa
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -133450,13 +130952,13 @@ aaa
aaa
aaa
aaa
+aqU
+aOd
aqV
-aOe
-aqW
-aqW
-aqW
-aSj
aqV
+aqV
+aSi
+aqU
aaa
aaa
aaa
@@ -133485,56 +130987,56 @@ aaa
aaa
aaa
aaa
-aYh
-aXE
-aXE
-aXS
-aXS
-aXS
-aXS
-aYh
-aXS
-aXS
+aYg
+aXD
+aXD
+aXR
+aXR
+aXR
+aXR
+aYg
+aXR
+aXR
aaa
aaa
aaa
abC
aaa
-aqV
-bnX
-aPD
-cJC
-cXD
-btN
-aqV
+aqU
+bnW
+aPC
+cIP
+cWN
+btM
+aqU
aaa
-aXS
-aXS
-aXS
-aYg
-aYg
-aYg
-aYg
-aXS
-aXS
-aXS
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aYg
-aXS
-aXS
-aXS
-aXS
-aXS
-aXS
+aXR
+aXR
+aXR
+aYf
+aYf
+aYf
+aYf
+aXR
+aXR
+aXR
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aYf
+aXR
+aXR
+aXR
+aXR
+aXR
+aXR
aaa
aaa
aaa
@@ -133555,43 +131057,43 @@ aaa
aaa
aaa
aaa
-ccG
-ccG
-ccG
-ceh
-ceq
-ceC
-ceV
-cfw
-cfU
-cgt
-chK
-cgw
-cgv
-cdU
-cjw
-ckg
-ckW
-clE
-cmn
-cmU
-coe
-coK
-cpL
-cmR
-ccH
-ccH
-ccH
-ccH
-cmR
-cva
-cmR
+cbU
+cbU
+cbU
+cdv
+cdE
+cdQ
+cej
+ceK
+cfi
+cfH
+cgY
+cfK
+cfJ
+cdi
+ciK
+cju
+ckk
+ckS
+clB
+cmi
+cnr
+cnX
+coY
+cmf
+cbV
+cbV
+cbV
+cbV
+cmf
+cun
+cmf
aaa
aaa
aaa
-cmR
-cva
-cmR
+cmf
+cun
+cmf
aaa
aaa
aaa
@@ -133693,9 +131195,9 @@ aaa
aaa
abC
aaa
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -133706,14 +131208,14 @@ aaa
aaa
aaa
aaa
-cGc
+cFp
+aqU
+aOd
aqV
-aOe
-aqW
-aqW
-aqW
-aSj
aqV
+aqV
+aSi
+aqU
aaa
aaa
aaa
@@ -133757,13 +131259,13 @@ aaa
aaa
abC
aaa
-aqV
-bnX
-aPD
-cJC
-cXD
-btN
-aqV
+aqU
+bnW
+aPC
+cIP
+cWN
+btM
+aqU
aaa
aaa
aaa
@@ -133774,24 +131276,24 @@ aaa
aaa
aaa
aaa
-aXS
-aYg
-aYg
-aYg
-aYg
-aXS
-aXS
-aXS
-aYg
-aYg
-aYg
-aYg
-aXS
-aXS
-aXS
-aXS
-aXS
-aXS
+aXR
+aYf
+aYf
+aYf
+aYf
+aXR
+aXR
+aXR
+aYf
+aYf
+aYf
+aYf
+aXR
+aXR
+aXR
+aXR
+aXR
+aXR
aaa
aaa
aaa
@@ -133809,52 +131311,52 @@ aaa
aaa
aaa
aaa
-ccG
-ccG
-ccG
-ccG
-ccG
-ccG
-ceg
-cer
-ceD
-ceW
-ceg
-cSi
-cSk
-cSl
-cSs
-cDD
-cgw
-cjv
-cjv
-cjv
-cjv
-cjv
-cjv
-cof
-coM
-cpO
-cmR
-ccH
-ccH
-ccH
-ccH
-ctt
-cvb
-ctt
+cbU
+cbU
+cbU
+cbU
+cbU
+cbU
+cdu
+cdF
+cdR
+cek
+cdu
+cRs
+cRu
+cRv
+cRC
+cCQ
+cfK
+ciJ
+ciJ
+ciJ
+ciJ
+ciJ
+ciJ
+cns
+cnZ
+cpb
+cmf
+cbV
+cbV
+cbV
+cbV
+csG
+cuo
+csG
aaa
aaa
aaa
-ctt
-cvb
-ctt
+csG
+cuo
+csG
aaa
aaa
-cmR
-cmR
-cmR
-cmR
+cmf
+cmf
+cmf
+cmf
aaa
aaa
aaa
@@ -133950,9 +131452,9 @@ aaa
aaa
abC
aaa
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -133964,13 +131466,13 @@ aaa
aaa
aaa
aaa
+aqU
+aOd
aqV
-aOe
-aqW
-aqW
-aqW
-aSj
aqV
+aqV
+aSi
+aqU
aaa
aaa
aaa
@@ -134014,13 +131516,13 @@ aaa
aaa
abC
aaa
-aqV
-bnX
-aPD
-cJC
-cXD
-btN
-aqV
+aqU
+bnW
+aPC
+cIP
+cWN
+btM
+aqU
aaa
aaa
aaa
@@ -134031,24 +131533,24 @@ aaa
aaa
aaa
aaa
-aXS
+aXR
+aYf
+aYf
+aYf
+aYf
+aXR
+aaa
aYg
-aYg
-aYg
-aYg
-aXS
-aaa
-aYh
-aXS
-aXS
-aXS
-aXS
-aXS
-aXS
-aXS
-aXS
-aXS
-aXS
+aXR
+aXR
+aXR
+aXR
+aXR
+aXR
+aXR
+aXR
+aXR
+aXR
aaa
aaa
aaa
@@ -134066,52 +131568,52 @@ aaa
aaa
aaa
aaa
-ccG
-ccG
-ccG
-ccG
-ccG
-ccG
-ceg
-ceg
-ceh
-ceh
-ceh
-cgv
-cdq
-cSm
-cSi
-cSk
-ciO
-cjx
-ciW
-ckX
-cdG
-cmo
-cmV
-cog
-coK
-cpL
-cLc
-cmR
-cmR
-cmR
-cmR
-cmR
-cvc
-cmR
-cmR
-cmR
-cmR
-cmR
-cvc
-cmR
-cmR
-cmR
-cqq
-cBK
-cCc
-cmR
+cbU
+cbU
+cbU
+cbU
+cbU
+cbU
+cdu
+cdu
+cdv
+cdv
+cdv
+cfJ
+ccE
+cRw
+cRs
+cRu
+cic
+ciL
+cik
+ckl
+ccU
+clC
+cks
+cnt
+cnX
+coY
+cKo
+cmf
+cmf
+cmf
+cmf
+cmf
+cup
+cmf
+cmf
+cmf
+cmf
+cmf
+cup
+cmf
+cmf
+cmf
+cpD
+cAX
+cBp
+cmf
aaa
aaa
aaa
@@ -134207,9 +131709,9 @@ aaa
aaa
abC
aaa
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -134221,13 +131723,13 @@ aaa
aaa
aaa
aaa
+aqU
+aOd
aqV
-aOe
-aqW
-aqW
-aqW
-aSj
aqV
+aqV
+aSi
+aqU
aaa
aaa
aaa
@@ -134271,13 +131773,13 @@ aaa
aaa
abC
aaa
-aqV
-bnX
-aPD
-cJC
-cXD
-btN
-aqV
+aqU
+bnW
+aPC
+cIP
+cWN
+btM
+aqU
aaa
aaa
aaa
@@ -134296,14 +131798,14 @@ aaa
aaa
aaa
abC
-aXS
-aXS
-aXS
-aXS
-aXS
-aXS
-aXS
-aXS
+aXR
+aXR
+aXR
+aXR
+aXR
+aXR
+aXR
+aXR
aaa
aaa
aaa
@@ -134323,52 +131825,52 @@ aaa
aaa
aaa
aaa
-ccG
-ccG
-ccG
-ccG
-ccG
-ccG
-ccH
-cde
-cde
-cde
-cde
-cdq
-cdq
-cgw
-cgv
-cSv
-ciP
-cSk
-cgu
-ckY
-cxH
-cmp
-cmW
-coh
-coN
-cKw
-cqr
-cqr
-cqr
-ctr
-ctV
-ctV
-ctV
-ctV
-ctV
-cxI
-ctV
-czf
-ctV
-ctV
-ctV
-ctV
-cxI
-cBL
-cCd
-ctt
+cbU
+cbU
+cbU
+cbU
+cbU
+cbU
+cbV
+ccs
+ccs
+ccs
+ccs
+ccE
+ccE
+cfK
+cfJ
+cRF
+cid
+cRu
+cfI
+ckm
+cwU
+clD
+cmj
+cnu
+coa
+cJI
+cpE
+cpE
+cpE
+csE
+cti
+cti
+cti
+cti
+cti
+cwV
+cti
+cys
+cti
+cti
+cti
+cti
+cwV
+cAY
+cBq
+csG
aaa
aaa
aaa
@@ -134464,9 +131966,9 @@ aaa
aaa
abC
aaa
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -134478,13 +131980,13 @@ aaa
aaa
aaa
aaa
+aqU
+cXC
aqV
-cYs
-aqW
-aqW
-cYG
-cYH
aqV
+cXQ
+cXR
+aqU
aaa
aaa
aaa
@@ -134528,13 +132030,13 @@ aaa
aaa
abC
aaa
-aqV
-cXr
-cXv
-cJC
-cXF
-cXJ
-aqV
+aqU
+cWB
+cWF
+cIP
+cWP
+cWT
+aqU
aaa
aaa
aaa
@@ -134578,54 +132080,54 @@ aaa
aaa
aaa
aaa
-ccH
-ccG
-ccG
-ccG
-ccG
-ccG
-ccG
-ccH
-ccH
-cde
-cde
-cde
-cde
-cde
-cdq
-cdq
-cdq
-cgv
-cgw
-cgw
-cSz
-ckZ
-cdG
-cmq
-cmR
-coi
-coO
-cpQ
-cqs
-cqs
-csx
-cts
-ctW
-ctW
-ctW
-ctW
-cwM
-ctW
-ctW
-czg
-czW
-czW
-czW
-czW
-cGO
-czW
-cCe
-ctt
+cbV
+cbU
+cbU
+cbU
+cbU
+cbU
+cbU
+cbV
+cbV
+ccs
+ccs
+ccs
+ccs
+ccs
+ccE
+ccE
+ccE
+cfJ
+cfK
+cfK
+cRJ
+ckn
+ccU
+clE
+cmf
+cnv
+cob
+cpd
+cpF
+cpF
+crK
+csF
+ctj
+ctj
+ctj
+ctj
+cvZ
+ctj
+ctj
+cyt
+czj
+czj
+czj
+czj
+cGb
+czj
+cBr
+csG
aaa
aaa
aaa
@@ -134692,7 +132194,7 @@ aax
aax
aaw
acK
-cEZ
+cEm
aal
aal
aal
@@ -134721,9 +132223,9 @@ aaa
aaa
abC
aaa
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -134735,13 +132237,13 @@ aaa
aaa
aaa
aaa
+aqU
+aOd
aqV
-aOe
-aqW
-aqW
-aqW
-aSj
aqV
+aqV
+aSi
+aqU
aaa
aaa
aaa
@@ -134785,13 +132287,13 @@ aag
aaa
abC
aaa
-aqV
-bnX
-aPD
-cJC
-aPD
-btN
-aqV
+aqU
+bnW
+aPC
+cIP
+aPC
+btM
+aqU
aaa
aaa
aaa
@@ -134835,54 +132337,54 @@ aaa
aaa
aaa
aaa
-ccG
-ccG
-ccG
-ccG
-ccG
-ccG
-ccG
-ccH
-ccH
-ccH
-ccH
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-ccH
-cdU
-cki
-cdG
-cSH
-cgv
-cmR
-coj
-cGD
-cKx
-coK
-coK
-csy
-cqq
-ctt
-ctt
-ctt
-ctt
-cmR
-cva
-cva
-cmR
-ctt
-ctt
-ctt
-ctt
-cmR
-cva
-cva
-cmR
+cbU
+cbU
+cbU
+cbU
+cbU
+cbU
+cbU
+cbV
+cbV
+cbV
+cbV
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+cbV
+cdi
+cjw
+ccU
+cRR
+cfJ
+cmf
+cnw
+cFQ
+cJJ
+cnX
+cnX
+crL
+cpD
+csG
+csG
+csG
+csG
+cmf
+cun
+cun
+cmf
+csG
+csG
+csG
+csG
+cmf
+cun
+cun
+cmf
aaa
aaa
aaa
@@ -134942,7 +132444,7 @@ aal
aaw
aaE
aaS
-cFa
+cEn
aaX
abN
abZ
@@ -134979,8 +132481,8 @@ aaa
abC
aaa
aaa
-cGc
-cGc
+cFp
+cFp
aaa
aaa
aaa
@@ -134992,13 +132494,13 @@ aaa
aaa
aaa
aaa
+aqU
+aOd
aqV
-aOe
-aqW
-aqW
-aqW
-aSj
aqV
+aqV
+aSi
+aqU
aaa
aaa
aaa
@@ -135042,13 +132544,13 @@ aaa
aaa
abC
aaa
-aqV
-bnX
-aPD
-cJC
-aPD
-btN
-aqV
+aqU
+bnW
+aPC
+cIP
+aPC
+btM
+aqU
aaa
aaa
aaa
@@ -135091,55 +132593,55 @@ aaa
aaa
aaa
aaa
-ccH
-ccG
-ccG
-ccG
-ccH
-ccH
-ccH
-ccH
-ccH
-ccH
-ccH
-cde
-cde
-cde
-cde
-ccH
-ccH
-ccH
-ccH
-cdU
-cdU
-chM
-cdT
-cgw
-cdU
-cmR
-cok
-coP
-cKy
-coP
-coK
-csy
-cmR
+cbV
+cbU
+cbU
+cbU
+cbV
+cbV
+cbV
+cbV
+cbV
+cbV
+cbV
+ccs
+ccs
+ccs
+ccs
+cbV
+cbV
+cbV
+cbV
+cdi
+cdi
+cha
+cdh
+cfK
+cdi
+cmf
+cnx
+coc
+cJK
+coc
+cnX
+crL
+cmf
aaa
aaa
aaa
aaa
-ctt
-cvb
-cvb
-ctt
+csG
+cuo
+cuo
+csG
aaa
aaa
aaa
aaa
-ctt
-cvb
-cvb
-ctt
+csG
+cuo
+cuo
+csG
aaa
aaa
aaa
@@ -135195,7 +132697,7 @@ aae
aae
aae
aal
-cEZ
+cEm
aaw
aaF
aaT
@@ -135206,7 +132708,7 @@ aca
aax
acv
aax
-cUb
+cTl
aal
ade
adr
@@ -135228,84 +132730,84 @@ amD
ako
ako
ako
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
abC
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
abC
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+aqU
+aOd
aqV
-aOe
-aqW
-aqW
-aqW
-aSj
aqV
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aVO
-aVO
-aVO
-aVO
-aaa
-aVO
-aVO
-aVO
-aVO
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abC
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abC
-aaa
-aaa
-aaa
-aaa
-aaa
-abC
-aaa
-aqV
-bnX
-aPD
-cJC
-aPD
-btN
aqV
+aSi
+aqU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aVN
+aVN
+aVN
+aVN
+aaa
+aVN
+aVN
+aVN
+aVN
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abC
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abC
+aaa
+aaa
+aaa
+aaa
+aaa
+abC
+aaa
+aqU
+bnW
+aPC
+cIP
+aPC
+btM
+aqU
aaa
aaa
aaa
@@ -135348,55 +132850,55 @@ aaa
aaa
aaa
aaa
-ccG
-ccG
-ccG
-ccG
-ccH
-ccH
-ccH
-ccH
-ccH
-ccH
-ccH
-cde
-cde
-cde
-ccH
-cgv
-cgw
-chG
-cio
-ciQ
-chg
-chM
-cSx
-cdU
-cdU
-cmR
-col
-coQ
-cKz
-cqt
-coK
-csz
-cmR
+cbU
+cbU
+cbU
+cbU
+cbV
+cbV
+cbV
+cbV
+cbV
+cbV
+cbV
+ccs
+ccs
+ccs
+cbV
+cfJ
+cfK
+cgU
+chC
+cie
+cgu
+cha
+cRH
+cdi
+cdi
+cmf
+cny
+cod
+cJL
+cpG
+cnX
+crM
+cmf
aaa
aaa
aaa
aaa
-cmR
-cvc
-cvc
-cmR
+cmf
+cup
+cup
+cmf
aaa
aaa
aaa
aaa
-cmR
-cvc
-cvc
-cmR
+cmf
+cup
+cup
+cmf
aaa
aaa
aaa
@@ -135465,12 +132967,12 @@ acv
aax
aau
aal
-cEZ
+cEm
aal
aal
aal
aal
-cEZ
+cEm
aal
afO
agN
@@ -135485,34 +132987,34 @@ amE
ano
aop
apk
-aZq
-aqi
+aZp
+aqh
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aOd
aqV
aqV
aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aOe
-aqW
-aqW
-aqW
-aSj
-aqV
+aSi
+aqU
abC
abC
abC
@@ -135521,8 +133023,8 @@ abC
abC
abC
abC
-aVO
-aVO
+aVN
+aVN
aaa
aaa
abC
@@ -135534,8 +133036,8 @@ aaa
abC
aaa
aaa
-aVO
-aVO
+aVN
+aVN
abC
abC
abC
@@ -135556,13 +133058,13 @@ aaa
aaa
abC
aaa
-aqV
-bnX
-aPD
-cJC
-aPD
-btN
-aqV
+aqU
+bnW
+aPC
+cIP
+aPC
+btM
+aqU
aaa
aaa
aaa
@@ -135603,59 +133105,59 @@ aac
aaa
aaa
aaa
-ccG
-ccG
-ccG
-ccG
-ccG
-ccG
-ccH
-cde
-cde
-cde
-ccH
-ccH
-ccH
-cde
-cde
-cde
-ccH
+cbU
+cbU
+cbU
+cbU
+cbU
+cbU
+cbV
+ccs
+ccs
+ccs
+cbV
+cbV
+cbV
+ccs
+ccs
+ccs
+cbV
+cfJ
+cgo
+cgV
+chD
+cif
cgv
-cha
-chH
-cip
-ciR
-chh
-chP
-cdU
-clF
-clF
-clF
-clF
-clF
-cKA
-cqu
-coJ
-csA
-cmR
+chd
+cdi
+ckT
+ckT
+ckT
+ckT
+ckT
+cJM
+cpH
+cnW
+crN
+cmf
aaa
aaa
aaa
aaa
-cuL
-cuL
-cys
-cuL
-cuM
-cuM
-cuM
-cuM
-cuL
-cys
-cuL
-cuL
-cuL
-cuL
+ctY
+ctY
+cxF
+ctY
+ctZ
+ctZ
+ctZ
+ctZ
+ctY
+cxF
+ctY
+ctY
+ctY
+ctY
aaa
aaa
aaa
@@ -135743,83 +133245,83 @@ ako
ako
ako
ako
-cYk
-cYm
-cYm
-cYm
-cYn
-cYm
-cYm
-cYm
-cYn
-cYm
-cYm
-cYm
-cYn
-cYm
-cYm
-cYm
-cYn
-cYm
-cYm
-cYm
-cYm
-cYt
-cYy
-aqW
-cYF
-cYH
-aqV
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aVO
-aVO
-abC
-aaa
-aaa
-abC
-aaa
-aaa
-aXk
-aaa
-aaa
-abC
-aaa
-aaa
-abC
-aVO
-aVO
-aaa
-aaa
-aaa
-aaa
-abC
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abC
-aaa
-aaa
-aaa
-aaa
-aaa
-abC
-aaa
-aqV
-cXr
cXu
-cJC
-cXG
-cXJ
+cXw
+cXw
+cXw
+cXx
+cXw
+cXw
+cXw
+cXx
+cXw
+cXw
+cXw
+cXx
+cXw
+cXw
+cXw
+cXx
+cXw
+cXw
+cXw
+cXw
+cXD
+cXI
aqV
+cXP
+cXR
+aqU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aVN
+aVN
+abC
+aaa
+aaa
+abC
+aaa
+aaa
+aXj
+aaa
+aaa
+abC
+aaa
+aaa
+abC
+aVN
+aVN
+aaa
+aaa
+aaa
+aaa
+abC
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abC
+aaa
+aaa
+aaa
+aaa
+aaa
+abC
+aaa
+aqU
+cWB
+cWE
+cIP
+cWQ
+cWT
+aqU
aaa
aaa
aaa
@@ -135860,59 +133362,59 @@ aad
aaa
aaa
aaa
-ccG
-ccG
-ccG
-ccH
-ccH
-ccH
-ccH
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-ccH
-cgw
-cSn
-chI
-ciq
-ciS
-cdG
-chM
-cgv
+cbU
+cbU
+cbU
+cbV
+cbV
+cbV
+cbV
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+cbV
+cfK
+cRx
+cgW
+chE
+cig
+ccU
+cha
+cfJ
+ckT
clF
-cmr
-cmX
-com
-coR
-cpR
-cqv
-coK
-csy
-ctt
+cmk
+cnz
+coe
+cpe
+cpI
+cnX
+crL
+csG
aaa
-cuL
-cuL
-cuL
-cuL
-cxJ
-cvW
-czh
-czj
-czj
-czj
-czj
-czh
-cvW
-cCf
-cGM
-cCG
-cCU
+ctY
+ctY
+ctY
+ctY
+cwW
+cvj
+cyu
+cyw
+cyw
+cyw
+cyw
+cyu
+cvj
+cBs
+cFZ
+cBT
+cCh
aaa
aaa
aaa
@@ -135999,84 +133501,84 @@ amF
akY
akY
apl
-aqj
-aqW
-aqW
-aqW
-aqW
-cYo
-aqW
-aqW
-aqW
-cYq
-aqW
-aqW
-aqW
-cYo
-aqW
-aqW
-aqW
-cYq
-aqW
-aqW
-aqW
-aqW
-cYo
-aqW
-aqW
-aqW
-aSj
+aqi
aqV
-cGc
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aVO
-aaa
-abC
-aWP
-aWP
-aWP
-aWP
-aWP
-aXh
-aWP
-aWP
-aWP
-aWP
-aWP
-abC
-aaa
-aVO
-aaa
-aaa
-aaa
-aaa
-abC
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abC
-aaa
-aaa
-aaa
-aaa
-aaa
-abC
-aaa
aqV
-bnX
-aPD
-cJC
-aPD
-btN
aqV
+aqV
+cXy
+aqV
+aqV
+aqV
+cXA
+aqV
+aqV
+aqV
+cXy
+aqV
+aqV
+aqV
+cXA
+aqV
+aqV
+aqV
+aqV
+cXy
+aqV
+aqV
+aqV
+aSi
+aqU
+cFp
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aVN
+aaa
+abC
+aWO
+aWO
+aWO
+aWO
+aWO
+aXg
+aWO
+aWO
+aWO
+aWO
+aWO
+abC
+aaa
+aVN
+aaa
+aaa
+aaa
+aaa
+abC
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abC
+aaa
+aaa
+aaa
+aaa
+aaa
+abC
+aaa
+aqU
+bnW
+aPC
+cIP
+aPC
+btM
+aqU
aaa
aaa
aaa
@@ -136117,59 +133619,59 @@ aaa
aaa
aaa
aaa
-ccG
-ccG
-ccG
-ccH
-ccH
-ccH
-ccH
-ccH
-ccH
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-ccH
-cgw
-chc
-chJ
-cir
-ciT
-cgu
-ckj
-cdU
-clF
-cms
-cmY
-cmY
-cmY
-cKA
-cqw
-coK
-csy
-ctt
+cbU
+cbU
+cbU
+cbV
+cbV
+cbV
+cbV
+cbV
+cbV
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+cbV
+cfK
+cgq
+cgX
+chF
+cih
+cfI
+cjx
+cdi
+ckT
+clG
+cml
+cml
+cml
+cJM
+cpJ
+cnX
+crL
+csG
aaa
-cuL
-cvd
-cvV
-cGL
-cxK
-cvW
-cvW
-cvW
-cvW
-cvW
-cvW
-cvW
-cvW
-cvW
-cCt
-cCG
-cCU
+ctY
+cuq
+cvi
+cFY
+cwX
+cvj
+cvj
+cvj
+cvj
+cvj
+cvj
+cvj
+cvj
+cvj
+cBG
+cBT
+cCh
aaa
aaa
aaa
@@ -136256,34 +133758,34 @@ amG
alH
alH
apm
-aqk
-aqW
-aqW
-aqW
-aqW
-aqW
-aqW
-aqW
-aqW
-aqW
-aqW
-aqW
-aqW
-aqW
-aqW
-aqW
-aqW
-aqW
-aqW
-aqW
-aqW
-aqW
-aqW
-aqW
-cYE
-aqW
-aSj
+aqj
aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+cXO
+aqV
+aSi
+aqU
aaa
aaa
aaa
@@ -136291,23 +133793,23 @@ aaa
aaa
aag
aaa
-aVO
+aVN
aaa
aaa
-aWQ
-aWV
-aWV
-aWV
-aWV
-aXl
-aXp
-aXp
-aXp
-aXp
-aXy
+aWP
+aWU
+aWU
+aWU
+aWU
+aXk
+aXo
+aXo
+aXo
+aXo
+aXx
aaa
aaa
-aVO
+aVN
aaa
aaa
aaa
@@ -136327,13 +133829,13 @@ aaa
aaa
abC
aaa
-aqV
-bnX
-aPD
-cJC
-aPD
-btN
-aqV
+aqU
+bnW
+aPC
+cIP
+aPC
+btM
+aqU
aaa
aaa
aaa
@@ -136374,59 +133876,59 @@ aaa
aaa
aaa
aaa
-ccG
-ccG
-ccG
-ccH
-ccH
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-ccH
-cgw
-chd
-chK
-cis
-ciU
-cjy
-cSi
-cSC
-clF
-cmt
-cmZ
-cmZ
-coS
-cpS
-cqx
-crD
-csA
-ctt
+cbU
+cbU
+cbU
+cbV
+cbV
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+cbV
+cfK
+cgr
+cgY
+chG
+cii
+ciM
+cRs
+cRM
+ckT
+clH
+cmm
+cmm
+cof
+cpf
+cpK
+cqQ
+crN
+csG
aaa
-cuM
-cve
-cvW
-cwN
-cvW
-cvW
-czi
-czi
-czi
-czi
-czi
-czi
-cvW
-cvW
-cuL
-cCG
-cCU
+ctZ
+cur
+cvj
+cwa
+cvj
+cvj
+cyv
+cyv
+cyv
+cyv
+cyv
+cyv
+cvj
+cvj
+ctY
+cBT
+cCh
aaa
aaa
aaa
@@ -136513,34 +134015,34 @@ amH
anp
alI
alI
-aql
-aqW
-aqW
-aqW
-aqW
-aqX
-aqW
-aqW
-aqW
-aqW
-aqW
-aqW
-aqW
-cYr
-aqW
-aqW
-aqW
-aqW
-aqW
-aqW
-aqW
-aqW
-aqW
-aqW
-aqW
-aqW
-aSj
+aqk
aqV
+aqV
+aqV
+aqV
+aqW
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+cXB
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aSi
+aqU
aaa
aaa
aaa
@@ -136548,23 +134050,23 @@ aaa
aaa
aaa
aaa
-aVO
+aVN
aaa
aaa
-aWR
-aWR
-aWR
-aWR
-aWR
-aXh
-aWR
-aWR
-aWR
-aWR
-aWR
+aWQ
+aWQ
+aWQ
+aWQ
+aWQ
+aXg
+aWQ
+aWQ
+aWQ
+aWQ
+aWQ
aaa
aaa
-aVO
+aVN
aaa
aaa
aaa
@@ -136584,13 +134086,13 @@ aaa
aaa
abC
aaa
-bmO
-bnY
-aPD
-cJC
-aPD
-btO
-bvp
+bmN
+bnX
+aPC
+cIP
+aPC
+btN
+bvo
aaa
aaa
aaa
@@ -136631,59 +134133,59 @@ aaa
aaa
aaa
aaa
-ccG
-ccG
-ccH
-ccH
-ccH
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-ccH
-ccH
-cgv
-che
-cEt
-chK
-cgv
-cjz
-ckk
-cSD
-clF
-cmu
-cna
-con
-cna
-cpT
-cqy
-coK
-csy
-ctt
+cbU
+cbU
+cbV
+cbV
+cbV
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+cbV
+cbV
+cfJ
+cgs
+cDG
+cgY
+cfJ
+ciN
+cjy
+cRN
+ckT
+clI
+cmn
+cnA
+cmn
+cpg
+cpL
+cnX
+crL
+csG
aaa
-cuM
-cvf
-cvX
-cuL
-cvW
-cvW
-cGM
-cuM
-cuM
-cuM
-cuM
-cGL
-cvW
-cvW
-cuL
-cuL
-cCV
+ctZ
+cus
+cvk
+ctY
+cvj
+cvj
+cFZ
+ctZ
+ctZ
+ctZ
+ctZ
+cFY
+cvj
+cvj
+ctY
+ctY
+cCi
aaa
aaa
aaa
@@ -136771,33 +134273,33 @@ ako
ako
ako
ako
-cYl
-cYl
-cYl
-cYl
-cYp
-cYl
-cYl
-cYl
-cYp
-cYl
-cYl
-cYl
-cYp
-cYl
-cYl
-cYl
-cYp
-cYl
-cYl
-cYl
-cYl
-aOf
-cYz
-aqW
-cYF
-cYH
+cXv
+cXv
+cXv
+cXv
+cXz
+cXv
+cXv
+cXv
+cXz
+cXv
+cXv
+cXv
+cXz
+cXv
+cXv
+cXv
+cXz
+cXv
+cXv
+cXv
+cXv
+aOe
+cXJ
aqV
+cXP
+cXR
+aqU
aaa
aaa
aaa
@@ -136805,7 +134307,7 @@ aaa
aaa
aaa
aaa
-aVO
+aVN
abC
abC
abC
@@ -136813,7 +134315,7 @@ abC
abC
abC
abC
-aXh
+aXg
abC
abC
abC
@@ -136821,7 +134323,7 @@ abC
abC
abC
abC
-aVO
+aVN
aaa
aaa
aaa
@@ -136841,25 +134343,25 @@ aaa
aaa
abC
aaa
-bmP
+bmO
+aZq
aZr
-aZs
-cJD
-bso
-aZr
-bvq
+cIQ
+bsn
+aZq
+bvp
aaa
aaa
aaa
aaa
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
-aZv
-aZv
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
+aZu
+aZu
aaa
aaa
aaa
@@ -136889,58 +134391,58 @@ aaa
aaa
aaa
aaa
-ccG
-ccH
-ccH
-ccH
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cgv
-cgv
-cgw
-cgv
-cgw
-cdT
-ckl
-chM
-clF
-cmv
-cmv
-cmv
-cmv
-cKA
-cqv
-coK
-csy
-ctt
+cbU
+cbV
+cbV
+cbV
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+cfJ
+cfJ
+cfK
+cfJ
+cfK
+cdh
+cjz
+cha
+ckT
+clJ
+clJ
+clJ
+clJ
+cJM
+cpI
+cnX
+crL
+csG
aaa
-cuM
-cve
-cvW
-cwN
-cvW
-cvW
-czj
-czj
-czj
-czj
-czj
-czj
-cvW
-cvW
-cuL
-cCG
-cCU
+ctZ
+cur
+cvj
+cwa
+cvj
+cvj
+cyw
+cyw
+cyw
+cyw
+cyw
+cyw
+cvj
+cvj
+ctY
+cBT
+cCh
aaa
aaa
aaa
@@ -137027,34 +134529,34 @@ alJ
anq
aoq
apn
-cYj
-aqm
+cXt
+aql
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+cXE
+cXK
aqV
aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-cYu
-cYA
-aqW
-aqW
-aSj
-aqV
+aSi
+aqU
aaa
aaa
aaa
@@ -137065,20 +134567,20 @@ aaa
aaa
aaa
aaa
-aWP
-aWP
-aWP
-aWP
-aWP
-aXh
-aWP
-aWP
-aWP
-aWP
-aWP
+aWO
+aWO
+aWO
+aWO
+aWO
+aXg
+aWO
+aWO
+aWO
+aWO
+aWO
aaa
aaa
-aVO
+aVN
aaa
aaa
aaa
@@ -137093,111 +134595,111 @@ aaa
abC
aaa
aaa
+aZM
+aZM
+aaa
+abC
+aaa
+bmO
+aZq
+baq
+bzM
+bso
+aZq
+bvq
+aZq
+aZM
+aaa
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
+aZu
+aZu
+aZu
+aZu
+aZM
+aZM
aZN
+aZM
aZN
+abC
+abC
+abC
+abC
+abC
+abC
+abC
+abC
+abC
+abC
+abC
+abC
+abC
+abC
+abC
+abC
+abC
+abC
+abC
+abC
+abC
+cbW
+cbV
+cbV
+cbV
+cbV
+cbV
+cbV
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+cbV
+cbV
+cbV
+cbV
+cfK
+cgt
+cjz
+cko
+ckT
+cJy
+cJE
+cJE
+cJE
+cJN
+cpI
+cnX
+crL
+csG
aaa
-abC
-aaa
-bmP
-aZr
-bar
-bzO
-bsp
-aZr
-bvr
-aZr
-aZN
-aaa
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
-aZv
-aZv
-aZv
-aZv
-aZN
-aZN
-aZO
-aZN
-aZO
-abC
-abC
-abC
-abC
-abC
-abC
-abC
-abC
-abC
-abC
-abC
-abC
-abC
-abC
-abC
-abC
-abC
-abC
-abC
-abC
-abC
-ccI
-ccH
-ccH
-ccH
-ccH
-ccH
-ccH
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-ccH
-ccH
-ccH
-ccH
-cgw
-chf
-ckl
-cla
-clF
-cKm
-cKs
-cKs
-cKs
-cKB
-cqv
-coK
-csy
-ctt
-aaa
-cuL
-cvd
-cvY
-cGM
-cvW
-cvW
-cvW
-cvW
-cvW
-cvW
-cvW
-cvW
-cvW
-cvW
-cCt
-cCG
-cCU
+ctY
+cuq
+cvl
+cFZ
+cvj
+cvj
+cvj
+cvj
+cvj
+cvj
+cvj
+cvj
+cvj
+cvj
+cBG
+cBT
+cCh
aaa
aaa
aaa
@@ -137251,7 +134753,7 @@ aae
aae
aae
aal
-cEZ
+cEm
aaw
aaF
aaT
@@ -137273,7 +134775,7 @@ ade
aal
afV
agU
-cLr
+cKB
aik
afW
ajE
@@ -137305,13 +134807,13 @@ abC
aaa
aaa
aaa
+aqU
+cXE
+cXK
aqV
-cYu
-cYA
-aqW
-aqW
-aSj
aqV
+aSi
+aqU
aaa
aaa
aaa
@@ -137319,20 +134821,20 @@ aaa
aaa
aaa
aaa
-aVO
+aVN
aaa
aaa
-aWQ
-aWV
-aWV
-aWV
-aWV
-aXl
-aXp
-aXp
-aXp
-aXp
-aXy
+aWP
+aWU
+aWU
+aWU
+aWU
+aXk
+aXo
+aXo
+aXo
+aXo
+aXx
aaa
aaa
aaa
@@ -137345,43 +134847,43 @@ aaa
aaa
aaa
aaa
+aZM
+aZM
aZN
-aZN
+aZM
+aZM
+aZM
+aZM
+aZM
+abC
+aaa
+bmO
+aZq
+baq
+bzM
+bsp
+aZq
+bvr
+aZq
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
aZO
-aZN
-aZN
-aZN
-aZN
-aZN
-abC
-aaa
-bmP
-aZr
-bar
-bzO
-bsq
-aZr
-bvs
-aZr
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
-aZP
-aZP
-aZP
-aZN
-aZN
-aZv
+aZO
+aZO
+aZM
+aZM
+aZu
aaa
aaa
aaa
@@ -137403,58 +134905,58 @@ aaa
aaa
aaa
aaa
-ccH
-ccH
-ccH
-ccH
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-ccH
-ccH
-ccH
-ccH
-cdU
-chf
-ckl
-cKk
-cmw
-cKn
-cnb
-coo
-coT
-cmw
-cqz
-crE
-csy
-ctt
+cbV
+cbV
+cbV
+cbV
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+cbV
+cbV
+cbV
+cbV
+cdi
+cgt
+cjz
+cJw
+clK
+cJz
+cmo
+cnB
+cog
+clK
+cpM
+cqR
+crL
+csG
aaa
-cuL
-cuL
-cuL
-cuL
-cxL
-cvW
-czk
-czi
-czi
-czi
-czi
-czk
-cvW
-cCf
-cGL
-cCG
-cCU
+ctY
+ctY
+ctY
+ctY
+cwY
+cvj
+cyx
+cyv
+cyv
+cyv
+cyv
+cyx
+cvj
+cBs
+cFY
+cBT
+cCh
aaa
aaa
aaa
@@ -137512,7 +135014,7 @@ aal
aaw
aaE
aaS
-cFa
+cEn
aaX
abS
acc
@@ -137547,7 +135049,7 @@ aaa
aaa
aaa
aaa
-cGc
+cFp
aaa
abC
aaa
@@ -137557,18 +135059,18 @@ aaa
aaa
aaa
aaa
-cGc
+cFp
abC
aaa
aaa
aaa
+aqU
+cXE
+cXK
aqV
-cYu
-cYA
-aqW
-aqW
-aSj
aqV
+aSi
+aqU
aaa
aaa
aaa
@@ -137576,23 +135078,23 @@ aaa
aaa
aaa
aaa
-aVO
+aVN
aaa
aaa
-aWR
-aWR
-aWR
-aWR
-aWR
-aXh
-aWR
-aWR
-aWR
-aWR
-aWR
+aWQ
+aWQ
+aWQ
+aWQ
+aWQ
+aXg
+aWQ
+aWQ
+aWQ
+aWQ
+aWQ
aaa
aaa
-aVO
+aVN
aaa
aaa
aaa
@@ -137602,43 +135104,43 @@ aaa
aaa
aaa
aaa
-aZP
-aZP
-aZP
-aZP
-aZP
-aZP
-aZN
-aZN
+aZO
+aZO
+aZO
+aZO
+aZO
+aZO
+aZM
+aZM
abC
-aZr
-bmQ
-aZr
-bar
-bzO
-bsp
-aZr
-bvt
-aZr
-aZr
-aZr
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
-aZP
-aZP
-aZP
-aZP
-aZP
-aZP
-aZN
-aZN
-aZN
+aZq
+bmP
+aZq
+dkt
+bzM
+bso
+aZq
+bvs
+aZq
+aZq
+aZq
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
+aZO
+aZO
+aZO
+aZO
+aZO
+aZO
+aZM
+aZM
+aZM
aaa
aaa
aaa
@@ -137661,57 +135163,57 @@ aaa
aaa
aaa
aaa
-ccH
-ccH
-ccH
-cde
-cde
-cde
-cde
-cde
-ccH
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-ccH
-cdU
-cgv
-ckl
-chI
-cmw
-cKo
-cnc
-cop
-coU
-cmw
-cqv
-coK
-csy
-cmR
+cbV
+cbV
+cbV
+ccs
+ccs
+ccs
+ccs
+ccs
+cbV
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+cbV
+cdi
+cfJ
+cjz
+cgW
+clK
+cJA
+cmp
+cnC
+coh
+clK
+cpI
+cnX
+crL
+cmf
aaa
aaa
aaa
aaa
-cuL
-cuL
-cys
-cuL
-cuM
-cuM
-cuM
-cuM
-cuL
-cys
-cuL
-cuL
-cuL
-cuL
+ctY
+ctY
+cxF
+ctY
+ctZ
+ctZ
+ctZ
+ctZ
+ctY
+cxF
+ctY
+ctY
+ctY
+ctY
aaa
aaa
aaa
@@ -137776,7 +135278,7 @@ aax
aax
aaw
acK
-cEZ
+cEm
aal
aal
aaf
@@ -137819,13 +135321,13 @@ abC
aaa
aaa
aaa
+aqU
+cXE
+cXK
aqV
-cYu
-cYA
-aqW
-aqW
-aSj
aqV
+aSi
+aqU
aaa
aaa
aaa
@@ -137833,7 +135335,7 @@ aaa
aaa
aaa
aaa
-aVO
+aVN
abC
abC
abC
@@ -137841,7 +135343,7 @@ abC
abC
abC
abC
-aXh
+aXg
abC
abC
abC
@@ -137849,7 +135351,7 @@ abC
abC
abC
abC
-aVO
+aVN
aaa
aaa
aaa
@@ -137859,41 +135361,41 @@ aaa
aaa
aaa
aaa
-aZP
-aZP
-aZP
-aZP
-aZP
-aZP
-aZN
-aZP
+aZO
+aZO
+aZO
+aZO
+aZO
+aZO
+aZM
+aZO
abC
-aZr
-bmR
-aZr
-bpp
-bzO
-bsp
-aZr
-bvu
-bwB
-bxN
-aZr
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
-aZr
-aZr
-aZr
-aZr
-aZr
-aZr
-aZN
+aZq
+bmQ
+aZq
+bpo
+bzM
+bso
+aZq
+bvt
+bwA
+bxM
+aZq
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
+aZq
+aZq
+aZq
+aZq
+aZq
+aZq
+aZM
aaa
aaa
aaa
@@ -137918,55 +135420,55 @@ aaa
aaa
aaa
aaa
-ccH
-ccH
-ccH
-cde
-cde
-cde
-cde
-cde
-ccH
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-ccH
-ccH
-cdU
-cSA
-chI
-cmw
-cmw
-cnd
-cop
-coV
-cpU
-cqv
-coK
-csy
-cmR
+cbV
+cbV
+cbV
+ccs
+ccs
+ccs
+ccs
+ccs
+cbV
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+cbV
+cbV
+cdi
+cRK
+cgW
+clK
+clK
+cmq
+cnC
+coi
+cph
+cpI
+cnX
+crL
+cmf
aaa
aaa
aaa
aaa
-cmR
-cva
-cva
-cmR
+cmf
+cun
+cun
+cmf
aaa
aaa
aaa
aaa
-cmR
-cva
-cva
-cmR
+cmf
+cun
+cun
+cmf
aaa
aaa
aaa
@@ -138076,13 +135578,13 @@ abC
aaa
aaa
aaa
+aqU
+cXF
+cXL
aqV
-cYv
-cYB
-aqW
-cYG
-cYH
-aqV
+cXQ
+cXR
+aqU
aaa
aaa
aaa
@@ -138090,23 +135592,23 @@ aaa
aaa
aaa
aaa
-aVO
+aVN
aaa
aaa
-aWP
-aWP
-aWP
-aWP
-aWP
-aXh
-aWP
-aWP
-aWP
-aWP
-aWP
+aWO
+aWO
+aWO
+aWO
+aWO
+aXg
+aWO
+aWO
+aWO
+aWO
+aWO
aaa
aaa
-aVO
+aVN
aaa
aaa
aaa
@@ -138115,42 +135617,42 @@ abC
aaa
aaa
aaa
-aZN
-aZP
-aZP
-aZP
-aZP
-aZP
-aZP
-aZP
-aZP
-aZr
-aZr
-bmS
-bch
-bar
-bzO
-bsp
-aZr
-bvv
-bwC
-bxO
-aZr
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
-aZr
-bcd
-bdG
-bcT
-beF
-aZr
+aZM
aZO
+aZO
+aZO
+aZO
+aZO
+aZO
+aZO
+aZO
+aZq
+aZq
+bmR
+bcg
+baq
+bzM
+bso
+aZq
+bvu
+bwB
+bxN
+aZq
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
+aZq
+bcc
+bdF
+bcS
+beE
+aZq
+aZN
abC
abC
abC
@@ -138175,55 +135677,55 @@ abC
abC
abC
abC
-ccI
-ccH
-aZr
-aZr
-aZr
-aZr
-aZr
-aZr
-aZr
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-ccH
-ccH
-cgw
-cSA
-cSi
-cKl
-cmw
-cne
-cop
-coW
-cpV
-cqA
-crF
-csB
-cmR
+cbW
+cbV
+diT
+diT
+diT
+diT
+diT
+diT
+diT
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+cbV
+cbV
+cfK
+cRK
+cRs
+cJx
+clK
+cmr
+cnC
+coj
+cpi
+cpN
+cqS
+crO
+cmf
aaa
aaa
aaa
aaa
-ctt
-cvb
-cvb
-ctt
+csG
+cuo
+cuo
+csG
aaa
aaa
aaa
aaa
-ctt
-cvb
-cvb
-ctt
+csG
+cuo
+cuo
+csG
aaa
aaa
aaa
@@ -138332,14 +135834,14 @@ aaa
abC
aaa
aaa
-cGc
+cFp
+aqU
+cXE
+cXK
aqV
-cYu
-cYA
-aqW
-aqW
-aSj
aqV
+aSi
+aqU
aaa
aaa
aaa
@@ -138347,23 +135849,23 @@ aaa
aaa
aaa
aaa
-aVO
+aVN
aaa
aaa
-aWQ
-aWV
-aWV
-aWV
-aWV
-aXl
-aXp
-aXp
-aXp
-aXp
-aXy
+aWP
+aWU
+aWU
+aWU
+aWU
+aXk
+aXo
+aXo
+aXo
+aXo
+aXx
aaa
aaa
-aVO
+aVN
aaa
aaa
aaa
@@ -138371,43 +135873,43 @@ aaa
abC
aaa
aaa
-aZN
-aZN
-aZP
-aZP
-aZP
-aZP
-aZP
-aZP
-aZP
-aZP
-aZr
-blC
-bmT
-aZr
-bar
-bzO
-bsp
-aZr
-bvw
-bwD
-bxP
-aZr
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
-aZr
-bcT
-bcT
-bcT
-bcT
-aZr
-aZN
+aZM
+aZM
+aZO
+aZO
+aZO
+aZO
+aZO
+aZO
+aZO
+aZO
+aZq
+blB
+bmS
+aZq
+baq
+bzM
+bso
+aZq
+bvv
+bwC
+bxO
+aZq
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
+aZq
+bcS
+bcS
+bcS
+bcS
+aZq
+aZM
aaa
aaa
aaa
@@ -138433,54 +135935,54 @@ aaa
aaa
aaa
aaa
+cbV
+diT
+ccA
ccH
-aZr
-cdm
-cdt
-cdB
-cdQ
-bxN
-aZr
-ccH
-ccH
-ccH
+ccP
cde
-cde
-cde
-aZr
-aZr
-aZr
-aZr
-cde
-cgw
-ckm
-cSE
-chI
-cmw
-cnf
-cop
-coX
-cpU
-cqv
-coK
-csy
-cGJ
-ctt
-ctt
-ctt
-ctt
-cmR
-cvc
-cvc
-cmR
-ctt
-ctt
-ctt
-ctt
-cmR
-cvc
-cvc
-cmR
+djm
+diT
+cbV
+cbV
+cbV
+ccs
+ccs
+ccs
+diT
+diT
+diT
+diT
+ccs
+cfK
+cjA
+cRO
+cgW
+clK
+cms
+cnC
+cok
+cph
+cpI
+cnX
+crL
+cFW
+csG
+csG
+csG
+csG
+cmf
+cup
+cup
+cmf
+csG
+csG
+csG
+csG
+cmf
+cup
+cup
+cmf
aaa
aaa
aaa
@@ -138579,24 +136081,24 @@ aaa
aaa
abC
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
abC
aaa
aaa
aaa
+aqU
+cXE
+cXK
aqV
-cYu
-cYA
-aqW
-aqW
-aSj
aqV
+aSi
+aqU
aaa
aaa
aaa
@@ -138604,23 +136106,23 @@ aaa
aaa
aaa
aaa
-aVO
+aVN
aaa
aaa
-aWR
-aWR
-aWR
-aWR
-aWR
-aXh
-aWR
-aWR
-aWR
-aWR
-aWR
+aWQ
+aWQ
+aWQ
+aWQ
+aWQ
+aXg
+aWQ
+aWQ
+aWQ
+aWQ
+aWQ
aaa
aaa
-aVO
+aVN
aaa
aaa
aaa
@@ -138628,44 +136130,44 @@ aaa
abC
aaa
aaa
-aZN
-aZN
-aZP
-aZP
-aZP
-aZP
-aZP
-aZP
-aZP
-aZP
-aZr
-blD
-bmU
-aZr
-bar
-bzO
-bsp
-aZr
-bvw
-bwD
-bxQ
-aZr
-aZr
-aZr
-aZr
-aZN
-aZN
-aZN
-aZN
-aZN
-aZr
-bcT
-bcT
-bcT
-bcT
-aZr
-aZr
-aZr
+aZM
+aZM
+aZO
+aZO
+aZO
+aZO
+aZO
+aZO
+aZO
+aZO
+aZq
+blC
+bmT
+aZq
+baq
+bzM
+bso
+aZq
+bvv
+bwC
+bxP
+aZq
+aZq
+aZq
+aZq
+aZM
+aZM
+aZM
+aZM
+aZM
+aZq
+bcS
+bcS
+bcS
+bcS
+aZq
+aZq
+aZq
aaa
aaa
aaa
@@ -138689,55 +136191,55 @@ aaa
aaa
aaa
aaa
-aZr
-aZr
-aZr
-cdn
-bwD
-cdC
-cdR
-cdW
-aZr
-aZr
-ccH
-ccH
-cde
-cde
-cde
-aZr
-bLc
-bcT
-aZr
-cde
-cgv
-cgw
-clb
-cSI
-cmw
-cng
-cop
-coY
-cmw
-cqB
-crG
-cpP
-ctr
-ctV
-ctV
-ctV
-ctV
-cwO
-ctV
-ctV
-czf
-ctV
-ctV
-cAW
-ctV
-ctV
-cBL
-cCd
-ctt
+diT
+diT
+diT
+ccB
+djb
+ccQ
+cdf
+cdk
+diT
+diT
+cbV
+cbV
+ccs
+ccs
+ccs
+diT
+djv
+dje
+diT
+ccs
+cfJ
+cfK
+ckp
+cRS
+clK
+cmt
+cnC
+col
+clK
+cpO
+cqT
+cpc
+csE
+cti
+cti
+cti
+cti
+cwb
+cti
+cti
+cys
+cti
+cti
+cAj
+cti
+cti
+cAY
+cBq
+csG
aaa
aaa
aaa
@@ -138847,13 +136349,13 @@ abC
aaa
aaa
aaa
+aqU
+cXE
+cXK
aqV
-cYu
-cYA
-aqW
-aqW
-aSj
aqV
+aSi
+aqU
aaa
aaa
aaa
@@ -138861,7 +136363,7 @@ aaa
aaa
aaa
aaa
-aVO
+aVN
abC
abC
abC
@@ -138869,7 +136371,7 @@ abC
abC
abC
abC
-aXh
+aXg
abC
abC
abC
@@ -138877,124 +136379,124 @@ abC
abC
abC
abC
-aVO
+aVN
aaa
aaa
aaa
aaa
abC
-aZN
-aZN
-aZN
-aZN
-aZP
-aZP
-aZP
-aZP
-aZP
-aZP
-aZP
-aZP
-aZr
-blE
-bmV
-aZr
-bpq
-bqH
-bsr
-aZr
-bvx
-bwE
-bxR
-aZr
-bzM
-bBe
-aZr
-aZN
-aZN
-aZN
-aZN
-aZN
-aZr
-bcQ
-bMC
-bNO
-bOT
-bQc
-bRe
-bQc
-bSV
-bSV
-bSV
-bSV
-bvp
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-ccQ
-ccZ
-cdc
-bQc
+aZM
+aZM
+aZM
+aZM
+aZO
+aZO
+aZO
+aZO
+aZO
+aZO
+aZO
+aZO
+aZq
+blD
+bmU
+aZq
+bpp
+bqG
+bsq
+aZq
+bvw
+bwD
+bxQ
+aZq
+bzK
+bBc
+aZq
+aZM
+aZM
+aZM
+aZM
+aZM
+aZq
+bcP
+bMu
+bNE
+bOI
+bPO
+bQP
+bPO
+bSA
+bSA
+bSA
+bSA
+bvo
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+cce
+ccn
+ccq
+diY
+ccC
+ccI
+ccR
+cdg
+cdl
cdo
-cdu
-cdD
-cdS
-cdX
-cea
-aZr
-ccH
-ccH
-ccH
-ccH
-ccH
-aZr
-bcT
-cGx
-aZr
-cde
-cdq
-cDR
-cSF
-clG
-cmw
-cnh
-coq
-coZ
-cmw
-cqC
-crH
-csC
-ctu
-ctX
-ctX
-ctX
-ctX
-cwP
-ctX
-ctX
-czl
-czX
-czX
-czX
-czX
-cBy
-cBM
-cCe
-ctt
+diT
+cbV
+cbV
+cbV
+cbV
+cbV
+diT
+dje
+cFK
+diT
+ccs
+ccE
+cDe
+cRP
+ckU
+clK
+cmu
+cnD
+com
+clK
+cpP
+cqU
+crP
+csH
+ctk
+ctk
+ctk
+ctk
+cwc
+ctk
+ctk
+cyy
+czk
+czk
+czk
+czk
+cAL
+cAZ
+cBr
+csG
aaa
aaa
aaa
@@ -139104,13 +136606,13 @@ abC
aaa
aaa
aaa
+aqU
+cXE
+cXK
aqV
-cYu
-cYA
-aqW
-aqW
-aSj
aqV
+aSi
+aqU
aaa
aaa
aaa
@@ -139118,140 +136620,140 @@ aaa
aaa
aaa
aaa
-aVO
+aVN
aaa
aaa
-aWP
-aWP
-aWP
-aWP
-aWP
-aXh
-aWP
-aWP
-aWP
-aWP
-aWP
+aWO
+aWO
+aWO
+aWO
+aWO
+aXg
+aWO
+aWO
+aWO
+aWO
+aWO
aaa
aaa
-aVO
+aVN
aaa
aaa
aaa
aaa
abC
-aZN
-aZN
-aZP
-aZP
-aZP
-aZP
-aZr
-aZr
-aZr
-aZr
-aZr
-aZr
-aZr
-blF
-aZr
-aZr
-bar
-bzO
-bsp
-aZr
-aZr
-bwF
-aZr
-aZr
-aZr
-bBf
-aZr
-aZr
-aZr
-aZr
-aZr
-aZr
-bch
-aZr
-bMD
-aZr
-aZr
-aZr
-aZr
-aZr
-aZr
-aZr
-aZr
-aZr
-bVM
-bWo
-bWo
-bWo
-cXL
-bWo
-bWo
-bWo
-bWo
-cXL
-bWo
-bWo
-bWo
-bWo
-cXL
-bWo
-bWo
-bWo
-ccR
-aZr
-aZr
-aZr
-aZr
-aZr
-bch
-aZr
-aZr
-ceb
-aZr
-aZr
-aZr
-aZr
-aZr
-aZr
-aZr
-cGw
-aZr
-aZr
-aZr
-aZr
-aZr
-clc
-clH
-cmw
-cni
-cmw
-cmw
-cmw
-cqD
-crI
-csD
-cqq
-ctt
-ctt
-ctt
-ctt
-cmR
-cxM
-cyt
-cmR
-ctt
-ctt
-ctt
-ctt
-cqq
-cBN
-cCc
-cmR
+aZM
+aZM
+aZO
+aZO
+aZO
+aZO
+aZq
+aZq
+aZq
+aZq
+aZq
+aZq
+aZq
+blE
+aZq
+aZq
+baq
+bzM
+bso
+aZq
+aZq
+bwE
+aZq
+aZq
+aZq
+bBd
+aZq
+aZq
+aZq
+aZq
+aZq
+aZq
+bcg
+aZq
+bMv
+aZq
+aZq
+aZq
+aZq
+aZq
+aZq
+aZq
+aZq
+aZq
+bVb
+bVD
+bVD
+bVD
+cWV
+bVD
+bVD
+bVD
+bVD
+cWV
+bVD
+bVD
+bVD
+bVD
+cWV
+bVD
+bVD
+bVD
+ccf
+diT
+diT
+diT
+diT
+diT
+djg
+diT
+diT
+cdp
+diT
+diT
+diT
+diT
+diT
+diT
+diT
+cFJ
+diT
+diT
+diT
+diT
+diT
+ckq
+ckV
+clK
+cmv
+clK
+clK
+clK
+cpQ
+cqV
+crQ
+cpD
+csG
+csG
+csG
+csG
+cmf
+cwZ
+cxG
+cmf
+csG
+csG
+csG
+csG
+cpD
+cBa
+cBp
+cmf
aaa
aaa
aaa
@@ -139361,154 +136863,154 @@ abC
aaa
aaa
aaa
+aqU
+cXF
+cXK
aqV
-cYv
-cYA
-aqW
-cYF
-cYH
-aqV
-aaa
-aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-aaa
-aaa
-aaa
-aWQ
-aWV
-aWV
-aWV
-aWV
-aXl
-aXp
-aXp
-aXp
-aXp
-aXy
-aaa
-aaa
-aVO
-aaa
-aaa
-aaa
-aaa
-aZO
-aZN
-aZN
-aZP
-aZP
-aZP
-aZP
-aZr
-bgs
-bhn
-bhn
-bjH
-bkH
-bkH
-blG
-bkH
-bnZ
-bpr
-bqI
-bss
-bhn
-bhn
-bwG
-bxS
-byN
-bzN
-bxS
-bxS
-bxS
-bxS
-bFI
-bxS
-bxS
-bxS
-bxS
-bME
-bNP
-bOU
-bsp
-bRf
-bSf
-bSW
-bsp
-bUk
-bso
-cXK
-cXK
-cXK
-cXK
-cXM
-cXK
-cXK
-cXK
-cXK
cXP
-cXK
-cXK
-cXK
-cXK
-cXM
-cXK
-cXK
-cXK
-cXK
+cXR
+aqU
+aaa
+aaa
+cFp
+cFp
+cFp
+cFp
+cFp
+aaa
+aaa
+aaa
+aWP
+aWU
+aWU
+aWU
+aWU
+aXk
+aXo
+aXo
+aXo
+aXo
+aXx
+aaa
+aaa
+aVN
+aaa
+aaa
+aaa
+aaa
+aZN
+aZM
+aZM
+aZO
+aZO
+aZO
+aZO
+aZq
+bgr
+bhm
+bhm
+bjG
+bkG
+bkG
+blF
+bkG
+bnY
+bpq
+bqH
+bsr
+bhm
+bhm
+bwF
+bxR
+byM
+bzL
+bxR
+bxR
+bxR
+bxR
+bFD
+bxR
+bxR
+bxR
+bxR
+bMw
+bNF
+bOJ
bso
-bUk
-bsp
-bSW
-bgs
-bhn
-bhn
-cdY
-cec
-cei
-ces
-ceE
-ceX
-ces
-ces
-ces
-ces
-cGy
-ces
-ces
-cjA
-ckn
-cld
-clI
-cmx
-cnj
-bxS
-bxS
-cpW
-cqE
-crJ
-csy
-cmR
+bQQ
+bRN
+bSB
+bso
+bTM
+bsn
+cWU
+cWU
+cWU
+cWU
+cWW
+cWU
+cWU
+cWU
+cWU
+cWZ
+cWU
+cWU
+cWU
+cWU
+cWW
+cWU
+cWU
+cWU
+cWU
+diU
+diW
+diZ
+dja
+djc
+djh
+djh
+cdm
+cdq
+cdw
+cdG
+cdS
+cel
+cdG
+cdG
+cdG
+cdG
+cFL
+cdG
+cdG
+ciO
+cjB
+ckr
+ckW
+clL
+cmw
+djx
+djx
+cpj
+cpR
+cqW
+crL
+cmf
aaa
aaa
aaa
aaa
-cmR
-cmR
-cmR
-cmR
+cmf
+cmf
+cmf
+cmf
aaa
aaa
aaa
aaa
-cmR
-cmR
-cmR
-cmR
+cmf
+cmf
+cmf
+cmf
aaa
aaa
aaa
@@ -139598,15 +137100,15 @@ aaa
aaa
aaa
abC
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
abC
-cGc
+cFp
aaa
aaa
aaa
@@ -139618,13 +137120,13 @@ abC
aaa
aaa
aaa
+aqU
+cXE
+cXK
aqV
-cYu
-cYA
-aqW
-aqW
-aSj
aqV
+aSi
+aqU
aaa
aaa
aaa
@@ -139635,121 +137137,121 @@ alc
aaa
aaa
aaa
-aWR
-aWR
-aWR
-aWR
-aWR
-aXh
-aWR
-aWR
-aWR
-aWR
-aWR
+aWQ
+aWQ
+aWQ
+aWQ
+aWQ
+aXg
+aWQ
+aWQ
+aWQ
+aWQ
+aWQ
aaa
aaa
-aVO
+aVN
aaa
aaa
aaa
aaa
-aZN
-aZN
-aZN
-aZr
-aZr
-aZr
-aZr
-aZr
-bgt
-cFY
-bho
-bjI
-cPg
-bho
-blH
-bEv
-cJv
-bEv
-bqJ
-aZR
-aZR
-aZR
-aZR
-aZR
-byO
-bzO
-bas
-bCh
-bDk
-bEv
-bFJ
-bEv
-bEv
-bEv
-bEv
-bMF
-boa
-bdI
-aZR
-aZR
-aZR
-aZR
-aZR
-aZR
-aZt
-cXK
-cXK
-cXK
-cXK
-cXK
-cXK
-cXK
-cXK
-cXK
-cYS
-cXK
-cXK
-cXK
-cXK
-cXK
-cXK
-cXK
-cXK
-cXK
-aZt
-aZR
-cdg
-aZR
-boa
-aZR
-aZR
-bdI
-aZR
-cej
-aZR
-aZR
-aZR
-aZR
-cfW
-aZR
-aZR
-aZR
-aZR
-aZR
-aZR
-cHC
-aZR
-bgC
-boa
-cnk
-aZR
-aZR
-aZR
-cqF
-crK
-csy
-cmR
+aZM
+aZM
+aZM
+aZq
+aZq
+aZq
+aZq
+aZq
+bgs
+cFl
+bhn
+bjH
+cOq
+bhn
+blG
+bEq
+cII
+bEq
+bqI
+aZQ
+aZQ
+aZQ
+aZQ
+aZQ
+byN
+bzM
+bar
+bCe
+bDg
+bEq
+bFE
+bEq
+bEq
+bEq
+bEq
+bMx
+bnZ
+bdH
+aZQ
+aZQ
+aZQ
+aZQ
+aZQ
+aZQ
+aZs
+cWU
+cWU
+cWU
+cWU
+cWU
+cWU
+cWU
+cWU
+cWU
+cYc
+cWU
+cWU
+cWU
+cWU
+cWU
+cWU
+cWU
+cWU
+cWU
+diV
+diX
+ccu
+diX
+djd
+diX
+diX
+djn
+diX
+cdx
+diX
+diX
+diX
+diX
+cfk
+diX
+diX
+diX
+diX
+diX
+diX
+cGP
+diX
+djw
+djd
+cmx
+diX
+diX
+diX
+cpS
+cqX
+crL
+cmf
aaa
aaa
aaa
@@ -139844,9 +137346,9 @@ aae
aae
aaf
aaf
-cYi
-cYi
-cYi
+cXs
+cXs
+cXs
abC
aaa
aaa
@@ -139875,13 +137377,13 @@ abC
aaa
aaa
aaa
+aqU
+cXE
+cXK
aqV
-cYu
-cYA
-aqW
-aqW
-aSj
aqV
+aSi
+aqU
aaa
aaa
aaa
@@ -139889,15 +137391,15 @@ alc
alc
alc
alc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
abC
-aXh
+aXg
abC
abC
abC
@@ -139910,119 +137412,119 @@ abC
abC
abC
abC
-aZO
aZN
-aZN
-aZr
-bcM
-cNK
-bex
-aZr
-bgu
-aZR
-bic
-bjJ
-cPh
-biN
-blI
-bmW
-bob
-bps
-cJE
-bst
-bqK
-btP
-bwH
-bwH
-byP
-bzP
-bBg
-bCi
-bDl
-bEw
-bFK
-bEw
-bIP
-bEw
-bEw
-bMG
-bNQ
-bOV
-cGp
-bQd
-bSg
-bQd
-bQd
-bQd
-bVc
-cXK
-cXK
-cXK
-cXK
-cXN
-cXK
-cXK
-cXK
-cXK
-cXQ
-cXR
-cXR
-cXR
-cXR
-cXS
-cXR
-cXR
-cXR
-cXR
-cXT
-cXU
-cXU
-cXU
-cdv
-cdE
-cXU
-cXV
-cXW
-cek
-biN
-biN
-biN
-biN
-cfX
-biN
-biN
-biN
-biN
-ciV
-cjB
-cko
-biN
-clJ
+aZM
+aZM
+aZq
+bcL
+cMU
+bew
+aZq
+bgt
+aZQ
+bib
+bjI
+cOr
+biM
+blH
+bmV
+boa
+bpr
+cIR
+bss
+bqJ
+btO
+bwG
+bwG
+byO
+bzN
+bBe
+bCf
+bDh
+bEr
+bFF
+bEr
+bIK
+bEr
+bEr
+bMy
+bNG
+bOK
+cFC
+bPP
+bRO
+bPP
+bPP
+bPP
+bUC
+cWU
+cWU
+cWU
+cWU
+cWX
+cWU
+cWU
+cWU
+cWU
+cXa
+cXb
+cXb
+cXb
+cXb
+cXc
+cXb
+cXb
+cXb
+cXb
+cXd
+cXe
+cXe
+cXe
+ccJ
+ccS
+cXe
+cXf
+cXg
+cdy
+djr
+djr
+djr
+djr
+cfl
+djr
+djr
+djr
+djr
+cij
+ciP
+cjC
+djr
+ckX
+clM
cmy
-cnl
-cmy
-cmy
-cmy
-cqG
-crL
-csE
-cmR
+clM
+clM
+clM
+cpT
+cqY
+crR
+cmf
aaa
aaa
aaa
aaa
-cmR
-cmR
-cmR
-cmR
+cmf
+cmf
+cmf
+cmf
aaa
aaa
aaa
aaa
-cmR
-cmR
-cmR
-cmR
+cmf
+cmf
+cmf
+cmf
aaa
aaa
aaa
@@ -140132,13 +137634,13 @@ abC
aaa
aaa
aaa
+aqU
+cXE
+cXK
aqV
-cYu
-cYA
-aqW
-aqW
-aSj
aqV
+aSi
+aqU
aaa
aaa
aaa
@@ -140154,7 +137656,7 @@ abC
abC
abC
abC
-aXh
+aXg
abC
aaa
aaa
@@ -140167,119 +137669,119 @@ aaa
aaa
aaa
aaa
-aZN
-aZN
-aZN
-aZr
-bcN
-cZg
-bey
-bfn
-bgv
-bhp
-bid
-aZr
-cPi
-cPs
-cPs
-cPs
-boc
-cJz
-cJF
-boc
-boc
-boc
-bvy
-bvy
-byQ
-bzQ
-bvy
-bCj
-cGh
-bCj
-bCj
-bCj
-bCj
-bCj
-aZr
-bMH
-aZr
-aZr
-aZr
-aZr
-aZr
-aZr
-aZr
-aZr
-aZr
-bVN
-bWp
-bWp
-bWp
-cXO
-bWp
-bWp
-bWp
-bWp
-cXO
-bWp
-bWp
-bWp
-bWp
-cXO
-bWp
-bWp
-bWp
-ccS
-aZr
-aZr
-aZr
-aZr
-aZr
-aZr
-aZr
-aZr
-aZr
-cel
-aZr
-aZr
-aZr
-aZr
-aZr
-aZr
-aZr
-aZr
-bch
-aZr
-aZr
-aZr
-cle
-clH
-aZr
-aZr
-aZr
-aZr
-aZr
-cqH
-crM
-csF
-cGJ
-ctt
-ctt
-ctt
-ctt
-cmR
-cxN
-cyu
-cmR
-ctt
-ctt
-ctt
-ctt
-cqq
-cBO
-cCc
-cmR
+aZM
+aZM
+aZM
+aZq
+bcM
+cYq
+bex
+bfm
+bgu
+bho
+bic
+aZq
+cOs
+cOC
+cOC
+cOC
+bob
+cIM
+cIS
+bob
+bob
+bob
+bvx
+bvx
+byP
+bzO
+bvx
+bCg
+cFu
+bCg
+bCg
+bCg
+bCg
+bCg
+aZq
+bMz
+aZq
+aZq
+aZq
+aZq
+aZq
+aZq
+aZq
+aZq
+aZq
+bVc
+bVE
+bVE
+bVE
+cWY
+bVE
+bVE
+bVE
+bVE
+cWY
+bVE
+bVE
+bVE
+bVE
+cWY
+bVE
+bVE
+bVE
+ccg
+diT
+diT
+diT
+diT
+diT
+diT
+diT
+diT
+diT
+cdz
+diT
+diT
+diT
+diT
+diT
+diT
+diT
+diT
+djg
+diT
+diT
+diT
+cks
+ckV
+diT
+diT
+diT
+diT
+diT
+cpU
+cqZ
+crS
+cFW
+csG
+csG
+csG
+csG
+cmf
+cxa
+cxH
+cmf
+csG
+csG
+csG
+csG
+cpD
+cBb
+cBp
+cmf
aaa
aaa
aaa
@@ -140386,32 +137888,32 @@ alc
alc
aaa
abC
-cGc
-cGc
-cGc
-aNo
-cYw
-cYA
-aqW
-aqW
-cYI
-aTg
-cGc
-cGc
+cFp
+cFp
+cFp
+aNn
+cXG
+cXK
+aqV
+aqV
+cXS
+aTf
+cFp
+cFp
akx
alc
alc
alc
alc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
abC
-aXh
+aXg
abC
aaa
aaa
@@ -140424,119 +137926,119 @@ aaa
aaa
aaa
aaa
-aZN
-aZN
-aZN
-aZr
-bcO
-bdD
-bez
-bfo
-bgw
-bhq
-bie
-aZr
-bjK
-bgr
-bhm
-bib
-boc
-bpt
-bqL
-bsu
-btQ
-cJN
-cHh
-bvz
-bqY
-bzR
-bBh
-bCj
-bDm
-bEx
-bFL
-bHq
-bIQ
-bCj
-bLc
-bMI
-bcS
-bOW
-baq
-bRg
-bSh
-bSX
-bSX
-bSX
-bSX
-bVO
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aYu
-cda
-cdd
-cdh
-cdp
-cdw
-cdw
-dad
-cdw
-cdw
-cem
-aZr
-ccH
-cde
-cde
-cdq
-cgv
-cgv
-chK
-cEW
-cSw
-chK
-cDD
-clf
-clK
-cgw
-cdU
-cdU
-cdU
-cmR
-cqI
-crN
+aZM
+aZM
+aZM
+aZq
+bcN
+bdC
+bey
+bfn
+bgv
+bhp
+bid
+aZq
+bjJ
+bgq
+bhl
+bia
+bob
+bps
+bqK
+bst
+btP
+cJa
+cGu
+bvy
+bqX
+bzP
+bBf
+bCg
+bDi
+bEs
+bFG
+bHl
+bIL
+bCg
+bKV
+bMA
+bcR
+bOL
+bap
+bQR
+bRP
+bSC
+bSC
+bSC
+bSC
+bVd
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aYt
+cco
+ccr
+ccv
+ccD
+ccK
+ccK
+cZn
+ccK
+ccK
+cdA
+diT
+cbV
+ccs
+ccs
+ccE
+cfJ
+cfJ
+cgY
+cEj
+cRG
+cgY
+cCQ
+ckt
+ckY
+cfK
+cdi
+cdi
+cdi
+cmf
+cpV
+cra
+crT
+csE
+cti
+cti
+cti
+cti
+cwd
+cti
+cti
+cys
+cti
+cti
+cti
+cti
+cwV
+cAY
+cBt
csG
-ctr
-ctV
-ctV
-ctV
-ctV
-cwQ
-ctV
-ctV
-czf
-ctV
-ctV
-ctV
-ctV
-cxI
-cBL
-cCg
-ctt
aaa
aaa
aaa
@@ -140626,17 +138128,17 @@ alc
alc
amI
amI
-afH
-afH
-afE
-aep
-afH
-adP
-aep
-afH
-afH
-aep
-aep
+dfa
+dfa
+deW
+deS
+dfa
+dff
+deS
+dfa
+dfa
+deS
+deS
alc
amI
amI
@@ -140645,15 +138147,15 @@ alc
aaa
aaa
aaa
-aJv
-aNp
-aJv
-aPE
-aQw
-aRx
-aKq
-aTh
-aKq
+aJu
+aNo
+aJu
+aPD
+dhd
+dhi
+dgK
+aTg
+dgK
akx
akx
alc
@@ -140668,7 +138170,7 @@ aaa
aaa
aaa
abC
-aXh
+aXg
abC
aaa
aaa
@@ -140681,47 +138183,47 @@ aaa
aaa
aaa
aaa
-aZP
-aZP
-aZP
-aZr
-bcP
-bdE
-beA
-aZr
-bgx
-bhq
-bid
-cOX
-cOX
-cOX
-cOX
-cOX
-boc
-bpu
-bqM
-cJG
-bsv
-cJO
-bvA
-bsA
-bqY
-bzR
-bsA
-bCk
-bDn
-bEy
-bFM
-bEy
-bIR
-bCj
-bcT
-bMJ
-bcT
-bcd
-aZr
-aZr
-aZr
+aZO
+aZO
+aZO
+aZq
+bcO
+bdD
+bez
+aZq
+bgw
+bhp
+bic
+cOh
+cOh
+cOh
+cOh
+cOh
+bob
+bpt
+bqL
+cIT
+bsu
+cJb
+bvz
+bsz
+bqX
+bzP
+bsz
+bCh
+bDj
+bEt
+bFH
+bEt
+bIM
+bCg
+bcS
+bMB
+bcS
+bcc
+aZq
+aZq
+aZq
aaa
aaa
aaa
@@ -140746,54 +138248,54 @@ aaa
aaa
aaa
aaa
-aZr
-aZr
-aZr
-bcT
-bcT
-bcT
-bcT
-aZr
-aZr
-aZr
-ccH
-cde
-cde
-cdq
-cgw
-cSo
-chL
-cSk
-cSk
-cjC
-cSk
-clg
-cSJ
-cgv
-cdU
-cdU
-cdU
-cmR
-cqJ
-crO
-csH
-cts
-ctW
-ctW
-ctW
-ctW
-cwR
-ctW
-ctW
-czg
-czW
-czW
-czW
-czW
-cGO
-czW
-cCe
-ctt
+diT
+diT
+diT
+dje
+dje
+dje
+dje
+diT
+diT
+diT
+cbV
+ccs
+ccs
+ccE
+cfK
+cRy
+cgZ
+cRu
+cRu
+ciQ
+cRu
+cku
+cRT
+cfJ
+cdi
+cdi
+cdi
+cmf
+cpW
+crb
+crU
+csF
+ctj
+ctj
+ctj
+ctj
+cwe
+ctj
+ctj
+cyt
+czj
+czj
+czj
+czj
+cGb
+czj
+cBr
+csG
aaa
aaa
aaa
@@ -140881,36 +138383,36 @@ aaa
alc
alc
amI
-aep
-aep
-afH
-aqh
-afc
-aoX
-cLQ
-cLy
-aiA
-ayI
-alG
-aBn
-adP
-afH
-afH
-aep
+deS
+deS
+dfa
+dfo
+dfe
+dfw
+cLa
+dfC
+dfF
+ayH
+dfK
+aBm
+dff
+dfa
+dfa
+deS
alc
alc
alc
akx
akx
-aJv
-aNq
-aJv
-cYC
-aQk
-aRy
-aKq
-aTi
-aKq
+aJu
+aNp
+aJu
+cXM
+dhe
+aRx
+dgK
+aTh
+dgK
alc
alc
alc
@@ -140925,7 +138427,7 @@ aaa
aaa
aaa
abC
-aXh
+aXg
abC
aaa
aaa
@@ -140938,47 +138440,47 @@ aaa
aaa
aaa
aaa
-aZP
-aZP
-aZP
-aZr
-cNC
-bdF
-beB
-aZr
-bgx
-bhr
-bif
-cOX
-cPj
-cPt
-cPA
-cPO
-boc
-bpv
-bqM
-cJG
-bsw
-cJO
-bvB
-bsA
-bqY
-bzS
-bBi
-bCl
-bDo
-bEz
-bFN
-bEy
-bIS
-bCj
-bcT
-bMJ
-bcT
-bcM
-aZr
-aZN
-aZN
+aZO
+aZO
+aZO
+aZq
+cMM
+bdE
+beA
+aZq
+bgw
+bhq
+bie
+cOh
+cOt
+cOD
+cOK
+cOY
+bob
+bpu
+bqL
+cIT
+bsv
+cJb
+bvA
+bsz
+bqX
+bzQ
+bBg
+bCi
+bDk
+bEu
+bFI
+bEt
+bIN
+bCg
+bcS
+bMB
+bcS
+bcL
+aZq
+aZM
+aZM
aaa
aaa
aaa
@@ -141002,55 +138504,55 @@ abC
aaa
aaa
aaa
-ccH
-ccH
-ccH
-aZr
-bcd
-bNR
-bdG
-beF
-aZr
-ccH
-cde
-cde
-cde
-cde
-cdq
-cgv
-cSo
+cbV
+cbV
+cbV
+diT
+djf
+dji
+djj
+djo
+diT
+cbV
+ccs
+ccs
+ccs
+ccs
+ccE
+cfJ
+cRy
+cgW
chI
-ciu
-ciu
-ciu
-ciu
-ciu
-ciu
-ciu
-ciu
-ciu
-ciu
-ciu
-cqK
-crP
-csI
-cmR
-ctt
-ctt
-cvg
-ctt
-cmR
-cva
-cva
-cmR
-ctt
-ctt
-ctt
-ctt
-cmR
-cva
-cva
-cmR
+chI
+chI
+chI
+chI
+chI
+chI
+chI
+chI
+chI
+chI
+cpX
+crc
+crV
+cmf
+csG
+csG
+cut
+csG
+cmf
+cun
+cun
+cmf
+csG
+csG
+csG
+csG
+cmf
+cun
+cun
+cmf
aaa
aaa
aaa
@@ -141137,39 +138639,39 @@ akx
alc
amI
amI
-aep
-afE
-afH
+deS
+deW
+dfa
aor
-afc
-ajX
-alv
-ajX
-ajX
-ajW
-cLA
-ajW
-cLx
-ajW
-alG
-cLv
-aep
+dfe
+dfs
+dfx
+dfs
+dfs
+dfG
+dfI
+dfG
+dfL
+dfG
+dfK
+dfT
+deS
amI
amI
-aJv
-aKs
-aKs
-aJv
-aNr
-aJv
-cYC
-aQk
-aRz
-aKq
-aTj
-aKq
-aKq
-aKq
+aJu
+aKr
+aKr
+aJu
+aNq
+aJu
+cXM
+dhe
+aRy
+dgK
+aTi
+dgK
+dgK
+dgK
alc
amI
amI
@@ -141179,10 +138681,10 @@ alc
alc
alc
aaa
-cGc
+cFp
abC
abC
-aXh
+aXg
abC
aaa
aaa
@@ -141195,119 +138697,119 @@ aaa
aaa
aaa
aaa
-aZP
-aZP
-aZP
-aZr
-aZr
-aZr
-aZr
-aZr
-bgx
-bhq
-bid
-cOY
-bjL
-cPu
-cPu
-bmY
-boc
-bpw
-bqN
-cJH
-bsx
-cJO
-bvC
-bwI
-byR
-bzT
-bBj
-bCm
-bDp
-bEy
-bFO
-bEy
-bIT
+aZO
+aZO
+aZO
+aZq
+aZq
+aZq
+aZq
+aZq
+bgw
+bhp
+bic
+cOi
+bjK
+cOE
+cOE
+bmX
+bob
+bpv
+bqM
+cIU
+bsw
+cJb
+bvB
+bwH
+byQ
+bzR
+bBh
bCj
-bLd
-bMK
-bNR
-bOX
-aZr
-aZN
-aZN
-aZN
-aZN
+bDl
+bEt
+bFJ
+bEt
+bIO
+bCg
+bKW
+bMC
+bNH
+bOM
+aZq
+aZM
+aZM
+aZM
+aZM
aaa
-aWs
-aWs
-aWs
-aWs
-aWs
-aWs
-aWs
-aWs
-aWs
-aWs
+aWr
+aWr
+aWr
+aWr
+aWr
+aWr
+aWr
+aWr
+aWr
+aWr
aaa
-aWs
-aWs
-aWs
-aWs
-aWs
-aWs
-aWs
+aWr
+aWr
+aWr
+aWr
+aWr
+aWr
+aWr
aaa
aaa
-ccH
-ccH
-ccH
-aZr
-aZr
-aZr
-aZr
-aZr
-aZr
-ccH
-cde
-cde
-cde
-cde
-cdq
-cgw
-chK
-cSt
-ciu
-ciX
-cjD
-ciY
-ckr
-ciY
-clL
-clL
-cor
-clL
-ciu
-cqJ
-crQ
-csJ
-cmR
-ccG
-ccG
+cbV
+cbV
+cbV
+diT
+diT
+diT
+diT
+diT
+diT
+cbV
+ccs
+ccs
+ccs
+ccs
+ccE
+cfK
+cgY
+cRD
+chI
+cil
+ciR
+cim
+cjF
+cim
+ckZ
+ckZ
+cnE
+ckZ
+chI
+cpW
+crd
+crW
+cmf
+cbU
+cbU
aaa
aaa
-ctt
-cvb
-cvb
-ctt
+csG
+cuo
+cuo
+csG
aaa
aaa
aaa
aaa
-ctt
-cvb
-cvb
-ctt
+csG
+cuo
+cuo
+csG
aaa
aaa
aaa
@@ -141394,52 +138896,52 @@ akx
alc
amI
amI
-aep
+deS
apo
aos
-ahd
-ahd
-ahd
-cLO
-avf
-ahd
-ahd
-ayJ
-cLO
-ahd
-ahd
-aDA
-afE
-afH
-aep
-aep
-aJv
-aKt
-aLq
-aMn
-aNs
-aOg
-cYC
-aQk
-aRA
-aKq
-aTk
-aTN
-aUh
-aKq
+dfk
+dfk
+dfk
+cKY
+ave
+dfk
+dfk
+ayI
+cKY
+dfk
+dfk
+aDz
+deW
+dfa
+deS
+deS
+aJu
+aKs
+aLp
+aMm
+aNr
+aOf
+cXM
+dhe
+dhj
+dgK
+aTj
+aTM
+aUg
+dgK
alc
amI
+aVB
aVC
-aVD
-aVC
-aVC
-aWJ
+aVB
+aVB
+aWI
alc
aaa
aaa
abC
-aXg
-aXi
+die
+aXh
abC
aaa
aaa
@@ -141451,50 +138953,50 @@ aaa
aaa
aaa
aaa
-aZN
-aZP
-aZP
-aZP
-aZP
-aZP
-aZP
-aZP
-aZr
-bgx
-bhq
-bid
-cOX
-cPk
-cPv
-cPB
-bmZ
-boc
-bpx
-bqO
-cJI
-bsy
-cJP
-bvD
-bpN
-byS
-bzU
-bBk
-bCl
-bDo
-bEz
-bFP
-bHr
-bIU
-bCj
-bLe
-bLy
-aZr
-aZr
-aZr
-aZN
-aZN
-aZN
-aZN
+aZM
+aZO
+aZO
+aZO
+aZO
+aZO
+aZO
+aZO
+aZq
+bgw
+bhp
+bic
+cOh
+cOu
+cOF
+cOL
+bmY
+bob
+bpw
+bqN
+cIV
+bsx
+cJc
+bvC
+bpM
+byR
+bzS
+bBi
+bCi
+bDk
+bEu
+bFK
+bHm
+bIP
+bCg
+bKX
+bLr
+aZq
+aZq
+aZq
+aZM
+aZM
+aZM
+aZM
aaa
aaa
aaa
@@ -141515,56 +139017,56 @@ aaa
aaa
aaa
aaa
-ccH
-ccH
-ccH
-ccH
-ccH
-ccH
-ccH
-ccH
-ccH
-ccH
-ccH
-cde
-cde
-cde
-cde
-cdq
-cgw
-chb
+cbV
+cbV
+cbV
+cbV
+cbV
+cbV
+cbV
+cbV
+cbV
+cbV
+cbV
+ccs
+ccs
+ccs
+ccs
+ccE
+cfK
+cgp
+cgW
chI
-ciu
-ciY
-cjE
-ciY
+cim
+ciS
+cim
+ciT
+cim
+cim
cjF
-ciY
-ciY
-ckr
-cos
-clL
-ciu
-cqL
-coK
-cGI
-cmR
-ccG
-ccG
-ccG
+cnF
+ckZ
+chI
+cpY
+cnX
+cFV
+cmf
+cbU
+cbU
+cbU
aaa
-cmR
-cvc
-cvc
-cmR
+cmf
+cup
+cup
+cmf
aaa
aaa
aaa
aaa
-cmR
-cvc
-cvc
-cmR
+cmf
+cup
+cup
+cmf
aaa
aaa
aaa
@@ -141647,55 +139149,55 @@ aaa
aiR
ajJ
anv
-cUg
+cTq
aiV
-aep
-afE
-afH
-afc
-anh
-aqY
-aqY
-aqY
-aqY
-aqY
-aqY
-aqY
-aqY
-aqY
-aqY
-afc
-anh
-afE
-adP
-aHq
-adP
-aJv
-aKu
-aLr
-aMo
-aNt
-aOh
-cYD
-aQk
-aRB
-aKq
-aTl
-aTO
-aUi
-aKq
-afH
-afH
-aVC
-aVU
-aWm
-aWA
-aWJ
-aWJ
-aWJ
+deS
+deW
+dfa
+dfe
+dfh
+aqX
+aqX
+aqX
+aqX
+aqX
+aqX
+aqX
+aqX
+aqX
+aqX
+dfe
+dfh
+deW
+dff
+aHp
+dff
+aJu
+aKt
+aLq
+aMn
+aNs
+aOg
+cXN
+dhe
+aRA
+dgK
+aTk
+aTN
+aUh
+dgK
+dfN
+dfN
+aVB
+aVT
+aWl
+aWz
+aWI
+aWI
+aWI
abC
abC
-aXh
+aXg
abC
abC
aaa
@@ -141708,51 +139210,51 @@ aaa
aaa
aaa
aaa
-aZN
-aZN
-aZN
-aZN
-aZN
-aZP
-aZN
-aZP
-aZr
-bgx
-bhq
-bid
-cOX
-cPl
-cPw
-cPC
-cPP
-boc
-bpy
-bqP
-bsz
-boc
-boc
-bwJ
-bwJ
-byT
-bzV
-bpB
-bCk
-bDn
-bEy
-bFQ
-bEy
-bIV
-bCj
-bLf
-bML
-beJ
-beG
-aZP
-aZP
-aZN
-aZN
-aZN
+aZM
+aZM
+aZM
+aZM
+aZM
aZO
+aZM
+aZO
+aZq
+bgw
+bhp
+bic
+cOh
+cOv
+cOG
+cOM
+cOZ
+bob
+bpx
+bqO
+bsy
+bob
+bob
+dku
+bwI
+byS
+bzT
+bpA
+bCh
+bDj
+bEt
+bFL
+bEt
+bIQ
+bCg
+bKY
+bMD
+beI
+beF
+aZO
+aZO
+aZM
+aZM
+aZM
+aZN
abC
abC
abC
@@ -141772,43 +139274,43 @@ abC
abC
abC
abC
-ccI
-ccH
-ccH
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cdq
-cdU
-chK
-cSu
-ciu
-ciZ
+cbW
+cbV
+cbV
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccE
+cdi
+cgY
+cRE
+chI
+cin
+ciT
+cjD
+ciT
cjF
-ckp
-cjF
-ckr
-ciY
-clL
-cot
-cpa
-cpX
-cqM
-coK
-csJ
-ctt
-ccG
-ccG
-ccG
+cim
+ckZ
+cnG
+con
+cpk
+cpZ
+cnX
+crW
+csG
+cbU
+cbU
+cbU
aaa
aaa
aaa
@@ -141904,55 +139406,55 @@ aaa
aiS
alj
ajK
-cUh
+cTr
aiV
aiV
-aTA
+deX
aor
aos
-aqn
-aqY
-arT
+aqm
+aqX
+arS
+asU
+arS
asV
-arT
-asW
-asW
-axg
-ayK
-arT
-aqY
-aqh
-aDB
-alG
-ajW
-cMa
-afE
-aJw
-aKv
-aLs
-aMp
-aNu
-aOi
-aPF
-aQm
-aRC
-cFI
-aTm
-aTP
-aUj
-aKq
+asV
+axf
+ayJ
+arS
+aqX
+dfo
+aDA
+dfK
+dfG
+dgb
+deW
+aJv
+aKu
+aLr
+aMo
+aNt
+aOh
+aPE
+dhf
+aRB
+cEV
+aTl
+aTO
+aUi
+dgK
ajb
-aqh
-aVD
-aVV
-aWn
-aWB
-aWK
-aWS
-aWK
-aWO
-aWO
-aXi
+dfY
+aVC
+aVU
+aWm
+aWA
+aWJ
+aWR
+aWJ
+dib
+dib
+aXh
abC
abC
abC
@@ -141965,51 +139467,51 @@ abC
abC
abC
abC
+aZN
+aZM
+aZM
+aZM
+aZM
aZO
-aZN
-aZN
-aZN
-aZN
-aZP
-aZN
-aZP
-aZr
-bgx
-bhq
-bid
-cOX
-cPm
-cPx
-cPD
-bna
-bod
-bpz
-bqQ
-bsA
-cZh
-btR
-bvE
-bxT
-bvE
-bzW
-bBl
-bCj
-bDq
-bEA
-bFQ
-bHs
-bIW
-bCj
-bLg
-bMM
-bNS
-beJ
-beG
-beG
-aZP
-aZP
-aZN
-aZN
+aZM
+aZO
+aZq
+bgw
+bhp
+bic
+cOh
+cOw
+cOH
+cON
+bmZ
+boc
+bpy
+bqP
+bsz
+cYr
+btQ
+bvD
+bxS
+bvD
+bzU
+bBj
+bCg
+bDm
+bEv
+bFL
+bHn
+bIR
+bCg
+bKZ
+bME
+bNI
+beI
+beF
+beF
+aZO
+aZO
+aZM
+aZM
aaa
aaa
aaa
@@ -142029,43 +139531,43 @@ aaa
aaa
aaa
aaa
-ccH
-ccH
-ccH
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cdq
-cdU
-ctU
+cbV
+cbV
+cbV
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccE
+cdi
+cth
+cgW
chI
-ciu
-ciY
-ciY
-ckq
-clh
-clL
-clL
-clL
-clL
-clL
-ciu
-cqN
-coK
-csJ
-ctt
-ccG
-ccG
-ccG
+cim
+cim
+cjE
+ckv
+ckZ
+ckZ
+ckZ
+ckZ
+ckZ
+chI
+cqa
+cnX
+crW
+csG
+cbU
+cbU
+cbU
aaa
aaa
aaa
@@ -142167,46 +139669,46 @@ amJ
akW
aos
app
-afH
-aqY
-arU
-asW
+dfa
+aqX
arT
-arT
-awu
-asW
-asW
-azZ
-aqY
-afE
+asV
+arS
+arS
+awt
+asV
+asV
+azY
+aqX
+deW
amn
-aBJ
-aBJ
-aBJ
-aAS
-aJv
-aJv
-aJv
-aJv
-aJv
-aJv
-aPG
-aQx
-aRD
-aKq
-aTn
-aTI
-aUk
-aKq
-alw
-aVs
-aVE
-aVW
-aWo
-aWC
-aWJ
-aWJ
-aWJ
+dfU
+dfU
+dfU
+dgj
+aJu
+aJu
+aJu
+aJu
+aJu
+aJu
+aPF
+aQw
+aRC
+dgK
+aTm
+dhC
+aUj
+dgK
+dgP
+aVr
+aVD
+aVV
+aWn
+aWB
+aWI
+aWI
+aWI
abC
abC
abC
@@ -142222,52 +139724,52 @@ aaa
aaa
aaa
aaa
-aZP
-aZP
-aZP
-aZP
-aZP
-aZP
-aZP
-aZP
-cFS
-bgx
-bhq
-bid
-cOX
-bjM
-bkJ
-cPE
-cPQ
+aZO
+aZO
+aZO
+aZO
+aZO
+aZO
+aZO
+aZO
+cFf
+bgw
+bhp
+bic
+cOh
+bjL
+bkI
+cOO
+cPa
+bod
+bpz
+bqQ
+bwH
+bsA
boe
+bvE
+bwJ
+byT
+bzU
bpA
-bqR
-bwI
-bsB
-bof
-bvF
-bwK
-byU
-bzW
-bpB
-bCj
-bDr
-bEy
-bFQ
-bHt
-bIX
-bCj
-cQY
-bMN
-bNT
-bOY
-bQe
-beJ
-aZP
-aZN
-aZv
-aZv
-aZv
+bCg
+bDn
+bEt
+bFL
+bHo
+bIS
+bCg
+cQi
+bMF
+bNJ
+bON
+bPQ
+beI
+aZO
+aZM
+aZu
+aZu
+aZu
aaa
aaa
aaa
@@ -142286,43 +139788,43 @@ aaa
aaa
aaa
aaa
-ccH
-ccH
-ccH
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-ccH
-ccH
-ccH
-cdU
-cgx
-ctU
-chO
-ciu
-ciY
-ciY
-ckr
-ciY
-ckr
-clL
-cnm
-cou
-cou
-ciu
-cqM
-coK
-csJ
-ctt
-ccG
-ccG
-ccG
+cbV
+cbV
+cbV
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+cbV
+cbV
+cbV
+cdi
+cfL
+cth
+chc
+chI
+cim
+cim
+cjF
+cim
+cjF
+ckZ
+cmz
+cnH
+cnH
+chI
+cpZ
+cnX
+crW
+csG
+cbU
+cbU
+cbU
aaa
aaa
aaa
@@ -142415,53 +139917,53 @@ aaa
aaa
aaa
aaa
-cFc
-ajM
+aiT
+dkm
akz
ald
alL
aiV
anr
aot
-cLG
-adP
-aqY
-arV
-asX
-atZ
-avg
+cKQ
+dff
+aqX
+arU
asW
-axh
-asW
-aAa
-aqY
-adP
-afE
-afH
-aiA
-cMs
-cMz
-cMH
-aBJ
-aAS
-cLx
-cMy
-aKq
-aPH
-aQr
-aRE
-aKq
-aTo
-aTJ
-aUl
-aKq
-aqh
-anh
-aVD
-aVD
+atY
+avf
+asV
+axg
+asV
+azZ
+aqX
+dff
+deW
+dfa
+dfF
+cLC
+cLJ
+cLR
+dfU
+dgj
+dfL
+dgF
+dgK
+aPG
+dhg
+aRD
+dgK
+aTn
+dhD
+aUk
+dgK
+dfY
+dhL
aVC
-aVD
-aWJ
+aVC
+aVB
+aVC
+aWI
alc
aaa
aaa
@@ -142478,53 +139980,53 @@ aaa
aaa
aaa
aaa
-cGc
-aZP
-aZP
-aZP
-aZP
-aZP
-aZP
-aZP
-aZP
-cFS
-bgx
-bhq
-bid
-cOX
-bjN
-cUP
-blJ
-cPu
-cPU
-cQa
-cHg
-bsA
-bEE
-bof
-bsA
-bxU
-byV
-bzW
-bBm
-bCj
-bDs
-bEB
-bFR
-bHu
-bIY
-bCj
-bLh
-bLi
-cRn
-cQY
-cRD
-beI
-aZP
-aZN
-aZv
-aZv
-aZv
+cFp
+aZO
+aZO
+aZO
+aZO
+aZO
+aZO
+aZO
+aZO
+aZq
+bgw
+bhp
+bic
+cOh
+bjM
+cTZ
+blI
+cOE
+cPe
+cPk
+cGt
+bsz
+bEz
+boe
+bsz
+bxT
+byU
+bzU
+bBk
+bCg
+bDo
+bEw
+bFM
+bHp
+bIT
+bCg
+bLa
+bLb
+cQx
+cQi
+cQN
+beH
+aZO
+aZM
+aZu
+aZu
+aZu
aaa
aaa
aaa
@@ -142543,43 +140045,43 @@ aaa
aaa
aaa
aaa
-ccH
-ccH
-cde
-cde
-cgw
-cgw
-cdq
-cdq
-ccH
-ccH
-cde
-cde
-ccH
-cdU
-cgv
-cgv
-cgy
-ctU
-chM
-ciu
-ciY
+cbV
+cbV
+ccs
+ccs
+cfK
+cfK
+ccE
+ccE
+cbV
+cbV
+ccs
+ccs
+cbV
+cdi
+cfJ
+cfJ
+cfM
+cth
+cha
+chI
+cim
+ciU
cjG
-cks
-cks
-cks
-cmz
-cnn
-cov
-cpb
-cpY
-cqO
-crG
-csK
-ctt
-ccG
-ccG
-ccG
+cjG
+cjG
+clN
+cmA
+cnI
+coo
+cpl
+cqb
+cqT
+crX
+csG
+cbU
+cbU
+cbU
aaa
aaa
aaa
@@ -142680,41 +140182,41 @@ alM
aiV
ans
aou
-adP
-adP
-aqY
-arT
-asW
-aua
-avh
-aua
-axi
+dff
+dff
+aqX
+arS
+asV
+atZ
+avg
+atZ
axh
-aAa
-aqY
-adP
-adP
-cMh
-cMh
-cMh
-cMh
-cMh
-cMh
-anh
-cLx
-afE
-aOc
-aPI
-aQy
-aRF
-aSk
-aTp
-aKq
-aKq
-aKq
-aos
+axg
+azZ
+aqX
+dff
+dff
+cLr
+cLr
+cLr
+cLr
+cLr
+cLr
+dfh
+dfL
+deW
+dgL
+aPH
+aQx
+aRE
+aSj
+aTo
+dgK
+dgK
+dgK
+dfV
aoU
-afE
+dfO
alc
alc
alc
@@ -142736,106 +140238,106 @@ aaa
aaa
aaa
aaa
-aZP
-aZP
-aZP
-aZr
-aZr
-aZr
-aZr
-aZr
-aZr
-bgx
-bhq
-big
-cOZ
-biQ
-biQ
-biQ
-biQ
-bof
-bpB
-bqQ
-bsA
-bEE
-cKU
-bwL
-bof
-bof
-bzX
-bBn
-bCj
-bDt
-bCl
-bFS
-bHv
-bCj
-bCj
-cGm
-bLi
-bLi
-cQY
+aZO
+aZO
+aZO
+aZq
+aZq
+aZq
+aZq
+aZq
+aZq
+bgw
+bhp
+bif
+cOj
+biP
+biP
+biP
+biP
+boe
+bpA
+bqP
+bsz
+bEz
+cKg
+bwK
+boe
+boe
+bzV
+bBl
+bCg
+bDp
+bCi
+bFN
+bHq
+bCg
+bCg
+cFz
+bLb
+bLb
+cQi
+cQN
+beF
+aZO
+aZO
+aZM
+aZM
+aZu
+aZu
+aZu
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cbV
+cbV
+ccs
+ccs
+cfK
+ccL
+ccT
+cfK
+cdi
+cfJ
+ccE
+ccE
+cdi
+cdi
+ceL
+cfm
+cfm
+cth
cRD
-beG
-aZP
-aZP
-aZN
-aZN
-aZv
-aZv
-aZv
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ccH
-ccH
-cde
-cde
-cgw
-cdx
-cdF
-cgw
-cdU
-cgv
-cdq
-cdq
-cdU
-cdU
-cfx
-cfY
-cfY
-ctU
-cSt
-ciu
-cja
-cjH
-ciY
-ckr
-ciY
-ciY
-ciY
-cow
-ciY
-ciu
-cGG
-coK
-csJ
-ctt
-ccG
-ccG
+chI
+cio
+ciV
+cim
+cjF
+cim
+cim
+cim
+cnJ
+cim
+chI
+cFT
+cnX
+crW
+csG
+cbU
+cbU
aaa
aaa
aaa
@@ -142939,43 +140441,43 @@ aiV
any
any
any
-aqY
-aqY
-aqY
-aub
-avi
-aub
-aqY
-aqY
-aAb
-aqY
+aqX
+aqX
+aqX
+aua
+avh
+aua
+aqX
+aqX
+aAa
+aqX
any
any
-cMh
-cMn
-cMt
-cMA
-cMI
-cMh
+cLr
+cLx
+cLD
+cLK
+cLS
+cLr
amn
-ahd
-aNh
-aOj
-aPJ
-aQz
-aRG
-aKq
-aKq
-aKq
-adP
-adP
-anh
-afc
-aKq
-aKq
-aKq
-aKq
-aKq
+dfk
+aNg
+aOi
+aPI
+aQy
+aRF
+dgK
+dgK
+dgK
+dfM
+dfM
+dhL
+dgd
+dgK
+dgK
+dgK
+dgK
+dgK
alc
aaa
aaa
@@ -142993,54 +140495,54 @@ aaa
aaa
aaa
aaa
-aZP
-aZP
-aZN
-aZr
-bcd
-bcR
-bdG
-beC
-aZr
-bgx
-bhq
-bid
-biQ
-bjO
-bkK
-blK
-bnb
-bog
-bpC
-bqS
-bsC
-cQb
-cQc
-cQc
-cQc
-byW
-bzY
-bBo
-bCn
-bDu
-bEC
-bFT
-bHw
-bIZ
-bKe
-bJd
-bMO
-bLi
-cRx
-cRD
-beG
-aZP
-aZP
-aZN
-aZN
-aZN
-aZv
-aZv
+aZO
+aZO
+aZM
+aZq
+bcc
+bcQ
+bdF
+beB
+aZq
+bgw
+bhp
+bic
+biP
+bjN
+bkJ
+blJ
+bna
+bof
+bpB
+bqR
+bsB
+cPl
+cPm
+cPm
+cPm
+byV
+bzW
+bBm
+bCk
+bDq
+bEx
+bFO
+bHr
+bIU
+bJY
+bIY
+bMG
+bLb
+cQH
+cQN
+beF
+aZO
+aZO
+aZM
+aZM
+aZM
+aZu
+aZu
aaa
aaa
aaa
@@ -143056,43 +140558,43 @@ aaa
aaa
aaa
aaa
-ccH
-ccH
-ccH
-cde
-cde
-cdq
-cdy
-ctU
-cdG
-cdG
-cdT
-cdG
-cdU
-cdG
-ctU
-cfx
-cfY
-cgw
-cSp
+cbV
+cbV
+cbV
+ccs
+ccs
+ccE
+ccM
+cth
+ccU
+ccU
+cdh
+ccU
+cdi
+ccU
+cth
+ceL
+cfm
+cfK
+cRz
+cgW
chI
-ciu
-ciu
-ciu
-ciu
-ciu
-ciu
-ciu
-ciu
-ciu
-ciu
-ciu
-cqP
-coK
-csJ
-ctt
-ccG
-ccG
+chI
+chI
+chI
+chI
+chI
+chI
+chI
+chI
+chI
+chI
+cqc
+cnX
+crW
+csG
+cbU
+cbU
aaa
aaa
aaa
@@ -143194,45 +140696,45 @@ alM
amK
aiV
aov
-cLH
-aqo
-aqZ
-arW
-asY
-auc
-avj
-auc
-axj
-ayL
-aAc
-aBo
-aCm
-aDC
-cMi
-cMo
-cMu
-cMB
-cMJ
-cMh
-cMQ
-aTA
-auB
-akn
-aPK
-aQk
-aRH
-aKq
-adP
-adP
-adP
-aUL
+cKR
+aqn
+aqY
+arV
+asX
+aub
+avi
+aub
+axi
+ayK
+aAb
+aBn
+aCl
+aDB
+cLs
+cLy
+cLE
+cLL
+cLT
+cLr
+cMa
+deX
+auA
+dgM
+aPJ
+dhe
+aRG
+dgK
+dfM
+dfM
+dfM
+aUK
aoU
-aep
-aKq
-aLo
-aLn
-aWD
-aKq
+dgv
+dgK
+dhS
+dhW
+aWC
+dgK
alc
alc
aaa
@@ -143251,53 +140753,53 @@ aaa
aaa
aaa
aaa
-aZP
-aZN
-aZr
-bce
-bcS
-bcS
-beD
-bfp
-bgy
-bhs
-bif
-biQ
-bjP
-bkL
-blL
-bnc
-boh
-bpD
-bqT
-bsA
-bsA
-bsA
-bsA
-bsA
-bvD
-bzZ
-bBp
-bBp
-bDv
-bED
-bFU
-bHx
-bJa
-bKf
-bLj
-bMP
-bLi
-cQY
-bQg
-beI
-aZN
-aZP
-aZP
-aZN
-aZN
-aZv
-aZv
+aZO
+aZM
+aZq
+bcd
+bcR
+bcR
+beC
+bfo
+bgx
+bhr
+bie
+biP
+bjO
+bkK
+blK
+bnb
+bog
+bpC
+bqS
+bsz
+bsz
+bsz
+bsz
+bsz
+bvC
+bzX
+bBn
+bBn
+bDr
+bEy
+bFP
+bHs
+bIV
+bJZ
+bLc
+bMH
+bLb
+cQi
+bPS
+beH
+aZM
+aZO
+aZO
+aZM
+aZM
+aZu
+aZu
aaa
aaa
aaa
@@ -143313,43 +140815,43 @@ aaa
aaa
aaa
aaa
-ccH
-ccH
-ccH
-cde
-cde
-cdq
-cdq
-cdH
-cSh
-cdG
-cdG
-ctU
-cdG
-cdG
-ceY
-cdU
-cdU
-cgv
-cSq
-chI
-cgv
-cgw
-cdU
-cgv
-cgv
-cdU
-cdU
-cdU
-cdU
-cdU
-cqq
-cqK
-coK
-csJ
-ctt
-ccG
-ccG
+cbV
+cbV
+cbV
+ccs
+ccs
+ccE
+ccE
+ccV
+cRr
+ccU
+ccU
+cth
+ccU
+ccU
+cem
+cdi
+cdi
+cfJ
+cRA
+cgW
+cfJ
+cfK
+cdi
+cfJ
+cfJ
+cdi
+cdi
+cdi
+cdi
+cdi
+cpD
+cpX
+cnX
+crW
+csG
+cbU
+cbU
aaa
aaa
aaa
@@ -143443,8 +140945,8 @@ aaa
aaa
aaa
aaa
-cFd
-ajM
+aiT
+dkm
akA
ald
alO
@@ -143453,108 +140955,108 @@ ant
aow
apq
apq
-ara
-ara
-cGU
-ara
-avk
+aqZ
+aqZ
+cGh
+aqZ
+avj
apq
apq
-ayM
-aAd
-aBp
-cLZ
-aDD
-cMj
-cMp
-cMv
-cMC
-cMK
-cMh
-afH
-aep
-afH
-aKq
-aPL
-aQA
-aRI
-aOj
-aTq
-ahd
-ahd
+ayL
+aAc
+aBo
+cLj
+aDC
+cLt
+cLz
+cLF
+cLM
+cLU
+cLr
+dfa
+deS
+dfa
+dgK
+aPK
+aQz
+aRH
+dhn
+aTp
+dfX
+dfX
aoU
-afH
-aep
-aKq
-aMl
-aMl
-aWE
-aKq
-aKq
-aKq
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+dfN
+dgv
+dgK
+dhT
+dhT
+aWD
+dgK
+dgK
+dgK
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
-aZr
-aZr
-aZr
-bcf
-bcT
-bcT
-beE
-aZr
-bgx
-bhq
-bid
-biQ
-bjQ
-bkM
-blM
-bnd
-boi
-bpE
-bqU
-bpN
-bpN
-bpN
-bwM
-bpN
-bpN
-bAa
-bsA
-bsA
-bsA
-bEE
-bsA
-bHy
-bJb
-bKg
-bLk
-bMQ
-bLi
-cRy
-cRD
-beG
-aZP
-aZP
-aZP
-aZN
-aZN
-aZN
-aZN
+aZq
+aZq
+aZq
+bce
+bcS
+bcS
+beD
+aZq
+bgw
+bhp
+bic
+biP
+bjP
+bkL
+blL
+bnc
+boh
+bpD
+bqT
+bpM
+bpM
+bpM
+bwL
+bpM
+bpM
+bzY
+bsz
+bsz
+bsz
+bEz
+bsz
+bHt
+bIW
+bKa
+bLd
+bMI
+bLb
+cQI
+cQN
+beF
+aZO
+aZO
+aZO
+aZM
+aZM
+aZM
+aZM
aaa
aaa
aaa
@@ -143570,42 +141072,42 @@ aaa
aaa
aaa
aaa
-ccH
-ccH
-ccH
-cde
-cde
-cdq
-cdq
-cdq
-cdU
-cdU
-cdq
-cdq
-cdU
-cgw
-cdU
-cdU
-cdU
-cdU
-cgv
-chP
-chK
-cgv
-cSy
-cSB
-cgv
-cSK
-cgv
-cgw
-cgw
-cpc
-cmR
-cqL
-coK
-csJ
-ctt
-ccG
+cbV
+cbV
+cbV
+ccs
+ccs
+ccE
+ccE
+ccE
+cdi
+cdi
+ccE
+ccE
+cdi
+cfK
+cdi
+cdi
+cdi
+cdi
+cfJ
+chd
+cgY
+cfJ
+cRI
+cRL
+cfJ
+cRU
+cfJ
+cfK
+cfK
+cop
+cmf
+cpY
+cnX
+crW
+csG
+cbU
aaa
aaa
aaa
@@ -143710,108 +141212,108 @@ anu
aox
aox
aox
-arb
-arb
+ara
+ara
aox
-arb
-avl
+ara
+avk
aov
aov
aov
aov
-aBp
+aBo
aov
-aDD
-cMk
-cMp
-cMw
-cMD
-cML
+aDC
+cLu
+cLz
+cLG
+cLN
+cLV
any
any
any
any
any
-aPK
-aQk
-aRG
-akn
-akW
-aqh
-anZ
+aPJ
+dhe
+aRF
+dho
+dhu
+dfY
+dfW
afw
-afH
-aep
-aKq
-aVX
-aWp
-aWp
-aWL
-aWT
+dfN
+dgv
+dgK
+aVW
+aWo
+aWo
+aWK
+aWS
+aWV
aWW
-aWX
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aYQ
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aqU
+aYP
+aZp
+aZp
+bap
+baT
+bap
+bcf
+bcL
+bcL
+beE
aZq
-aZq
-baq
-baU
-baq
-bcg
-bcM
-bcM
-beF
-aZr
-bgz
-bht
-bih
-biQ
-biQ
-biQ
-biQ
-biQ
-boj
-bpF
-bqV
-bof
-btS
-btS
-bof
-btS
-bof
-btS
-btS
-bof
-bDw
-bEF
-bFV
-bFV
-bFV
-bKh
-bLk
-bMR
-bLi
-bNS
-bQh
-beJ
-aZP
-aZP
-aZP
-aZN
-aZN
-aZN
+bgy
+bhs
+big
+biP
+biP
+biP
+biP
+biP
+boi
+bpE
+bqU
+boe
+btR
+btR
+boe
+btR
+boe
+btR
+btR
+boe
+bDs
+bEA
+bFQ
+bFQ
+bFQ
+bKb
+bLd
+bMJ
+bLb
+bNI
+bPT
+beI
aZO
+aZO
+aZO
+aZM
+aZM
+aZM
+aZN
abC
abC
abC
@@ -143827,42 +141329,42 @@ abC
abC
abC
abC
-ccI
-ccG
-ccH
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cdq
-cdq
-cgv
-cfV
-cgu
-cgu
-cjI
-cgu
-cSG
-cgu
-cSk
-cjC
-cox
-cpd
-cle
-cqK
-crR
-csK
-ctt
-ccG
+cbW
+cbU
+cbV
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccE
+ccE
+cfJ
+cfj
+cfI
+cfI
+ciW
+cfI
+cRQ
+cfI
+cRu
+ciQ
+cnK
+coq
+cks
+cpX
+cre
+crX
+csG
+cbU
aaa
aaa
aaa
@@ -143889,11 +141391,11 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -143966,109 +141468,109 @@ amN
aiV
aov
aov
-aqp
-arc
-arX
-asZ
-asc
-avm
-awv
+aqo
+arb
+arW
+asY
+asb
+avl
+awu
aox
aox
aox
-aBq
-ayQ
-cMg
-cMl
-cMq
-cMx
-cME
-cMM
+aBp
+ayP
+cLq
+cLv
+cLA
+cLH
+cLO
+cLW
any
-aLt
-aMq
-aNv
-aOk
-aPM
-aQB
-aRG
-aKq
-aKq
-aKq
-aKq
-aKq
-aKq
-aKq
-aKq
-aVY
-cFI
-aKq
-aKq
-aKq
-aKq
-aWY
-aXa
-aXa
-aXa
-cXe
-aXa
-aXa
-aXa
-aXa
-cXe
-aXa
-aXa
-aXa
-aYR
-aZr
-aZr
-aZr
-aZr
-aZr
-aZr
-aZr
-aZr
-cFS
-aZr
-bgA
-bhq
-bii
-biQ
-bjR
-bkN
-blN
-bne
-bok
-bpG
-bqW
-cGd
-btT
-bvG
-bwN
-bxV
-byX
-bvG
-bBq
-btR
-bsA
-bEE
-bFV
-bHz
-bJc
-cHq
-bLl
-bMS
-bLi
-cQY
-cRD
-beG
-beG
-aZP
-aZP
-aZN
-aZN
-aZN
-aZN
+aLs
+aMp
+aNu
+aOj
+aPL
+aQA
+aRF
+dgK
+dgK
+dgK
+dgK
+dgK
+dgK
+dgK
+dgK
+aVX
+cEV
+dgK
+dgK
+dgK
+dgK
+aWX
+aWZ
+aWZ
+aWZ
+cWo
+aWZ
+aWZ
+aWZ
+aWZ
+cWo
+aWZ
+aWZ
+aWZ
+aYQ
+aZq
+aZq
+aZq
+aZq
+aZq
+aZq
+aZq
+aZq
+cFf
+aZq
+bgz
+bhp
+bih
+biP
+bjQ
+bkM
+blM
+bnd
+boj
+bpF
+bqV
+cFq
+btS
+bvF
+bwM
+bxU
+byW
+bvF
+bBo
+btQ
+bsz
+bEz
+bFQ
+bHu
+bIX
+cGD
+bLe
+bMK
+bLb
+cQi
+cQN
+beF
+beF
+aZO
+aZO
+aZM
+aZM
+aZM
+aZM
aaa
aaa
aaa
@@ -144084,57 +141586,57 @@ aaa
aaa
aaa
aaa
-ccG
-ccG
-ccH
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-ccH
-cde
-cde
-cde
-cde
-cde
-cdq
-cdq
-cgv
-chQ
-cgZ
-cdG
-chM
-cdT
-cdG
-ctU
-cSh
-cDT
-cDD
-cSL
-cle
-cqK
-coK
-csL
-cmR
-ccG
-ccG
+cbU
+cbU
+cbV
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+cbV
+ccs
+ccs
+ccs
+ccs
+ccs
+ccE
+ccE
+cfJ
+che
+cgn
+ccU
+cha
+cdh
+ccU
+cth
+cRr
+cDg
+cCQ
+cRV
+cks
+cpX
+cnX
+crY
+cmf
+cbU
+cbU
aaa
aaa
-cmR
-cva
-cva
-cmR
+cmf
+cun
+cun
+cmf
aaa
aaa
aaa
aaa
-cmR
-cva
-cva
-cmR
+cmf
+cun
+cun
+cmf
aaa
aaa
aaa
@@ -144146,11 +141648,11 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -144224,108 +141726,108 @@ aiV
aov
aov
aoz
-ard
-arY
+arc
+arg
any
-aud
-avn
+arg
+avm
aoz
aov
aov
-aAe
+aAd
any
-aCn
-aDD
+aCm
+aDC
any
any
any
any
any
any
-aLu
+aLt
aov
aov
-aBp
-aPN
-aQk
-aRJ
-aSl
-aTr
-aSl
-aSl
-aUM
-cYY
-aVt
-cNd
-aVZ
-aSl
-aSl
-aWM
-aWU
-cIY
-cIZ
-cIZ
-cIZ
-cIZ
-cXf
-aXt
-aXt
-aXt
-aXt
-cXn
-aXt
-aXt
-aXt
-aXt
-cJe
-aZQ
-cJj
-baV
-cJj
-cJj
-cJj
-bdH
-cJj
-cJj
-bgB
-cXp
-bid
-biQ
-bjP
-bkL
-blL
-bnf
-boh
-bpD
-bqX
-bsD
-btU
-bvH
-bwO
-bxW
-byY
-bAb
-bBr
-bCo
-bBk
-bEE
-bFV
-bHA
-bJd
-bJd
-bLk
-bMT
-bLi
-cQY
-bQi
-bJo
-beJ
+aBo
+aPM
+dhe
+aRI
+aSk
+aTq
+aSk
+aSk
+aUL
+cYi
+aVs
+cMn
+aVY
+aSk
+aSk
+aWL
+aWT
+cIl
+cIm
+cIm
+cIm
+cIm
+cWp
+aXs
+aXs
+aXs
+aXs
+cWx
+aXs
+aXs
+aXs
+aXs
+cIr
aZP
-aZP
-aZN
-aZN
-aZP
-aZN
+cIw
+baU
+cIw
+cIw
+cIw
+bdG
+cIw
+cIw
+bgA
+cWz
+bic
+biP
+bjO
+bkK
+blK
+bne
+bog
+bpC
+bqW
+bsC
+btT
+bvG
+bwN
+bxV
+byX
+bzZ
+bBp
+bCl
+bBi
+bEz
+bFQ
+bHv
+bIY
+bIY
+bLd
+bML
+bLb
+cQi
+bPU
+bJj
+beI
+aZO
+aZO
+aZM
+aZM
+aZO
+aZM
aaa
aaa
aaa
@@ -144341,57 +141843,57 @@ aaa
aaa
aaa
aaa
-ccG
-ccG
-ccH
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-ccH
-ccH
-ccH
-ccH
-cdq
-cdq
-cdq
-cdU
-cgv
-cSx
-cjJ
-cgZ
-cdU
-cgw
-cdU
-cgv
-cdU
-ceF
-ceF
-cHG
-crS
-csM
-cmR
-ccG
-ccG
-ccG
+cbU
+cbU
+cbV
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+cbV
+cbV
+cbV
+cbV
+ccE
+ccE
+ccE
+cdi
+cfJ
+cRH
+ciX
+cgn
+cdi
+cfK
+cdi
+cfJ
+cdi
+cdT
+cdT
+cGT
+crf
+crZ
+cmf
+cbU
+cbU
+cbU
aaa
-ctt
-cvb
-cvb
-ctt
+csG
+cuo
+cuo
+csG
aaa
aaa
aaa
aaa
-ctt
-cvb
-cvb
-ctt
+csG
+cuo
+cuo
+csG
aaa
aaa
aaa
@@ -144403,11 +141905,11 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -144481,108 +141983,108 @@ aiV
aov
aov
aoz
-are
-ari
+ard
+arh
aoz
-ari
-are
+arh
+ard
aoz
-axk
-ayN
-aAf
+axj
+ayM
+aAe
any
-aCo
-aDE
+aCn
+aDD
+aBn
+aGs
+aHq
+aIx
+aJw
+aKv
+aLu
+aov
+aov
aBo
-aGt
-aHr
-aIy
-aJx
-aKw
-aLv
-aov
-aov
-aBp
-aPN
-aQC
-aRK
-aQk
-aTs
-aQk
-aQk
-aUN
-aQk
-aSw
-aQk
-aQk
-aQk
-aQk
-aWN
-aQk
-aQw
-cXa
-cXa
-cXa
-cXa
-cXa
-cXa
-cYO
-cXa
-cXa
-cXa
-cXa
-cXa
-cXa
-cXa
-aZt
-aZR
-bas
-aZR
-aZR
-aZR
-aZR
-bdI
-aZR
-aZR
-bgC
-cFZ
-bid
-biQ
-bjQ
-bkM
-blM
-bng
-boi
-bpE
-bqY
-bsE
-btV
-bvI
-bwP
-bwP
-bwP
-bAc
-bBs
-bCp
-bDx
-bEG
-bFV
-bHB
-bJd
-bJd
-bLk
-bMU
-bLi
-bOZ
-bQj
-bRh
-beI
-aZP
-aZP
-aZN
-aZP
-aZP
-aZP
+aPM
+aQB
+aRJ
+dhe
+aTr
+dhe
+dhe
+aUM
+dhe
+dhO
+dhe
+dhe
+dhe
+dhe
+aWM
+dhe
+dhd
+cWk
+cWk
+cWk
+cWk
+cWk
+cWk
+cXY
+cWk
+cWk
+cWk
+cWk
+cWk
+cWk
+cWk
+aZs
+aZQ
+bar
+aZQ
+aZQ
+aZQ
+aZQ
+bdH
+aZQ
+aZQ
+bgB
+cFm
+bic
+biP
+bjP
+bkL
+blL
+bnf
+boh
+bpD
+bqX
+bsD
+btU
+bvH
+bwO
+bwO
+bwO
+bAa
+bBq
+bCm
+bDt
+bEB
+bFQ
+bHw
+bIY
+bIY
+bLd
+bMM
+bLb
+bOO
+bPV
+bQS
+beH
+aZO
+aZO
+aZM
+aZO
+aZO
+aZO
aaa
aaa
aaa
@@ -144598,57 +142100,57 @@ aaa
aaa
aaa
aaa
-ccH
-ccH
-ccH
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-ccH
-ceF
-ceF
-ceF
-ceF
-ceF
-ceF
-ceF
-ceG
-ceF
-ceF
-ceF
-ceF
-ceF
-ceF
-ceG
-ceF
-ceF
-cpZ
-cqQ
-crT
-csN
-cGJ
-ctt
-ctt
-ctt
-ctt
-cmR
-cvc
-cvc
-cmR
-ctt
-ctt
-ctt
-ctt
-cmR
-cvc
-cvc
-cmR
+cbV
+cbV
+cbV
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+cbV
+cdT
+cdT
+cdT
+cdT
+cdT
+cdT
+cdT
+cdU
+cdT
+cdT
+cdT
+cdT
+cdT
+cdT
+cdU
+cdT
+cdT
+cpm
+cqd
+crg
+csa
+cFW
+csG
+csG
+csG
+csG
+cmf
+cup
+cup
+cmf
+csG
+csG
+csG
+csG
+cmf
+cup
+cup
+cmf
aaa
aaa
aaa
@@ -144660,11 +142162,11 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -144738,108 +142240,108 @@ any
aoz
aoz
aoz
-ard
-arZ
+arc
+asa
aoz
-aue
-avn
+asa
+avm
aoz
aoz
aoz
aoz
any
-aCp
-aDF
-aEY
-aGu
-aHs
+aCo
+aDE
+aEX
+aGt
+aHr
aov
-aDD
+aDC
aoz
-aLw
+aLv
aov
aov
-aOl
-aPO
-aQD
-aRL
-aSm
-aTt
-aTQ
-aUm
-aUO
-aVi
-aVu
-aVF
-aPy
-aWq
-aPy
-aPy
-aPy
-aPC
-cXa
-cXa
-cXa
-cXa
-cXg
-cXa
-cXa
-cXa
-cXa
-cXg
-cXa
-cXa
-cXa
-cXa
-aZu
-aZS
-bat
-baW
-bbB
-bbB
-bcU
-bdJ
-bbB
-bbB
-bgD
-baW
+aOk
+aPN
+aQC
+aRK
+aSl
+aTs
+aTP
+aUl
+aUN
+aVh
+aVt
+aVE
+dhU
+aWp
+dhU
+dhU
+dhU
+dia
+cWk
+cWk
+cWk
+cWk
+cWq
+cWk
+cWk
+cWk
+cWk
+cWq
+cWk
+cWk
+cWk
+cWk
+aZt
+aZR
+bas
+baV
+bbA
+bbA
+bcT
+bdI
+bbA
+bbA
+bgC
+baV
+bii
bij
-bik
-bik
-bik
-bik
-bik
-bik
-bpH
-bqZ
-bof
-btW
-bvJ
-bwQ
-bxX
-byZ
-btW
-bvJ
-bof
-bDy
-bEE
-bFV
-bHC
-bJd
-bKi
-bLm
-bJe
-bNU
-bPa
-bQk
-bGf
-beI
-aZP
-aZP
-aZN
-aZP
-aZP
-aZP
+bij
+bij
+bij
+bij
+bij
+bpG
+bqY
+boe
+btV
+bvI
+bwP
+bxW
+byY
+btV
+bvI
+boe
+bDu
+bEz
+bFQ
+bHx
+bIY
+bKc
+bLf
+bIZ
+bNK
+bOP
+bPW
+bGa
+beH
+aZO
+aZO
+aZM
+aZO
+aZO
+aZO
aaa
aaa
aaa
@@ -144855,57 +142357,57 @@ aaa
aaa
aaa
aaa
-ccH
-ccH
-ccH
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-ccH
-ceG
-ceZ
-cfy
-cfy
-cgz
-cff
-chR
-cHB
-cjc
-civ
-cku
-cGB
-civ
-cHB
-civ
-coy
-chT
-chT
-cqR
-coK
-csO
-ctv
-ctY
-ctY
-ctY
-ctY
-cwS
-ctY
-ctY
-czm
-czY
-ctV
-ctV
-ctV
-ctV
-cBL
-cCd
-ctt
+cbV
+cbV
+cbV
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+cbV
+cdU
+cen
+ceM
+ceM
+cfN
+cet
+chf
+cGO
+ciq
+chJ
+cjI
+cFO
+chJ
+cGO
+chJ
+cnL
+chh
+chh
+cqe
+cnX
+csb
+csI
+ctl
+ctl
+ctl
+ctl
+cwf
+ctl
+ctl
+cyz
+czl
+cti
+cti
+cti
+cti
+cAY
+cBq
+csG
aaa
aaa
aaa
@@ -144917,11 +142419,11 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -144991,113 +142493,113 @@ aaa
aaa
aaa
abC
-aqV
+aqU
aoA
aoA
aoA
+are
+arf
+aoA
arf
-asa
-aoA
-auf
-avo
+avn
aoA
aoA
aoA
aaa
any
-aCq
-aDG
-aEZ
-aGv
+aCp
+aDF
+aEY
+aGu
aov
aov
-aJy
-aKx
-aLx
+aJx
+aKw
+aLw
aov
aov
-aOl
-aOl
-aQE
-aRM
-aSn
+aOk
+aOk
+aQD
+aRL
+aSm
any
-aKq
-aKq
-aUP
-aOv
-aOc
-aKq
-aKq
-aKq
-aKq
-aKq
-aKq
-aKq
-aWZ
-aWZ
-aWZ
-aWZ
-cXh
-aWZ
-aWZ
-aWZ
-aWZ
-cXh
-aWZ
-aWZ
-aWZ
-aWZ
-aZr
-aZr
-aZr
-aZr
-aZr
-bch
-aZr
-aZr
-aZr
-bfq
-bgE
-aZr
-bik
-biR
+dgK
+dgK
+aUO
+aOu
+dgL
+dgK
+dgK
+dgK
+dgK
+dgK
+dgK
+dgK
+aWY
+aWY
+aWY
+aWY
+cWr
+aWY
+aWY
+aWY
+aWY
+cWr
+aWY
+aWY
+aWY
+aWY
+aZq
+aZq
+aZq
+aZq
+aZq
+bcg
+aZq
+aZq
+aZq
+bfp
+bgD
+aZq
+bij
+biQ
+bjR
bjS
-bjT
-bjT
-bnh
-bik
-bpI
-bqV
-bof
-btS
-btS
-bof
-btS
-bof
-btS
-btS
-bof
-bDz
-bEE
-bFW
-bHD
-cGk
-bKj
-bLn
-bMV
-bLi
-beH
-bQl
-bRi
-beJ
-aZN
-aZN
-aZN
-aZP
-aZP
-aZP
-aZN
+bjS
+bng
+bij
+bpH
+bqU
+boe
+btR
+btR
+boe
+btR
+boe
+btR
+btR
+boe
+bDv
+bEz
+bFR
+bHy
+cFx
+bKd
+bLg
+bMN
+bLb
+beG
+bPX
+bQT
+beI
+aZM
+aZM
+aZM
+aZO
+aZO
+aZO
+aZM
aaa
aaa
aaa
@@ -145112,59 +142614,59 @@ aaa
aaa
aaa
aaa
-ccG
-ccH
-ccH
-ccH
-ccH
-ccH
-cde
-cde
-cde
-cde
-cde
-cde
-ccH
-ceF
-cfa
-cfz
-cfZ
-cgA
-chi
-chS
-cfZ
-cjd
-cfZ
-cfZ
-cfZ
-cfZ
-cfZ
-cfZ
-cfZ
-cfZ
-cfZ
-cqS
-cGH
-csP
-cts
-ctW
-ctW
-ctW
-ctW
-cwT
-cxO
-ctW
-czg
-czZ
-cAH
-cAH
-cGN
-cBz
-cBP
-cCh
-ctt
-ccG
-ccG
+cbU
+cbV
+cbV
+cbV
+cbV
+cbV
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+cbV
+cdT
+ceo
+ceN
+cfn
+cfO
+cgw
+chg
+cfn
+cir
+cfn
+cfn
+cfn
+cfn
+cfn
+cfn
+cfn
+cfn
+cfn
+cqf
+cFU
+csc
+csF
+ctj
+ctj
+ctj
+ctj
+cwg
+cxb
+ctj
+cyt
+czm
+czU
+czU
+cGa
+cAM
+cBc
+cBu
+csG
+cbU
+cbU
aaa
aaa
aaa
@@ -145174,11 +142676,11 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -145248,45 +142750,45 @@ aaa
aaa
aaa
abC
-aqV
+aqU
aoA
apr
apr
apr
apr
-ata
+asZ
apr
apr
apr
-axl
+axk
aoA
-aAg
+aAf
aoz
-aCr
-aDH
-aBq
-aGw
+aCq
+aDG
+aBp
+aGv
aov
aov
-aJz
+aJy
aoz
-aLy
+aLx
aov
aov
aov
aov
-aQF
-ayS
-aSo
+aQE
+ayR
+aSn
any
alc
-afH
-aUQ
-cZa
-cZb
-cNe
-aWa
-afH
+dfN
+aUP
+cYk
+cYl
+cMo
+aVZ
+dfN
alc
alc
alc
@@ -145305,56 +142807,56 @@ aaa
abC
aaa
aaa
-aZv
-aZv
-aZN
-aZN
-aZP
-aZP
-aZP
-aZP
-beJ
-bfr
-bgF
-bhu
-bik
-biS
-bjT
-bkO
-bjT
-bni
-bol
-bpJ
-bra
-bsF
-btX
-btX
-bwR
-btX
-bza
-btX
-bBt
-bCq
-bDA
-bEH
-bFV
-bHE
-cGl
-bKk
-bLo
-bJd
-bLi
-beH
-bQm
-cRE
-beH
-aZN
-aZP
-aZP
-aZP
-aZN
-aZN
-aZv
+aZu
+aZu
+aZM
+aZM
+aZO
+aZO
+aZO
+aZO
+beI
+bfq
+bgE
+bht
+bij
+biR
+bjS
+bkN
+bjS
+bnh
+bok
+bpI
+bqZ
+bsE
+btW
+btW
+bwQ
+btW
+byZ
+btW
+bBr
+bCn
+bDw
+bEC
+bFQ
+bHz
+cFy
+bKe
+bLh
+bIY
+bLb
+beG
+bPY
+cQO
+beG
+aZM
+aZO
+aZO
+aZO
+aZM
+aZM
+aZu
aaa
aaa
aaa
@@ -145369,73 +142871,73 @@ aaa
aaa
aaa
aaa
-ccG
-ccH
-ccH
-ccH
-ccH
-ccH
-cde
-cde
-cde
-cde
-cde
-cde
-ccH
-ceF
-cfa
-cfA
-cfC
-cgB
-ceF
-chT
-cfC
-cfA
-cfC
-cfC
-cfC
-cfC
-cfC
-cfC
-cfC
-cgC
-chU
-cqr
-cqr
-csQ
-cqq
-cmR
-cmR
-cva
-cmR
-cmR
-cmR
-cmR
-cmR
-cva
-cmR
-cmR
-cmR
-cqq
-cBQ
-cCi
-cmR
-ccH
-ccG
-ccG
-ccG
+cbU
+cbV
+cbV
+cbV
+cbV
+cbV
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+cbV
+cdT
+ceo
+ceO
+ceQ
+cfP
+cdT
+chh
+ceQ
+ceO
+ceQ
+ceQ
+ceQ
+ceQ
+ceQ
+ceQ
+ceQ
+cfQ
+chi
+cpE
+cpE
+csd
+cpD
+cmf
+cmf
+cun
+cmf
+cmf
+cmf
+cmf
+cmf
+cun
+cmf
+cmf
+cmf
+cpD
+cBd
+cBv
+cmf
+cbV
+cbU
+cbU
+cbU
aaa
-ccH
+cbV
aaa
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -145505,7 +143007,7 @@ aaa
aaa
aaa
abC
-aqV
+aqU
aoA
apr
apr
@@ -145516,34 +143018,34 @@ apr
apr
apr
apr
-ayO
-aAh
+ayN
+aAg
aoz
-aCn
-aDI
+aCm
+aDH
any
-aGx
-aHt
-ayQ
-aJA
-aBq
-aLz
+aGw
+aHs
+ayP
+aJz
+aBp
+aLy
aox
aox
aox
aox
-aQG
-cII
-aSo
+aQF
+cHV
+aSn
any
alc
-afH
-aUR
-aLE
-ajW
-atz
-aWb
-afH
+dfN
+aUQ
+dhM
+dgw
+dhQ
+aWa
+dfN
alc
alc
alc
@@ -145562,56 +143064,56 @@ aaa
abC
aaa
aaa
-aZv
-aZv
-aZv
-aZN
-aZN
-aZN
-aZP
-aZP
-beI
-bft
-bgG
-brn
-bik
-biT
-bjU
-bkP
-blO
-bnj
-bom
-bpK
-bqT
-bpB
-bsA
-bsA
-bsA
-bsA
-bsA
-bsA
-bBu
-bCr
-bBi
-bsA
-cKY
-bFV
-bFV
-bFV
-bFV
-bLi
-bLi
+aZu
+aZu
+aZu
+aZM
+aZM
+aZM
+aZO
+aZO
beH
-cRD
-cQY
-beH
-aZN
-aZP
-aZP
-aZP
-aZN
-aZN
-aZv
+bfs
+bgF
+brm
+bij
+biS
+bjT
+bkO
+blN
+bni
+bol
+bpJ
+bqS
+bpA
+bsz
+bsz
+bsz
+bsz
+bsz
+bsz
+bBs
+bCo
+bBg
+bsz
+cKk
+bFQ
+bFQ
+bFQ
+bFQ
+bLb
+bLb
+beG
+cQN
+cQi
+beG
+aZM
+aZO
+aZO
+aZO
+aZM
+aZM
+aZu
aaa
aaa
aaa
@@ -145626,73 +143128,73 @@ aaa
aaa
aaa
aaa
-ccG
-ccH
-ccH
-ccH
-ccH
-cde
-cde
-cde
-cde
-cde
-cde
-cde
-ccH
-ceF
-cfb
-cfB
-cfC
-cgC
-chj
-chU
-chU
-chU
-chU
-chU
-chU
-chU
-cmA
-chU
-chU
-cpe
-ceF
-cmR
-cmR
-cmR
-cmR
-ccG
-ctt
-cvb
-ctt
-ccG
-ccG
-ccG
-ctt
-cvb
-ctt
-ccG
-ccH
-cmR
-cmR
-cCj
-cmR
-ccH
-ccH
-ccH
-ccG
-ccG
-ccH
+cbU
+cbV
+cbV
+cbV
+cbV
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+ccs
+cbV
+cdT
+cep
+ceP
+ceQ
+cfQ
+cgx
+chi
+chi
+chi
+chi
+chi
+chi
+chi
+clO
+chi
+chi
+cor
+cdT
+cmf
+cmf
+cmf
+cmf
+cbU
+csG
+cuo
+csG
+cbU
+cbU
+cbU
+csG
+cuo
+csG
+cbU
+cbV
+cmf
+cmf
+cBw
+cmf
+cbV
+cbV
+cbV
+cbU
+cbU
+cbV
aaa
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -145762,7 +143264,7 @@ aaa
aaa
aaa
abC
-aqV
+aqU
aoA
apr
apr
@@ -145773,102 +143275,102 @@ apr
apr
apr
apr
-ayO
-aAh
+ayN
+aAg
aoz
-aCn
-aDI
+aCm
+aDH
any
-aGy
-aCn
-aIz
-aJB
-aKy
-aLA
+aGx
+aCm
+aIy
+aJA
+aKx
+aLz
aov
aov
aov
aov
-aQF
+aQE
aoC
-aSo
+aSn
any
alc
-afH
-aLi
-aAU
-aVv
-aVG
-aEt
-afH
+dfN
+dhI
+dhN
+aVu
+aVF
+dhV
+dfN
alc
alc
alc
alc
-aWs
-aWs
-aWs
+aWr
+aWr
+aWr
aaa
-aWs
-aWs
-aWs
-aWs
+aWr
+aWr
+aWr
+aWr
aaa
-aWs
-aWs
-aWs
-aWs
-aWs
-aZv
-aZv
-aZv
-aZv
-aZN
-aZN
-aZN
-aZP
-beJ
-bfu
-bgG
-cOC
-bik
-biU
-bjT
-bkQ
-cHf
-bnk
-bik
-bpB
-bqU
-bpK
-btY
-bvK
-bwS
-bxY
-bwS
-bAd
-bBv
-bCs
-bsA
-bsA
-bDB
-bHF
-bJf
-bKl
-bLp
-bDE
-beH
-beH
-bQi
-bRj
+aWr
+aWr
+aWr
+aWr
+aWr
+aZu
+aZu
+aZu
+aZu
+aZM
+aZM
+aZM
+aZO
beI
-aZN
-aZP
-aZP
-aZP
-aZN
-aZN
-aZv
+bft
+bgF
+cNM
+bij
+biT
+bjS
+bkP
+cGs
+bnj
+bij
+bpA
+bqT
+bpJ
+btX
+bvJ
+bwR
+bxX
+bwR
+bAb
+bBt
+bCp
+bsz
+bsz
+bDx
+bHA
+bJa
+bKf
+bLi
+bDA
+beG
+beG
+bPU
+bQU
+beH
+aZM
+aZO
+aZO
+aZO
+aZM
+aZM
+aZu
aaa
aaa
aaa
@@ -145886,70 +143388,70 @@ aaa
aaa
aaa
aaa
-ccH
-ccH
-ccH
-ccH
-ccH
-ccH
-ccH
-cde
-cde
-ccH
-ceF
-cfc
-cfC
-cfC
-cgD
-ceF
-cfC
-cfC
-cfC
-cfC
-cfC
-cli
-cfC
-cmB
-cfC
-cfC
-cpf
-ceF
-ccH
-ccH
-ccH
-ccG
+cbV
+cbV
+cbV
+cbV
+cbV
+cbV
+cbV
+ccs
+ccs
+cbV
+cdT
+ceq
+ceQ
+ceQ
+cfR
+cdT
+ceQ
+ceQ
+ceQ
+ceQ
+ceQ
+ckw
+ceQ
+clP
+ceQ
+ceQ
+cos
+cdT
+cbV
+cbV
+cbV
+cbU
aaa
-cmR
-cvc
-cmR
-ccG
-ccG
+cmf
+cup
+cmf
+cbU
+cbU
aaa
-cmR
-cvc
-cmR
+cmf
+cup
+cmf
aaa
-ccH
-ccH
-cBR
-cCk
-cBR
-cBR
-ccH
-ccH
-ccG
-ccH
-ccH
+cbV
+cbV
+cBe
+cBx
+cBe
+cBe
+cbV
+cbV
+cbU
+cbV
+cbV
aaa
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -146019,7 +143521,7 @@ aaa
aaa
aaa
abC
-aqV
+aqU
aoA
apr
apr
@@ -146030,34 +143532,34 @@ apr
apr
apr
apr
-ayO
-aAh
+ayN
+aAg
aoz
-aCs
-aDJ
+aCr
+aDI
any
-aGz
-aCn
+aGy
+aCm
aov
-aJC
+aJB
aoz
-aLB
-aMr
-aNw
-aOm
-aPP
-aQH
-aRN
-aSp
+aLA
+aMq
+aNv
+aOl
+aPO
+aQG
+aRM
+aSo
any
alc
-afH
-afH
-afH
-akn
-afH
-afH
-afH
+dfN
+dfN
+dfN
+dho
+dfN
+dfN
+dfN
alc
alc
alc
@@ -146078,54 +143580,54 @@ aaa
aaa
aaa
aaa
-aZv
-aZv
-aZv
-aZN
-aZN
-aZN
-beH
-bfu
-bgG
-cOq
-bik
-biV
-bjV
-bjT
-blP
-bnl
-bik
-bpL
-brb
-bpB
-btZ
-cKV
-bvL
-bvL
-bvL
-bAe
-bBw
-bCt
-bDB
-bDB
-bDB
-bHG
-bJg
-bJg
-bLq
-bDE
-beH
-bPb
-bQi
-cRF
-beJ
-aZN
-aZP
-aZP
-aZP
-aZN
-aZN
-aZv
+aZu
+aZu
+aZu
+aZM
+aZM
+aZM
+beG
+bft
+bgF
+cNA
+bij
+biU
+bjU
+bjS
+blO
+bnk
+bij
+bpK
+bra
+bpA
+btY
+cKh
+bvK
+bvK
+bvK
+bAc
+bBu
+bCq
+bDx
+bDx
+bDx
+bHB
+bJb
+bJb
+bLj
+bDA
+beG
+bOQ
+bPU
+cQP
+beI
+aZM
+aZO
+aZO
+aZO
+aZM
+aZM
+aZu
aaa
aaa
aaa
@@ -146143,70 +143645,70 @@ aaa
aaa
aaa
aaa
-ccH
-ccH
-ccH
-ccH
-ccH
-ccH
-ccH
-cde
-cde
-ccH
-ceF
-cfd
-cfC
-cga
-cgE
-cff
-cfC
-cfC
-cfC
-cfC
-cfC
-cfC
-cfC
-cfC
-cfC
-cfC
-cfC
-ceF
-ccH
-ccH
-ccG
-ccG
+cbV
+cbV
+cbV
+cbV
+cbV
+cbV
+cbV
+ccs
+ccs
+cbV
+cdT
+cer
+ceQ
+cfo
+cfS
+cet
+ceQ
+ceQ
+ceQ
+ceQ
+ceQ
+ceQ
+ceQ
+ceQ
+ceQ
+ceQ
+ceQ
+cdT
+cbV
+cbV
+cbU
+cbU
aaa
aaa
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
-ccH
-cBR
-cCl
-cCu
-cBR
-cBR
-cDd
-cDd
-cmR
+cbV
+cBe
+cBy
+cBH
+cBe
+cBe
+cCq
+cCq
+cmf
aaa
aaa
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -146276,7 +143778,7 @@ aaa
aaa
aaa
abC
-aqV
+aqU
aoA
apr
apr
@@ -146286,33 +143788,33 @@ apr
apr
apr
apr
-axl
+axk
aoA
-aAi
+aAh
aoz
-aCn
-aDI
+aCm
+aDH
any
-aGA
-aCn
-aIA
-aJD
+aGz
+aCm
+aIz
+aJC
any
any
any
any
-aOn
+aOm
any
-aQI
-auE
+aQH
+dhk
any
any
alc
amI
-afH
-ajW
-cZc
-afE
+dfN
+dgw
+cYm
+dfO
alc
alc
alc
@@ -146337,52 +143839,52 @@ abC
abC
abC
abC
-aZO
-aZN
-aZN
aZN
+aZM
+aZM
+aZM
+beH
+cNm
+bgF
+bfr
+bij
+biV
+biV
+biV
+biV
+biV
+bij
+bpA
+bqX
+bpA
+btZ
+bvK
+bwS
+bxY
+bza
+bAd
+bBv
+bCr
+bDy
+bED
+bFS
+bHC
+bJc
+bKg
+bLk
+bDA
+bNL
+cQi
+cQN
+cQH
beI
-cOc
-bgG
-bfs
-bik
-biW
-biW
-biW
-biW
-biW
-bik
-bpB
-bqY
-bpB
-bua
-bvL
-bwT
-bxZ
-bzb
-bAf
-bBx
-bCu
-bDC
-bEI
-bFX
-bHH
-bJh
-bKm
-bLr
-bDE
-bNV
-cQY
-cRD
-cRx
-beJ
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
aaa
aaa
aaa
@@ -146400,37 +143902,37 @@ aaa
aaa
aaa
aaa
-ccH
-ccH
-ccH
-ccG
-ccG
-ccH
-ccH
-ccH
-ccH
-ccH
-ceG
-cfe
-cfD
-cfD
-cgF
-cff
-cfC
-ciw
-cfC
-cfC
-cfC
-clj
-cfC
-cfC
-cfC
-ciw
-cGE
-ceF
-ccH
-ccH
-ccG
+cbV
+cbV
+cbV
+cbU
+cbU
+cbV
+cbV
+cbV
+cbV
+cbV
+cdU
+ces
+ceR
+ceR
+cfT
+cet
+ceQ
+chK
+ceQ
+ceQ
+ceQ
+ckx
+ceQ
+ceQ
+ceQ
+chK
+cFR
+cdT
+cbV
+cbV
+cbU
aaa
aaa
aaa
@@ -146438,32 +143940,32 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
-ccH
-cBR
-cCm
-cCv
-cCH
-cCH
-cDe
-cDp
-cDd
+cbV
+cBe
+cBz
+cBI
+cBU
+cBU
+cCr
+cCC
+cCq
aaa
aaa
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -146533,43 +144035,43 @@ aaa
aaa
aaa
abC
-aqV
+aqU
aoA
aoA
aoA
-arg
-arg
+arf
+arf
aoA
-aug
-arg
+auf
+arf
aoA
aoA
aoA
aaa
any
-aCq
-aDI
+aCp
+aDH
any
-aGB
-aCn
+aGA
+aCm
aov
-cMN
+cLX
any
-aep
-aep
-adP
-afH
-ajW
-aQJ
-cIJ
-cMa
-afE
+dgv
+dgv
+dfM
+dfN
+dgw
+aQI
+cHW
+cLk
+dfO
alc
alc
-afE
-ajW
-aVI
-afH
+dfO
+dgw
+aVH
+dfN
amI
amI
amI
@@ -146595,51 +144097,51 @@ aaa
aaa
aaa
aaa
-aZN
-aZN
-aZN
+aZM
+aZM
+aZM
+beG
+bft
+bgG
+bhv
+bij
+biW
+biW
+biW
+biW
+bnl
+bok
+bpL
+bqX
+bsF
+bua
+bvK
+bwT
+cPu
+bxZ
+bAe
+bBw
+bCs
+bDz
+bEE
+bFT
+bHD
+bJd
+bKh
+bLl
+bMO
+bNM
+bOR
+bPZ
+cQi
beH
-bfu
-bgH
-bhw
-bik
-biX
-biX
-biX
-biX
-bnm
-bol
-bpM
-bqY
-bsG
-bub
-bvL
-bwU
-cQk
-bya
-bAg
-bBy
-bCv
-bDD
-bEJ
-bFY
-bHI
-bJi
-bKn
-bLs
-bMW
-bNW
-bPc
-bQn
-cQY
-beI
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
aaa
aaa
aaa
@@ -146657,37 +144159,37 @@ aaa
aaa
aaa
aaa
-ccH
-ccH
-ccH
-ccG
-ccG
-ccG
-ccH
-ccH
-ccH
-ccH
-ceF
-cff
-cff
-ceF
-cgG
-ceF
-chV
-cGz
-cff
-cff
-cff
-ceF
-chV
-cGz
-chV
-ceF
-ceF
-ceF
-ccH
-ccH
-ccG
+cbV
+cbV
+cbV
+cbU
+cbU
+cbU
+cbV
+cbV
+cbV
+cbV
+cdT
+cet
+cet
+cdT
+cfU
+cdT
+chj
+cFM
+cet
+cet
+cet
+cdT
+chj
+cFM
+chj
+cdT
+cdT
+cdT
+cbV
+cbV
+cbU
aaa
aaa
aaa
@@ -146695,32 +144197,32 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
-ccG
-ccH
-cBR
-cCw
-cCI
-cBR
-cDd
-cDq
-cDd
+cbU
+cbV
+cBe
+cBJ
+cBV
+cBe
+cCq
+cCD
+cCq
aaa
aaa
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aad
aaa
aaa
@@ -146785,7 +144287,7 @@ aaa
aaa
aaa
aaa
-cUc
+cTm
aaa
akx
akx
@@ -146794,39 +144296,39 @@ any
aoz
aoz
aoz
-arh
-asb
+arg
+asa
aoz
-asb
-arh
+asa
+arg
aoz
aoz
aoz
aoz
any
-aCp
-aDI
+aCo
+aDH
any
-aGC
-aCn
+aGB
+aCm
aov
-aJE
+aJD
any
-aep
-aep
-adP
-afE
-cLC
-cLJ
-aiA
-afE
-afH
+dgv
+dgv
+dfM
+dfO
+dgU
+dgX
+dhl
+dfO
+dfN
amI
-aep
-afH
-ajW
-afH
-aep
+dgv
+dfN
+dgw
+dfN
+dgv
amI
amI
alc
@@ -146842,7 +144344,7 @@ aaa
aaa
aaa
aaa
-cGc
+cFp
aaa
aaa
aaa
@@ -146852,51 +144354,51 @@ aaa
aaa
aaa
aaa
-aZN
-aZN
-aZP
-beH
-cOd
-bgG
-cOD
-bil
-biY
-bjW
-bjW
-blQ
-bjW
-bon
-bpN
-brc
-bsH
-buc
-bvL
-bwV
-cQl
-bzc
-byb
-cQx
-bCw
-bDE
-bEK
-bFZ
-bHJ
+aZM
+aZM
+aZO
+beG
+cNn
+bgF
+cNN
+bik
+biX
+bjV
+bjV
+blP
+bjV
+bom
+bpM
+brb
+bsG
+bub
+bvK
+bwU
+cPv
+bzb
+bya
+cPH
+bCt
+bDA
+bEF
+bFU
+bHE
+bJe
+bFU
+bLm
+cFA
+cQy
+bGa
+cQN
bJj
-bFZ
-bLt
-cGn
-cRo
-bGf
-cRD
-bJo
-beJ
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
+beI
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
aaa
aaa
aaa
@@ -146919,32 +144421,32 @@ aaa
aaa
aaa
aaa
-ccG
-ccH
-ccH
-ccH
-ccH
-ccG
-ccG
-ccG
-cgb
-cgH
-cgb
-cgH
-cgb
-ccG
-ccG
-ccG
-cgb
-cgH
-cgb
-cgH
-cgb
-ccG
-ccG
-ccH
-ccH
-ccG
+cbU
+cbV
+cbV
+cbV
+cbV
+cbU
+cbU
+cbU
+cfp
+cfV
+cfp
+cfV
+cfp
+cbU
+cbU
+cbU
+cfp
+cfV
+cfp
+cfV
+cfp
+cbU
+cbU
+cbV
+cbV
+cbU
aaa
aaa
aaa
@@ -146952,20 +144454,20 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
-ccG
-cBR
-cBR
-cBR
-cBR
+cbU
+cBe
+cBe
+cBe
+cBe
abC
-cDr
+cCE
abC
aaa
aaa
@@ -147042,47 +144544,47 @@ aaa
aaa
aaa
aaa
-cUd
-cUf
-cUf
-cUf
-cUf
+cTn
+cTp
+cTp
+cTp
+cTp
anw
aoy
aov
aoz
-ari
-ari
+arh
+arh
aoz
-ari
-ari
+arh
+arh
aoz
-axm
-ayP
-aAj
+axl
+ayO
+aAi
any
-aCo
-aDI
+aCn
+aDH
any
-aGD
-aHu
-aIB
-aJF
-aGD
-aep
-aep
-afE
-cLy
-cLD
-ajW
-ajW
-cLt
-afE
+aGC
+aHt
+aIA
+aJE
+aGC
+dgv
+dgv
+dfO
+dgN
+dgV
+dgw
+dgw
+dhp
+dfO
amI
-afH
-alv
-ajW
-afE
+dfN
+dhJ
+dgw
+dfO
amI
amI
amI
@@ -147109,51 +144611,51 @@ aaa
aaa
aaa
aaa
-aZN
-aZN
-aZP
-beG
-bfx
-bka
-bhx
-bik
-biZ
-bjX
-bkR
-blR
-biZ
-bik
-bpO
-brd
-bsI
-bud
-bvL
-bwW
-byc
-bzd
-bAh
-bBz
-bCx
-cGi
-bEL
-bGa
-bEL
-bJk
-bGa
-cLa
-bDE
-beH
-cRz
-bQh
-cQY
-beH
-aZN
-aZP
-aZP
-aZP
-aZP
-aZN
+aZM
+aZM
aZO
+beF
+bfw
+bjZ
+bhw
+bij
+biY
+bjW
+bkQ
+blQ
+biY
+bij
+bpN
+brc
+bsH
+buc
+bvK
+bwV
+byb
+bzc
+bAf
+bBx
+bCu
+cFv
+bEG
+bFV
+bEG
+bJf
+bFV
+cKm
+bDA
+beG
+cQJ
+bPT
+cQi
+beG
+aZM
+aZO
+aZO
+aZO
+aZO
+aZM
+aZN
abC
abC
abC
@@ -147176,31 +144678,31 @@ abC
abC
abC
abC
-ccI
-ccH
-ccH
-ccH
-ccG
-ccG
-ccG
-ccG
-cgb
-cgH
-cgb
-cgH
-cgb
-ccG
-ccG
-ccG
-cgb
-cgH
-cgb
-cgH
-cgb
-ccG
-ccG
-ccH
-ccH
+cbW
+cbV
+cbV
+cbV
+cbU
+cbU
+cbU
+cbU
+cfp
+cfV
+cfp
+cfV
+cfp
+cbU
+cbU
+cbU
+cfp
+cfV
+cfp
+cfV
+cfp
+cbU
+cbU
+cbV
+cbV
aaa
aaa
aaa
@@ -147209,20 +144711,20 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
-ccH
-ccH
-ccI
-ccH
+cbV
+cbV
+cbW
+cbV
aaa
abC
-cDr
+cCE
abC
abC
aaa
@@ -147299,7 +144801,7 @@ aaa
aaa
aaa
aaa
-cUe
+cTo
akx
akx
akx
@@ -147308,38 +144810,38 @@ anx
aoB
aov
aoz
-arh
-arh
+arg
+arg
aoz
-arh
-arh
+arg
+arg
aoz
aov
aov
-aAe
+aAd
any
-aCt
-aDI
-aFa
-aGE
-aHv
-aIC
-aJG
+aCs
+aDH
+aEZ
aGD
-aep
-aep
-aep
-cLv
-cLD
-aVI
-afE
-adP
-afE
-aep
-aep
-alv
-alv
-aep
+aHu
+aIB
+aJF
+aGC
+dgv
+dgv
+dgv
+dgO
+dgV
+aVH
+dfO
+dfM
+dfO
+dgv
+dgv
+dhJ
+dhJ
+dgv
amI
alc
alc
@@ -147366,52 +144868,52 @@ aaa
aaa
aaa
aaa
-aZN
-aZN
-aZP
-beG
-bfy
-bgI
-beI
-bik
-bik
-bik
-cPy
-blS
-cPy
-cPy
-bpP
-bim
-bsJ
-bue
-bvM
-cQf
-biP
-biO
-biO
-cQy
-biO
-bDE
-bEM
-bGb
-bEM
-bEM
-bEM
-bEM
-bDE
+aZM
+aZM
+aZO
+beF
+bfx
+bgH
beH
-bGf
-cRD
-bRj
-beI
-aZN
-aZP
-aZP
-aZP
-aZP
-aZN
-aZN
-aZN
+bij
+bij
+bij
+cOI
+blR
+cOI
+cOI
+bpO
+bil
+bsI
+bud
+bvL
+cPp
+biO
+biN
+biN
+cPI
+biN
+bDA
+bEH
+bFW
+bEH
+bEH
+bEH
+bEH
+bDA
+beG
+bGa
+cQN
+bQU
+beH
+aZM
+aZO
+aZO
+aZO
+aZO
+aZM
+aZM
+aZM
aaa
aaa
aaa
@@ -147435,30 +144937,30 @@ aaa
aaa
aaa
aaa
-ccH
-ccG
-ccG
-ccG
+cbV
+cbU
+cbU
+cbU
aaa
aaa
-cgb
-cgH
-cgb
-cgH
-cgb
-ccG
-ccG
-ccG
-cgb
-cgH
-cgb
-cgH
-cgb
+cfp
+cfV
+cfp
+cfV
+cfp
+cbU
+cbU
+cbU
+cfp
+cfV
+cfp
+cfV
+cfp
aaa
aaa
-ccG
-ccG
-cGc
+cbU
+cbU
+cFp
aaa
aaa
aaa
@@ -147466,21 +144968,21 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
-ccG
+cbU
abC
aaa
aaa
abC
-cDs
-bXP
+cCF
+bXd
abC
aaa
aaa
@@ -147566,39 +145068,39 @@ aoC
aov
aov
aov
-asc
-atb
+asb
+ata
aox
aox
aox
aox
-ayQ
+ayP
aox
-aBq
-aCu
-aDI
-aFb
-aGE
-aHw
-aID
-aJH
+aBp
+aCt
+aDH
+aFa
aGD
-adP
-aep
-aep
-aoX
-cIF
-afH
-adP
-afE
-afH
-afE
-aUS
+aHv
+aIC
+aJG
+aGC
+dfM
+dgv
+dgv
+dfZ
+cHS
+dfN
+dfM
+dfO
+dfN
+dfO
+aUR
afw
-afH
-afE
-afE
-afH
+dfN
+dfO
+dfO
+dfN
alc
alc
alc
@@ -147624,51 +145126,51 @@ aaa
aaa
aaa
aaa
-aZN
-aZP
-beJ
-bfu
-bgG
+aZM
+aZO
beI
+bft
+bgF
beH
-beH
-beH
-bim
-blW
-bjY
-blW
-bim
-bre
-bsK
-buf
-bim
-bmX
-cQm
-bkI
-bAi
-cQz
-cQD
-bDE
-cKW
-bEM
-bEM
-cKW
-bGb
-cKW
-bDE
-beH
-bGf
-bQf
-bfs
-cRI
-aZN
-aZP
-aZP
-aZP
-aZP
-aZP
-aZP
-aZN
+beG
+beG
+beG
+bil
+blV
+bjX
+blV
+bil
+brd
+bsJ
+bue
+bil
+bmW
+cPw
+bkH
+bAg
+cPJ
+cPN
+bDA
+cKi
+bEH
+bEH
+cKi
+bFW
+cKi
+bDA
+beG
+bGa
+bPR
+bfr
+cQS
+aZM
+aZO
+aZO
+aZO
+aZO
+aZO
+aZO
+aZM
aaa
aaa
aaa
@@ -147694,40 +145196,40 @@ aaa
aaa
aaa
aaa
-ccG
+cbU
aaa
aaa
aaa
-cgb
-cgH
-cgb
-cgH
-cgb
-ccG
+cfp
+cfV
+cfp
+cfV
+cfp
+cbU
aaa
aaa
-cgb
-cgH
-cgb
-cgH
-cgb
+cfp
+cfV
+cfp
+cfV
+cfp
aaa
aaa
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -147737,7 +145239,7 @@ aaa
aaa
abC
abC
-cDr
+cCE
abC
aaa
aaa
@@ -147822,43 +145324,43 @@ any
aoD
aps
aps
-arj
-arj
-cGV
-arj
-arj
+ari
+ari
+cGi
+ari
+ari
aps
aps
-ayR
+ayQ
aps
-aBr
-aCv
-aDK
-aFc
-aGE
-aHx
-aID
-aJI
+aBq
+aCu
+aDJ
+aFb
aGD
-adP
-afH
-afH
-alw
-amp
-alx
-afH
-ajW
-ajW
-ajW
-ajX
-auB
-avO
-akW
-aNy
-afE
-afH
-afE
-afH
+aHw
+aIC
+aJH
+aGC
+dfM
+dfN
+dfN
+dgP
+dgW
+dgs
+dfN
+dgw
+dgw
+dgw
+dgn
+dhK
+avN
+dhu
+dhR
+dfO
+dfN
+dfO
+dfN
akx
akx
aaa
@@ -147880,51 +145382,51 @@ aaa
aaa
aaa
aaa
-aZN
-aZN
-aZP
+aZM
+aZM
+aZO
+beH
+bfr
+bgF
beI
-bfs
-bgG
-beJ
-beG
-beG
-beG
-bim
-cPF
-bjZ
-bjZ
-bim
-brf
-bop
-bns
-bim
-bmX
-bkI
-bkI
-bkI
-cQz
-cQE
-bDE
-cKX
-bEM
-bEM
-bEM
-bEM
-bEM
-bDE
-beG
-bLv
-bQf
-cRG
-beI
-aZN
-aZN
-aZP
-aZP
-aZP
-aZP
-aZP
+beF
+beF
+beF
+bil
+cOP
+bjY
+bjY
+bil
+bre
+boo
+bnr
+bil
+bmW
+bkH
+bkH
+bkH
+cPJ
+cPO
+bDA
+cKj
+bEH
+bEH
+bEH
+bEH
+bEH
+bDA
+beF
+bLo
+bPR
+cQQ
+beH
+aZM
+aZM
+aZO
+aZO
+aZO
+aZO
+aZO
aaa
aaa
aaa
@@ -147955,36 +145457,36 @@ aaa
aaa
aaa
aaa
-ceF
-cgG
-ceF
-chW
-ceF
+cdT
+cfU
+cdT
+chk
+cdT
aaa
aaa
aaa
-ceF
-chW
-ceF
-chW
-ceF
+cdT
+chk
+cdT
+chk
+cdT
aaa
aaa
aaa
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
aaa
aaa
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -147994,7 +145496,7 @@ aaa
aaa
aaa
abC
-cDr
+cCE
abC
aaa
aaa
@@ -148079,43 +145581,43 @@ any
aoE
aov
aov
-ark
-ark
+arj
+arj
aov
-ark
-ark
+arj
+arj
aov
-axn
-ayS
+axm
+ayR
aov
-aBp
+aBo
aov
-aDD
-aFd
-aGE
-aHx
-aID
-aJJ
+aDC
+aFc
aGD
-aGD
-aMs
-afE
-alx
-amp
-ajW
-aNA
-ajW
-ajW
-cLx
-ajW
+aHw
+aIC
+aJI
+aGC
+aGC
+aMr
+dfO
+dgs
+dgW
+dgw
+dhm
+dgw
+dgw
+dfP
+dgw
afb
-afH
-ajX
-ajW
-afE
-ajW
-ajW
-aiW
+dfN
+dgn
+dgw
+dfO
+dgw
+dgw
+dhZ
akx
akx
aaa
@@ -148136,52 +145638,52 @@ aaa
aaa
aaa
aaa
-aZN
-aZN
-aZN
-aZN
-beI
-bNX
-cOp
-beJ
-beJ
-beG
-beG
-bim
-cPG
-cPR
-cPV
-bim
-brg
-bop
-bns
-bim
-bmX
-cQm
-cQp
-cQm
-cQA
-cQm
-bDE
-bDE
-bEM
-cKZ
-bEM
-bEM
-bDE
-bDE
-bhv
-bMZ
-cRD
-bfu
-beI
+aZM
+aZM
+aZM
+aZM
beH
-aZN
-aZN
-aZN
-aZN
-aZP
-aZP
+bNN
+cNz
+beI
+beI
+beF
+beF
+bil
+cOQ
+cPb
+cPf
+bil
+brf
+boo
+bnr
+bil
+bmW
+cPw
+cPz
+cPw
+cPK
+cPw
+bDA
+bDA
+bEH
+cKl
+bEH
+bEH
+bDA
+bDA
+bhu
+bMR
+cQN
+bft
+beH
+beG
+aZM
+aZM
+aZM
+aZM
+aZO
+aZO
aaa
aaa
aaa
@@ -148200,48 +145702,48 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-ced
-ced
-ced
-ced
-ced
-ced
-cgI
-ced
-chX
-ced
-cGc
-cGc
-cGc
-ced
-clM
-ced
-clM
-ced
-cGc
-cGc
-ced
-ced
-cee
-cee
-cee
-cee
-cee
-ced
-ced
-ced
-ced
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cdr
+cdr
+cdr
+cdr
+cdr
+cdr
+cfW
+cdr
+chl
+cdr
+cFp
+cFp
+cFp
+cdr
+cla
+cdr
+cla
+cdr
+cFp
+cFp
+cdr
+cdr
+cds
+cds
+cds
+cds
+cds
+cdr
+cdr
+cdr
+cdr
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -148251,7 +145753,7 @@ aaa
aaa
aaa
abC
-cDr
+cCE
abC
aaa
aaa
@@ -148335,44 +145837,44 @@ alc
any
aoF
aoF
-aqq
-arl
-asd
-atc
-auh
-cLR
+aqp
+ark
+asc
+atb
+aug
+cLb
apq
-axo
-ayT
-aAk
-aBo
-aCw
-aDL
-aFe
-aGE
-aHy
-aIE
-aJK
-cId
-cIj
-cIn
-aNx
-cIz
-cLJ
-afE
-afH
-afH
-afH
-aep
-afE
-afH
-afE
-ajW
-aVH
-ajW
-ajW
-ajW
-aiW
+axn
+ayS
+aAj
+aBn
+aCv
+aDK
+aFd
+aGD
+aHx
+aID
+aJJ
+cHq
+cHw
+cHA
+aNw
+cHM
+dgX
+dfO
+dfN
+dfN
+dfN
+dgv
+dfO
+dfN
+dfO
+dgw
+aVG
+dgw
+dgw
+dgw
+dhZ
aaa
aaa
aaa
@@ -148394,51 +145896,51 @@ aaa
aaa
aaa
aaa
-aZN
-aZN
-aZN
-beJ
-bfs
-bgJ
-bhy
+aZM
+aZM
+aZM
beI
-beG
-beG
-bim
-cPH
-bjZ
-cPW
-bim
-brh
-bsL
-bug
-bim
-cQg
-bkI
-bkI
-bkI
-bkI
-bkI
-biO
-bDE
-bDE
-bDE
-bDE
-bDE
-bDE
-cRg
-bfu
-bLv
-bQf
-bfu
-bfu
-beJ
-beJ
+bfr
+bgI
+bhx
+beH
+beF
+beF
+bil
+cOR
+bjY
+cPg
+bil
+brg
+bsK
+buf
+bil
+cPq
+bkH
+bkH
+bkH
+bkH
+bkH
+biN
+bDA
+bDA
+bDA
+bDA
+bDA
+bDA
+cQq
+bft
+bLo
+bPR
+bft
+bft
beI
-beJ
-aZP
-aZN
-aZN
+beI
+beH
+beI
+aZO
+aZM
+aZM
aaa
aaa
aaa
@@ -148457,48 +145959,48 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-ced
-ced
-ced
-ced
-cfE
-dbf
-dbf
-cgc
-cgd
-ced
-dbb
-chk
-cee
-cee
-cee
-chk
-dbb
-dbN
-dbb
-chk
-ced
-ced
-chk
-dca
-dca
-dcm
-dcm
-dca
-dca
-ced
-dcG
-dcM
-chk
-ced
-ced
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cdr
+cdr
+cdr
+cdr
+ceS
+dap
+dap
+cfq
+cfr
+cdr
+dal
+cgy
+cds
+cds
+cds
+cgy
+dal
+daX
+dal
+cgy
+cdr
+cdr
+cgy
+dbk
+dbk
+dbw
+dbw
+dbk
+dbk
+cdr
+dbQ
+dbW
+cgy
+cdr
+cdr
+cFp
+cFp
aaa
aaa
aaa
@@ -148508,12 +146010,12 @@ aaa
aaa
aaa
abC
-cDr
+cCE
abC
abC
-cCW
-cEO
-cCW
+cCj
+cEb
+cCj
aaa
aaa
aaa
@@ -148592,7 +146094,7 @@ amP
amP
aoG
aoG
-aqr
+aqq
amP
amP
amP
@@ -148600,36 +146102,36 @@ amP
amP
amP
amP
-ayU
+ayT
amP
amP
any
any
any
-aGD
-aGD
-aGD
-aGD
-aGD
-aGD
-cLz
-aBJ
+aGC
+aGC
+aGC
+aGC
+aGC
+aGC
+dgy
+dgm
aoU
-cMW
-afE
+cMg
+dfO
alc
amI
amI
amI
alc
alc
-afE
-ajW
-aVI
-afH
-aWr
-ajW
-aiW
+dfO
+dgw
+aVH
+dfN
+aWq
+dgw
+dhZ
aaa
aaa
aaa
@@ -148651,50 +146153,50 @@ aaa
aaa
aaa
aaa
-aZv
-aZN
-aZP
-beG
-bfu
-bfs
-cOE
-beI
-beG
-beG
-bim
-cPI
-blU
-cPX
-bim
-bim
-bsJ
-buh
-bim
-cQh
-bkI
-bkI
-bkI
-bkI
-cQm
-biO
-bfx
-bfu
-bHK
+aZu
+aZM
+aZO
+beF
bft
-cOW
-bfu
-bMX
-bNY
-bPd
-bQo
-bfu
+bfr
+cNO
+beH
+beF
+beF
+bil
+cOS
+blT
+cPh
+bil
+bil
+bsI
+bug
+bil
+cPr
+bkH
+bkH
+bkH
+bkH
+cPw
+biN
bfw
-bfx
-bfu
-bUl
-beI
-aZP
-aZN
+bft
+bHF
+bfs
+cOg
+bft
+bMP
+bNO
+bOS
+bQa
+bft
+bfv
+bfw
+bft
+bTN
+beH
+aZO
+aZM
aaa
aaa
aaa
@@ -148714,48 +146216,48 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-ced
-ced
-ced
-ced
-ced
-ced
-ced
-ceH
-cgd
-cgd
-cgd
-cgd
-ced
-dbb
-dbG
-dbb
-dbb
-dbb
-dbG
-dbb
-dbb
-dbb
-dbG
-cpg
-cpg
-dbS
-daY
-daY
-daY
-daY
-daY
-daY
-cee
-dcH
-dcN
-dcU
-chk
-ced
-ced
-ced
+cFp
+cFp
+cdr
+cdr
+cdr
+cdr
+cdr
+cdr
+cdr
+cdV
+cfr
+cfr
+cfr
+cfr
+cdr
+dal
+daQ
+dal
+dal
+dal
+daQ
+dal
+dal
+dal
+daQ
+cot
+cot
+dbc
+dai
+dai
+dai
+dai
+dai
+dai
+cds
+dbR
+dbX
+dce
+cgy
+cdr
+cdr
+cdr
aaa
aaa
aaa
@@ -148764,13 +146266,13 @@ abC
aaa
aaa
aaa
-cCW
-cDF
-cCW
-cCW
-cDt
-cEP
-cCW
+cCj
+cCS
+cCj
+cCj
+cCG
+cEc
+cCj
aaa
aaa
aaa
@@ -148849,108 +146351,108 @@ amP
anz
aoH
apt
-aqs
+aqr
aoI
amP
-atd
-atd
-avp
-aww
-axp
-ayV
-aAl
+atc
+atc
+avo
+awv
+axo
+ayU
+aAk
amP
-adP
-afE
-afH
-adP
-adP
-aIF
-aBJ
-cMH
-aBJ
-aMt
-atM
-afc
-afH
-aep
+dfM
+dfO
+dfN
+dfM
+dfM
+aIE
+dgm
+dgr
+dgm
+aMs
+dgG
+dgd
+dfN
+dgv
alc
amI
amI
amI
amI
alc
-afE
-aPQ
-aVJ
-afE
-akG
-aiZ
-aiW
+dfO
+dhP
+aVI
+dfO
+dhX
+dhY
+dhZ
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-aZN
-aZN
-aZP
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+aZM
+aZM
+aZO
+beF
beG
+bfr
+cNz
beH
-bfs
-cOp
-beI
-beJ
beI
+beH
+bil
+bnr
+cOP
+cPi
+bpP
+blS
+bsL
+buh
+bil
+cPs
+cPx
+cPA
+cPB
+cPB
+cPB
+cPQ
+bEI
bim
-bns
-cPF
-cPY
-bpQ
-blT
-bsM
-bui
bim
-cQi
-cQn
-cQq
-cQr
-cQr
-cQr
-cQG
-bEN
-bin
-bin
-bin
-bin
-bLu
-bMY
-cRp
-bNZ
-bQp
-bin
-bjd
-bfu
-bfu
+bim
+bim
+bLn
+bMQ
+cQz
+bNP
+bQb
+bim
+bjc
+bft
+bft
+beH
+beH
beI
-beI
-beJ
abC
abC
abC
@@ -148971,48 +146473,48 @@ aaa
aaa
aaa
aaa
-cGc
-ced
-ced
-ced
-ced
-ced
-ced
-ced
-ced
-cfE
-dbg
-dbk
-cgd
-dbk
-ced
-daZ
-dbb
-dbb
-daZ
-daZ
-daZ
-daZ
-daZ
-daZ
-daZ
-dbb
-dbb
-daZ
-daZ
-daZ
-daZ
-daZ
-daZ
-dbb
-cee
-dcH
-dbb
-dcN
-dcW
-ced
-cqa
-cqT
+cFp
+cdr
+cdr
+cdr
+cdr
+cdr
+cdr
+cdr
+cdr
+ceS
+daq
+dau
+cfr
+dau
+cdr
+daj
+dal
+dal
+daj
+daj
+daj
+daj
+daj
+daj
+daj
+dal
+dal
+daj
+daj
+daj
+daj
+daj
+daj
+dal
+cds
+dbR
+dal
+dbX
+dcg
+cdr
+cpn
+cqg
aaa
aaa
aaa
@@ -149021,13 +146523,13 @@ abC
aaa
aaa
aaa
-cCW
-cDG
-cDt
-cEn
-cEy
-cEQ
-cCW
+cCj
+cCT
+cCG
+cDA
+cDL
+cEd
+cCj
aaa
aaa
aaa
@@ -149106,30 +146608,30 @@ amP
anA
aoI
apu
-aqt
-arm
-ase
-ate
-aui
-aui
-aui
-avq
-ayW
-avq
+aqs
+arl
+asd
+atd
+auh
+auh
+auh
+avp
+ayV
+avp
amP
-cMa
-cLx
-aos
-ahd
-apJ
+cLk
+dfP
+dfV
+dfX
+dgc
aoU
-ajX
-alx
-ajW
-aMu
-afE
-adP
-aep
+dgn
+dgs
+dgw
+aMt
+dfO
+dfM
+dgv
amI
alc
amI
@@ -149137,13 +146639,13 @@ amI
amI
amI
alc
-afH
-afH
-afH
-afH
-afH
-afH
-afH
+dfN
+dfN
+dfN
+dfN
+dfN
+dfN
+dfN
abC
abC
abC
@@ -149165,53 +146667,53 @@ abC
abC
abC
abC
-aZO
aZN
-aZP
-aZP
-beH
-cOq
-cOp
-beJ
-bja
-bja
-bim
-bns
-bns
-bop
-bpR
-bri
-bop
-bns
-bim
-bim
-bim
-bim
-biO
-biO
-biO
-biO
-bka
-cOd
+aZM
+aZO
+aZO
+beG
+cNA
+cNz
beI
-beJ
-bfu
-bLv
-bLv
-bfu
-bkb
-bfu
+biZ
+biZ
+bil
+bnr
+bnr
+boo
+bpQ
+brh
+boo
+bnr
+bil
+bil
+bil
+bil
+biN
+biN
+biN
+biN
+bjZ
+cNn
beH
-bSi
-bin
-bin
-bUm
-bVd
-bVP
+beI
+bft
+bLo
+bLo
+bft
+bka
+bft
+beG
+bRQ
+bim
+bim
+bTO
+bUD
+bVe
acI
acI
acI
-bXP
+bXd
abC
aaa
aaa
@@ -149228,48 +146730,48 @@ aaa
aaa
aaa
aaa
-ced
-ced
-ced
-chk
-dae
-dat
-daD
-dae
-ced
-ced
-ced
-cee
-cge
-cee
-ced
-dbw
-cix
-dbI
-dbL
-dbL
-dbL
-dbL
-dbL
-dbL
-dbL
-cix
-dbI
-dbL
-dbL
-dbL
-dbL
-dbL
-dbL
-dbP
-ced
-dcI
-dbb
-dbb
-dcX
-ced
-cqa
-cqT
+cdr
+cdr
+cdr
+cgy
+cZo
+cZD
+cZN
+cZo
+cdr
+cdr
+cdr
+cds
+cfs
+cds
+cdr
+daG
+chL
+daS
+daV
+daV
+daV
+daV
+daV
+daV
+daV
+chL
+daS
+daV
+daV
+daV
+daV
+daV
+daV
+daZ
+cdr
+dbS
+dal
+dal
+dch
+cdr
+cpn
+cqg
aaa
aaa
aaa
@@ -149278,13 +146780,13 @@ abC
aaa
aaa
aaa
-cCW
-cDF
-cDt
-cEo
-cEz
-cER
-cCW
+cCj
+cCS
+cCG
+cDB
+cDM
+cEe
+cCj
aaa
aaa
aaa
@@ -149365,26 +146867,26 @@ aoJ
apv
apv
apv
-asf
-atf
-atf
-avr
-atf
-atf
-ayX
-aAm
+ase
+ate
+ate
+avq
+ate
+ate
+ayW
+aAl
amP
-aCx
-atY
+aCw
+dfQ
aoU
-aqh
-afc
-afc
-aJL
-adP
-adP
-afH
-adP
+dfY
+dgd
+dgd
+aJK
+dfM
+dfM
+dfN
+dfM
alc
alc
alc
@@ -149422,54 +146924,54 @@ aaa
aaa
aaa
aaa
-aZv
-aZv
-aZP
-aZN
+aZu
+aZu
+aZO
+aZM
+beG
+brm
+cNz
beH
-brn
-cOp
-beI
+bja
+bja
+bil
+cOT
+bnm
+boo
bjb
bjb
-bim
-cPJ
-bnn
-bop
-bjc
-bjc
-bsN
-bns
-blT
-bjZ
-bwZ
-bim
-beG
-beG
-beG
-bhv
-bgG
-beJ
+bsM
+bnr
+blS
+bjY
+bwY
+bil
+beF
+beF
+beF
+bhu
+bgF
beI
-beI
-beJ
-cQZ
-bLv
-beH
-beJ
beH
beH
beI
-bfu
-cRN
+cQj
+bLo
+beG
+beI
+beG
+beG
+beH
+bft
+cQX
+beH
+beI
beI
-beJ
-beJ
abC
abC
-bWT
-bXQ
-bWT
+bWh
+bXe
+bWh
aaa
aaa
abC
@@ -149485,48 +146987,48 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-ced
-cZT
-daf
-daf
-daE
-cen
-ced
-ceI
-dbh
-cfF
-cfF
-cgJ
-ced
-dbx
-cix
-dbI
-dbM
-dbM
-dbM
-dbM
-dbM
-dbM
-dbM
-cix
-dbI
-dbM
-dbM
-dbM
-dbM
-dbM
-dbM
-cix
-cee
-dcH
-dbb
-dbb
-dcY
-ced
-cqa
-cqT
+cFp
+cFp
+cdr
+cZd
+cZp
+cZp
+cZO
+cdB
+cdr
+cdW
+dar
+ceT
+ceT
+cfX
+cdr
+daH
+chL
+daS
+daW
+daW
+daW
+daW
+daW
+daW
+daW
+chL
+daS
+daW
+daW
+daW
+daW
+daW
+daW
+chL
+cds
+dbR
+dal
+dal
+dci
+cdr
+cpn
+cqg
aaa
aaa
aaa
@@ -149534,14 +147036,14 @@ aaa
abC
aaa
aaa
+cCj
+cCG
+cCU
+cDi
cCW
-cDt
-cDH
-cDV
-cDJ
-cDX
-cEq
-cCW
+cDk
+cDD
+cCj
aaa
aaa
aaa
@@ -149620,25 +147122,25 @@ amP
anC
aoK
apw
-aqu
-arn
+aqt
+arm
amP
-atg
-auj
-avq
-avq
-axq
-ayY
-aAn
+atf
+aui
+avp
+avp
+axp
+ayX
+aAm
amP
afw
-aTA
-anZ
-aoX
-ans
-afH
-afE
-adP
+dfR
+dfW
+dfZ
+dge
+dfN
+dfO
+dfM
alc
alc
alc
@@ -149679,54 +147181,54 @@ aaa
aaa
aaa
aaa
-aZv
-aZv
-aZP
-aZN
-beJ
-brn
-cOF
-cOV
-cPa
-bsT
-bim
-cPK
-bno
-boq
-bpS
-brj
-bsO
-buj
-blV
-bwX
-bjZ
-bim
-beG
-beJ
+aZu
+aZu
+aZO
+aZM
beI
-bfu
-bgI
-beH
-beH
-beH
-beJ
-bLw
-bMZ
-beG
-aZP
-aZP
-beH
-beH
-beJ
-beJ
+brm
+cNP
+cOf
+cOk
+bsS
+bil
+cOU
+bnn
+bop
+bpR
+bri
+bsN
+bui
+blU
+bwW
+bjY
+bil
+beF
beI
beH
+bft
+bgH
+beG
+beG
+beG
+beI
+bLp
+bMR
+beF
+aZO
+aZO
+beG
+beG
+beI
+beI
+beH
+beG
aaa
aaa
aaa
-bWT
-bXR
-bWT
+bWh
+bXf
+bWh
aaa
aaa
abC
@@ -149742,48 +147244,48 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cee
-cZU
-dag
-daf
-daF
-daO
-ced
-cet
-cfg
-cfF
-dbn
-cgK
-cee
-dby
-cix
-dbI
-dbI
-dbI
-dbI
-dbI
-dbI
-dbI
-dbI
-cix
-dbI
-dbI
-dbI
-dbI
-dbI
-dbI
-dbI
-cix
-dcC
-dcH
-dbb
-dbb
-dcZ
-ced
-cqa
-cqT
+cFp
+cFp
+cds
+cZe
+cZq
+cZp
+cZP
+cZY
+cdr
+cdH
+ceu
+ceT
+dax
+cfY
+cds
+daI
+chL
+daS
+daS
+daS
+daS
+daS
+daS
+daS
+daS
+chL
+daS
+daS
+daS
+daS
+daS
+daS
+daS
+chL
+dbM
+dbR
+dal
+dal
+dcj
+cdr
+cpn
+cqg
aaa
aaa
aaa
@@ -149791,14 +147293,14 @@ aaa
abC
aaa
aaa
-cCW
-cDu
-cDI
-cDW
-cEp
-cDY
-cEr
-cCW
+cCj
+cCH
+cCV
+cDj
+cDC
+cDl
+cDE
+cCj
aaa
aaa
aad
@@ -149881,21 +147383,21 @@ amP
amP
amP
amP
-auk
-avs
-auk
+atg
+avr
+atg
amP
amP
amP
amP
-afH
-afE
-afE
-adP
-adP
-adP
-adP
-adP
+dfN
+dfO
+dfO
+dfM
+dfM
+dfM
+dfM
+dfM
alc
alc
alc
@@ -149937,56 +147439,56 @@ aaa
aaa
aaa
aaa
-aZv
-aZP
-aZN
+aZu
+aZO
+aZM
+beH
+cNB
+cNz
beI
-cOr
-cOp
-beJ
-bjb
-bjb
-bim
-bjZ
-bns
-bor
-bpT
-bkS
-bsP
-bkS
-bvN
-bwY
-bye
-bim
-beH
-beJ
-bfv
-bfu
-bgG
-beJ
-beH
-beH
-beJ
-cQZ
-cQZ
+bja
+bja
+bil
+bjY
+bnr
+boq
+bpS
+bkR
+bsO
+bkR
+bvM
+bwX
+byd
+bil
beG
-aZP
-aZP
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
+beI
+bfu
+bft
+bgF
+beI
+beG
+beG
+beI
+cQj
+cQj
+beF
+aZO
+aZO
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
aaa
aaa
aaa
-bWT
-bXQ
-bXl
-bWT
-bWT
-bWT
+bWh
+bXe
+bWz
+bWh
+bWh
+bWh
aaa
aaa
aaa
@@ -149999,63 +147501,63 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cee
-cZV
-dah
-dau
-daw
-daw
-ced
-ceJ
-cfg
-cfG
-dbn
-cgL
-cee
-dbz
-cix
-dbI
-dbL
-dbL
-dbL
-dbL
-dbL
-dbL
-dbL
-cix
-dbI
-dbL
-dbL
-dbL
-dbL
-dbL
-dbL
-cix
-cee
-dcJ
-dcO
-dbb
-dda
-ced
-cqa
-cqT
+cFp
+cFp
+cds
+cZf
+cZr
+cZE
+cZG
+cZG
+cdr
+cdX
+ceu
+ceU
+dax
+cfZ
+cds
+daJ
+chL
+daS
+daV
+daV
+daV
+daV
+daV
+daV
+daV
+chL
+daS
+daV
+daV
+daV
+daV
+daV
+daV
+chL
+cds
+dbT
+dbY
+dal
+dck
+cdr
+cpn
+cqg
aaa
aaa
aaa
aaa
aaP
abC
+cCj
+cCj
+cCI
cCW
-cCW
-cDv
-cDJ
-cDX
-cEq
-cDt
-cCW
-cCW
+cDk
+cDD
+cCG
+cCj
+cCj
aaa
aaa
aaa
@@ -150137,11 +147639,11 @@ alc
alc
akx
akx
-ath
-aul
-avq
-avq
-ath
+atg
+auk
+avp
+avp
+atg
akx
akx
alc
@@ -150194,56 +147696,56 @@ aaa
aaa
aaa
aaa
-aZv
-aZP
-aZN
-beH
-brn
-cOp
-beJ
-cPb
-cPb
-bim
-bjZ
-bns
-bop
-bjZ
-brk
-bsQ
-bjZ
-blT
-bwZ
-bjZ
-bim
-beH
-beH
-bfu
-bBA
-bBB
-beI
-beH
-beH
-beH
-bLx
-bLx
+aZu
+aZO
+aZM
beG
-aZP
-aZP
-aZN
-aZN
-aZN
-aZN
-aZN
-aZN
+brm
+cNz
+beI
+cOl
+cOl
+bil
+bjY
+bnr
+boo
+bjY
+brj
+bsP
+bjY
+blS
+bwY
+bjY
+bil
+beG
+beG
+bft
+bBy
+bBz
+beH
+beG
+beG
+beG
+bLq
+bLq
+beF
+aZO
+aZO
+aZM
+aZM
+aZM
+aZM
+aZM
+aZM
aaa
aaa
aaa
-bWT
-bXS
-bYs
+bWh
+bXg
+bXG
+bYj
+bYD
bYV
-bZp
-bZH
aaa
aaa
aaa
@@ -150256,61 +147758,61 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cee
-cZW
-dai
-dav
-daw
-daw
-ced
-ceK
-cfg
-dbi
-dbn
-cgK
-cee
-dbA
-cix
-dbI
-dbM
-dbM
-dbM
-dbM
-dbM
-dbM
-dbM
-cix
-dbI
-dbM
-dbM
-dbM
-dbM
-dbM
-dbM
-dcB
-chk
-chk
-dcP
-dbb
-dda
-ced
-cqa
-cqT
+cFp
+cFp
+cds
+cZg
+cZs
+cZF
+cZG
+cZG
+cdr
+cdY
+ceu
+das
+dax
+cfY
+cds
+daK
+chL
+daS
+daW
+daW
+daW
+daW
+daW
+daW
+daW
+chL
+daS
+daW
+daW
+daW
+daW
+daW
+daW
+dbL
+cgy
+cgy
+dbZ
+dal
+dck
+cdr
+cpn
+cqg
aaa
aaa
aaa
aaa
aaa
aaa
+cCk
+cCs
+cCJ
cCX
-cDf
-cDw
-cDK
-cDY
-cEr
-cCW
+cDl
+cDE
+cCj
aaa
aaa
aaa
@@ -150394,11 +147896,11 @@ alc
alc
aaa
akx
-ath
-aum
-avq
-awx
-ath
+atg
+aul
+avp
+aww
+atg
aaa
akx
akx
@@ -150451,43 +147953,43 @@ aaa
aaa
aaa
aaa
-aZv
-aZN
-aZP
+aZu
+aZM
+aZO
+beF
+cNA
+cNz
+beI
+beH
+beH
+bil
+cOV
+bno
+bor
+bpT
+brk
+bsQ
+buj
+blS
+bjY
+bwY
+bil
beG
-cOq
-cOp
-beJ
+beG
+bfs
+bgF
beI
beI
-bim
-cPL
-bnp
-bos
-bpU
-brl
-bsR
-buk
-blT
-bjZ
-bwZ
-bim
beH
beH
-bft
-bgG
-beJ
-beJ
+beH
+bGa
+bGa
+beH
beI
-beI
-beI
-bGf
-bGf
-beI
-beJ
-aZN
-aZN
-aZN
+aZM
+aZM
+aZM
aaa
aaa
aaa
@@ -150495,12 +147997,12 @@ aaa
aaa
aaa
aaa
-bWT
-bXT
-bYt
-bYW
-bWT
-bWT
+bWh
+bXh
+bXH
+bYk
+bWh
+bWh
aaa
aaa
aaa
@@ -150513,61 +148015,61 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cee
-cZX
-daj
-daw
-daw
-daw
-ced
-daX
-dbi
-dbi
-dbi
-dbr
-ced
-chY
-cix
-dbb
-daY
-daY
-daY
-daY
-daY
-daY
-daY
-dbb
-dbb
-daY
-daY
-daY
-daY
-daY
-daY
-dbb
-cpg
-ced
-dcQ
-dbb
-ddb
-ced
-chk
-chk
+cFp
+cFp
+cds
+cZh
+cZt
+cZG
+cZG
+cZG
+cdr
+dah
+das
+das
+das
+daB
+cdr
+chm
+chL
+dal
+dai
+dai
+dai
+dai
+dai
+dai
+dai
+dal
+dal
+dai
+dai
+dai
+dai
+dai
+dai
+dal
+cot
+cdr
+dca
+dal
+dcl
+cdr
+cgy
+cgy
aaa
aaa
aaa
aaa
aaa
aaa
-cCW
-cCW
-cCW
-cCW
-cCW
-cCW
-cCW
+cCj
+cCj
+cCj
+cCj
+cCj
+cCj
+cCj
aaa
aaa
aaa
@@ -150651,11 +148153,11 @@ aaa
aaa
aaa
aaa
-ath
-ath
-avt
-ath
-ath
+atg
+atg
+avs
+atg
+atg
aaa
aaa
akx
@@ -150708,40 +148210,40 @@ aaa
aaa
aaa
aaa
-aZv
-aZN
-aZP
-beJ
-bfs
-cOp
+aZu
+aZM
+aZO
beI
-beJ
+bfr
+cNz
beH
-bim
-bim
-bnq
-bot
-bjc
-bim
-bim
-bim
-bim
-bim
-bim
-bim
-beH
-beJ
-bfu
-bgG
-beJ
-bGc
-cQO
-bJl
-bKo
-bLz
-bNa
-bOa
-beJ
+beI
+beG
+bil
+bil
+bnp
+bos
+bjb
+bil
+bil
+bil
+bil
+bil
+bil
+bil
+beG
+beI
+bft
+bgF
+beI
+bFX
+cPY
+bJg
+bKi
+bLs
+bMS
+bNQ
+beI
aaa
aaa
aaa
@@ -150752,11 +148254,11 @@ aaa
aaa
aaa
aaa
-bWT
-bXU
-bXV
-bYX
-bWT
+bWh
+bXi
+bXj
+bYl
+bWh
aaa
aaa
aaa
@@ -150770,48 +148272,48 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cee
-cZY
+cFp
+cFp
+cds
+cZi
+cZt
+cZG
+cZG
+cZZ
+cdr
+cdr
+cds
+dav
+dav
+cds
+cgy
+dai
+dal
+dal
+daj
+daj
+daj
+daj
+daj
+daj
daj
-daw
-daw
-daP
-ced
-ced
-cee
-dbl
-dbl
-cee
-chk
daY
-dbb
-dbb
-daZ
-daZ
-daZ
-daZ
-daZ
-daZ
-daZ
-dbO
-dbb
-dbT
-dbb
-dbb
-dbb
-dbb
-dbb
-dbT
-dbb
-ced
-dcR
-dcV
-ddc
-ced
-chk
-chk
+dal
+dbd
+dal
+dal
+dal
+dal
+dal
+dbd
+dal
+cdr
+dcb
+dcf
+dcm
+cdr
+cgy
+cgy
aaa
aaa
aaa
@@ -150907,13 +148409,13 @@ aaa
aaa
aaa
aaa
+asf
+asf
asg
+avt
asg
-ash
-avu
-ash
-asg
-asg
+asf
+asf
aaa
aaa
aaa
@@ -150945,61 +148447,61 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-aZN
-aZN
-aZP
-beJ
-bfs
-bgJ
-bin
-bjd
-beH
-bim
-blW
-bnr
-bou
-boo
-bim
-cKS
-bim
-bvO
-bfu
-byd
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+aZM
+aZM
+aZO
beI
+bfr
+bgI
+bim
+bjc
beG
+bil
+blV
+bnq
+bot
+bon
+bil
+cKe
+bil
+bvN
+bft
+byc
+beH
+beF
+beH
+bfw
+bgF
+beH
+bFY
+bHG
+bJh
+bKj
+bLt
+bMT
+bNR
beI
-bfx
-bgG
beI
-bGd
-bHL
-bJm
-bKp
-bLA
-bNb
-bOb
-beJ
-beJ
aaa
aaa
aaa
@@ -151008,12 +148510,12 @@ aaa
aaa
aaa
aaa
-bWT
-bXl
-bXV
-bYu
-bXl
-bWT
+bWh
+bWz
+bXj
+bXI
+bWz
+bWh
aaa
aaa
aaa
@@ -151027,48 +148529,48 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cee
-cZZ
-dak
-dax
-daw
-daw
-daT
-daY
-daY
-daY
-daY
-daY
-daY
-dbB
+cFp
+cFp
+cds
+cZj
+cZu
+cZH
+cZG
+cZG
+dad
+dai
+dai
+dai
+dai
+dai
+dai
+daL
+dal
+daS
+daV
+daV
+daV
+daV
+daV
+daV
+daV
+chL
+cgy
+cdr
dbb
-dbI
-dbL
-dbL
-dbL
-dbL
-dbL
-dbL
-dbL
-cix
-chk
-ced
-dbR
-ced
-ced
-ced
-ced
-ced
-dcD
-ced
-ced
-ced
-ddd
-chk
-cqa
-cqT
+cdr
+cdr
+cdr
+cdr
+cdr
+dbN
+cdr
+cdr
+cdr
+dcn
+cgy
+cpn
+cqg
aaa
aaa
aaa
@@ -151164,13 +148666,13 @@ aaa
aaa
aaa
aaa
-asg
-ati
+asf
+ath
+aum
+aum
aun
-aun
-auo
-axr
-asg
+axq
+asf
aaa
aaa
aaa
@@ -151223,40 +148725,40 @@ abC
abC
abC
abC
+aZN
aZO
-aZP
-beG
-bgK
-bfu
-bfu
-bje
+beF
+bgJ
+bft
+bft
bjd
-bim
-bjZ
-bns
-bov
-bjZ
-cKR
-cKT
-bim
-bgG
-bsS
-beJ
-beG
-beG
+bjc
+bil
+bjY
+bnr
+bou
+bjY
+cKd
+cKf
+bil
+bgF
+bsR
beI
-bfu
-bgG
-beI
-bGe
-bHM
-bJn
-bKq
-bLB
-bNc
-bOc
-bPe
-bQq
+beF
+beF
+beH
+bft
+bgF
+beH
+bFZ
+bHH
+bJi
+bKk
+bLu
+bMU
+bNS
+bOT
+bQc
aaa
aaa
aaa
@@ -151265,11 +148767,11 @@ aaa
aaa
aaa
aaa
-bWU
-bXm
-bXW
-bWT
-bWT
+bWi
+bWA
+bXk
+bWh
+bWh
aaa
aaa
aaa
@@ -151284,48 +148786,48 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cee
-daa
-dal
-day
-daw
-daw
-daT
+cFp
+cFp
+cds
+cZk
+cZv
+cZI
+cZG
+cZG
+dad
+daj
+daj
+daj
+daj
+daj
+daj
+daj
+daR
+daS
+daW
+daW
+daW
+daW
+daW
+daW
+daW
daZ
-daZ
-daZ
-daZ
-daZ
-daZ
-daZ
-dbH
-dbI
-dbM
-dbM
-dbM
-dbM
-dbM
-dbM
-dbM
-dbP
-ced
+cdr
+dbe
+dbl
+dbs
+dbx
+dbB
+dbE
+cdr
+dbO
dbU
-dcb
-dci
-dcn
-dcr
-dcu
-ced
-dcE
-dcK
-dcK
-ced
-dde
-ddi
-cqa
-cqT
+dbU
+cdr
+dco
+dcs
+cpn
+cqg
aaa
aaa
aaa
@@ -151421,13 +148923,13 @@ aaa
aaa
aaa
aaa
-ash
-atj
-auo
+asg
+ati
aun
-auo
-axs
-ayZ
+aum
+aun
+axr
+ayY
aaa
aaa
aaa
@@ -151481,39 +148983,39 @@ aaa
aaa
aaa
aaa
-aZN
+aZM
+beG
beH
-beI
-cOG
-bfu
-bfu
-bka
-bim
-bjZ
-bnt
-bow
-bjZ
-bim
-bim
-bim
-bgI
+cNQ
bft
-beG
-beG
-beJ
+bft
+bjZ
+bil
+bjY
+bns
+bov
+bjY
+bil
+bil
+bil
+bgH
+bfs
+beF
+beF
beI
-bfu
-bgG
+beH
+bft
+bgF
+beH
+cPV
+bHI
+bJj
+beH
+bLv
+bLv
+bLv
beI
-cQL
-bHN
-bJo
beI
-bLC
-bLC
-bLC
-beJ
-beJ
abC
abC
abC
@@ -151522,10 +149024,10 @@ abC
abC
abC
abC
-bWT
-bWT
-bWT
-bWT
+bWh
+bWh
+bWh
+bWh
aaa
aaa
aaa
@@ -151541,48 +149043,48 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cee
-dab
-dam
-dan
-daG
-daO
-ced
-ced
-ced
-ced
-ced
-dbs
-dbs
-ced
-chk
-dbI
-dbI
-dbI
-dbI
-dbI
-dbI
-dbI
-dbI
-cix
-dbR
-dbV
+cFp
+cFp
+cds
+cZl
+cZw
+cZx
+cZQ
+cZY
+cdr
+cdr
+cdr
+cdr
+cdr
+daC
+daC
+cdr
+cgy
+daS
+daS
+daS
+daS
+daS
+daS
+daS
+daS
+chL
+dbb
+dbf
+dbm
+dbt
+dby
+dby
+dbF
+cdr
+dbO
+dbO
dcc
-dcj
+cdr
dco
-dco
-dcv
-ced
-dcE
-dcE
-dcS
-ced
-dde
-ddj
-cqa
-cqT
+dct
+cpn
+cqg
aaa
aaa
aaa
@@ -151678,13 +149180,13 @@ aaa
aaa
aaa
aaa
-asg
-atk
+asf
+atj
+aum
+aum
aun
-aun
-auo
-axt
-asg
+axs
+asf
aaa
aaa
aaa
@@ -151738,34 +149240,34 @@ aaa
aaa
aaa
aaa
-aZN
-aZN
-beH
-beH
-bfx
-bfu
-bgG
-bim
-blX
-bnu
-box
-bpV
-bim
-beH
-bhv
-bvP
-cOW
-beJ
+aZM
+aZM
+beG
+beG
+bfw
+bft
+bgF
+bil
+blW
+bnt
+bow
+bpU
+bil
+beG
+bhu
+bvO
+cOg
+beI
+beH
+beI
+bBy
+bim
+bDB
+beI
+bGb
+bHJ
+bJk
beI
-beJ
-bBA
-bin
-bDF
-beJ
-bGg
-bHO
-bJp
-beJ
aaa
aaa
aaa
@@ -151798,50 +149300,50 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-ced
-dac
-dan
-dan
-daH
-daQ
-ced
-dba
-dbj
-dbm
-dbo
-dbt
+cFp
+cFp
+cdr
+cZm
+cZx
+cZx
+cZR
+daa
+cdr
+dak
+dat
+daw
+day
+daD
+daD
+daM
+cdr
+daS
+daV
+daV
+daV
+daV
+daV
+daV
+daV
+chL
+cds
+dbg
+dbn
dbt
+dbz
dbC
-ced
-dbI
-dbL
-dbL
-dbL
-dbL
-dbL
-dbL
-dbL
-cix
-cee
-dbW
-dcd
-dcj
+dbG
+cdr
+dbO
+dbO
+dcc
+cdr
dcp
-dcs
-dcw
-ced
-dcE
-dcE
-dcS
-ced
-ddf
-ddk
-cqa
-cqT
-cGc
-cGc
+dcu
+cpn
+cqg
+cFp
+cFp
aaa
aaa
aaa
@@ -151935,13 +149437,13 @@ aaa
aaa
aaa
aaa
+asf
+asf
asg
+avu
asg
-ash
-avv
-ash
-asg
-asg
+asf
+asf
aaa
aaa
aaa
@@ -151995,34 +149497,34 @@ aaa
aaa
aaa
aaa
-aZN
-aZP
-aZP
-beJ
-cOW
-bfu
-bgG
-bim
-bim
-bim
-boy
-bim
-bim
-beH
-bfu
-bgG
-bfu
-bfu
-bft
-bfu
-bgG
-bfu
+aZM
+aZO
+aZO
+beI
+cOg
+bft
+bgF
+bil
+bil
+bil
+box
+bil
+bil
+beG
+bft
+bgF
+bft
+bft
+bfs
+bft
+bgF
+bft
+beH
+beI
+bGc
+beI
+beI
beI
-beJ
-bGh
-beJ
-beJ
-beJ
aaa
aaa
aaa
@@ -152055,50 +149557,50 @@ aaa
aaa
aaa
aaa
-ced
-ced
-ced
-chk
-dao
+cdr
+cdr
+cdr
+cgy
+cZy
+cZJ
+cZS
+dab
+cdr
+dal
+dal
+dal
daz
-daI
-daR
-ced
-dbb
-dbb
-dbb
-dbp
-dbb
-dbb
-dbD
-ced
-dbI
-dbM
-dbM
-dbM
-dbM
-dbM
-dbM
-dbM
-cix
-ced
-dbX
-dce
-dck
-dcb
-dcb
-dcx
-ced
-dcE
-dcE
-dcS
-ced
-ddg
-ddg
-cqa
-cqT
-cGc
-cGc
+dal
+dal
+daN
+cdr
+daS
+daW
+daW
+daW
+daW
+daW
+daW
+daW
+chL
+cdr
+dbh
+dbo
+dbu
+dbl
+dbl
+dbH
+cdr
+dbO
+dbO
+dcc
+cdr
+dcq
+dcq
+cpn
+cqg
+cFp
+cFp
aaa
aaa
aaa
@@ -152167,7 +149669,7 @@ aab
aac
aac
aac
-cLq
+cKA
aac
aac
aac
@@ -152253,31 +149755,31 @@ aaa
aaa
aaa
aaa
-aZP
-aZP
+aZO
+aZO
+beF
beG
-beH
-bfu
-bSi
-bin
-bin
-bin
-boz
-cUi
-bin
-cUj
-bin
-bvQ
-bin
-bin
-bin
-bin
-bBB
-cPS
-beJ
-beJ
-bGi
-beJ
+bft
+bRQ
+bim
+bim
+bim
+boy
+cTs
+bim
+cTt
+bim
+bvP
+bim
+bim
+bim
+bim
+bBz
+cPc
+beI
+beI
+bGd
+beI
aaa
aaa
aaa
@@ -152312,50 +149814,50 @@ aaa
aaa
aaa
aaa
-cGc
-ced
-ced
-ced
-ced
-ced
-ced
-ced
-ced
-dba
-dbj
-dbm
+cFp
+cdr
+cdr
+cdr
+cdr
+cdr
+cdr
+cdr
+cdr
+dak
+dat
+daw
+daz
+daE
+daE
+daO
+cdr
+daT
+dai
+dai
+dai
+dai
+dai
+dai
+dai
+dal
+cds
+dbi
dbp
-dbu
-dbu
-dbE
-ced
-dbJ
-daY
-daY
-daY
-daY
-daY
-daY
-daY
-dbb
-cee
-dbY
-dcf
-dcc
-dcc
-dcc
-dcy
-ced
-dcE
-dcL
-dcE
-ced
-ddh
-ddh
-cqa
-cqT
-cGc
-cGc
+dbm
+dbm
+dbm
+dbI
+cdr
+dbO
+dbV
+dbO
+cdr
+dcr
+dcr
+cpn
+cqg
+cFp
+cFp
aaa
aaa
aaa
@@ -152511,27 +150013,27 @@ aaa
aaa
aaa
aaa
-aZP
-aZP
+aZO
+aZO
+beH
beI
-beJ
-cPn
-bfu
-bfu
-cPS
-cPZ
-beJ
-brm
-beJ
-beJ
-bfu
-bfu
-bkb
+cOx
bft
-bfu
-bfu
-beJ
-beJ
+bft
+cPc
+cPj
+beI
+brl
+beI
+beI
+bft
+bft
+bka
+bfs
+bft
+bft
+beI
+beI
aaa
aaa
abC
@@ -152569,50 +150071,50 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-ced
-ced
-ced
-ced
-ced
-ced
-ced
-dbb
-dbb
-dbb
-dbp
-dbb
-dbb
-dbD
-ced
-dbK
-dbb
-dbb
-dbb
-dbb
-dbb
-dbb
-dbb
-dbQ
-ced
-dbZ
-dcg
-dcc
-dcc
-dcc
-dcz
-ced
-dcD
-ced
-dcD
-ced
-ced
-ced
-ced
-ced
-cGc
-cGc
+cFp
+cFp
+cdr
+cdr
+cdr
+cdr
+cdr
+cdr
+cdr
+dal
+dal
+dal
+daz
+dal
+dal
+daN
+cdr
+daU
+dal
+dal
+dal
+dal
+dal
+dal
+dal
+dba
+cdr
+dbj
+dbq
+dbm
+dbm
+dbm
+dbJ
+cdr
+dbN
+cdr
+dbN
+cdr
+cdr
+cdr
+cdr
+cdr
+cFp
+cFp
aaa
aaa
aaa
@@ -152768,27 +150270,27 @@ aaa
aaa
aaa
aaa
-aZP
-aZP
-aZP
+aZO
+aZO
+aZO
+beG
+beH
+beG
+beG
+bnu
+boz
+bpV
+brm
+bsS
+beH
+beG
+beG
+beI
+beG
beH
beI
-beH
-beH
-bnv
-boA
-bpW
-brn
-bsT
beI
-beH
-beH
-beJ
-beH
-beI
-beJ
-beJ
-aZN
+aZM
aaa
aaa
abC
@@ -152826,50 +150328,50 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-ced
-ced
-ced
-ced
-dba
-dbj
-dbm
-dbq
+cFp
+cFp
+cFp
+cFp
+cFp
+cdr
+cdr
+cdr
+cdr
+dak
+dat
+daw
+daA
+daF
+daF
+daP
+cdr
+cdr
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cdr
+cdr
+cgy
+dbr
dbv
-dbv
-dbF
-ced
-ced
-cee
-cee
-cee
-cee
-cee
-cee
-cee
-ced
-ced
-chk
-dch
-dcl
-dcq
-dct
-dcA
-ced
-dcF
-ced
-dcT
-ced
-ced
-ced
-cGc
-cGc
-cGc
-cGc
+dbA
+dbD
+dbK
+cdr
+dbP
+cdr
+dcd
+cdr
+cdr
+cdr
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -153027,25 +150529,25 @@ aaa
aaa
aaa
aaa
-aZN
-aZN
-aZP
-aZP
-beG
-cPT
+aZM
+aZM
+aZO
+aZO
+beF
+cPd
+beH
beI
-beJ
-bro
-beJ
+brn
beI
-beG
-aZP
-aZN
-aZP
-aZP
-aZP
-aZP
-aZN
+beH
+beF
+aZO
+aZM
+aZO
+aZO
+aZO
+aZO
+aZM
aaa
aaa
abC
@@ -153083,50 +150585,50 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-ced
-ced
-ced
-ced
-ced
-ced
-ced
-ced
-ced
-ced
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-ced
-ced
-cee
-cee
-cee
-ced
-ced
-ced
-ced
-ced
-ced
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cdr
+cdr
+cdr
+cdr
+cdr
+cdr
+cdr
+cdr
+cdr
+cdr
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cdr
+cdr
+cds
+cds
+cds
+cdr
+cdr
+cdr
+cdr
+cdr
+cdr
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -153285,23 +150787,23 @@ aaa
aaa
aaa
aaa
-aZN
-aZP
-aZP
-aZP
-bnw
-beJ
-bpX
-brp
-bpX
-bul
-aZP
-aZP
-aZN
-aZN
-aZN
+aZM
aZO
+aZO
+aZO
+bnv
+beI
+bpW
+bro
+bpW
+buk
+aZO
+aZO
+aZM
+aZM
+aZM
aZN
+aZM
aaa
aaa
aaa
@@ -153346,44 +150848,44 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -153543,25 +151045,25 @@ aaa
aaa
aaa
aaa
-aZN
-aZN
-aZN
-bnx
-beJ
-bpY
-brq
-bpY
-beJ
-aZP
-aZN
-aZN
-aZN
-aZN
+aZM
+aZM
+aZM
+bnw
+beI
+bpX
+brp
+bpX
+beI
+aZO
+aZM
+aZM
+aZM
+aZM
abC
aaa
aaa
aaP
-bGj
+bGe
aaP
aaa
aaa
@@ -153603,44 +151105,44 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -153802,14 +151304,14 @@ aaa
aaa
aaa
aaa
-aZN
+aZM
aaa
-beJ
-bpY
-brr
-bpY
-beJ
-aZP
+beI
+bpX
+brq
+bpX
+beI
+aZO
aaa
aaa
aaa
@@ -153817,8 +151319,8 @@ aaa
abC
aaa
aaP
-bCy
-bGk
+bCv
+bGf
aaP
aaa
aaa
@@ -153860,44 +151362,44 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -154053,19 +151555,19 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
-beJ
-bpY
-brs
-bpY
-beJ
+beI
+bpX
+brr
+bpX
+beI
aaa
aaa
aaa
@@ -154073,8 +151575,8 @@ aaa
aaa
abC
aaP
-bCy
-bEO
+bCv
+bEJ
abb
aaP
aaa
@@ -154117,44 +151619,44 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -154310,17 +151812,17 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
aaa
aaa
-brt
+brs
aaa
aaa
aaa
@@ -154329,8 +151831,8 @@ aaa
aaa
aaa
aaP
-bCy
-bDG
+bCv
+bDC
abs
abb
aaP
@@ -154374,44 +151876,44 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-ddl
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+dcv
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -154567,29 +152069,29 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
aaa
aaa
aaa
-bBC
+bBA
abV
abr
abr
-bGl
+bGg
aaP
aaa
aaa
@@ -154631,44 +152133,44 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -154824,19 +152326,19 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -154888,39 +152390,39 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -155081,11 +152583,11 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -155113,45 +152615,45 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aag
aaa
aaa
@@ -155166,18 +152668,18 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -155338,11 +152840,11 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -155370,45 +152872,45 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -155423,38 +152925,38 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -155595,11 +153097,11 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -155627,45 +153129,45 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -155690,28 +153192,28 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -155852,11 +153354,11 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -155884,45 +153386,45 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -155947,28 +153449,28 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -156109,11 +153611,11 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -156141,33 +153643,33 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -156204,28 +153706,28 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -156398,33 +153900,33 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -156461,28 +153963,28 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -156655,33 +154157,33 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -156718,28 +154220,28 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -156912,33 +154414,33 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -156975,28 +154477,28 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -157169,33 +154671,33 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -157232,28 +154734,28 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -157426,33 +154928,33 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -157489,28 +154991,28 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -157683,33 +155185,33 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -157746,28 +155248,28 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -157940,33 +155442,33 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -158003,28 +155505,28 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
@@ -158197,33 +155699,33 @@ aaa
aaa
aaa
aaa
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
-cGc
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
+cFp
aaa
aaa
aaa
diff --git a/_maps/map_files/CitadelStation/CitadelStation-1.2.1.dmm b/_maps/map_files/CitadelStation/CitadelStation-1.2.1.dmm
deleted file mode 100644
index 65c31e0f7e..0000000000
--- a/_maps/map_files/CitadelStation/CitadelStation-1.2.1.dmm
+++ /dev/null
@@ -1,7213 +0,0 @@
-"aaa" = (/turf/open/space,/area/space)
-"aab" = (/obj/structure/lattice,/turf/open/space,/area/space)
-"aac" = (/turf/closed/wall/r_wall,/area/security/processing{name = "Permabrig"})
-"aad" = (/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/obj/structure/closet,/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"aae" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"aaf" = (/obj/structure/bed,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;name = "regular air scrubber";on = 1},/obj/machinery/camera{c_tag = "Prison Cell 1";network = list("SS13","Prison")},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"aag" = (/turf/closed/wall,/area/security/processing{name = "Permabrig"})
-"aah" = (/obj/structure/bed,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;name = "regular air scrubber";on = 1},/obj/machinery/camera{c_tag = "Prison Cell 2";network = list("SS13","Prison")},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"aai" = (/obj/structure/toilet{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"aaj" = (/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"aak" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"aal" = (/turf/open/space,/obj/machinery/porta_turret/syndicate{dir = 9},/turf/closed/wall/mineral/plastitanium{dir = 8;icon_state = "diagonalWall3"},/area/shuttle/syndicate)
-"aam" = (/turf/closed/wall/mineral/plastitanium,/area/shuttle/syndicate)
-"aan" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters{id = "syndieshutters";name = "blast shutters"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/shuttle/syndicate)
-"aao" = (/turf/open/space,/obj/machinery/porta_turret/syndicate{dir = 5},/turf/closed/wall/mineral/plastitanium{dir = 1;icon_state = "diagonalWall3"},/area/shuttle/syndicate)
-"aap" = (/obj/machinery/shower{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"aaq" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/obj/machinery/button/door{id = "permacell1";normaldoorcontrol = 1;pixel_y = -24;specialfunctions = 4},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"aar" = (/obj/machinery/shower{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/button/door{id = "permacell1";normaldoorcontrol = 1;pixel_y = -24;specialfunctions = 4},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"aas" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"aat" = (/obj/structure/table,/obj/machinery/microwave,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"aau" = (/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"aav" = (/obj/structure/table,/obj/item/device/flashlight/lamp{pixel_x = 4;pixel_y = 1},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"aaw" = (/obj/machinery/computer/shuttle/syndicate,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"aax" = (/obj/structure/table,/obj/machinery/button/door{id = "syndieshutters";name = "remote shutter control";req_access_txt = "150"},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"aay" = (/obj/structure/frame/computer,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"aaz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/closed/wall,/area/security/processing{name = "Permabrig"})
-"aaA" = (/obj/machinery/door/poddoor/preopen{id = "permacell";name = "cell blast door"},/obj/machinery/door/airlock/glass{id_tag = "permacell1";name = "Cell 1"},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"aaB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/turf/closed/wall,/area/security/processing{name = "Permabrig"})
-"aaC" = (/obj/machinery/door/poddoor/preopen{id = "permacell";name = "cell blast door"},/obj/machinery/door/airlock/glass{id_tag = "permacell2";name = "Cell 2"},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"aaD" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3;pixel_y = 3},/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"aaE" = (/obj/structure/chair/comfy/beige{dir = 1;icon_state = "comfychair"},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"aaF" = (/obj/machinery/biogenerator,/turf/open/floor/plasteel/green/side{dir = 9},/area/security/processing{name = "Permabrig"})
-"aaG" = (/obj/machinery/seed_extractor,/turf/open/floor/plasteel/green/side{dir = 1},/area/security/processing{name = "Permabrig"})
-"aaH" = (/turf/open/floor/plasteel/green/side{dir = 1},/area/security/processing{name = "Permabrig"})
-"aaI" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/vending/cola/random,/turf/open/floor/plasteel/green/side{dir = 8},/area/security/processing{name = "Permabrig"})
-"aaJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/closet/crate/bin,/obj/machinery/camera{c_tag = "Prison Common Room North";network = list("SS13","Prison")},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"aaK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"aaL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/obj/machinery/button/door{id = "permacell1";normaldoorcontrol = 1;pixel_y = 24;req_access_txt = "1";specialfunctions = 4},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"aaM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"aaN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/obj/machinery/button/door{id = "permacell2";normaldoorcontrol = 1;pixel_y = 24;req_access_txt = "1";specialfunctions = 4},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"aaO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/obj/structure/bookcase,/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"aaP" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile{obj_integrity = 5000;max_integrity = 5000;name = "hardened window"},/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/obj/machinery/door/poddoor/preopen{id = "permalock"},/turf/open/floor/plating,/area/security/processing{name = "Permabrig"})
-"aaQ" = (/turf/open/floor/plasteel/red/side{dir = 8},/area/security/processing{name = "Permabrig"})
-"aaR" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/processing{name = "Permabrig"})
-"aaS" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 10},/obj/item/device/multitool,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"aaT" = (/obj/item/device/radio/intercom{desc = "Talk through this. Evilly";freerange = 1;frequency = 1213;name = "Syndicate Intercom";pixel_y = -32;subspace_transmission = 1;syndie = 1},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"aaU" = (/obj/structure/closet/syndicate/personal,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"aaV" = (/turf/open/space,/area/space/nearstation)
-"aaW" = (/obj/item/device/plant_analyzer,/turf/open/floor/plasteel/green/side{dir = 8},/area/security/processing{name = "Permabrig"})
-"aaX" = (/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"aaY" = (/turf/open/floor/plasteel/green/side{dir = 8},/area/security/processing{name = "Permabrig"})
-"aaZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"aba" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (WEST)";icon_state = "intact";dir = 8},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"abb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (WEST)";icon_state = "intact";dir = 8},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"abc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/table,/obj/machinery/computer/libraryconsole/bookmanagement{pixel_y = 0},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"abd" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile{obj_integrity = 5000;max_integrity = 5000;name = "hardened window"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "permalock"},/turf/open/floor/plating,/area/security/processing{name = "Permabrig"})
-"abe" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/processing{name = "Permabrig"})
-"abf" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/pen,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/processing{name = "Permabrig"})
-"abg" = (/turf/open/space,/turf/closed/wall/mineral/plastitanium{icon_state = "diagonalWall3"},/area/shuttle/syndicate)
-"abh" = (/obj/machinery/door/window{name = "Cockpit";req_access_txt = "150"},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"abi" = (/turf/open/space,/turf/closed/wall/mineral/plastitanium{dir = 4;icon_state = "diagonalWall3"},/area/shuttle/syndicate)
-"abj" = (/obj/machinery/light{dir = 8},/obj/structure/sign/electricshock{pixel_x = -32},/turf/open/floor/plasteel/green/side{dir = 8},/area/security/processing{name = "Permabrig"})
-"abk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"abl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/sign/electricshock{pixel_x = -32},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/processing{name = "Permabrig"})
-"abm" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;name = "regular air vent";on = 1},/obj/machinery/light{dir = 4},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/processing{name = "Permabrig"})
-"abn" = (/turf/open/space,/area/shuttle/syndicate)
-"abo" = (/obj/structure/table,/obj/item/stack/cable_coil,/obj/item/weapon/crowbar/red,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"abp" = (/obj/structure/table,/obj/item/weapon/storage/box/zipties{pixel_x = 1;pixel_y = 2},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"abq" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/turf/open/floor/plating,/area/security/processing{name = "Permabrig"})
-"abr" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/potato,/turf/open/floor/grass,/area/security/processing{name = "Permabrig"})
-"abs" = (/turf/open/floor/plasteel/green,/area/security/processing{name = "Permabrig"})
-"abt" = (/obj/machinery/hydroponics/soil,/turf/open/floor/grass,/area/security/processing{name = "Permabrig"})
-"abu" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/vending/sustenance,/turf/open/floor/plasteel/green/side{dir = 8},/area/security/processing{name = "Permabrig"})
-"abv" = (/obj/machinery/door/poddoor/preopen{id = "holding blast"},/obj/machinery/door/airlock/glass,/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"abw" = (/obj/machinery/light/small{dir = 1},/obj/structure/table,/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"abx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas.";dir = 4;name = "Prison Monitor";network = list("Prison");pixel_x = -30;pixel_y = 0},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/processing{name = "Permabrig"})
-"aby" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/processing{name = "Permabrig"})
-"abz" = (/obj/structure/chair{dir = 8},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"abA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/obj/structure/cable,/turf/open/floor/plating,/area/security/processing{name = "Permabrig"})
-"abB" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/cherry,/turf/open/floor/grass,/area/security/processing{name = "Permabrig"})
-"abC" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/table,/turf/open/floor/plasteel/green/side{dir = 8},/area/security/processing{name = "Permabrig"})
-"abD" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"abE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"abF" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"abG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/security/processing{name = "Permabrig"})
-"abH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/flasher{id = "holding";pixel_x = -30},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"abI" = (/obj/machinery/door/airlock/glass_security{name = "Holding Area";req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"abJ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/processing{name = "Permabrig"})
-"abK" = (/obj/machinery/porta_turret/syndicate{dir = 4},/turf/closed/wall/mineral/plastitanium,/area/shuttle/syndicate)
-"abL" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/closed/wall/r_wall,/area/security/processing{name = "Permabrig"})
-"abM" = (/obj/structure/sign/electricshock{pixel_x = -32},/turf/open/floor/plasteel/green,/area/security/processing{name = "Permabrig"})
-"abN" = (/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"abO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"abP" = (/obj/structure/closet/wardrobe/orange,/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"abQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/button/flasher{id = "holding";pixel_x = -24;pixel_y = 5;req_access_txt = "1"},/obj/machinery/button/door{id = "holding blast";name = "Holding Cell Lock";pixel_x = -24;pixel_y = -5;req_access_txt = "1"},/obj/machinery/button/door{id = "permacell";pixel_x = -38;pixel_y = -5;req_access_txt = "1"},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/processing{name = "Permabrig"})
-"abR" = (/obj/machinery/camera/autoname{tag = "icon-camera (WEST)";icon_state = "camera";dir = 8},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/processing{name = "Permabrig"})
-"abS" = (/obj/machinery/suit_storage_unit/syndicate,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"abT" = (/obj/structure/closet/syndicate/nuclear,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"abU" = (/obj/machinery/hydroponics/soil,/obj/item/weapon/cultivator,/turf/open/floor/grass,/area/security/processing{name = "Permabrig"})
-"abV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"abW" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"abX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (WEST)";icon_state = "intact";dir = 8},/turf/closed/wall,/area/security/processing{name = "Permabrig"})
-"abY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (WEST)";icon_state = "intact";dir = 8},/obj/machinery/flasher{id = "holding";pixel_x = -30},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"abZ" = (/obj/machinery/door/airlock/glass_security{name = "Holding Area";req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (WEST)";icon_state = "intact";dir = 8},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"aca" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (WEST)";icon_state = "intact";dir = 8},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/processing{name = "Permabrig"})
-"acb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/processing{name = "Permabrig"})
-"acc" = (/obj/effect/landmark{name = "carpspawn"},/turf/open/space,/area/space)
-"acd" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"ace" = (/obj/structure/table,/obj/item/device/aicard,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"acf" = (/obj/machinery/door/poddoor{id = "smindicate";name = "outer blast door"},/obj/machinery/button/door{id = "smindicate";name = "external door control";pixel_x = -26;pixel_y = 0;req_access_txt = "150"},/obj/docking_port/mobile{dheight = 9;dir = 2;dwidth = 5;height = 24;id = "syndicate";name = "syndicate infiltrator";port_angle = 0;roundstart_move = "syndicate_away";width = 18},/obj/docking_port/stationary{dheight = 9;dir = 2;dwidth = 5;height = 24;id = "syndicate_nw";name = "northwest of station";turf_type = /turf/open/space;width = 18},/turf/open/floor/plating,/area/shuttle/syndicate)
-"acg" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0},/turf/closed/wall/mineral/plastitanium,/area/shuttle/syndicate)
-"ach" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/carrot,/turf/open/floor/grass,/area/security/processing{name = "Permabrig"})
-"aci" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/table,/obj/effect/holodeck_effect/cards,/turf/open/floor/plasteel/green/side{dir = 8},/area/security/processing{name = "Permabrig"})
-"acj" = (/obj/machinery/light/small,/obj/structure/table,/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"ack" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas.";dir = 4;name = "Prison Monitor";network = list("Prison");pixel_x = -30;pixel_y = 0},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/processing{name = "Permabrig"})
-"acl" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/processing{name = "Permabrig"})
-"acm" = (/obj/structure/table,/obj/item/weapon/grenade/plastic/c4{pixel_x = 2;pixel_y = -5},/obj/item/weapon/grenade/plastic/c4{pixel_x = -3;pixel_y = 3},/obj/item/weapon/grenade/plastic/c4{pixel_x = 2;pixel_y = -3},/obj/item/weapon/grenade/plastic/c4{pixel_x = -2;pixel_y = -1},/obj/item/weapon/grenade/plastic/c4{pixel_x = 3;pixel_y = 3},/obj/machinery/light{dir = 4},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"acn" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/shuttle/syndicate)
-"aco" = (/obj/machinery/door/window{name = "Ready Room";req_access_txt = "150"},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"acp" = (/obj/machinery/light{dir = 8},/obj/structure/sign/electricshock{pixel_x = -32},/turf/open/floor/plasteel/green,/area/security/processing{name = "Permabrig"})
-"acq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/sign/electricshock{pixel_x = -32},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/processing{name = "Permabrig"})
-"acr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/processing{name = "Permabrig"})
-"acs" = (/turf/closed/mineral,/area/ruin/unpowered{name = "Asteroid"})
-"act" = (/obj/machinery/door/window{dir = 4;name = "EVA Storage";req_access_txt = "150"},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"acu" = (/obj/machinery/door/airlock/external{req_access_txt = "150"},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"acv" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/apple,/turf/open/floor/grass,/area/security/processing{name = "Permabrig"})
-"acw" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/green/side{dir = 8},/area/security/processing{name = "Permabrig"})
-"acx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"acy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/processing{name = "Permabrig"})
-"acz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/obj/machinery/light{dir = 4},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/processing{name = "Permabrig"})
-"acA" = (/turf/open/floor/plating/asteroid/airless{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"acB" = (/obj/machinery/door/window{base_state = "right";dir = 4;icon_state = "right";name = "EVA Storage";req_access_txt = "150"},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"acC" = (/turf/open/space,/turf/closed/wall/mineral/plastitanium{dir = 1;icon_state = "diagonalWall3"},/area/shuttle/syndicate)
-"acD" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/sign/electricshock{pixel_y = -32},/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/security/processing{name = "Permabrig"})
-"acE" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/watermelon,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/grass,/area/security/processing{name = "Permabrig"})
-"acF" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/green,/area/security/processing{name = "Permabrig"})
-"acG" = (/obj/machinery/hydroponics/soil,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/grass,/area/security/processing{name = "Permabrig"})
-"acH" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/green/side{dir = 8},/area/security/processing{name = "Permabrig"})
-"acI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/camera{c_tag = "Prison Common Room South";dir = 1;network = list("SS13","Prison")},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"acJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"acK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/button/door{id = "permacell3";normaldoorcontrol = 1;pixel_y = -24;req_access_txt = "1";specialfunctions = 4},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"acL" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/machinery/light,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"acM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"acN" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"acO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/button/door{id = "permacell4";normaldoorcontrol = 1;pixel_y = -24;req_access_txt = "1";specialfunctions = 4},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"acP" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile{obj_integrity = 5000;max_integrity = 5000;name = "hardened window"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{tag = "icon-0-8";icon_state = "0-8"},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "permalock"},/turf/open/floor/plating,/area/security/processing{name = "Permabrig"})
-"acQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/processing{name = "Permabrig"})
-"acR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/processing{name = "Permabrig"})
-"acS" = (/turf/closed/wall/r_wall,/area/security/processing{name = "Prisoner Processing"})
-"acT" = (/obj/item/device/radio/intercom{desc = "Talk through this. Evilly";freerange = 1;frequency = 1213;name = "Syndicate Intercom";pixel_x = -32;subspace_transmission = 1;syndie = 1},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"acU" = (/obj/machinery/door/poddoor/preopen{id = "permacell";name = "cell blast door"},/obj/machinery/door/airlock/glass{id_tag = "permacell3";name = "Cell 3"},/turf/open/floor/plasteel/floorgrime,/area/security/processing{name = "Permabrig"})
-"acV" = (/obj/machinery/door/poddoor/preopen{id = "permacell";name = "cell blast door"},/obj/machinery/door/airlock/glass{id_tag = "permacell4";name = "Cell 4"},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"acW" = (/obj/machinery/door/airlock/glass_security{name = "Prison Wing";req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/processing{name = "Permabrig"})
-"acX" = (/obj/machinery/door/airlock/glass_security{name = "Prison Wing";req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/processing{name = "Permabrig"})
-"acY" = (/obj/structure/closet/crate/bin,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/processing{name = "Prisoner Processing"})
-"acZ" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/filingcabinet,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/processing{name = "Prisoner Processing"})
-"ada" = (/obj/machinery/camera/autoname,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/processing{name = "Prisoner Processing"})
-"adb" = (/obj/structure/table,/obj/item/clothing/under/rank/prisoner,/obj/item/clothing/under/rank/prisoner,/obj/item/clothing/under/rank/prisoner,/obj/item/clothing/under/rank/prisoner,/obj/item/clothing/under/rank/prisoner,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/processing{name = "Prisoner Processing"})
-"adc" = (/obj/structure/table,/obj/item/weapon/storage/box/prisoner,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/processing{name = "Prisoner Processing"})
-"add" = (/obj/machinery/sleeper/syndie{dir = 4},/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"ade" = (/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"adf" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"adg" = (/obj/structure/tank_dispenser/oxygen,/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"adh" = (/obj/structure/table,/obj/item/stack/medical/ointment,/obj/item/stack/medical/bruise_pack,/obj/structure/extinguisher_cabinet{pixel_x = -5;pixel_y = 30},/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"adi" = (/obj/structure/table,/obj/item/weapon/stock_parts/cell/high{pixel_x = -3;pixel_y = 3},/obj/item/weapon/stock_parts/cell/high,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"adj" = (/obj/structure/table,/obj/item/weapon/screwdriver{pixel_y = 9},/obj/item/device/assembly/voice{pixel_y = 3},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"adk" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/device/assembly/infra,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"adl" = (/obj/structure/table,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/prox_sensor{pixel_x = -8;pixel_y = 4},/obj/item/device/assembly/prox_sensor{pixel_x = -8;pixel_y = 4},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"adm" = (/obj/structure/table,/obj/item/weapon/weldingtool/largetank{pixel_y = 3},/obj/item/device/multitool,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"adn" = (/obj/structure/lattice,/turf/open/space,/area/space/nearstation)
-"ado" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/obj/machinery/button/door{id = "permacell3";normaldoorcontrol = 1;pixel_y = 24;specialfunctions = 4},/obj/machinery/camera{c_tag = "Prison Cell 3";network = list("SS13","Prison")},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"adp" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/obj/machinery/button/door{id = "permacell4";normaldoorcontrol = 1;pixel_y = 24;specialfunctions = 4},/obj/machinery/camera{c_tag = "Prison Cell 4";network = list("SS13","Prison")},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"adq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{id = "permalock"},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/processing{name = "Permabrig"})
-"adr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{id = "permalock"},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/processing{name = "Permabrig"})
-"ads" = (/turf/open/floor/plasteel/red/side{dir = 5},/area/security/processing{name = "Prisoner Processing"})
-"adt" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/storage/box/zipties,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/processing{name = "Prisoner Processing"})
-"adu" = (/turf/open/floor/plasteel,/area/security/processing{name = "Prisoner Processing"})
-"adv" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/processing{name = "Prisoner Processing"})
-"adw" = (/turf/closed/mineral/random/labormineral,/area/ruin/unpowered{name = "Asteroid"})
-"adx" = (/turf/closed/mineral/random,/area/ruin/unpowered{name = "Asteroid"})
-"ady" = (/turf/closed/mineral/random,/area/mine/unexplored)
-"adz" = (/obj/docking_port/stationary{dheight = 9;dir = 2;dwidth = 5;height = 24;id = "syndicate_ne";name = "northeast of station";turf_type = /turf/open/space;width = 18},/turf/open/space,/area/space)
-"adA" = (/obj/structure/bed/roller,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"adB" = (/obj/structure/sign/bluecross_2,/turf/closed/wall/mineral/plastitanium,/area/shuttle/syndicate)
-"adC" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/syndicate,/obj/item/weapon/crowbar/red,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"adD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/processing{name = "Prisoner Processing"})
-"adE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/security/processing{name = "Prisoner Processing"})
-"adF" = (/obj/machinery/power/apc{cell_type = 10000;dir = 1;name = "Permabrig APC";pixel_x = 0;pixel_y = 24},/obj/structure/cable{tag = "icon-0-8";icon_state = "0-8"},/turf/open/floor/plasteel,/area/security/processing{name = "Prisoner Processing"})
-"adG" = (/turf/open/floor/plasteel/red/side{dir = 4},/area/security/processing{name = "Prisoner Processing"})
-"adH" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/restraints/handcuffs,/obj/item/weapon/restraints/handcuffs,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/processing{name = "Prisoner Processing"})
-"adI" = (/obj/structure/closet/secure_closet/brig,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/processing{name = "Prisoner Processing"})
-"adJ" = (/obj/machinery/door/window{dir = 4;name = "Infirmary";req_access_txt = "150"},/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"adK" = (/obj/machinery/door/window/westright{name = "Tool Storage";req_access_txt = "150"},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"adL" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/obj/structure/closet,/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"adM" = (/obj/machinery/light/small,/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"adN" = (/obj/structure/bed,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel,/area/security/processing{name = "Permabrig"})
-"adO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/plasteel,/area/security/processing{name = "Prisoner Processing"})
-"adP" = (/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/processing{name = "Prisoner Processing"})
-"adQ" = (/obj/machinery/door/window{base_state = "right";dir = 4;icon_state = "right";name = "Infirmary";req_access_txt = "150"},/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"adR" = (/obj/machinery/door/window{dir = 8;name = "Tool Storage";req_access_txt = "150"},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"adS" = (/obj/machinery/recharge_station,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"adT" = (/turf/closed/wall/r_wall,/area/medical/virology)
-"adU" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/medical/virology)
-"adV" = (/obj/structure/lattice,/turf/open/space,/area/medical/virology)
-"adW" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/processing{name = "Prisoner Processing"})
-"adX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/plasteel,/area/security/processing{name = "Prisoner Processing"})
-"adY" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;name = "regular air vent";on = 1},/turf/open/floor/plasteel,/area/security/processing{name = "Prisoner Processing"})
-"adZ" = (/obj/structure/table,/obj/item/weapon/storage/fancy/donut_box,/turf/open/floor/plasteel/red/side{dir = 4},/area/security/processing{name = "Prisoner Processing"})
-"aea" = (/obj/machinery/computer/prisoner,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/processing{name = "Prisoner Processing"})
-"aeb" = (/obj/machinery/computer/secure_data,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/processing{name = "Prisoner Processing"})
-"aec" = (/obj/machinery/porta_turret/syndicate{dir = 5},/turf/closed/wall/mineral/plastitanium,/area/shuttle/syndicate)
-"aed" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/table,/obj/item/bodypart/r_arm/robot,/obj/item/bodypart/l_arm/robot,/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"aee" = (/obj/machinery/door/window{dir = 1;name = "Surgery";req_access_txt = "150"},/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"aef" = (/obj/structure/window/reinforced{dir = 1},/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"aeg" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/storage/firstaid/regular{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/firstaid/brute,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3;pixel_y = -3},/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"aeh" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3;pixel_y = -3},/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"aei" = (/obj/structure/table,/obj/item/device/sbeacondrop/bomb{pixel_y = 5},/obj/item/device/sbeacondrop/bomb,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"aej" = (/obj/structure/table,/obj/item/weapon/grenade/syndieminibomb{pixel_x = 4;pixel_y = 2},/obj/item/weapon/grenade/syndieminibomb{pixel_x = -1},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"aek" = (/mob/living/carbon/monkey,/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"ael" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"aem" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"aen" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/processing{name = "Prisoner Processing"})
-"aeo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/processing{name = "Prisoner Processing"})
-"aep" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/processing{name = "Prisoner Processing"})
-"aeq" = (/obj/structure/sign/biohazard{pixel_y = 32},/obj/machinery/shower{icon_state = "shower";dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel/white,/area/security/processing{name = "Prisoner Processing"})
-"aer" = (/obj/structure/sink{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/security/processing{name = "Prisoner Processing"})
-"aes" = (/obj/structure/sign/securearea{pixel_x = 0;pixel_y = 32},/obj/machinery/shower{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel/white,/area/security/processing{name = "Prisoner Processing"})
-"aet" = (/obj/machinery/camera/autoname,/turf/open/floor/plasteel/red/side{dir = 1},/area/security/processing{name = "Prisoner Processing"})
-"aeu" = (/obj/structure/table,/obj/item/weapon/paper,/obj/item/weapon/reagent_containers/food/snacks/donut/jelly,/turf/open/floor/plasteel/red/side{dir = 4},/area/security/processing{name = "Prisoner Processing"})
-"aev" = (/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/table/glass,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/turf/open/floor/plasteel/whitered/side{dir = 9},/area/security/processing{name = "Prisoner Processing"})
-"aew" = (/obj/structure/bed,/obj/item/weapon/bedsheet/red,/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/turf/open/floor/plasteel/whitered/side{tag = "icon-whitered (NORTH)";icon_state = "whitered";dir = 1},/area/security/processing{name = "Prisoner Processing"})
-"aex" = (/obj/item/weapon/storage/firstaid/regular{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/firstaid/regular,/obj/structure/table/glass,/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/turf/open/floor/plasteel/whitered/side{dir = 1},/area/security/processing{name = "Prisoner Processing"})
-"aey" = (/obj/structure/table,/obj/item/weapon/surgicaldrill,/obj/item/weapon/circular_saw,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"aez" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/obj/structure/mirror{pixel_x = 30},/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"aeA" = (/obj/machinery/nuclearbomb/syndicate,/obj/machinery/door/window{dir = 1;name = "Secure Storage";req_access_txt = "150"},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"aeB" = (/obj/machinery/telecomms/allinone{intercept = 1},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"aeC" = (/obj/structure/bed/roller,/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"aeD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/mob/living/carbon/monkey,/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"aeE" = (/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"aeF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/mob/living/carbon/monkey,/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"aeG" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plating,/area/medical/virology)
-"aeH" = (/obj/item/weapon/storage/box/beakers{pixel_x = 2;pixel_y = 2},/obj/item/weapon/storage/box/syringes,/obj/machinery/power/apc{cell_type = 5000;dir = 1;name = "Virology APC";pixel_x = 0;pixel_y = 24},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/structure/table/glass,/turf/open/floor/plasteel/whitegreen/side{dir = 9},/area/medical/virology)
-"aeI" = (/obj/item/weapon/book/manual/wiki/infections{pixel_y = 7},/obj/item/weapon/reagent_containers/syringe/antiviral,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/table/glass,/turf/open/floor/plasteel/whitegreen/side{dir = 5},/area/medical/virology)
-"aeJ" = (/obj/machinery/smartfridge/chemistry/virology/preloaded,/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/turf/open/floor/plasteel/whitegreen,/area/medical/virology)
-"aeK" = (/obj/machinery/reagentgrinder{pixel_y = 8},/obj/structure/table/glass,/turf/open/floor/plasteel/whitegreen/side{dir = 9},/area/medical/virology)
-"aeL" = (/obj/item/clothing/gloves/color/latex,/obj/item/device/healthanalyzer,/obj/item/clothing/glasses/hud/health,/obj/structure/reagent_dispensers/virusfood{density = 0;pixel_x = 0;pixel_y = 30},/obj/structure/table/glass,/turf/open/floor/plasteel/whitegreen/side{dir = 5},/area/medical/virology)
-"aeM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/processing{name = "Prisoner Processing"})
-"aeN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4";tag = ""},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/processing{name = "Prisoner Processing"})
-"aeO" = (/obj/machinery/doorButtons/access_button{idDoor = "virology_airlock_interior2";idSelf = "virology_airlock_control2";name = "Virology Access Button";pixel_x = 26;pixel_y = 28;req_access_txt = "3"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/processing{name = "Prisoner Processing"})
-"aeP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology{autoclose = 0;frequency = 1449;icon_state = "door_locked";id_tag = "virology_airlock_interior2";locked = 1;name = "Virology Interior Airlock";req_access_txt = "39"},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/processing{name = "Prisoner Processing"})
-"aeQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/doorButtons/access_button{idDoor = "virology_airlock_interior2";idSelf = "virology_airlock_control2";name = "Virology Access Button";pixel_x = -26;pixel_y = 28;req_access_txt = "3"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/security/processing{name = "Prisoner Processing"})
-"aeR" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/security/processing{name = "Prisoner Processing"})
-"aeS" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/security/processing{name = "Prisoner Processing"})
-"aeT" = (/obj/machinery/doorButtons/access_button{idDoor = "virology_airlock_exterior2";idSelf = "virology_airlock_control2";name = "Virology Access Button";pixel_x = 0;pixel_y = 24;req_access_txt = "3"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology{autoclose = 0;frequency = 1449;icon_state = "door_locked";id_tag = "virology_airlock_exterior2";locked = 1;name = "Virology Exterior Airlock";req_access_txt = "39"},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/processing{name = "Prisoner Processing"})
-"aeU" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/processing{name = "Prisoner Processing"})
-"aeV" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/processing{name = "Prisoner Processing"})
-"aeW" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/processing{name = "Prisoner Processing"})
-"aeX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/processing{name = "Prisoner Processing"})
-"aeY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/processing{name = "Prisoner Processing"})
-"aeZ" = (/obj/structure/table,/turf/open/floor/plasteel/red/side{dir = 4},/area/security/processing{name = "Prisoner Processing"})
-"afa" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/whitered/side{dir = 8},/area/security/processing{name = "Prisoner Processing"})
-"afb" = (/turf/open/floor/plasteel/white,/area/security/processing{name = "Prisoner Processing"})
-"afc" = (/obj/machinery/iv_drip,/obj/item/weapon/reagent_containers/blood/empty,/turf/open/floor/plasteel/whitered/side{dir = 4},/area/security/processing{name = "Prisoner Processing"})
-"afd" = (/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered{name = "Asteroid"})
-"afe" = (/obj/structure/table,/obj/item/weapon/cautery,/obj/item/weapon/scalpel,/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"aff" = (/obj/structure/table/optable,/obj/item/weapon/surgical_drapes,/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"afg" = (/obj/structure/table,/obj/item/weapon/retractor,/obj/item/weapon/hemostat,/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"afh" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating,/area/shuttle/syndicate)
-"afi" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"afj" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/rods{amount = 50},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"afk" = (/obj/structure/rack,/obj/item/clothing/suit/space/syndicate/black/red,/obj/item/clothing/head/helmet/space/syndicate/black/red,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"afl" = (/turf/closed/wall,/area/medical/virology)
-"afm" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/turf/open/floor/plating,/area/medical/virology)
-"afn" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Test Subject Cell";req_access_txt = "39"},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"afo" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/turf/open/floor/plating,/area/medical/virology)
-"afp" = (/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 9},/obj/machinery/light/small{dir = 8},/obj/structure/table/glass,/obj/structure/sign/deathsposal{pixel_x = -30;pixel_y = 0},/turf/open/floor/plasteel/whitegreen/side{dir = 8},/area/medical/virology)
-"afq" = (/obj/structure/chair/office/light{dir = 1;pixel_y = 3},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/whitegreen/corner{dir = 4},/area/medical/virology)
-"afr" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/whitegreen/side{dir = 1},/area/medical/virology)
-"afs" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/landmark/start{name = "Virologist"},/turf/open/floor/plasteel/whitegreen/corner{dir = 1},/area/medical/virology)
-"aft" = (/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/weapon/pen/red,/obj/machinery/requests_console{department = "Virology";name = "Virology Requests Console";pixel_x = 29;pixel_y = 0},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/structure/table/glass,/turf/open/floor/plasteel/whitegreen/side{dir = 4},/area/medical/virology)
-"afu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/processing{name = "Prisoner Processing"})
-"afv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/red/side,/area/security/processing{name = "Prisoner Processing"})
-"afw" = (/obj/machinery/doorButtons/airlock_controller{idExterior = "virology_airlock_exterior2";idInterior = "virology_airlock_interior2";idSelf = "virology_airlock_control2";name = "Virology Access Console";pixel_x = 22;pixel_y = 8;req_access_txt = "3"},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/processing{name = "Prisoner Processing"})
-"afx" = (/obj/structure/closet/emcloset,/obj/item/device/radio/intercom{pixel_x = -28;pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel/white,/area/security/processing{name = "Prisoner Processing"})
-"afy" = (/obj/machinery/camera{c_tag = "Virology - Airlock";dir = 1;network = list("SS13","Medbay")},/obj/machinery/light,/obj/structure/closet/l3closet,/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel/white,/area/security/processing{name = "Prisoner Processing"})
-"afz" = (/obj/structure/closet/l3closet,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel/white,/area/security/processing{name = "Prisoner Processing"})
-"afA" = (/obj/machinery/light,/turf/open/floor/plasteel/red/side,/area/security/processing{name = "Prisoner Processing"})
-"afB" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/processing{name = "Prisoner Processing"})
-"afC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;name = "regular air scrubber";on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/security/processing{name = "Prisoner Processing"})
-"afD" = (/obj/machinery/door/window/westleft{base_state = "left";dir = 8;icon_state = "left";name = "Brig Infirmary";req_access_txt = "0"},/turf/open/floor/plasteel/whitered/side{dir = 8},/area/security/processing{name = "Prisoner Processing"})
-"afE" = (/obj/structure/bed/roller,/obj/item/clothing/suit/straight_jacket,/turf/open/floor/plasteel/whitered/side{dir = 4},/area/security/processing{name = "Prisoner Processing"})
-"afF" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"},/turf/open/floor/plating,/area/shuttle/syndicate)
-"afG" = (/obj/structure/shuttle/engine/propulsion,/turf/open/floor/plating,/area/shuttle/syndicate)
-"afH" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"},/turf/open/floor/plating,/area/shuttle/syndicate)
-"afI" = (/obj/item/device/radio/intercom{pixel_x = -28;pixel_y = 0},/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/machinery/camera{c_tag = "Virology - Cells";dir = 4;network = list("SS13","Medbay")},/obj/machinery/chem_dispenser,/turf/open/floor/plasteel/whitegreen/side{dir = 9},/area/medical/virology)
-"afJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/iv_drip,/turf/open/floor/plasteel/whitegreen/side{dir = 1},/area/medical/virology)
-"afK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whitegreen/side{dir = 1},/area/medical/virology)
-"afL" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel/whitegreen/side{dir = 1},/area/medical/virology)
-"afM" = (/obj/structure/rack,/obj/item/weapon/crowbar/red,/obj/machinery/light_switch{pixel_x = 0;pixel_y = 26},/obj/item/weapon/wrench,/obj/item/weapon/restraints/handcuffs,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/whitegreen/side{dir = 5},/area/medical/virology)
-"afN" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/medical/virology)
-"afO" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whitegreen/side{dir = 8},/area/medical/virology)
-"afP" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/virology)
-"afQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel/white,/area/medical/virology)
-"afR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology)
-"afS" = (/obj/machinery/computer/pandemic{layer = 2.5;pixel_x = -4},/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/intercom{pixel_x = 28;pixel_y = 0},/turf/open/floor/plasteel/whitegreen/side{dir = 4},/area/medical/virology)
-"afT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/virology)
-"afU" = (/obj/structure/sign/biohazard,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/processing{name = "Prisoner Processing"})
-"afV" = (/obj/machinery/door/airlock/glass_security{name = "Virology Transfer";req_access_txt = "3"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/processing{name = "Prisoner Processing"})
-"afW" = (/obj/structure/sign/biohazard,/turf/closed/wall/r_wall,/area/security/processing{name = "Prisoner Processing"})
-"afX" = (/turf/closed/wall,/area/security/processing{name = "Prisoner Processing"})
-"afY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/sign/electricshock{pixel_x = -32},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/processing{name = "Prisoner Processing"})
-"afZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/processing{name = "Prisoner Processing"})
-"aga" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/bodycontainer/morgue,/turf/open/floor/plasteel/whitered/side{dir = 8},/area/security/processing{name = "Prisoner Processing"})
-"agb" = (/turf/open/space,/obj/machinery/porta_turret/syndicate{dir = 6},/turf/closed/wall/mineral/plastitanium{dir = 4;icon_state = "diagonalWall3"},/area/shuttle/syndicate)
-"agc" = (/turf/open/space,/obj/machinery/porta_turret/syndicate{dir = 10},/turf/closed/wall/mineral/plastitanium{icon_state = "diagonalWall3"},/area/shuttle/syndicate)
-"agd" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/table/glass,/obj/item/weapon/storage/box/beakers,/turf/open/floor/plasteel/whitegreen/side{dir = 8},/area/medical/virology)
-"age" = (/obj/structure/chair/office/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"agf" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"agg" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"agh" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/whitegreen/side{dir = 4},/area/medical/virology)
-"agi" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Containment Cells";req_access_txt = "39"},/turf/open/floor/plasteel/whitegreen,/area/medical/virology)
-"agj" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/whitegreen/side{dir = 8},/area/medical/virology)
-"agk" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/virology)
-"agl" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/landmark{name = "lightsout"},/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/medical/virology)
-"agm" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/virology)
-"agn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/whitegreen/side{dir = 4},/area/medical/virology)
-"ago" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/virology{name = "Virology Access";req_access_txt = "39"},/turf/open/floor/plasteel/whitegreen,/area/medical/virology)
-"agp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/turf/open/floor/plasteel/whitegreen/side{dir = 6},/area/medical/virology)
-"agq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8";tag = ""},/turf/open/floor/plasteel/whitegreen/side{dir = 1},/area/medical/virology)
-"agr" = (/turf/open/floor/plasteel/whitegreen/side{dir = 10},/area/medical/virology)
-"ags" = (/obj/structure/closet/secure_closet/warden,/turf/open/floor/plasteel/showroomfloor,/area/security/processing{name = "Prisoner Processing"})
-"agt" = (/obj/structure/closet/secure_closet/armory3,/turf/open/floor/plasteel/showroomfloor,/area/security/processing{name = "Prisoner Processing"})
-"agu" = (/obj/machinery/light{dir = 1},/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/turf/open/floor/plasteel/showroomfloor,/area/security/processing{name = "Prisoner Processing"})
-"agv" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/pen,/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas.";name = "Prison Monitor";network = list("Prison");pixel_x = 0;pixel_y = 30},/turf/open/floor/plasteel/showroomfloor,/area/security/processing{name = "Prisoner Processing"})
-"agw" = (/obj/structure/filingcabinet,/turf/open/floor/plasteel/showroomfloor,/area/security/processing{name = "Prisoner Processing"})
-"agx" = (/obj/structure/table,/obj/item/weapon/storage/box/prisoner,/obj/item/weapon/card/id/prisoner,/turf/open/floor/plasteel/showroomfloor,/area/security/processing{name = "Prisoner Processing"})
-"agy" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/security/processing{name = "Prisoner Processing"})
-"agz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/processing{name = "Prisoner Processing"})
-"agA" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/bodycontainer/morgue,/obj/structure/window/reinforced,/turf/open/floor/plasteel/whitered/side{dir = 10},/area/security/processing{name = "Prisoner Processing"})
-"agB" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel/whitered/side,/area/security/processing{name = "Prisoner Processing"})
-"agC" = (/obj/machinery/sleeper{icon_state = "sleeper-open";dir = 8},/obj/structure/window/reinforced,/turf/open/floor/plasteel/whitered/side{dir = 6},/area/security/processing{name = "Prisoner Processing"})
-"agD" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 9},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/extinguisher_cabinet{pixel_x = -25;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/whitegreen/side{dir = 10},/area/medical/virology)
-"agE" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/whitegreen/side,/area/medical/virology)
-"agF" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whitegreen/side,/area/medical/virology)
-"agG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/whitegreen/side,/area/medical/virology)
-"agH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/turf/open/floor/plasteel/whitegreen/side{dir = 6},/area/medical/virology)
-"agI" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/turf/open/floor/plating,/area/medical/virology)
-"agJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/whitegreen/side{dir = 10},/area/medical/virology)
-"agK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whitegreen/side,/area/medical/virology)
-"agL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/whitegreen/side,/area/medical/virology)
-"agM" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plasteel/whitegreen/side,/area/medical/virology)
-"agN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/camera{c_tag = "Virology - Lab";dir = 8;network = list("SS13","Medbay")},/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/obj/machinery/light_switch{pixel_x = 26;pixel_y = 0},/turf/open/floor/plasteel/whitegreen/side{dir = 6},/area/medical/virology)
-"agO" = (/turf/open/floor/plasteel/whitegreen/side{dir = 8},/area/medical/virology)
-"agP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/turf/open/floor/plasteel/white,/area/medical/virology)
-"agQ" = (/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/plasteel/whitegreen/side{dir = 4},/area/medical/virology)
-"agR" = (/obj/machinery/button/door{id = "permalock";name = "Perma Lockdown";pixel_x = -24},/turf/open/floor/plasteel/showroomfloor,/area/security/processing{name = "Prisoner Processing"})
-"agS" = (/obj/structure/chair/office/light,/turf/open/floor/plasteel/showroomfloor,/area/security/processing{name = "Prisoner Processing"})
-"agT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/showroomfloor,/area/security/processing{name = "Prisoner Processing"})
-"agU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (WEST)";icon_state = "intact";dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/security/processing{name = "Prisoner Processing"})
-"agV" = (/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (WEST)";icon_state = "intact";dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/security/processing{name = "Prisoner Processing"})
-"agW" = (/obj/machinery/door/airlock/glass_security{name = "Brig Desk";req_access_txt = "3"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (WEST)";icon_state = "intact";dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/security/processing{name = "Prisoner Processing"})
-"agX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (WEST)";icon_state = "intact";dir = 8},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/processing{name = "Prisoner Processing"})
-"agY" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/processing{name = "Prisoner Processing"})
-"agZ" = (/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHWEST)";icon_state = "camera";dir = 10},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/processing{name = "Prisoner Processing"})
-"aha" = (/obj/machinery/door/airlock/glass_security{name = "Xenobio Transfer";req_access_txt = "3"},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/processing{name = "Prisoner Processing"})
-"ahb" = (/obj/machinery/light/small{dir = 4},/obj/machinery/button/door{id = "misclab";name = "Test Chamber Blast Doors";pixel_x = 0;pixel_y = 24;req_access_txt = "0";req_one_access_txt = "55; 3"},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/processing{name = "Prisoner Processing"})
-"ahc" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/structure/cable/yellow,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/medical/virology)
-"ahd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Isolation B";req_access_txt = "39"},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"ahe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Isolation A";req_access_txt = "39"},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"ahf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/closed/wall,/area/medical/virology)
-"ahg" = (/obj/structure/closet/wardrobe/virology_white,/obj/item/weapon/storage/backpack/satchel/vir,/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/firealarm{dir = 8;pixel_x = -26;pixel_y = 0},/turf/open/floor/plasteel/vault,/area/medical/virology)
-"ahh" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty{pixel_x = -3;pixel_y = -3},/obj/item/weapon/reagent_containers/blood/AMinus,/obj/item/weapon/reagent_containers/blood/BMinus{pixel_x = -4;pixel_y = 4},/obj/item/weapon/reagent_containers/blood/BPlus{pixel_x = 1;pixel_y = 2},/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OPlus{pixel_x = -2;pixel_y = -1},/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/turf/open/floor/plasteel/vault,/area/medical/virology)
-"ahi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/vault,/area/medical/virology)
-"ahj" = (/obj/structure/closet/secure_closet/medical1,/turf/open/floor/plasteel/vault,/area/medical/virology)
-"ahk" = (/obj/structure/closet/l3closet/virology,/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = -30},/turf/open/floor/plasteel/vault,/area/medical/virology)
-"ahl" = (/obj/machinery/doorButtons/airlock_controller{idExterior = "virology_airlock_exterior";idInterior = "virology_airlock_interior";idSelf = "virology_airlock_control";name = "Virology Access Console";pixel_x = 8;pixel_y = -22;req_access_txt = "39"},/turf/open/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (NORTHEAST)";icon_state = "whitegreen";dir = 5},/area/medical/virology)
-"ahm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/turf/open/floor/plasteel/whitegreen/side,/area/medical/virology)
-"ahn" = (/turf/open/floor/plasteel/whitegreen/side{dir = 9},/area/medical/virology)
-"aho" = (/obj/machinery/computer/prisoner,/turf/open/floor/plasteel/showroomfloor,/area/security/processing{name = "Prisoner Processing"})
-"ahp" = (/obj/machinery/computer/security,/turf/open/floor/plasteel/showroomfloor,/area/security/processing{name = "Prisoner Processing"})
-"ahq" = (/obj/machinery/computer/secure_data,/turf/open/floor/plasteel/showroomfloor,/area/security/processing{name = "Prisoner Processing"})
-"ahr" = (/obj/structure/rack,/obj/item/weapon/storage/box/zipties,/obj/item/weapon/melee/baton,/turf/open/floor/plasteel/showroomfloor,/area/security/processing{name = "Prisoner Processing"})
-"ahs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/showroomfloor,/area/security/processing{name = "Prisoner Processing"})
-"aht" = (/turf/open/floor/plasteel/showroomfloor,/area/security/processing{name = "Prisoner Processing"})
-"ahu" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/sign/electricshock{pixel_y = -32},/turf/open/floor/plating,/area/security/processing{name = "Prisoner Processing"})
-"ahv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/processing{name = "Prisoner Processing"})
-"ahw" = (/obj/machinery/power/apc{cell_type = 10000;dir = 2;name = "Prisoner Processing APC";pixel_x = 0;pixel_y = -24},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plasteel,/area/security/processing{name = "Prisoner Processing"})
-"ahx" = (/obj/machinery/light,/obj/structure/closet/emcloset,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/processing{name = "Prisoner Processing"})
-"ahy" = (/obj/structure/closet/firecloset,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/processing{name = "Prisoner Processing"})
-"ahz" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/window/southleft{dir = 1;name = "Test Chamber";req_access_txt = "3"},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/processing{name = "Prisoner Processing"})
-"ahA" = (/turf/closed/mineral/random/high_chance,/area/ruin/unpowered{name = "Asteroid"})
-"ahB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/bedsheet/medical,/obj/structure/bed,/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"ahC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"ahD" = (/obj/structure/bed,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/bedsheet/medical,/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"ahE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/medical/virology)
-"ahF" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/virology{name = "Break Room";req_access_txt = "39"},/turf/open/floor/plasteel/whitegreen,/area/medical/virology)
-"ahG" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/doorButtons/access_button{idDoor = "virology_airlock_exterior";idSelf = "virology_airlock_control";name = "Virology Access Button";pixel_x = -24;pixel_y = 0;req_access_txt = "39"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology{autoclose = 0;frequency = 1449;icon_state = "door_locked";id_tag = "virology_airlock_exterior";locked = 1;name = "Virology Exterior Airlock";req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/virology)
-"ahH" = (/obj/structure/sign/biohazard,/turf/closed/wall,/area/medical/virology)
-"ahI" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/processing{name = "Prisoner Processing"})
-"ahJ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plating,/area/security/processing{name = "Prisoner Processing"})
-"ahK" = (/obj/machinery/door/airlock/glass_security{name = "Prisoner Processing";req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel,/area/security/processing{name = "Prisoner Processing"})
-"ahL" = (/obj/machinery/door/airlock/glass_security{name = "Prisoner Processing";req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/processing{name = "Prisoner Processing"})
-"ahM" = (/obj/effect/decal/remains/human,/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered{name = "Asteroid"})
-"ahN" = (/obj/item/clothing/mask/facehugger/dead,/obj/effect/decal/cleanable/xenoblood,/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered{name = "Asteroid"})
-"ahO" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/glass_security{name = "Xenobio Transfer";req_access_txt = "3"},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/processing{name = "Prisoner Processing"})
-"ahP" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"ahQ" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"ahR" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"ahS" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"ahT" = (/obj/structure/table/glass,/obj/machinery/newscaster{pixel_x = -30},/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/weapon/paper,/obj/item/weapon/pen/red,/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = 30},/turf/open/floor/plasteel/whitegreen/side{dir = 9},/area/medical/virology)
-"ahU" = (/obj/structure/chair/office/light{dir = 8},/obj/machinery/light{dir = 1},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0;pixel_y = 29},/turf/open/floor/plasteel/whitegreen/side{dir = 1},/area/medical/virology)
-"ahV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/whitegreen/side{dir = 1},/area/medical/virology)
-"ahW" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3;pixel_y = 3},/obj/machinery/light_switch{pixel_x = 0;pixel_y = 26},/obj/machinery/camera{c_tag = "Virology - Break Room";dir = 2;network = list("SS13","Medbay")},/turf/open/floor/plasteel/whitegreen/side{dir = 1},/area/medical/virology)
-"ahX" = (/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 29},/obj/structure/table/glass,/obj/machinery/microwave{pixel_x = -3;pixel_y = 6},/turf/open/floor/plasteel/whitegreen/side{dir = 5},/area/medical/virology)
-"ahY" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel/white,/area/medical/virology)
-"ahZ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/virology)
-"aia" = (/obj/structure/closet/emcloset,/obj/machinery/camera{c_tag = "Virology Airlock";dir = 2;network = list("SS13")},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel/white,/area/medical/virology)
-"aib" = (/obj/structure/closet/crate{icon_state = "crateopen";opened = 1},/turf/open/floor/plasteel,/area/security/processing{name = "Prisoner Processing"})
-"aic" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/turf/open/floor/plasteel,/area/security/processing{name = "Prisoner Processing"})
-"aid" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/security/processing{name = "Prisoner Processing"})
-"aie" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/processing{name = "Prisoner Processing"})
-"aif" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;name = "regular air scrubber";on = 1},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/security/processing{name = "Prisoner Processing"})
-"aig" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/processing{name = "Prisoner Processing"})
-"aih" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"aii" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"aij" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"aik" = (/turf/closed/wall/r_wall,/area/toxins/xenobiology)
-"ail" = (/obj/machinery/door/poddoor/preopen{id = "misclab";name = "test chamber blast door"},/turf/open/floor/engine,/area/toxins/xenobiology)
-"aim" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/glass/beaker,/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"ain" = (/obj/structure/table/glass,/obj/item/weapon/folder/white{pixel_y = 4},/obj/item/weapon/pen/red,/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"aio" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/closed/wall,/area/medical/virology)
-"aip" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whitegreen/side{dir = 8},/area/medical/virology)
-"aiq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/virology)
-"air" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology)
-"ais" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel/white,/area/medical/virology)
-"ait" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/turf/open/floor/plasteel/whitegreen/side{dir = 4},/area/medical/virology)
-"aiu" = (/obj/machinery/shower{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/camera/autoname{tag = "icon-camera (EAST)";icon_state = "camera";dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology)
-"aiv" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"aiw" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/structure/closet/l3closet,/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology)
-"aix" = (/obj/machinery/door/airlock/glass_security{id_tag = null;name = "Prisoner Storage";req_access_txt = "63"},/turf/open/floor/plasteel,/area/security/processing{name = "Prisoner Processing"})
-"aiy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/processing{name = "Prisoner Processing"})
-"aiz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (WEST)";icon_state = "intact";dir = 8},/turf/open/floor/plasteel,/area/security/processing{name = "Prisoner Processing"})
-"aiA" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plating,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"aiB" = (/turf/open/floor/plating,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"aiC" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"aiD" = (/turf/open/floor/engine,/area/toxins/xenobiology)
-"aiE" = (/obj/machinery/light{dir = 1},/turf/open/floor/engine,/area/toxins/xenobiology)
-"aiF" = (/obj/machinery/camera{c_tag = "Xenobiology Test Chamber";dir = 2;network = list("Xeno","RD");pixel_x = 0},/turf/open/floor/engine,/area/toxins/xenobiology)
-"aiG" = (/turf/closed/mineral/random/low_chance,/area/ruin/unpowered{name = "Asteroid"})
-"aiH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/medical/virology)
-"aiI" = (/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/whitegreen/side{dir = 10},/area/medical/virology)
-"aiJ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/whitegreen/side,/area/medical/virology)
-"aiK" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/turf/open/floor/plasteel/whitegreen/side,/area/medical/virology)
-"aiL" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/whitegreen/side,/area/medical/virology)
-"aiM" = (/obj/structure/chair/stool,/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel/whitegreen/side{dir = 6},/area/medical/virology)
-"aiN" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel/white,/area/medical/virology)
-"aiO" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/white,/area/medical/virology)
-"aiP" = (/obj/structure/closet/l3closet,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel/white,/area/medical/virology)
-"aiQ" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel,/area/security/processing{name = "Prisoner Processing"})
-"aiR" = (/obj/machinery/door/airlock/glass_security{name = "Brig Desk";req_access_txt = "1"},/obj/structure/cable{icon_state = "2-4";tag = "icon-2-8"},/turf/open/floor/plasteel/black,/area/security/processing{name = "Prisoner Processing"})
-"aiS" = (/obj/structure/grille,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/processing{name = "Prisoner Processing"})
-"aiT" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/closed/wall,/area/security/processing{name = "Prisoner Processing"})
-"aiU" = (/obj/machinery/door/airlock/glass_security{id_tag = "innerbrig";name = "Brig";req_access_txt = "63"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/red/side{dir = 9},/area/security/processing{name = "Prisoner Processing"})
-"aiV" = (/obj/machinery/door/airlock/glass_security{id_tag = "innerbrig";name = "Brig";req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/processing{name = "Prisoner Processing"})
-"aiW" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/turf/open/floor/plating,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"aiX" = (/obj/machinery/power/terminal{tag = "icon-term (WEST)";icon_state = "term";dir = 8},/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"aiY" = (/obj/item/weapon/storage/box/lights,/turf/open/floor/plating,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"aiZ" = (/obj/machinery/light/small,/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/maintenance/fore)
-"aja" = (/obj/structure/disposaloutlet{tag = "icon-outlet (WEST)";icon_state = "outlet";dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation)
-"ajb" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation)
-"ajc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating/airless,/area/space/nearstation)
-"ajd" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plating,/area/medical/virology)
-"aje" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 1},/turf/open/floor/plasteel/vault,/area/medical/virology)
-"ajf" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1;name = "virology air connector port"},/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plasteel/vault,/area/medical/virology)
-"ajg" = (/obj/item/trash/popcorn,/obj/structure/table/glass,/turf/open/floor/plasteel/vault,/area/medical/virology)
-"ajh" = (/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/structure/table/glass,/turf/open/floor/plasteel/vault,/area/medical/virology)
-"aji" = (/obj/item/trash/cheesie{pixel_y = 4},/obj/structure/table/glass,/turf/open/floor/plasteel/vault,/area/medical/virology)
-"ajj" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology{autoclose = 0;frequency = 1449;icon_state = "door_locked";id_tag = "virology_airlock_interior";locked = 1;name = "Virology Interior Airlock";req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/doorButtons/access_button{idDoor = "virology_airlock_exterior";idSelf = "virology_airlock_control";name = "Virology Access Button";pixel_x = -24;pixel_y = 0;req_access_txt = "39"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"ajk" = (/obj/structure/sign/biohazard,/turf/closed/wall/r_wall,/area/medical/virology)
-"ajl" = (/obj/structure/closet/secure_closet/brig,/turf/open/floor/plasteel,/area/security/processing{name = "Prisoner Processing"})
-"ajm" = (/obj/machinery/button/door{id = "briggate";name = "Desk Shutters";pixel_x = -26;pixel_y = 6;req_access_txt = "0"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/button/flasher{id = "brigentry";pixel_x = -28;pixel_y = -8},/turf/open/floor/plasteel/black,/area/security/processing{name = "Prisoner Processing"})
-"ajn" = (/obj/machinery/computer/secure_data,/turf/open/floor/plasteel/black,/area/security/processing{name = "Prisoner Processing"})
-"ajo" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "briggate";name = "security shutters"},/obj/machinery/door/window/eastleft{name = "Brig Desk";req_access_txt = "1"},/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/turf/open/floor/plasteel/black,/area/security/processing{name = "Prisoner Processing"})
-"ajp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/red/side{dir = 9},/area/security/processing{name = "Prisoner Processing"})
-"ajq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/processing{name = "Prisoner Processing"})
-"ajr" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"ajs" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plating,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"ajt" = (/obj/item/weapon/extinguisher,/turf/open/floor/plating,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"aju" = (/obj/effect/landmark/event_spawn,/turf/open/floor/engine,/area/toxins/xenobiology)
-"ajv" = (/turf/closed/wall,/area/maintenance/fore)
-"ajw" = (/obj/machinery/door/airlock/external{name = "Mining Airlock";req_access = null;req_access_txt = "48"},/turf/open/floor/noslip,/area/maintenance/fore)
-"ajx" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1},/turf/open/floor/plating/airless,/area/space/nearstation)
-"ajy" = (/turf/closed/wall/r_wall,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"ajz" = (/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"ajA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"ajB" = (/obj/machinery/light/small{dir = 8},/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer.";id = "outerbrig";name = "Brig Exterior Doors Control";normaldoorcontrol = 1;pixel_x = -26;pixel_y = -5;req_access_txt = "63"},/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer.";id = "innerbrig";name = "Brig Interior Doors Control";normaldoorcontrol = 1;pixel_x = -26;pixel_y = 5;req_access_txt = "63"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/black,/area/security/processing{name = "Prisoner Processing"})
-"ajC" = (/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plasteel/black,/area/security/processing{name = "Prisoner Processing"})
-"ajD" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "briggate";name = "security shutters"},/obj/machinery/door/window/eastright{name = "Brig Desk";req_access_txt = "2"},/obj/item/weapon/restraints/handcuffs,/obj/item/device/radio/off,/turf/open/floor/plasteel/black,/area/security/processing{name = "Prisoner Processing"})
-"ajE" = (/obj/machinery/flasher{id = "brigentry";pixel_x = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/processing{name = "Prisoner Processing"})
-"ajF" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"ajG" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"ajH" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plating,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"ajI" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE"},/turf/closed/wall/r_wall,/area/toxins/xenobiology)
-"ajJ" = (/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk,/turf/open/floor/engine,/area/toxins/xenobiology)
-"ajK" = (/turf/closed/mineral/random/labormineral,/area/mine/unexplored)
-"ajL" = (/obj/structure/sign/xeno_warning_mining{pixel_x = -30},/obj/structure/sign/vacuum{pixel_x = 30},/turf/open/floor/noslip,/area/maintenance/fore)
-"ajM" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/obj/structure/closet/crate,/obj/item/weapon/storage/backpack/satchel/leather/withwallet,/turf/open/floor/plating,/area/maintenance/fore)
-"ajN" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/obj/structure/closet/crate{icon_state = "crateopen";opened = 1},/turf/open/floor/plating,/area/maintenance/fore)
-"ajO" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/turf/closed/wall,/area/maintenance/fore)
-"ajP" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fore)
-"ajQ" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/obj/structure/table,/obj/item/weapon/storage/belt,/turf/open/floor/plating,/area/maintenance/fore)
-"ajR" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/turf/open/floor/plating,/area/maintenance/fore)
-"ajS" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/closet,/turf/open/floor/plating,/area/maintenance/fore)
-"ajT" = (/obj/structure/closet/crate/bin,/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"ajU" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"ajV" = (/obj/structure/closet/firecloset,/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"ajW" = (/turf/closed/wall,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"ajX" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "briggate";name = "security shutters"},/obj/machinery/door/window/southleft{name = "Brig Desk";req_access_txt = "1"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = ""},/obj/structure/sign/electricshock{pixel_x = -32},/turf/open/floor/plasteel/black,/area/security/processing{name = "Prisoner Processing"})
-"ajY" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "briggate";name = "security shutters"},/obj/machinery/door/window/southleft{base_state = "right";icon_state = "right";name = "Brig Desk";req_access_txt = "1"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/black,/area/security/processing{name = "Prisoner Processing"})
-"ajZ" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "briggate";name = "security blast door"},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/processing{name = "Prisoner Processing"})
-"aka" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{id_tag = "outerbrig";name = "Brig";req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/red/side{dir = 9},/area/security/processing{name = "Prisoner Processing"})
-"akb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{id_tag = "outerbrig";name = "Brig";req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/processing{name = "Prisoner Processing"})
-"akc" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE"},/turf/closed/wall/r_wall,/area/security/processing{name = "Prisoner Processing"})
-"akd" = (/obj/machinery/door/airlock/maintenance_hatch,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"ake" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/shieldwallgen{req_access = list(55)},/turf/open/floor/plating,/area/toxins/xenobiology)
-"akf" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/door/poddoor/preopen{id = "misclab";name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology)
-"akg" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/door/poddoor/preopen{id = "misclab";name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology)
-"akh" = (/obj/machinery/door/window/southleft{dir = 1;name = "Test Chamber";req_access_txt = "55"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/door/poddoor/preopen{id = "misclab";name = "test chamber blast door"},/turf/open/floor/engine,/area/toxins/xenobiology)
-"aki" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/door/poddoor/preopen{id = "misclab";name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology)
-"akj" = (/obj/structure/grille,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "misclab";name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology)
-"akk" = (/obj/item/stack/sheet/cardboard,/obj/item/weapon/pickaxe,/turf/open/floor/plating,/area/maintenance/fore)
-"akl" = (/obj/structure/closet/cardboard,/turf/open/floor/plating,/area/maintenance/fore)
-"akm" = (/turf/open/floor/plating,/area/maintenance/fore)
-"akn" = (/obj/machinery/door/airlock/maintenance_hatch,/turf/open/floor/plating,/area/maintenance/fore)
-"ako" = (/obj/item/weapon/caution,/turf/open/floor/plating,/area/maintenance/fore)
-"akp" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"akq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"akr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (WEST)";icon_state = "intact";dir = 8},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"aks" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"akt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"aku" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"akv" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"akw" = (/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"akx" = (/obj/effect/turf_decal/stripes/line{dir = 2},/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"aky" = (/obj/item/weapon/wrench,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"akz" = (/obj/machinery/computer/security/telescreen{name = "Test Chamber Moniter";network = list("Xeno");pixel_x = 0;pixel_y = 2},/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"akA" = (/obj/machinery/button/door{id = "misclab";name = "Test Chamber Blast Doors";pixel_x = 0;pixel_y = -2;req_access_txt = "55"},/obj/structure/table/reinforced,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/window/reinforced{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"akB" = (/obj/machinery/door/window/southleft{name = "Test Chamber";req_access_txt = "55"},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"akC" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"akD" = (/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"akE" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"akF" = (/obj/structure/sign/xeno_warning_mining{pixel_x = -30},/obj/structure/sign/vacuum{pixel_x = 30},/turf/open/floor/plating,/area/maintenance/fore)
-"akG" = (/obj/structure/sign/pods,/turf/closed/wall,/area/maintenance/fore)
-"akH" = (/obj/machinery/camera{c_tag = "Security Escape Pod";dir = 4;network = list("SS13")},/turf/open/floor/plating,/area/maintenance/fore)
-"akI" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 8},/turf/closed/wall/mineral/titanium,/area/shuttle/pod_4)
-"akJ" = (/turf/closed/wall/mineral/titanium,/area/shuttle/pod_4)
-"akK" = (/turf/closed/wall/mineral/titanium,/area/shuttle/pod_3)
-"akL" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 4;icon_state = "propulsion";tag = "icon-propulsion (WEST)"},/turf/closed/wall/mineral/titanium,/area/shuttle/pod_3)
-"akM" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"akN" = (/obj/structure/sign/pods,/turf/closed/wall,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"akO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"akP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (WEST)";icon_state = "intact";dir = 8},/obj/machinery/camera/autoname,/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"akQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (WEST)";icon_state = "intact";dir = 8},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"akR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"akS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"akT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"akU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"akV" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"akW" = (/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHWEST)";icon_state = "camera";dir = 10},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"akX" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"akY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Xenobiology Lab";req_access_txt = "55"},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"akZ" = (/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"ala" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4";tag = ""},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"alb" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"alc" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/light,/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"ald" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHWEST)";icon_state = "camera";dir = 10},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"ale" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"alf" = (/obj/structure/statue/sandstone/assistant,/turf/open/floor/plating,/area/maintenance/fore)
-"alg" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/fore)
-"alh" = (/obj/structure/grille{density = 0;icon_state = "brokengrille"},/turf/open/floor/plating,/area/maintenance/fore)
-"ali" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fore)
-"alj" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 8;name = "8maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fore)
-"alk" = (/obj/structure/closet/crate/internals,/turf/open/floor/plating,/area/maintenance/fore)
-"all" = (/obj/structure/closet/firecloset/full,/turf/open/floor/plating,/area/maintenance/fore)
-"alm" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/fore)
-"aln" = (/obj/structure/mopbucket,/obj/item/weapon/mop,/turf/open/floor/plating,/area/maintenance/fore)
-"alo" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fore)
-"alp" = (/obj/machinery/door/airlock/external{name = "Escape Pod Four";req_access_txt = "0"},/turf/open/floor/plating,/area/maintenance/fore)
-"alq" = (/obj/machinery/door/airlock/titanium{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{dir = 4;id = "pod4";name = "escape pod 4";port_angle = 180;preferred_direction = 4},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_4)
-"alr" = (/obj/item/device/radio/intercom{pixel_y = 25},/obj/item/weapon/storage/pod{pixel_x = 6;pixel_y = -32},/obj/structure/chair{dir = 4},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_4)
-"als" = (/obj/machinery/computer/shuttle/pod{pixel_y = -32;possible_destinations = "pod_asteroid3";shuttleId = "pod3"},/obj/structure/chair{dir = 4},/obj/machinery/status_display{density = 0;layer = 3;pixel_x = 0;pixel_y = 32},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_4)
-"alt" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/pod_4)
-"alu" = (/obj/docking_port/stationary/random{dir = 4;id = "pod_asteroid4";name = "asteroid"},/turf/open/space,/area/space/nearstation)
-"alv" = (/obj/docking_port/stationary/random{dir = 8;id = "pod_asteroid2";name = "asteroid"},/turf/open/space,/area/space)
-"alw" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/pod_3)
-"alx" = (/obj/machinery/computer/shuttle/pod{pixel_x = 0;pixel_y = -32;possible_destinations = "pod_asteroid2";shuttleId = "pod2"},/obj/structure/chair{dir = 8},/obj/machinery/status_display{density = 0;layer = 3;pixel_x = 0;pixel_y = 32},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_3)
-"aly" = (/obj/item/weapon/storage/pod{pixel_x = 6;pixel_y = -28},/obj/item/device/radio/intercom{pixel_x = 0;pixel_y = 25},/obj/structure/chair{dir = 8},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_3)
-"alz" = (/obj/machinery/door/airlock/titanium{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{dir = 8;id = "pod3";name = "escape pod 3";port_angle = 180},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_3)
-"alA" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 1;name = "Escape Pod Three"},/turf/open/floor/plating,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"alB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"alC" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"alD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"alE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"alF" = (/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"alG" = (/turf/closed/wall/r_wall,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"alH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/closed/wall/r_wall,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"alI" = (/obj/machinery/door/airlock/highsecurity{name = "Secure Workstations";req_access_txt = "0";req_one_access_txt = "39; 63; 55; 19"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"alJ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"alK" = (/turf/closed/wall,/area/toxins/xenobiology)
-"alL" = (/turf/closed/wall,/area/construction/hallway{name = "Biodome Hallway"})
-"alM" = (/obj/structure/closet/emcloset,/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/fore)
-"alN" = (/obj/machinery/camera{c_tag = "Arrivals Escape Pod 3";dir = 8},/obj/machinery/light/small,/turf/open/floor/plating,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"alO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"alP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light,/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"alQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"alR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"alS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/closet/secure_closet/medical1,/obj/structure/sign/securearea{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"alT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"alU" = (/obj/machinery/power/apc{dir = 8;name = "Xenobiology APC";pixel_x = -25},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"alV" = (/obj/machinery/camera{c_tag = "Custodial Closet"},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"alW" = (/obj/machinery/monkey_recycler,/obj/machinery/firealarm{dir = 2;pixel_y = 24},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"alX" = (/obj/machinery/processor{desc = "A machine used to process slimes and retrieve their extract.";name = "Slime Processor"},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"alY" = (/obj/machinery/smartfridge/extract/preloaded,/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"alZ" = (/obj/structure/table,/obj/machinery/reagentgrinder,/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"ama" = (/obj/structure/closet/l3closet/scientist,/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"amb" = (/obj/structure/closet/l3closet/scientist,/obj/machinery/light_switch{pixel_x = 0;pixel_y = 28},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"amc" = (/turf/closed/mineral,/area/construction/hallway{name = "Biodome Hallway"})
-"amd" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fore)
-"ame" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";name = "KEEP CLEAR: DOCKING AREA";pixel_y = 0},/turf/closed/wall/r_wall,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"amf" = (/obj/machinery/door/airlock/external,/turf/open/floor/noslip,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"amg" = (/turf/open/floor/carpet,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"amh" = (/obj/structure/chair/comfy/brown{dir = 4},/turf/open/floor/carpet,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"ami" = (/obj/structure/table/wood,/turf/open/floor/carpet,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"amj" = (/obj/structure/chair/comfy/brown{dir = 8},/turf/open/floor/carpet,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"amk" = (/turf/open/floor/plasteel{icon_state = "delivery"},/area/construction/hallway{name = "Secure Workstations Common Area"})
-"aml" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold (WEST)";icon_state = "manifold";dir = 8},/obj/machinery/light/small{dir = 8},/obj/structure/closet/secure_closet/chemical,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"amm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"amn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Xenobiology Maintenance";req_access_txt = "55"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/toxins/xenobiology)
-"amo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"amp" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"amq" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"amr" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"ams" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"amt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"amu" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating,/area/maintenance/fore)
-"amv" = (/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"amw" = (/obj/structure/flora/rock/pile,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"amx" = (/obj/machinery/power/apc{dir = 8;name = "Fore Maintenance APC";pixel_x = -25;pixel_y = 3},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/maintenance/fore)
-"amy" = (/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plating,/area/maintenance/fore)
-"amz" = (/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/structure/window/reinforced{dir = 4},/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/fore)
-"amA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"amB" = (/turf/open/floor/noslip,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"amC" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"amD" = (/obj/machinery/vending/snack,/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"amE" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"amF" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/turf/open/floor/carpet,/area/construction/hallway{name = "Secure Workstations Common Area"})
-"amG" = (/turf/closed/wall/r_wall,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"amH" = (/obj/machinery/door/airlock/highsecurity{name = "Secure Workstations";req_access_txt = "0";req_one_access_txt = "39; 63; 55; 19"},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"amI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/closet/crate/freezer/surplus_limbs,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"amJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"amK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/toxins/xenobiology)
-"amL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"amM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/comfy/black,/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"amN" = (/obj/effect/landmark/start{name = "Scientist"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/comfy/black,/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"amO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"amP" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"amQ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"amR" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"amS" = (/obj/machinery/light{dir = 1},/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"amT" = (/obj/structure/cable{icon_state = "2-4";tag = "icon-2-8"},/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"amU" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"amV" = (/obj/machinery/power/apc{dir = 2;name = "Sleeping Room 3 APC";pixel_y = -24},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/grass,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 3"})
-"amW" = (/obj/machinery/light,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"amX" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/fore)
-"amY" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/fore)
-"amZ" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/fore)
-"ana" = (/turf/closed/wall,/area/crew_quarters/sleep)
-"anb" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/closet/lasertag/blue,/turf/open/floor/plating,/area/maintenance/fore)
-"anc" = (/obj/effect/landmark{name = "carpspawn"},/turf/open/space,/area/space/nearstation)
-"and" = (/obj/structure/sign/securearea{pixel_y = 32},/turf/open/floor/plasteel{icon_state = "delivery"},/area/construction/hallway{name = "Secure Workstations Hallway"})
-"ane" = (/turf/open/floor/plasteel{icon_state = "delivery"},/area/construction/hallway{name = "Secure Workstations Hallway"})
-"anf" = (/turf/closed/wall,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"ang" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/closed/wall,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"anh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/door/airlock/maintenance_hatch,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"ani" = (/obj/structure/closet/crate/bin,/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"anj" = (/obj/machinery/computer/camera_advanced/xenobio,/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"ank" = (/obj/machinery/light,/obj/structure/table/glass,/obj/item/weapon/storage/box/monkeycubes,/obj/item/weapon/storage/box/monkeycubes,/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"anl" = (/obj/structure/table/glass,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"anm" = (/obj/structure/table,/obj/item/weapon/extinguisher{pixel_x = 4;pixel_y = 3},/obj/item/weapon/extinguisher,/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"ann" = (/obj/structure/table,/obj/machinery/requests_console{department = "Science";departmentType = 2;name = "Science Requests Console";pixel_x = 0;pixel_y = -30},/obj/item/weapon/paper_bin{pixel_x = 1;pixel_y = 9},/obj/item/weapon/pen,/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"ano" = (/obj/structure/table,/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/machinery/light,/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -29},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"anp" = (/obj/structure/table,/obj/item/weapon/storage/box/beakers{pixel_x = 2;pixel_y = 2},/obj/item/weapon/storage/box/syringes,/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"anq" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"anr" = (/obj/structure/rack,/obj/item/device/paicard,/turf/open/floor/plating,/area/maintenance/fore)
-"ans" = (/obj/structure/flora/grass/green,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"ant" = (/turf/open/floor/plasteel/green/side{dir = 9},/area/construction/hallway{name = "Biodome Hallway"})
-"anu" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/green/side{dir = 5},/area/construction/hallway{name = "Biodome Hallway"})
-"anv" = (/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 3"})
-"anw" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 3"})
-"anx" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/fore)
-"any" = (/obj/structure/table,/obj/item/weapon/coin/iron,/turf/open/floor/plating,/area/maintenance/fore)
-"anz" = (/obj/structure/chair{dir = 8},/turf/open/floor/plating,/area/maintenance/fore)
-"anA" = (/obj/structure/closet/wardrobe/mixed,/turf/open/floor/plating,/area/maintenance/fore)
-"anB" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/button/door{id = "bunk1";name = "Bunk Bolt Control 1";normaldoorcontrol = 1;pixel_x = -25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"anC" = (/obj/machinery/door/airlock{id_tag = "bunk1";name = "Bunk 1"},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"anD" = (/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"anE" = (/obj/machinery/door/airlock{id_tag = "bunk2";name = "Bunk 2"},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"anF" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/button/door{id = "bunk2";name = "Bunk Bolt Control 2";normaldoorcontrol = 1;pixel_x = 25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"anG" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/closet/lasertag/red,/turf/open/floor/plating,/area/maintenance/fore)
-"anH" = (/turf/closed/wall/mineral/titanium,/area/shuttle/abandoned)
-"anI" = (/obj/machinery/door/airlock/titanium,/obj/docking_port/mobile{dheight = 0;dir = 2;dwidth = 11;height = 22;id = "whiteship";launch_status = 0;name = "NT Medical Ship";port_angle = -90;preferred_direction = 4;roundstart_move = "whiteship_away";timid = null;width = 35},/obj/docking_port/stationary{dir = 2;dwidth = 11;height = 22;id = "whiteship_home";name = "SS13 Arrival Docking";turf_type = /turf/open/space;width = 35},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"anJ" = (/obj/machinery/door/airlock/titanium,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"anK" = (/turf/closed/wall,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"anL" = (/turf/open/floor/plasteel/red/corner{dir = 1},/area/construction/hallway{name = "Secure Workstations Hallway"})
-"anM" = (/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"anN" = (/turf/open/floor/plasteel/red/corner,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"anO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"anP" = (/obj/structure/sign/biohazard,/turf/closed/wall,/area/toxins/xenobiology)
-"anQ" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"anR" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"anS" = (/obj/machinery/door/firedoor,/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/machinery/camera{c_tag = "Xenobiology North";dir = 8;network = list("SS13","RD")},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"anT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/green/side{dir = 9},/area/construction/hallway{name = "Biodome Hallway"})
-"anU" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/green/side{dir = 5},/area/construction/hallway{name = "Biodome Hallway"})
-"anV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"anW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 3"})
-"anX" = (/obj/structure/dresser,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;name = "regular air scrubber";on = 1;scrub_Toxins = 0},/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 3"})
-"anY" = (/obj/item/device/radio/intercom{name = "Station Intercom";pixel_x = 0;pixel_y = 24},/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 3"})
-"anZ" = (/obj/structure/chair/stool,/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 3"})
-"aoa" = (/obj/structure/table/wood,/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 3"})
-"aob" = (/obj/structure/bed,/obj/item/weapon/bedsheet/orange,/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 3"})
-"aoc" = (/obj/structure/table,/obj/effect/spawner/lootdrop/gambling,/turf/open/floor/plating,/area/maintenance/fore)
-"aod" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"aoe" = (/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plating,/area/maintenance/fore)
-"aof" = (/obj/structure/shuttle/engine/propulsion{dir = 8;icon_state = "propulsion_l"},/turf/open/floor/plating/airless,/area/shuttle/abandoned)
-"aog" = (/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"aoh" = (/obj/structure/table,/obj/item/device/radio/off,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"aoi" = (/obj/structure/table,/obj/item/weapon/screwdriver,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"aoj" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel/red/corner,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"aok" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/disposaloutlet,/turf/open/floor/engine,/area/toxins/xenobiology)
-"aol" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/engine,/area/toxins/xenobiology)
-"aom" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/door/poddoor/preopen{id = "xenobio3";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology)
-"aon" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/window/reinforced,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"aoo" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"aop" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"aoq" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/button/door{id = "xenobio8";name = "Containment Blast Doors";pixel_x = 0;pixel_y = 4;req_access_txt = "55"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"aor" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "xenobio8";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology)
-"aos" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/droneDispenser,/turf/open/floor/plating,/area/maintenance/fore)
-"aot" = (/obj/structure/rack,/obj/item/stack/sheet/metal{amount = 50},/turf/open/floor/plating,/area/maintenance/fore)
-"aou" = (/obj/structure/table,/obj/item/drone_shell,/turf/open/floor/plating,/area/maintenance/fore)
-"aov" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"aow" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"aox" = (/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"aoy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{id_tag = "cabin3";name = "Cabin 3"},/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 3"})
-"aoz" = (/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 3"})
-"aoA" = (/obj/effect/landmark/event_spawn,/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 3"})
-"aoB" = (/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/maintenance/fore)
-"aoC" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/button/door{id = "bunk3";name = "Bunk Bolt Control 3";normaldoorcontrol = 1;pixel_x = -25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"aoD" = (/obj/machinery/door/airlock{id_tag = "bunk3";name = "Bunk 3"},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"aoE" = (/obj/machinery/door/airlock{id_tag = "bunk4";name = "Bunk 4"},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"aoF" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/button/door{id = "bunk4";name = "Bunk Bolt Control 4";normaldoorcontrol = 1;pixel_x = 25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"aoG" = (/obj/structure/closet/crate/engineering,/turf/open/floor/plating,/area/maintenance/fore)
-"aoH" = (/obj/structure/shuttle/engine/propulsion{dir = 8;icon_state = "propulsion"},/turf/open/floor/plating/airless,/area/shuttle/abandoned)
-"aoI" = (/obj/structure/shuttle/engine/heater{icon_state = "heater";dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating/airless,/area/shuttle/abandoned)
-"aoJ" = (/turf/open/floor/plating,/turf/closed/wall/mineral/titanium/interior,/area/shuttle/abandoned)
-"aoK" = (/obj/machinery/computer/pod{id = "oldship_gun"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"aoL" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)";icon_state = "camera";dir = 5},/turf/open/floor/plasteel/red/corner{dir = 1},/area/construction/hallway{name = "Secure Workstations Hallway"})
-"aoM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/red/corner,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"aoN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"aoO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"aoP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"aoQ" = (/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/engine,/area/toxins/xenobiology)
-"aoR" = (/obj/machinery/door/window/northleft{base_state = "right";dir = 8;icon_state = "right";name = "Containment Pen";req_access_txt = "55"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/door/poddoor/preopen{id = "xenobio3";name = "containment blast door"},/turf/open/floor/engine,/area/toxins/xenobiology)
-"aoS" = (/obj/machinery/door/window/northleft{dir = 4;name = "Containment Pen";req_access_txt = "55"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"aoT" = (/obj/machinery/door/window/northleft{base_state = "right";dir = 8;icon_state = "right";name = "Containment Pen";req_access_txt = "55"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"aoU" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/door/window/northleft{dir = 4;name = "Containment Pen";req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio8";name = "containment blast door"},/turf/open/floor/engine,/area/toxins/xenobiology)
-"aoV" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"aoW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aoX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 3"})
-"aoY" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;name = "regular air vent";on = 1},/obj/machinery/button/door{id = "cabin3";name = "Cabin Bolt Control 3";normaldoorcontrol = 1;pixel_x = -25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 3"})
-"aoZ" = (/obj/machinery/light,/obj/machinery/firealarm{dir = 1;pixel_x = 0;pixel_y = -26},/obj/structure/table/wood,/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 3"})
-"apa" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/structure/table/wood,/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 3"})
-"apb" = (/obj/structure/grille{density = 0;icon_state = "brokengrille"},/obj/item/weapon/shard,/turf/open/floor/plating,/area/maintenance/fore)
-"apc" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/fore)
-"apd" = (/obj/structure/chair{dir = 1},/turf/open/floor/plating,/area/maintenance/fore)
-"ape" = (/turf/open/floor/plating,/area/shuttle/abandoned)
-"apf" = (/turf/open/floor/mineral/titanium,/turf/closed/wall/mineral/titanium/interior,/area/shuttle/abandoned)
-"apg" = (/obj/structure/rack,/obj/item/clothing/suit/space/hardsuit/medical,/obj/item/clothing/mask/breath,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"aph" = (/obj/machinery/door/airlock/glass,/turf/open/floor/plating,/area/shuttle/abandoned)
-"api" = (/obj/machinery/mass_driver{dir = 4;icon_state = "mass_driver";id = "oldship_gun"},/turf/open/floor/plating,/area/shuttle/abandoned)
-"apj" = (/obj/machinery/door/poddoor{id = "oldship_gun";name = "pod bay door"},/turf/open/floor/plating,/area/shuttle/abandoned)
-"apk" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"apl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/rack,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"apm" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "xenobio3";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology)
-"apn" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio3";name = "Containment Blast Doors";pixel_x = 0;pixel_y = 4;req_access_txt = "55"},/obj/structure/window/reinforced{dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"apo" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"app" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"apq" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "xenobio8";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology)
-"apr" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 1},/turf/open/floor/engine,/area/toxins/xenobiology)
-"aps" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"apt" = (/obj/machinery/light{dir = 4},/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"apu" = (/obj/machinery/door/window/northright,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/sleep{name = "\improper Dormitory Suite 3"})
-"apv" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/fore)
-"apw" = (/obj/structure/grille,/obj/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/fore)
-"apx" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/button/door{id = "bunk5";name = "Bunk Bolt Control 5";normaldoorcontrol = 1;pixel_x = -25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"apy" = (/obj/machinery/door/airlock{id_tag = "bunk5";name = "Bunk 5"},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"apz" = (/obj/machinery/door/airlock{id_tag = "bunk6";name = "Bunk 6"},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"apA" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/button/door{id = "bunk6";name = "Bunk Bolt Control 6";normaldoorcontrol = 1;pixel_x = 25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"apB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"apC" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE"},/turf/closed/wall,/area/toxins/xenobiology)
-"apD" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"apE" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"apF" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"apG" = (/obj/item/weapon/storage/secure/safe{pixel_x = 32},/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 3"})
-"apH" = (/obj/structure/toilet,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/sleep{name = "\improper Dormitory Suite 3"})
-"apI" = (/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/sleep{name = "\improper Dormitory Suite 3"})
-"apJ" = (/obj/structure/shuttle/engine/propulsion{dir = 8;icon_state = "propulsion_r"},/turf/open/floor/plating/airless,/area/shuttle/abandoned)
-"apK" = (/obj/machinery/door/airlock/titanium,/turf/open/floor/plating,/area/shuttle/abandoned)
-"apL" = (/obj/item/weapon/stock_parts/cell{charge = 100;maxcharge = 15000},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"apM" = (/obj/structure/rack,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/storage/toolbox/mechanical,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"apN" = (/obj/structure/frame/computer{anchored = 1},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"apO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/closet,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"apP" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/door/poddoor/preopen{id = "xenobio2";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology)
-"apQ" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"apR" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/button/door{id = "xenobio7";name = "Containment Blast Doors";pixel_x = 0;pixel_y = 4;req_access_txt = "55"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"apS" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "xenobio7";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology)
-"apT" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/closet,/turf/open/floor/plating,/area/maintenance/fore)
-"apU" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 4;name = "4maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fore)
-"apV" = (/obj/structure/flora/bush,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"apW" = (/obj/structure/closet/secure_closet/personal/cabinet,/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 3"})
-"apX" = (/obj/machinery/shower{tag = "icon-shower (NORTH)";icon_state = "shower";dir = 1},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/sleep{name = "\improper Dormitory Suite 3"})
-"apY" = (/obj/machinery/light/small,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/sleep{name = "\improper Dormitory Suite 3"})
-"apZ" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aqa" = (/obj/effect/spawner/lootdrop/crate_spawner,/turf/open/floor/plating,/area/maintenance/fore)
-"aqb" = (/obj/structure/closet/crate,/turf/open/floor/plating,/area/maintenance/fore)
-"aqc" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/button/door{id = "bunk7";name = "Bunk Bolt Control 7";normaldoorcontrol = 1;pixel_x = -25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"aqd" = (/obj/machinery/door/airlock{id_tag = "bunk7";name = "Bunk 7"},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"aqe" = (/obj/machinery/door/airlock{id_tag = "bunk8";name = "Bunk 8"},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"aqf" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/button/door{id = "bunk8";name = "Bunk Bolt Control 8";normaldoorcontrol = 1;pixel_x = 25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"aqg" = (/obj/structure/chair{dir = 1},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"aqh" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"aqi" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/turf/open/floor/plasteel/red/corner{dir = 1},/area/construction/hallway{name = "Secure Workstations Hallway"})
-"aqj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"aqk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/corner,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"aql" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"aqm" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"aqn" = (/obj/effect/landmark{name = "revenantspawn"},/mob/living/simple_animal/slime,/turf/open/floor/engine,/area/toxins/xenobiology)
-"aqo" = (/obj/machinery/door/window/northleft{base_state = "right";dir = 8;icon_state = "right";name = "Containment Pen";req_access_txt = "55"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/door/poddoor/preopen{id = "xenobio2";name = "containment blast door"},/turf/open/floor/engine,/area/toxins/xenobiology)
-"aqp" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/door/window/northleft{dir = 4;name = "Containment Pen";req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio7";name = "containment blast door"},/turf/open/floor/engine,/area/toxins/xenobiology)
-"aqq" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fore)
-"aqr" = (/obj/structure/rack,/obj/item/device/flashlight/lantern,/turf/open/floor/plating,/area/maintenance/fore)
-"aqs" = (/obj/machinery/power/apc{cell_type = 5000;dir = 4;name = "Biodome APC";pixel_x = 24;pixel_y = 0},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aqt" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/door/airlock/maintenance_hatch,/turf/open/floor/plating,/area/maintenance/fore)
-"aqu" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"aqv" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/abandoned)
-"aqw" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/door/poddoor/preopen{id = "xenobio2";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology)
-"aqx" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio2";name = "Containment Blast Doors";pixel_x = 0;pixel_y = 4;req_access_txt = "55"},/obj/structure/window/reinforced{dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"aqy" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "xenobio7";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology)
-"aqz" = (/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/supply/hidden,/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"aqA" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/green,/area/construction/hallway{name = "Biodome Hallway"})
-"aqB" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"aqC" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fore)
-"aqD" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fore)
-"aqE" = (/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"aqF" = (/obj/machinery/door/airlock{name = "Privacy Bunks";req_access_txt = "0"},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"aqG" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"aqH" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"aqI" = (/obj/machinery/door/airlock/titanium,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"aqJ" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/red/corner{dir = 1},/area/construction/hallway{name = "Secure Workstations Hallway"})
-"aqK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/grille{density = 0;icon_state = "brokengrille"},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"aqL" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/machinery/camera{c_tag = "Xenobiology South";dir = 4;network = list("SS13","RD")},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"aqM" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"aqN" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/obj/structure/closet/crate/freezer,/turf/open/floor/plating,/area/maintenance/fore)
-"aqO" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/obj/structure/closet/crate/freezer,/turf/open/floor/plating,/area/maintenance/fore)
-"aqP" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/obj/structure/closet,/obj/item/bodypart/head,/turf/open/floor/plating,/area/maintenance/fore)
-"aqQ" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)";icon_state = "camera";dir = 5},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"aqR" = (/obj/machinery/door/window,/turf/open/floor/mineral/titanium/purple,/area/shuttle/abandoned)
-"aqS" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/mineral/titanium/purple,/area/shuttle/abandoned)
-"aqT" = (/obj/structure/table,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"aqU" = (/obj/structure/table,/obj/item/weapon/gun/energy/laser/retro,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"aqV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"aqW" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/door/poddoor/preopen{id = "xenobio1";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology)
-"aqX" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio6";name = "Containment Blast Doors";pixel_x = 0;pixel_y = 4;req_access_txt = "55"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"aqY" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "xenobio6";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology)
-"aqZ" = (/obj/structure/bed,/turf/open/floor/plating,/area/maintenance/fore)
-"ara" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTH)";icon_state = "camera";dir = 1},/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"arb" = (/obj/structure/closet/secure_closet/personal/cabinet,/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"arc" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"ard" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"are" = (/obj/structure/closet/secure_closet/personal/cabinet,/turf/open/floor/wood,/area/crew_quarters/sleep)
-"arf" = (/obj/item/device/radio/intercom{name = "Station Intercom";pixel_x = 0;pixel_y = 24},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"arg" = (/obj/structure/bed,/obj/item/weapon/bedsheet/green,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"arh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/sleep)
-"ari" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"arj" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"ark" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;name = "regular air vent";on = 1},/obj/structure/closet/secure_closet/personal/cabinet,/turf/open/floor/wood,/area/crew_quarters/sleep)
-"arl" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"arm" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/button/door{id = "bunk9";name = "Bunk Bolt Control 9";normaldoorcontrol = 1;pixel_x = -25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"arn" = (/obj/machinery/door/airlock{id_tag = "bunk9";name = "Bunk 9"},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"aro" = (/obj/machinery/door/airlock{id_tag = "bunk10";name = "Bunk 10"},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"arp" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/button/door{id = "bunk10";name = "Bunk Bolt Control 10";normaldoorcontrol = 1;pixel_x = 25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"arq" = (/obj/item/weapon/paint/green,/turf/open/floor/plating,/area/maintenance/fore)
-"arr" = (/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/paint/yellow,/turf/open/floor/plating,/area/maintenance/fore)
-"ars" = (/obj/machinery/door/airlock/glass,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"art" = (/obj/machinery/door/airlock/glass,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"aru" = (/obj/structure/chair{dir = 4},/obj/effect/decal/remains/human,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"arv" = (/obj/machinery/computer/shuttle/white_ship,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"arw" = (/obj/machinery/door/window/northleft{base_state = "right";dir = 8;icon_state = "right";name = "Containment Pen";req_access_txt = "55"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/door/poddoor/preopen{id = "xenobio1";name = "containment blast door"},/turf/open/floor/engine,/area/toxins/xenobiology)
-"arx" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/door/window/northleft{dir = 4;name = "Containment Pen";req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio6";name = "containment blast door"},/turf/open/floor/engine,/area/toxins/xenobiology)
-"ary" = (/obj/structure/showcase/horrific_experiment,/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plating,/area/maintenance/fore)
-"arz" = (/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 2"})
-"arA" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 2"})
-"arB" = (/obj/machinery/light{dir = 4},/obj/structure/flora/grass/green,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"arC" = (/obj/machinery/light/small{dir = 8},/obj/machinery/button/door{id = "Dorm5";name = "Dorm Bolt Control";normaldoorcontrol = 1;pixel_x = -25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"arD" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"arE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"arF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock{id_tag = "Dorm5";name = "Dorm 5"},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"arG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"arH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"arI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock{id_tag = "Dorm4";name = "Dorm 4"},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"arJ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;name = "regular air scrubber";on = 1;scrub_Toxins = 0},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"arK" = (/obj/structure/bed,/obj/item/weapon/bedsheet/brown,/obj/machinery/button/door{id = "Dorm4";name = "Dorm Bolt Control";normaldoorcontrol = 1;pixel_x = 25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"arL" = (/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/paint/violet,/turf/open/floor/plating,/area/maintenance/fore)
-"arM" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"arN" = (/obj/structure/table,/obj/item/weapon/tank/internals/oxygen,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"arO" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/door/poddoor/preopen{id = "xenobio1";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology)
-"arP" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio1";name = "Containment Blast Doors";pixel_x = 0;pixel_y = 4;req_access_txt = "55"},/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/light,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"arQ" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "xenobio6";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology)
-"arR" = (/obj/effect/decal/cleanable/blood/tracks,/turf/open/floor/plating,/area/maintenance/fore)
-"arS" = (/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/structure/flora/grass/green,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"arT" = (/obj/structure/bed,/obj/item/weapon/bedsheet/red,/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 2"})
-"arU" = (/obj/structure/dresser,/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 2"})
-"arV" = (/obj/structure/chair/stool,/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 2"})
-"arW" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/table/wood,/obj/item/device/radio/intercom{name = "Station Intercom";pixel_x = 0;pixel_y = 24},/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 2"})
-"arX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 2"})
-"arY" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"arZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"asa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"asb" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/button/door{id = "bunk11";name = "Bunk Bolt Control 11";normaldoorcontrol = 1;pixel_x = -25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"asc" = (/obj/machinery/door/airlock{id_tag = "bunk11";name = "Bunk 11"},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"asd" = (/obj/machinery/door/airlock{id_tag = "bunk12";name = "Bunk 12"},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"ase" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/button/door{id = "bunk12";name = "Bunk Bolt Control 12";normaldoorcontrol = 1;pixel_x = 25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"asf" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/maintenance/fore)
-"asg" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/mineral/titanium/purple,/area/shuttle/abandoned)
-"ash" = (/obj/machinery/door/window/northright,/obj/effect/decal/remains/human,/turf/open/floor/mineral/titanium/purple,/area/shuttle/abandoned)
-"asi" = (/obj/structure/rack,/obj/item/clothing/shoes/winterboots,/obj/item/clothing/suit/hooded/wintercoat,/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"asj" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"ask" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"asl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"asm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/closet,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"asn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/closet,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"aso" = (/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 2"})
-"asp" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{id_tag = "cabin2";name = "Cabin 2"},/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 2"})
-"asq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"asr" = (/obj/machinery/light/small{dir = 8},/obj/machinery/button/door{id = "Dorm6";name = "Dorm Bolt Control";normaldoorcontrol = 1;pixel_x = -25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"ass" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/item/device/radio/intercom{name = "Station Intercom";pixel_x = 0;pixel_y = 24},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"ast" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock{id_tag = "Dorm6";name = "Dorm 6"},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"asu" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"asv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock{id_tag = "Dorm3";name = "Dorm 3"},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"asw" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;name = "regular air scrubber";on = 1;scrub_Toxins = 0},/obj/item/device/radio/intercom{name = "Station Intercom";pixel_x = 0;pixel_y = 24},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"asx" = (/obj/structure/bed,/obj/item/weapon/bedsheet/blue,/turf/open/floor/wood,/area/crew_quarters/sleep)
-"asy" = (/obj/structure/table,/obj/item/weapon/paper_bin/construction,/obj/item/weapon/storage/crayons,/obj/item/weapon/paint/red,/turf/open/floor/plating,/area/maintenance/fore)
-"asz" = (/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/paint/green,/turf/open/floor/plating,/area/maintenance/fore)
-"asA" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"asB" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;external_pressure_bound = 140;on = 1;pressure_checks = 0},/obj/machinery/camera{c_tag = "Xenobiology Kill Room";dir = 4;network = list("SS13","RD")},/turf/open/floor/circuit{name = "Killroom Floor";initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/xenobiology)
-"asC" = (/turf/open/floor/circuit{name = "Killroom Floor";initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/xenobiology)
-"asD" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;external_pressure_bound = 120;initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/circuit{name = "Killroom Floor";initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/xenobiology)
-"asE" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/sign/biohazard,/turf/open/floor/plating,/area/toxins/xenobiology)
-"asF" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{target_temperature = 80;dir = 2;on = 1},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"asG" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTH)";icon_state = "camera";dir = 1},/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"asH" = (/obj/machinery/light/small,/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"asI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"asJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"asK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"asL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"asM" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/closet/wardrobe/white/medical,/turf/open/floor/plating,/area/maintenance/fore)
-"asN" = (/obj/structure/bed,/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plating,/area/maintenance/fore)
-"asO" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/structure/table/wood,/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 2"})
-"asP" = (/obj/machinery/light,/obj/machinery/firealarm{dir = 1;pixel_x = 0;pixel_y = -26},/obj/structure/table/wood,/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 2"})
-"asQ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/obj/machinery/button/door{id = "cabin2";name = "Cabin Bolt Control 2";normaldoorcontrol = 1;pixel_x = 25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 2"})
-"asR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 2"})
-"asS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"asT" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"asU" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/crew_quarters/sleep)
-"asV" = (/turf/open/floor/wood,/area/crew_quarters/sleep)
-"asW" = (/obj/structure/bed,/obj/item/weapon/bedsheet/yellow,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"asX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"asY" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"asZ" = (/obj/machinery/light/small{dir = 4},/obj/machinery/button/door{id = "Dorm3";name = "Dorm Bolt Control";normaldoorcontrol = 1;pixel_x = 25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"ata" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/button/door{id = "bunk13";name = "Bunk Bolt Control 13";normaldoorcontrol = 1;pixel_x = -25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"atb" = (/obj/machinery/door/airlock{id_tag = "bunk13";name = "Bunk 13"},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"atc" = (/obj/machinery/door/airlock{id_tag = "bunk14";name = "Bunk 14"},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"atd" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/button/door{id = "bunk14";name = "Bunk Bolt Control 14";normaldoorcontrol = 1;pixel_x = 25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"ate" = (/obj/item/device/camera,/obj/item/device/camera_film,/obj/item/device/camera_film,/obj/structure/closet/crate,/turf/open/floor/plating,/area/maintenance/fore)
-"atf" = (/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/paint/white,/turf/open/floor/plating,/area/maintenance/fore)
-"atg" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel/red/corner,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"ath" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/maintenance_hatch,/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"ati" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/circuit{name = "Killroom Floor";initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/xenobiology)
-"atj" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/circuit{name = "Killroom Floor";initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/xenobiology)
-"atk" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/circuit{name = "Killroom Floor";initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/xenobiology)
-"atl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Kill Chamber";req_access_txt = "55"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plating,/area/toxins/xenobiology)
-"atm" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"atn" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"ato" = (/obj/machinery/door/airlock/external{name = "Mining Airlock";req_access = null;req_access_txt = "48"},/turf/open/floor/noslip,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"atp" = (/obj/machinery/atmospherics/components/unary/portables_connector{tag = "icon-connector_map (NORTH)";icon_state = "connector_map";dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"atq" = (/obj/machinery/atmospherics/components/binary/valve,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"atr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"ats" = (/obj/structure/sign/xeno_warning_mining{pixel_x = -30},/turf/open/floor/plating/asteroid/airless{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"att" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/obj/structure/barricade/wooden,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"atu" = (/obj/effect/decal/cleanable/blood/gibs,/obj/effect/decal/cleanable/blood/innards,/turf/open/floor/plating,/area/maintenance/fore)
-"atv" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
-"atw" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fore)
-"atx" = (/obj/machinery/door/window/northright,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/sleep{name = "\improper Dormitory Suite 2"})
-"aty" = (/obj/item/weapon/storage/secure/safe{pixel_x = 32},/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 2"})
-"atz" = (/obj/structure/table/wood,/obj/item/device/paicard,/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"atA" = (/obj/structure/table/wood,/obj/item/device/analyzer,/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"atB" = (/obj/machinery/vending/clothing,/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"atC" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"atD" = (/obj/machinery/status_display{density = 0;layer = 4},/turf/closed/wall,/area/crew_quarters/sleep)
-"atE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 24},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"atF" = (/obj/structure/closet/crate,/obj/item/seeds/cocoapod,/obj/item/seeds/chili,/obj/item/seeds/coffee,/obj/item/seeds/eggplant,/turf/open/floor/plating,/area/maintenance/fore)
-"atG" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
-"atH" = (/obj/item/device/multitool,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"atI" = (/obj/structure/chair,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"atJ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/xenobiology)
-"atK" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/toxins/xenobiology)
-"atL" = (/obj/structure/sign/xeno_warning_mining{pixel_x = -30},/turf/open/floor/noslip,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"atM" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Air Out";on = 0},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"atN" = (/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"atO" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"atP" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"atQ" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1;name = "Air In";on = 1},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"atR" = (/obj/machinery/atmospherics/components/binary/pump{dir = 2;name = "Waste Out";on = 1},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"atS" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"atT" = (/obj/structure/table,/obj/item/weapon/storage/box/snappops,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"atU" = (/obj/structure/table,/obj/structure/bedsheetbin,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"atV" = (/obj/structure/ore_box,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"atW" = (/obj/structure/barricade/wooden,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"atX" = (/obj/structure/door_assembly/door_assembly_mai,/turf/open/floor/plating,/area/maintenance/fore)
-"atY" = (/obj/item/weapon/cigbutt,/turf/open/floor/plating,/area/maintenance/fore)
-"atZ" = (/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/sleep{name = "\improper Dormitory Suite 2"})
-"aua" = (/obj/structure/toilet,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/sleep{name = "\improper Dormitory Suite 2"})
-"aub" = (/obj/machinery/light{dir = 8},/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"auc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"aud" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"aue" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/sleep)
-"auf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"aug" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"auh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHEAST)";icon_state = "camera";dir = 6},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"aui" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"auj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom";pixel_x = 0;pixel_y = 24},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"auk" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"aul" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/firealarm{dir = 4;pixel_x = 28;pixel_y = 0},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"aum" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/button/door{id = "bunk15";name = "Bunk Bolt Control 15";normaldoorcontrol = 1;pixel_x = -25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"aun" = (/obj/machinery/door/airlock{id_tag = "bunk15";name = "Bunk 15"},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"auo" = (/obj/machinery/door/airlock{id_tag = "bunk16";name = "Bunk 16"},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"aup" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/button/door{id = "bunk16";name = "Bunk Bolt Control 16";normaldoorcontrol = 1;pixel_x = 25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"auq" = (/obj/structure/frame/computer{anchored = 1},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"aur" = (/obj/structure/closet/secure_closet/bar,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"aus" = (/obj/structure/chair{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"aut" = (/obj/structure/chair,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"auu" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"auv" = (/obj/structure/table,/obj/item/chair,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"auw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"aux" = (/obj/machinery/door/airlock/maintenance_hatch{name = "Secure Workstations Distro"},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"auy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"auz" = (/obj/machinery/door/airlock/maintenance_hatch,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"auA" = (/obj/structure/barricade/wooden,/turf/open/floor/plating,/area/maintenance/fore)
-"auB" = (/obj/machinery/light/small,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/sleep{name = "\improper Dormitory Suite 2"})
-"auC" = (/obj/machinery/shower{tag = "icon-shower (NORTH)";icon_state = "shower";dir = 1},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/sleep{name = "\improper Dormitory Suite 2"})
-"auD" = (/obj/structure/closet/secure_closet/personal/cabinet,/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 2"})
-"auE" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{tag = "icon-1-4";icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"auF" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"auG" = (/obj/machinery/door/airlock{name = "Dormitories";req_access_txt = "0"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"auH" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"auI" = (/obj/structure/chair/stool,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"auJ" = (/obj/structure/table/wood,/obj/item/weapon/storage/wallet,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"auK" = (/obj/structure/table/wood,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"auL" = (/obj/structure/table/wood,/obj/item/weapon/storage/box/hug/medical,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"auM" = (/obj/structure/chair/stool,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"auN" = (/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"auO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"auP" = (/obj/machinery/door/airlock{id_tag = "Dorm2";name = "Dorm 2"},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"auQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;name = "regular air scrubber";on = 1},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"auR" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/button/door{id = "Dorm2";name = "Dorm Bolt Control";normaldoorcontrol = 1;pixel_x = 25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"auS" = (/obj/structure/kitchenspike_frame,/turf/open/floor/plating,/area/maintenance/fore)
-"auT" = (/obj/item/weapon/scalpel,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"auU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"auV" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"auW" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"auX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/closet/emcloset,/obj/structure/sign/vacuum{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"auY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"auZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"ava" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"avb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"avc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"avd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"ave" = (/obj/structure/closet,/turf/open/floor/plating,/area/maintenance/fore)
-"avf" = (/obj/structure/table,/obj/structure/bedsheetbin,/turf/open/floor/plating,/area/maintenance/fore)
-"avg" = (/obj/structure/table,/obj/item/weapon/lighter/greyscale,/turf/open/floor/plating,/area/maintenance/fore)
-"avh" = (/obj/structure/table,/obj/item/weapon/hatchet/cutterblade,/obj/item/weapon/retractor,/turf/open/floor/plating,/area/maintenance/fore)
-"avi" = (/obj/structure/table,/obj/item/weapon/storage/firstaid,/turf/open/floor/plating,/area/maintenance/fore)
-"avj" = (/obj/machinery/status_display,/turf/closed/wall,/area/crew_quarters/sleep)
-"avk" = (/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"avl" = (/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"avm" = (/obj/structure/table/wood,/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"avn" = (/obj/structure/table/wood,/obj/item/weapon/storage/briefcase,/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"avo" = (/obj/structure/table/wood,/obj/item/weapon/storage/crayons,/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"avp" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"avq" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"avr" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"avs" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"avt" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/sleep)
-"avu" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/button/door{id = "bunk17";name = "Bunk Bolt Control 17";normaldoorcontrol = 1;pixel_x = -25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"avv" = (/obj/machinery/door/airlock{id_tag = "bunk17";name = "Bunk 17"},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"avw" = (/obj/machinery/door/airlock{id_tag = "bunk18";name = "Bunk 18"},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"avx" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/button/door{id = "bunk18";name = "Bunk Bolt Control 18";normaldoorcontrol = 1;pixel_x = 25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"avy" = (/obj/structure/easel,/turf/open/floor/plating,/area/maintenance/fore)
-"avz" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 6;pixel_y = -5},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"avA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"avB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"avC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"avD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"avE" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"avF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance_hatch,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"avG" = (/obj/machinery/door/airlock/maintenance_hatch,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"avH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"avI" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"avJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"avK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"avL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"avM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"avN" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel/green,/area/construction/hallway{name = "Biodome Hallway"})
-"avO" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/green,/area/construction/hallway{name = "Biodome Hallway"})
-"avP" = (/obj/machinery/power/apc{dir = 2;name = "Sleeping Room 1 APC";pixel_y = -24},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/green,/area/crew_quarters/sleep{name = "\improper Dormitory Suites"})
-"avQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"avR" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"avS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/flora/grass/green,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"avT" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/crew_quarters/sleep)
-"avU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"avV" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"avW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{dir = 1;pixel_x = 0;pixel_y = -26},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"avX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-j1";dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"avY" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{tag = "icon-1-4";icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"avZ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"awa" = (/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"awb" = (/obj/machinery/door/airlock{id_tag = "Dorm1";name = "Dorm 1"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"awc" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"awd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/obj/item/device/radio/intercom{name = "Station Intercom";pixel_x = 0;pixel_y = 24},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"awe" = (/obj/structure/bed,/obj/item/weapon/bedsheet/ian,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/button/door{id = "Dorm1";name = "Dorm Bolt Control";normaldoorcontrol = 1;pixel_x = 25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"awf" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/crew_quarters/fitness)
-"awg" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/fore)
-"awh" = (/obj/item/weapon/paint/black,/turf/open/floor/plating,/area/maintenance/fore)
-"awi" = (/obj/machinery/sleeper{icon_state = "sleeper-open";dir = 8},/obj/effect/decal/remains/human,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"awj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/closed/wall,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"awk" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating,/area/maintenance/fore)
-"awl" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fore)
-"awm" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/green,/area/construction/hallway{name = "Biodome Hallway"})
-"awn" = (/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suites"})
-"awo" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{id_tag = "cabin1";name = "Cabin 1"},/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suites"})
-"awp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)";icon_state = "camera";dir = 5},/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"awq" = (/obj/machinery/washing_machine,/turf/open/floor/plasteel/barber,/area/crew_quarters/sleep)
-"awr" = (/obj/structure/table/wood,/obj/structure/bedsheetbin,/turf/open/floor/plasteel/barber,/area/crew_quarters/sleep)
-"aws" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"awt" = (/obj/machinery/light,/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"awu" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 2;name = "Dormitory APC";pixel_y = -24},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"awv" = (/obj/structure/table,/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"aww" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"awx" = (/turf/closed/wall,/area/crew_quarters/fitness)
-"awy" = (/turf/open/floor/engine{name = "Holodeck Projector Floor"},/area/holodeck/rec_center)
-"awz" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fore)
-"awA" = (/obj/item/weapon/paint/paint_remover,/turf/open/floor/plating,/area/maintenance/fore)
-"awB" = (/obj/machinery/door/airlock/glass{name = "Secure Workstations Access"},/obj/structure/sign/securearea{pixel_y = 32},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"awC" = (/turf/open/floor/plasteel/red/corner{tag = "icon-redcorner (EAST)";icon_state = "redcorner";dir = 4},/area/construction/hallway{name = "Secure Workstations Hallway"})
-"awD" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/red/corner{tag = "icon-redcorner (EAST)";icon_state = "redcorner";dir = 4},/area/construction/hallway{name = "Secure Workstations Hallway"})
-"awE" = (/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHEAST)";icon_state = "camera";dir = 6},/turf/open/floor/plasteel/red/corner{tag = "icon-redcorner (EAST)";icon_state = "redcorner";dir = 4},/area/construction/hallway{name = "Secure Workstations Hallway"})
-"awF" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel/red/corner{tag = "icon-redcorner (EAST)";icon_state = "redcorner";dir = 4},/area/construction/hallway{name = "Secure Workstations Hallway"})
-"awG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/red/corner{tag = "icon-redcorner (EAST)";icon_state = "redcorner";dir = 4},/area/construction/hallway{name = "Secure Workstations Hallway"})
-"awH" = (/obj/structure/sign/securearea{pixel_x = 32},/turf/open/floor/plasteel{icon_state = "delivery"},/area/construction/hallway{name = "Secure Workstations Hallway"})
-"awI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/obj/machinery/camera/autoname,/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"awJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/light/small{dir = 1},/obj/structure/sign/securearea{pixel_x = 32},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"awK" = (/obj/structure/rack,/obj/item/weapon/tank/internals/oxygen,/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"awL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red/corner{tag = "icon-redcorner (EAST)";icon_state = "redcorner";dir = 4},/area/construction/hallway{name = "Secure Workstations Hallway"})
-"awM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"awN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"awO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"awP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"awQ" = (/obj/effect/decal/cleanable/blood/old,/obj/item/weapon/shovel,/turf/open/floor/plating,/area/maintenance/fore)
-"awR" = (/obj/structure/closet/secure_closet/personal,/turf/open/floor/plating,/area/maintenance/fore)
-"awS" = (/obj/structure/dresser,/obj/item/device/radio/intercom{name = "Station Intercom";pixel_x = 0;pixel_y = 24},/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suites"})
-"awT" = (/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suites"})
-"awU" = (/obj/machinery/button/door{id = "cabin1";name = "Cabin Bolt Control 1";normaldoorcontrol = 1;pixel_x = 0;pixel_y = 25;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suites"})
-"awV" = (/obj/machinery/door/window/westleft,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/sleep{name = "\improper Dormitory Suites"})
-"awW" = (/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/sleep{name = "\improper Dormitory Suites"})
-"awX" = (/obj/machinery/shower{dir = 8},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/sleep{name = "\improper Dormitory Suites"})
-"awY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 8},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"awZ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/device/radio/intercom{desc = "Talk smack through this.";dir = 4;pixel_x = 28;syndie = 1},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"axa" = (/turf/closed/wall,/area/crew_quarters/toilet)
-"axb" = (/obj/machinery/door/airlock{id_tag = "AuxShower";name = "Shower"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet)
-"axc" = (/obj/machinery/status_display{density = 0;layer = 4},/turf/closed/wall,/area/crew_quarters/fitness)
-"axd" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/door/airlock/glass{name = "Fitness"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"axe" = (/obj/structure/disposalpipe/segment,/obj/structure/closet/firecloset/full,/turf/open/floor/plating,/area/maintenance/fore)
-"axf" = (/obj/item/weapon/paint/blue,/turf/open/floor/plating,/area/maintenance/fore)
-"axg" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"axh" = (/obj/machinery/door/airlock/glass{name = "Secure Workstations Access"},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"axi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"axj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"axk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"axl" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/fore)
-"axm" = (/obj/structure/grille,/obj/item/weapon/shard,/turf/open/floor/plating,/area/maintenance/fore)
-"axn" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/fore)
-"axo" = (/obj/item/weapon/storage/firstaid,/turf/open/floor/plating,/area/maintenance/fore)
-"axp" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/crew_quarters/sleep{name = "\improper Dormitory Suites"})
-"axq" = (/obj/structure/chair/stool,/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suites"})
-"axr" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suites"})
-"axs" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suites"})
-"axt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suites"})
-"axu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/toilet{dir = 4},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/sleep{name = "\improper Dormitory Suites"})
-"axv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/sleep{name = "\improper Dormitory Suites"})
-"axw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"axx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/toilet)
-"axy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/structure/mirror{pixel_x = -32},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet)
-"axz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera/autoname,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet)
-"axA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet)
-"axB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet)
-"axC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet)
-"axD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/shower{dir = 8},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet)
-"axE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/fitness)
-"axF" = (/obj/structure/closet/boxinggloves,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"axG" = (/obj/structure/closet/athletic_mixed,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"axH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"axI" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"axJ" = (/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"axK" = (/obj/item/device/radio/intercom{name = "Station Intercom";pixel_x = 0;pixel_y = 24},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"axL" = (/obj/machinery/computer/arcade,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"axM" = (/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"axN" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/crew_quarters/fitness)
-"axO" = (/obj/structure/disposalpipe/segment,/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/fore)
-"axP" = (/turf/open/floor/plasteel/red/corner{tag = "icon-redcorner (WEST)";icon_state = "redcorner";dir = 8},/area/construction/hallway{name = "Secure Workstations Hallway"})
-"axQ" = (/obj/machinery/light,/turf/open/floor/plasteel/red/corner{tag = "icon-redcorner (WEST)";icon_state = "redcorner";dir = 8},/area/construction/hallway{name = "Secure Workstations Hallway"})
-"axR" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/turf/open/floor/plasteel/red/corner{tag = "icon-redcorner (WEST)";icon_state = "redcorner";dir = 8},/area/construction/hallway{name = "Secure Workstations Hallway"})
-"axS" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTH)";icon_state = "camera";dir = 1},/turf/open/floor/plasteel/red/corner{tag = "icon-redcorner (WEST)";icon_state = "redcorner";dir = 8},/area/construction/hallway{name = "Secure Workstations Hallway"})
-"axT" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel{icon_state = "delivery"},/area/construction/hallway{name = "Secure Workstations Hallway"})
-"axU" = (/obj/machinery/light/small,/obj/structure/sign/securearea{pixel_x = -32},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"axV" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/obj/structure/sign/vacuum{pixel_y = -32},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"axW" = (/obj/structure/sign/securearea{pixel_x = -32},/turf/open/floor/plasteel{icon_state = "delivery"},/area/construction/hallway{name = "Secure Workstations Hallway"})
-"axX" = (/obj/machinery/light/small,/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"axY" = (/obj/structure/closet/emcloset,/obj/structure/sign/securearea{pixel_x = -32},/turf/open/floor/plasteel{icon_state = "delivery"},/area/construction/hallway{name = "Secure Workstations Hallway"})
-"axZ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"aya" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"ayb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"ayc" = (/obj/structure/grille,/obj/item/weapon/shard{icon_state = "medium"},/turf/open/floor/plating,/area/maintenance/fore)
-"ayd" = (/obj/structure/table/wood,/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suites"})
-"aye" = (/obj/effect/landmark/event_spawn,/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suites"})
-"ayf" = (/obj/machinery/firealarm{dir = 4;pixel_x = 28;pixel_y = 0},/obj/structure/table/wood,/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suites"})
-"ayg" = (/obj/machinery/light{dir = 8},/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/structure/mirror{pixel_x = -32},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet)
-"ayh" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet)
-"ayi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet)
-"ayj" = (/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet)
-"ayk" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/obj/item/weapon/bikehorn/rubberducky,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet)
-"ayl" = (/obj/machinery/shower{dir = 8},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet)
-"aym" = (/obj/structure/cable{icon_state = "2-4";tag = "icon-2-8"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"ayn" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"ayo" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"ayp" = (/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"ayq" = (/obj/structure/chair/stool,/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel/green/corner,/area/crew_quarters/fitness)
-"ayr" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/crew_quarters/fitness)
-"ays" = (/obj/machinery/door/airlock/external{name = "Mining Airlock";req_access = null;req_access_txt = "48"},/turf/open/floor/noslip,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"ayt" = (/obj/machinery/door/airlock/glass{name = "Secure Workstations Access"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/securearea{pixel_x = -32},/turf/open/floor/plasteel,/area/maintenance/fore)
-"ayu" = (/obj/machinery/door/airlock/glass{name = "Secure Workstations Access"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/maintenance/fore)
-"ayv" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fore)
-"ayw" = (/turf/open/floor/plasteel/green,/area/construction/hallway{name = "Biodome Hallway"})
-"ayx" = (/obj/structure/bed,/obj/item/weapon/bedsheet/purple,/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suites"})
-"ayy" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suites"})
-"ayz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suites"})
-"ayA" = (/obj/item/weapon/storage/secure/safe{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suites"})
-"ayB" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suites"})
-"ayC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suites"})
-"ayD" = (/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/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"ayE" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock{name = "Unisex Restrooms";req_access_txt = "0"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet)
-"ayF" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet)
-"ayG" = (/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet)
-"ayH" = (/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet)
-"ayI" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"ayJ" = (/obj/structure/window/reinforced{dir = 8;pixel_x = 0},/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness)
-"ayK" = (/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness)
-"ayL" = (/obj/machinery/door/window/eastright{base_state = "left";icon_state = "left";name = "Fitness Ring"},/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness)
-"ayM" = (/turf/open/floor/plasteel/green/side{tag = "icon-green (EAST)";icon_state = "green";dir = 4},/area/crew_quarters/fitness)
-"ayN" = (/obj/machinery/door/airlock/glass{name = "Holodeck Door"},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness)
-"ayO" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness)
-"ayP" = (/obj/machinery/camera/autoname,/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness)
-"ayQ" = (/obj/structure/sign/xeno_warning_mining{pixel_x = -30},/turf/open/floor/noslip,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"ayR" = (/obj/structure/ore_box,/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"ayS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red/corner{dir = 1},/area/construction/hallway{name = "Biodome Hallway"})
-"ayT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/red/corner,/area/construction/hallway{name = "Biodome Hallway"})
-"ayU" = (/turf/closed/wall,/area/library)
-"ayV" = (/obj/machinery/door/airlock/maintenance{name = "Game Room Maintenance"},/turf/open/floor/plating,/area/library)
-"ayW" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"ayX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/toilet)
-"ayY" = (/obj/machinery/power/apc{dir = 4;name = "Dormitory Bathrooms APC";pixel_x = 26;pixel_y = 0},/obj/structure/cable,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet)
-"ayZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/fitness)
-"aza" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"azb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/beacon,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"azc" = (/obj/structure/window/reinforced{dir = 8;pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness)
-"azd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness)
-"aze" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness)
-"azf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"azg" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;name = "regular air vent";on = 1},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"azh" = (/obj/structure/table,/obj/item/stack/medical/ointment{pixel_x = -3;pixel_y = 3},/obj/item/stack/medical/gauze,/obj/item/stack/medical/bruise_pack,/turf/open/floor/plasteel/redgreen/side{tag = "icon-redgreen (EAST)";icon_state = "redgreen";dir = 4},/area/crew_quarters/fitness)
-"azi" = (/obj/structure/disposalpipe/segment,/obj/machinery/computer/holodeck,/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness)
-"azj" = (/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness)
-"azk" = (/turf/open/floor/wood{baseturf = /turf/open/floor/plating/asteroid},/area/library)
-"azl" = (/obj/structure/noticeboard{desc = "A board for pinning important game notes on..";name = "Game Board";pixel_y = 32},/obj/machinery/holopad,/turf/open/floor/wood{baseturf = /turf/open/floor/plating/asteroid},/area/library)
-"azm" = (/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 32;pixel_y = 32},/obj/machinery/camera/autoname,/turf/open/floor/wood{baseturf = /turf/open/floor/plating/asteroid},/area/library)
-"azn" = (/obj/machinery/photocopier,/turf/open/floor/wood{baseturf = /turf/open/floor/plating/asteroid},/area/library)
-"azo" = (/obj/structure/bookcase/random/adult,/turf/open/floor/wood,/area/library)
-"azp" = (/obj/structure/table/wood,/obj/item/device/camera_film,/obj/item/device/camera_film,/obj/item/device/camera,/turf/open/floor/wood,/area/library)
-"azq" = (/obj/structure/bookcase{name = "Forbidden Knowledge"},/turf/open/floor/wood,/area/library)
-"azr" = (/obj/structure/filingcabinet,/turf/open/floor/wood,/area/library)
-"azs" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/green,/area/construction/hallway{name = "Biodome Hallway"})
-"azt" = (/obj/machinery/light,/turf/open/floor/plasteel/green,/area/construction/hallway{name = "Biodome Hallway"})
-"azu" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera/autoname{tag = "icon-camera (WEST)";icon_state = "camera";dir = 8},/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"azv" = (/obj/machinery/light/small{dir = 1},/obj/structure/toilet,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet)
-"azw" = (/obj/machinery/door/airlock{name = "Unisex Restrooms";req_access_txt = "0"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet)
-"azx" = (/obj/structure/closet/lasertag/red,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"azy" = (/obj/structure/window/reinforced,/obj/machinery/door/window/eastright{base_state = "left";dir = 8;icon_state = "left";name = "Fitness Ring"},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness)
-"azz" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness)
-"azA" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness)
-"azB" = (/turf/open/floor/plasteel/red/side{tag = "icon-red (EAST)";icon_state = "red";dir = 4},/area/crew_quarters/fitness)
-"azC" = (/obj/structure/disposalpipe/segment,/obj/structure/chair/stool,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness)
-"azD" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/construction/hallway{name = "Secure Workstations Hallway"})
-"azE" = (/obj/machinery/camera/autoname,/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"azF" = (/obj/item/weapon/pickaxe,/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"azG" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/wood{baseturf = /turf/open/floor/plating/asteroid},/area/library)
-"azH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/chair/comfy/brown{dir = 4},/turf/open/floor/carpet,/area/library)
-"azI" = (/obj/structure/table/wood,/obj/item/device/paicard,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/carpet,/area/library)
-"azJ" = (/obj/structure/chair/office/dark,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/library)
-"azK" = (/obj/structure/table/wood,/obj/item/device/laser_pointer/blue,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/library)
-"azL" = (/obj/structure/chair/comfy/brown{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/library)
-"azM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood{baseturf = /turf/open/floor/plating/asteroid},/area/library)
-"azN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/library)
-"azO" = (/obj/item/device/radio/intercom{dir = 0;name = "Station Intercom (General)";pixel_x = -27;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/library)
-"azP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/library)
-"azQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;name = "regular air scrubber";on = 1;scrub_Toxins = 0},/turf/open/floor/wood,/area/library)
-"azR" = (/turf/open/floor/wood,/area/library)
-"azS" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/library)
-"azT" = (/turf/closed/wall,/area/crew_quarters/cafeteria{name = "Cafe"})
-"azU" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/crew_quarters/cafeteria{name = "Cafe"})
-"azV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"azW" = (/obj/machinery/door/airlock{id_tag = "Toilet1";name = "Unit 1"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet)
-"azX" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet)
-"azY" = (/obj/machinery/door/airlock{id_tag = "AuxToilet3";name = "Unit 3"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet)
-"azZ" = (/obj/structure/closet/lasertag/blue,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"aAa" = (/obj/structure/chair/stool,/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel/red/corner{tag = "icon-redcorner (EAST)";icon_state = "redcorner";dir = 4},/area/crew_quarters/fitness)
-"aAb" = (/obj/machinery/door/airlock/maintenance_hatch{name = "Fitness room maintenance hatch"},/turf/open/floor/plating,/area/maintenance/fore)
-"aAc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/red/corner,/area/construction/hallway{name = "Biodome Hallway"})
-"aAd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/comfy/brown{dir = 4},/turf/open/floor/carpet,/area/library)
-"aAe" = (/obj/structure/table/wood,/obj/item/toy/cards/deck,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/turf/open/floor/carpet,/area/library)
-"aAf" = (/obj/structure/table/wood,/obj/item/weapon/storage/pill_bottle/dice,/turf/open/floor/carpet,/area/library)
-"aAg" = (/obj/structure/table/wood,/turf/open/floor/carpet,/area/library)
-"aAh" = (/obj/structure/chair/comfy/brown{dir = 8},/turf/open/floor/carpet,/area/library)
-"aAi" = (/obj/structure/table/wood,/obj/item/weapon/folder,/turf/open/floor/wood{baseturf = /turf/open/floor/plating/asteroid},/area/library)
-"aAj" = (/obj/machinery/power/apc{dir = 8;name = "Library APC";pixel_x = -25},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/wood,/area/library)
-"aAk" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/wood,/area/library)
-"aAl" = (/obj/effect/landmark/start{name = "Curator"},/turf/open/floor/wood,/area/library)
-"aAm" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/wood,/area/library)
-"aAn" = (/obj/machinery/light/small/built{tag = "icon-bulb1 (WEST)";icon_state = "bulb1";dir = 8},/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aAo" = (/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aAp" = (/obj/structure/chair/wood/normal{icon_state = "wooden_chair";dir = 4},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aAq" = (/obj/structure/table/wood/fancy,/obj/item/candle,/obj/machinery/light/small/built{tag = "icon-bulb1 (EAST)";icon_state = "bulb1";dir = 4},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aAr" = (/obj/machinery/power/apc{dir = 2;name = "Fitness Room APC";pixel_x = 0;pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"aAs" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"aAt" = (/obj/structure/table,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"aAu" = (/obj/machinery/light,/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"aAv" = (/obj/structure/chair/stool,/obj/machinery/camera/autoname{tag = "icon-camera (NORTH)";icon_state = "camera";dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"aAw" = (/obj/structure/disposalpipe/segment,/obj/structure/closet/wardrobe/yellow,/turf/open/floor/plating,/area/maintenance/fore)
-"aAx" = (/turf/closed/mineral/diamond,/area/ruin/unpowered{name = "Asteroid"})
-"aAy" = (/turf/open/floor/wood{baseturf = /turf/open/floor/plating/asteroid},/area/maintenance/fore)
-"aAz" = (/turf/open/floor/wood{icon_state = "wood-broken6"},/area/maintenance/fore)
-"aAA" = (/obj/item/chair/stool,/turf/open/floor/wood{baseturf = /turf/open/floor/plating/asteroid},/area/maintenance/fore)
-"aAB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/library)
-"aAC" = (/obj/structure/chair/comfy/brown{dir = 1},/turf/open/floor/carpet,/area/library)
-"aAD" = (/obj/structure/chair/comfy/brown{dir = 1},/obj/effect/landmark/event_spawn,/turf/open/floor/carpet,/area/library)
-"aAE" = (/turf/open/floor/carpet,/area/library)
-"aAF" = (/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/turf/open/floor/wood{baseturf = /turf/open/floor/plating/asteroid},/area/library)
-"aAG" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/wood{baseturf = /turf/open/floor/plating/asteroid},/area/library)
-"aAH" = (/obj/machinery/camera/autoname{tag = "icon-camera (EAST)";icon_state = "camera";dir = 4},/obj/item/weapon/storage/bag/books,/turf/open/floor/wood,/area/library)
-"aAI" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/wood,/area/library)
-"aAJ" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/turf/open/floor/wood,/area/library)
-"aAK" = (/obj/structure/table/wood/fancy,/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aAL" = (/obj/structure/chair/wood/normal{icon_state = "wooden_chair";dir = 8},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aAM" = (/obj/structure/chair/wood/normal{dir = 1},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aAN" = (/obj/structure/disposalpipe/segment,/obj/structure/closet/wardrobe/green,/turf/open/floor/plating,/area/maintenance/fore)
-"aAO" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/wood{baseturf = /turf/open/floor/plating/asteroid},/area/maintenance/fore)
-"aAP" = (/obj/structure/chair/stool,/turf/open/floor/wood{baseturf = /turf/open/floor/plating/asteroid},/area/maintenance/fore)
-"aAQ" = (/obj/machinery/door/airlock/maintenance_hatch,/turf/open/floor/noslip,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"aAR" = (/obj/structure/closet/cabinet,/obj/item/toy/figure/assistant,/obj/item/toy/figure/atmos,/obj/item/toy/figure/bartender,/obj/item/toy/figure/borg,/obj/item/toy/figure/botanist,/obj/item/toy/figure/captain,/obj/item/toy/figure/cargotech,/obj/item/toy/figure/ce,/obj/item/toy/figure/chaplain,/obj/item/toy/figure/chef,/obj/item/toy/figure/chemist,/obj/item/toy/figure/clown,/obj/item/toy/figure/cmo,/obj/item/toy/figure/detective,/obj/item/toy/figure/dsquad,/obj/item/toy/figure/engineer,/obj/item/toy/figure/geneticist,/obj/item/toy/figure/hop,/obj/item/toy/figure/hos,/obj/item/toy/figure/ian,/obj/item/toy/figure/janitor,/obj/item/toy/figure/lawyer,/obj/item/toy/figure/curator,/obj/item/toy/figure/md,/obj/item/toy/figure/mime,/obj/item/toy/figure/miner,/obj/item/toy/figure/ninja,/obj/item/toy/figure/qm,/obj/item/toy/figure/rd,/obj/item/toy/figure/roboticist,/obj/item/toy/figure/scientist,/obj/item/toy/figure/secofficer,/obj/item/toy/figure/syndie,/obj/item/toy/figure/virologist,/obj/item/toy/figure/warden,/obj/item/toy/figure/wizard,/obj/item/toy/minimeteor,/turf/open/floor/wood{baseturf = /turf/open/floor/plating/asteroid},/area/library)
-"aAS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood{baseturf = /turf/open/floor/plating/asteroid},/area/library)
-"aAT" = (/obj/item/device/radio/intercom{dir = 4;name = "Station Intercom (General)";pixel_x = 0;pixel_y = -27},/turf/open/floor/wood{baseturf = /turf/open/floor/plating/asteroid},/area/library)
-"aAU" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/wood{baseturf = /turf/open/floor/plating/asteroid},/area/library)
-"aAV" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood{baseturf = /turf/open/floor/plating/asteroid},/area/library)
-"aAW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/library)
-"aAX" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/library)
-"aAY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/wood,/area/library)
-"aAZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/table/wood,/obj/item/weapon/folder,/obj/item/clothing/glasses/monocle,/turf/open/floor/wood,/area/library)
-"aBa" = (/obj/structure/chair/wood/normal{tag = "icon-wooden_chair (WEST)";icon_state = "wooden_chair";dir = 8},/turf/open/floor/wood,/area/library)
-"aBb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/table/wood/fancy,/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-15";pixel_x = 0;pixel_y = 12;tag = "icon-plant-15"},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aBc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/chair/wood/normal{icon_state = "wooden_chair";dir = 8},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aBd" = (/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aBe" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Cafe"},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aBf" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/green/corner{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"aBg" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/green/side{dir = 1},/area/construction/hallway{name = "Biodome Hallway"})
-"aBh" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/green/side{dir = 1},/area/construction/hallway{name = "Biodome Hallway"})
-"aBi" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/green/side{dir = 5},/area/construction/hallway{name = "Biodome Hallway"})
-"aBj" = (/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/obj/structure/closet/wardrobe/grey,/turf/open/floor/plating,/area/maintenance/fore)
-"aBk" = (/obj/structure/closet/wardrobe/yellow,/turf/open/floor/plating,/area/maintenance/fore)
-"aBl" = (/obj/structure/closet/wardrobe/pink,/turf/open/floor/plating,/area/maintenance/fore)
-"aBm" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/maintenance/fore)
-"aBn" = (/turf/closed/mineral/random/low_chance,/area/mine/unexplored)
-"aBo" = (/obj/structure/table/wood/bar,/obj/item/weapon/reagent_containers/food/snacks/candy,/turf/open/floor/wood{icon_state = "wood-broken6"},/area/maintenance/fore)
-"aBp" = (/obj/machinery/door/airlock/maintenance_hatch,/turf/open/floor/wood{baseturf = /turf/open/floor/plating/asteroid},/area/maintenance/fore)
-"aBq" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/wood{baseturf = /turf/open/floor/plating/asteroid},/area/maintenance/fore)
-"aBr" = (/turf/closed/mineral/random/low_chance,/area/maintenance/fore)
-"aBs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/library)
-"aBt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Game Room"},/turf/open/floor/wood,/area/library)
-"aBu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/library)
-"aBv" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/door/firedoor,/obj/machinery/door/morgue{name = "Private Study";req_access_txt = "37"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/wood,/area/library)
-"aBw" = (/obj/structure/table/wood/fancy,/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-15";pixel_x = 0;pixel_y = 12;tag = "icon-plant-15"},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aBx" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/obj/structure/chair/wood/normal{icon_state = "wooden_chair";dir = 8},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aBy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aBz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aBA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/wood/normal,/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aBB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aBC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/green/side{dir = 10},/area/construction/hallway{name = "Biodome Hallway"})
-"aBD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/green/side,/area/construction/hallway{name = "Biodome Hallway"})
-"aBE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/green/side,/area/construction/hallway{name = "Biodome Hallway"})
-"aBF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/green/corner{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"aBG" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"aBH" = (/obj/structure/closet/crate{icon_state = "crateopen";opened = 1},/turf/open/floor/plating,/area/maintenance/fore)
-"aBI" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore)
-"aBJ" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/fore)
-"aBK" = (/turf/closed/mineral/random/high_chance,/area/mine/explored)
-"aBL" = (/obj/structure/table/wood,/turf/open/floor/wood{baseturf = /turf/open/floor/plating/asteroid},/area/maintenance/fore)
-"aBM" = (/obj/item/weapon/storage/box/cups,/turf/open/floor/wood{icon_state = "wood-broken5"},/area/maintenance/fore)
-"aBN" = (/turf/open/floor/wood{icon_state = "wood-broken"},/area/maintenance/fore)
-"aBO" = (/mob/living/simple_animal/hostile/mimic/crate,/turf/open/floor/plating,/area/maintenance/fore)
-"aBP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)";icon_state = "camera";dir = 5},/turf/open/floor/plasteel/red/corner{dir = 1},/area/construction/hallway{name = "Biodome Hallway"})
-"aBQ" = (/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/obj/structure/bookcase/random/reference,/turf/open/floor/wood,/area/library)
-"aBR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/bookcase/random/reference,/turf/open/floor/wood,/area/library)
-"aBS" = (/obj/structure/bookcase/random/reference,/turf/open/floor/wood,/area/library)
-"aBT" = (/obj/structure/bookcase/manuals/research_and_development,/turf/open/floor/wood,/area/library)
-"aBU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/bookcase/manuals/medical,/turf/open/floor/wood,/area/library)
-"aBV" = (/obj/structure/bookcase/manuals/engineering,/turf/open/floor/wood,/area/library)
-"aBW" = (/obj/structure/noticeboard{desc = "A memorial wall for pinning up momentos";name = "memorial board";pixel_y = 32},/turf/open/floor/wood,/area/library)
-"aBX" = (/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = -29;pixel_y = 23},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/wood,/area/library)
-"aBY" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/bin,/turf/open/floor/wood,/area/library)
-"aBZ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/library)
-"aCa" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aCb" = (/obj/structure/disposalpipe/junction{dir = 1;icon_state = "pipe-j2";tag = "icon-pipe-j1 (WEST)"},/turf/open/floor/plasteel/green,/area/construction/hallway{name = "Biodome Hallway"})
-"aCc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/wood/normal{icon_state = "wooden_chair";dir = 8},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aCd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aCe" = (/obj/structure/table/wood/fancy,/obj/item/candle,/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aCf" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aCg" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"aCh" = (/turf/closed/wall,/area/janitor)
-"aCi" = (/obj/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/fore)
-"aCj" = (/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/structure/rack,/obj/item/weapon/restraints/handcuffs/fake/kinky,/turf/open/floor/plating,/area/maintenance/fore)
-"aCk" = (/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/structure/rack,/obj/item/stack/tile/carpet{amount = 40},/turf/open/floor/plating,/area/maintenance/fore)
-"aCl" = (/obj/machinery/vending/kink,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/fore)
-"aCm" = (/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/structure/filingcabinet/chestdrawer/wheeled,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plating,/area/maintenance/fore)
-"aCn" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/turf/open/floor/plating,/area/maintenance/fore)
-"aCo" = (/obj/structure/table,/obj/item/device/flashlight/lantern,/turf/open/floor/plating,/area/maintenance/fore)
-"aCp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/library)
-"aCq" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/turf/open/floor/wood,/area/library)
-"aCr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/library)
-"aCs" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/carpet,/area/library)
-"aCt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/carpet,/area/library)
-"aCu" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;name = "regular air vent";on = 1},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/wood,/area/library)
-"aCv" = (/obj/item/device/radio/intercom{desc = "Talk smack through this.";dir = 4;pixel_x = 28;syndie = 1},/turf/open/floor/wood,/area/library)
-"aCw" = (/obj/structure/disposalpipe/junction{dir = 1;icon_state = "pipe-j1";tag = "icon-pipe-j1 (EAST)"},/turf/open/floor/plasteel/green,/area/construction/hallway{name = "Biodome Hallway"})
-"aCx" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aCy" = (/obj/machinery/light/small/built{tag = "icon-bulb1 (WEST)";icon_state = "bulb1";dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aCz" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aCA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aCB" = (/obj/machinery/holopad,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aCC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aCD" = (/obj/structure/chair/wood/normal{dir = 1},/obj/machinery/light/small/built{tag = "icon-bulb1 (EAST)";icon_state = "bulb1";dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aCE" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/bin,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aCF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table/reinforced,/obj/item/weapon/storage/box/cups,/obj/item/weapon/storage/box/cups,/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = -29;pixel_y = 23},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aCG" = (/obj/structure/table/reinforced,/obj/machinery/chem_dispenser/drinks,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aCH" = (/obj/structure/table/reinforced,/obj/machinery/microwave,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aCI" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aCJ" = (/obj/structure/table,/obj/item/weapon/storage/fancy/donut_box,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aCK" = (/obj/structure/closet/l3closet,/obj/item/clothing/shoes/galoshes,/turf/open/floor/plasteel,/area/janitor)
-"aCL" = (/obj/structure/closet/jcloset,/turf/open/floor/plasteel,/area/janitor)
-"aCM" = (/obj/machinery/light{dir = 1},/obj/machinery/washing_machine,/turf/open/floor/plasteel,/area/janitor)
-"aCN" = (/obj/item/device/radio/intercom{name = "Station Intercom";pixel_x = 0;pixel_y = 24},/turf/open/floor/plasteel,/area/janitor)
-"aCO" = (/obj/machinery/door/window/westleft{name = "Janitoral Delivery";req_access_txt = "26"},/obj/structure/window/reinforced,/turf/open/floor/plasteel{icon_state = "delivery"},/area/janitor)
-"aCP" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8";freq = 1400;location = "Janitor"},/obj/structure/plasticflaps{opacity = 1},/turf/open/floor/plasteel{icon_state = "bot"},/area/janitor)
-"aCQ" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore)
-"aCR" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plating/asteroid/airless{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"aCS" = (/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plating/asteroid/airless{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"aCT" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plating/asteroid/airless{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"aCU" = (/obj/structure/disposalpipe/segment,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fore)
-"aCV" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/closet/jcloset,/turf/open/floor/plating,/area/maintenance/fore)
-"aCW" = (/turf/open/floor/carpet,/area/maintenance/fore)
-"aCX" = (/obj/item/stack/tile/carpet,/turf/open/floor/plating,/area/maintenance/fore)
-"aCY" = (/obj/structure/bookcase/random/nonfiction,/turf/open/floor/wood,/area/library)
-"aCZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/bookcase/random/nonfiction,/turf/open/floor/wood,/area/library)
-"aDa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/library)
-"aDb" = (/obj/structure/table/wood,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/wood,/area/library)
-"aDc" = (/obj/machinery/photocopier,/turf/open/floor/wood,/area/library)
-"aDd" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-21";layer = 4.1;pixel_x = -3;pixel_y = 3},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aDe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aDf" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aDg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aDh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/glass{name = "Cafe"},/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 31},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aDi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aDj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aDk" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aDl" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-21";layer = 4.1},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aDm" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"aDn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock{name = "Custodial Closet";req_access_txt = "26"},/turf/open/floor/plasteel,/area/janitor)
-"aDo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/janitor)
-"aDp" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;name = "regular air vent";on = 1},/turf/open/floor/plasteel,/area/janitor)
-"aDq" = (/turf/open/floor/plasteel,/area/janitor)
-"aDr" = (/obj/structure/sink/kitchen{dir = 8;icon_state = "sink_alt";pixel_x = 13;tag = "icon-sink_alt (WEST)"},/turf/open/floor/plasteel,/area/janitor)
-"aDs" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating/asteroid/airless{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"aDt" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating/asteroid/airless{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"aDu" = (/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/caution,/turf/open/floor/plating,/area/maintenance/fore)
-"aDv" = (/obj/machinery/portable_atmospherics/canister,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
-"aDw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/fore)
-"aDx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/red/corner{dir = 1},/area/construction/hallway{name = "Biodome Hallway"})
-"aDy" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/wood,/area/library)
-"aDz" = (/obj/machinery/light,/obj/machinery/firealarm{dir = 1;pixel_x = 0;pixel_y = -26},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/library)
-"aDA" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTH)";icon_state = "camera";dir = 1},/turf/open/floor/wood,/area/library)
-"aDB" = (/obj/machinery/light,/obj/structure/table/wood,/turf/open/floor/wood,/area/library)
-"aDC" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/open/floor/wood,/area/library)
-"aDD" = (/obj/structure/table/wood,/obj/item/weapon/folder,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/wood,/area/library)
-"aDE" = (/obj/machinery/bookbinder{pixel_y = 0},/turf/open/floor/wood,/area/library)
-"aDF" = (/obj/structure/piano,/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aDG" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aDH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aDI" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aDJ" = (/obj/machinery/door/airlock/glass{name = "Cafe"},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aDK" = (/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aDL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aDM" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aDN" = (/obj/structure/table,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aDO" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aDP" = (/obj/machinery/status_display,/turf/closed/wall,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aDQ" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera/autoname{tag = "icon-camera (WEST)";icon_state = "camera";dir = 8},/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"aDR" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel,/area/janitor)
-"aDS" = (/obj/effect/landmark/start{name = "Janitor"},/turf/open/floor/plasteel,/area/janitor)
-"aDT" = (/obj/effect/landmark/event_spawn,/mob/living/simple_animal/hostile/lizard{name = "Wags-His-Tail";real_name = "Wags-His-Tail"},/turf/open/floor/plasteel,/area/janitor)
-"aDU" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel,/area/janitor)
-"aDV" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/power/apc{dir = 8;name = "Custodial Closet APC";pixel_x = -24},/obj/structure/cable,/turf/open/floor/plating,/area/janitor)
-"aDW" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plating/asteroid/airless{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"aDX" = (/obj/structure/closet/crate/trashcart,/turf/open/floor/plating,/area/maintenance/fore)
-"aDY" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/fore)
-"aDZ" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/fore)
-"aEa" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
-"aEb" = (/obj/structure/closet/wardrobe/pjs,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
-"aEc" = (/turf/closed/wall,/area/chapel/main)
-"aEd" = (/obj/structure/bookcase/random/fiction,/turf/open/floor/wood,/area/library)
-"aEe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/bookcase/random/fiction,/turf/open/floor/wood,/area/library)
-"aEf" = (/obj/machinery/newscaster,/turf/closed/wall,/area/library)
-"aEg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Library"},/turf/open/floor/wood,/area/library)
-"aEh" = (/obj/machinery/newscaster/security_unit,/turf/closed/wall,/area/library)
-"aEi" = (/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/wood,/area/library)
-"aEj" = (/obj/structure/table/wood,/obj/machinery/computer/libraryconsole/bookmanagement{pixel_y = 0},/turf/open/floor/wood,/area/library)
-"aEk" = (/obj/structure/chair/wood/normal,/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aEl" = (/obj/structure/chair/wood/normal,/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aEm" = (/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/machinery/portable_atmospherics/canister/water_vapor,/turf/open/floor/plasteel,/area/janitor)
-"aEn" = (/obj/structure/table,/obj/structure/bedsheetbin,/turf/open/floor/plasteel,/area/janitor)
-"aEo" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/open/floor/plating/asteroid/airless{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"aEp" = (/obj/structure/window/reinforced,/turf/open/floor/plating/asteroid/airless{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"aEq" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/open/floor/plating/asteroid/airless{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"aEr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/fore)
-"aEs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/closed/wall,/area/maintenance/fore)
-"aEt" = (/obj/structure/bed,/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
-"aEu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
-"aEv" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
-"aEw" = (/obj/structure/frame/computer,/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
-"aEx" = (/obj/structure/frame,/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
-"aEy" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
-"aEz" = (/obj/structure/closet/firecloset,/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
-"aEA" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
-"aEB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/closed/wall,/area/chapel/main)
-"aEC" = (/obj/structure/chair/stool,/obj/item/device/radio/intercom{broadcasting = 1;dir = 8;frequency = 1480;name = "Confessional Intercom";pixel_x = -25},/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/open/floor/carpet,/area/chapel/main)
-"aED" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/open/floor/plating,/area/chapel/main)
-"aEE" = (/obj/structure/chair/stool,/obj/item/device/radio/intercom{broadcasting = 1;frequency = 1480;name = "Confessional Intercom";pixel_x = 25},/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/open/floor/carpet,/area/chapel/main)
-"aEF" = (/obj/structure/closet/radiation,/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
-"aEG" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8;on = 0},/turf/open/floor/plating,/area/maintenance/fore)
-"aEH" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
-"aEI" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/corner{dir = 1},/area/construction/hallway{name = "Biodome Hallway"})
-"aEJ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/library)
-"aEK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"aEL" = (/turf/open/floor/plasteel/green/side{dir = 5},/area/construction/hallway{name = "Biodome Hallway"})
-"aEM" = (/obj/machinery/libraryscanner,/turf/open/floor/wood,/area/library)
-"aEN" = (/obj/structure/chair/wood/normal{dir = 1},/turf/open/floor/wood,/area/library)
-"aEO" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/bin,/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/machinery/light/small/built{tag = "icon-bulb1 (WEST)";icon_state = "bulb1";dir = 8},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aEP" = (/obj/structure/table/wood/fancy,/obj/machinery/newscaster{dir = 1;pixel_y = -30},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aEQ" = (/obj/machinery/light/small/built{tag = "icon-bulb1 (EAST)";icon_state = "bulb1";dir = 4},/obj/item/weapon/twohanded/required/kirbyplants{tag = "icon-plant-18";icon_state = "plant-18"},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aER" = (/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/obj/machinery/camera/autoname{tag = "icon-camera (NORTH)";icon_state = "camera";dir = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aES" = (/obj/machinery/vending/coffee,/obj/machinery/light,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aET" = (/obj/machinery/vending/cola/red,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aEU" = (/obj/structure/table,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4";tag = ""},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aEV" = (/obj/structure/table,/obj/item/weapon/storage/fancy/candle_box,/obj/machinery/power/apc{dir = 2;name = "Cafateria APC";pixel_y = -24},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aEW" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"aEX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock{name = "Custodial Closet";req_access_txt = "26"},/turf/open/floor/plasteel,/area/janitor)
-"aEY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/janitor)
-"aEZ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;name = "regular air scrubber";on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/janitor)
-"aFa" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/bin,/turf/open/floor/plasteel,/area/janitor)
-"aFb" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/janitor)
-"aFc" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
-"aFd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plating,/area/maintenance/fore)
-"aFe" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small,/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plating,/area/maintenance/fore)
-"aFf" = (/obj/structure/disposalpipe/junction,/turf/open/floor/plating,/area/maintenance/fore)
-"aFg" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Chapel Maintenance";req_access_txt = "12"},/turf/open/floor/plating,/area/chapel/main)
-"aFh" = (/obj/machinery/door/firedoor,/obj/machinery/door/morgue{name = "Confession Booth"},/turf/open/floor/plasteel/black,/area/chapel/main)
-"aFi" = (/obj/machinery/door/firedoor,/obj/machinery/door/morgue{name = "Confession Booth (Chaplain)";req_access_txt = "22"},/turf/open/floor/plasteel/black,/area/chapel/main)
-"aFj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/securearea{pixel_x = -32},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/red/corner{dir = 1},/area/construction/hallway{name = "Biodome Hallway"})
-"aFk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/sign/securearea{pixel_x = 32},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/red/corner,/area/construction/hallway{name = "Biodome Hallway"})
-"aFl" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/library)
-"aFm" = (/obj/structure/extinguisher_cabinet{pixel_x = -24},/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"aFn" = (/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"aFo" = (/obj/machinery/status_display,/turf/closed/wall,/area/library)
-"aFp" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/plating,/area/library)
-"aFq" = (/obj/structure/sign/directions/medical{tag = "icon-direction_med (WEST)";icon_state = "direction_med";dir = 8},/obj/structure/sign/directions/evac{pixel_y = -10},/obj/structure/sign/directions/security{dir = 8;icon_state = "direction_sec";pixel_y = 10;tag = "icon-direction_sec (WEST)"},/turf/closed/wall,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aFr" = (/obj/machinery/newscaster,/turf/closed/wall,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aFs" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/crew_quarters/cafeteria{name = "Cafe"})
-"aFt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"aFu" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"aFv" = (/obj/structure/janitorialcart,/obj/item/weapon/mop,/turf/open/floor/plasteel,/area/janitor)
-"aFw" = (/obj/item/weapon/caution,/obj/item/weapon/caution,/obj/item/weapon/caution,/obj/item/weapon/caution,/obj/item/weapon/caution,/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/plasteel,/area/janitor)
-"aFx" = (/obj/machinery/light,/obj/vehicle/janicart,/turf/open/floor/plasteel,/area/janitor)
-"aFy" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/obj/item/key/janitor,/turf/open/floor/plasteel,/area/janitor)
-"aFz" = (/obj/structure/table,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/machinery/requests_console{department = "Janitorial";departmentType = 1;pixel_y = -29},/obj/item/weapon/reagent_containers/spray/cleaner,/turf/open/floor/plasteel,/area/janitor)
-"aFA" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance_hatch,/turf/open/floor/plating,/area/maintenance/fore)
-"aFB" = (/obj/structure/closet/coffin,/turf/open/floor/plasteel/black,/area/chapel/main)
-"aFC" = (/obj/machinery/light{dir = 1},/obj/structure/closet/coffin,/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plasteel/black,/area/chapel/main)
-"aFD" = (/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/wood,/area/chapel/main)
-"aFE" = (/turf/open/floor/wood,/area/chapel/main)
-"aFF" = (/obj/item/device/radio/intercom{name = "Station Intercom";pixel_x = 0;pixel_y = 24},/turf/open/floor/wood,/area/chapel/main)
-"aFG" = (/obj/structure/noticeboard{desc = "A memorial wall for pinning up momentos";name = "memorial board";pixel_y = 32},/turf/open/floor/wood,/area/chapel/main)
-"aFH" = (/obj/structure/spirit_board,/turf/open/floor/wood,/area/chapel/main)
-"aFI" = (/obj/structure/bookcase{name = "Holy Bookcase"},/turf/open/floor/wood,/area/chapel/main)
-"aFJ" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/turf/open/floor/wood,/area/chapel/main)
-"aFK" = (/obj/structure/table/wood,/obj/item/device/flashlight/lantern,/turf/open/floor/wood,/area/chapel/main)
-"aFL" = (/obj/machinery/light{dir = 1},/obj/structure/closet/wardrobe/black,/turf/open/floor/wood,/area/chapel/main)
-"aFM" = (/obj/structure/closet/wardrobe/black,/turf/open/floor/wood,/area/chapel/main)
-"aFN" = (/obj/effect/landmark/xmastree,/turf/open/floor/plasteel/black,/area/chapel/main)
-"aFO" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/chapel{tag = "icon-chapel (NORTHWEST)";icon_state = "chapel";dir = 9},/area/chapel/main)
-"aFP" = (/turf/open/floor/plasteel/chapel{tag = "icon-chapel (NORTHEAST)";icon_state = "chapel";dir = 5},/area/chapel/main)
-"aFQ" = (/turf/open/floor/plasteel/chapel{tag = "icon-chapel (NORTH)";icon_state = "chapel";dir = 1},/area/chapel/main)
-"aFR" = (/turf/open/floor/plasteel/chapel{tag = "icon-chapel (EAST)";icon_state = "chapel";dir = 4},/area/chapel/main)
-"aFS" = (/turf/open/floor/plasteel/chapel{tag = "icon-chapel (NORTHWEST)";icon_state = "chapel";dir = 9},/area/chapel/main)
-"aFT" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/chapel{tag = "icon-chapel (NORTH)";icon_state = "chapel";dir = 1},/area/chapel/main)
-"aFU" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/poppypretzel,/obj/item/weapon/reagent_containers/food/snacks/poppypretzel,/obj/item/weapon/reagent_containers/food/snacks/poppypretzel,/obj/item/weapon/reagent_containers/food/snacks/poppypretzel,/turf/open/floor/plasteel/chapel{tag = "icon-chapel (EAST)";icon_state = "chapel";dir = 4},/area/chapel/main)
-"aFV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/green/side{dir = 9},/area/construction/hallway{name = "Biodome Hallway"})
-"aFW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/green/side{dir = 5},/area/construction/hallway{name = "Biodome Hallway"})
-"aFX" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/green/side{dir = 1},/area/construction/hallway{name = "Biodome Hallway"})
-"aFY" = (/turf/open/floor/plasteel/green/side{dir = 1},/area/construction/hallway{name = "Biodome Hallway"})
-"aFZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/green/side{dir = 1},/area/construction/hallway{name = "Biodome Hallway"})
-"aGa" = (/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHEAST)";icon_state = "camera";dir = 6},/turf/open/floor/plasteel/green/side{dir = 1},/area/construction/hallway{name = "Biodome Hallway"})
-"aGb" = (/turf/open/floor/plasteel/green/corner{dir = 1},/area/construction/hallway{name = "Biodome Hallway"})
-"aGc" = (/turf/open/floor/plasteel/green/corner{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"aGd" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/green/side{dir = 1},/area/construction/hallway{name = "Biodome Hallway"})
-"aGe" = (/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (EAST)";icon_state = "door_open";dir = 4},/turf/open/floor/plasteel/green/side{dir = 1},/area/construction/hallway{name = "Biodome Hallway"})
-"aGf" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel/green/side{dir = 1},/area/construction/hallway{name = "Biodome Hallway"})
-"aGg" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/green/side{dir = 1},/area/construction/hallway{name = "Biodome Hallway"})
-"aGh" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plasteel/green/side{dir = 1},/area/construction/hallway{name = "Biodome Hallway"})
-"aGi" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel/green/side{dir = 1},/area/construction/hallway{name = "Biodome Hallway"})
-"aGj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/green/corner{dir = 1},/area/construction/hallway{name = "Biodome Hallway"})
-"aGk" = (/turf/closed/wall,/area/maintenance/starboard)
-"aGl" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/starboard)
-"aGm" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plating,/area/maintenance/starboard)
-"aGn" = (/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/obj/structure/closet/coffin,/turf/open/floor/plasteel/black,/area/chapel/main)
-"aGo" = (/obj/structure/closet/coffin,/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plasteel/black,/area/chapel/main)
-"aGp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/wood,/area/chapel/main)
-"aGq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/wood,/area/chapel/main)
-"aGr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/chapel/main)
-"aGs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/chapel/main)
-"aGt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/device/radio/intercom{dir = 8;pixel_x = -28},/turf/open/floor/plasteel/black,/area/chapel/main)
-"aGu" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/chapel{tag = "icon-chapel (SOUTHWEST)";icon_state = "chapel";dir = 10},/area/chapel/main)
-"aGv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/chapel{tag = "icon-chapel (SOUTHEAST)";icon_state = "chapel";dir = 6},/area/chapel/main)
-"aGw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/chapel{tag = "icon-chapel (WEST)";icon_state = "chapel";dir = 8},/area/chapel/main)
-"aGx" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/chapel,/area/chapel/main)
-"aGy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/chapel{tag = "icon-chapel (SOUTHWEST)";icon_state = "chapel";dir = 10},/area/chapel/main)
-"aGz" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/chapel{tag = "icon-chapel (SOUTHEAST)";icon_state = "chapel";dir = 6},/area/chapel/main)
-"aGA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/chair/stool,/turf/open/floor/plasteel/chapel{tag = "icon-chapel (SOUTHEAST)";icon_state = "chapel";dir = 6},/area/chapel/main)
-"aGB" = (/turf/open/floor/plasteel/chapel{tag = "icon-chapel (WEST)";icon_state = "chapel";dir = 8},/area/chapel/main)
-"aGC" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/grown/poppy,/turf/open/floor/plasteel/chapel,/area/chapel/main)
-"aGD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"aGE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/green/corner,/area/construction/hallway{name = "Biodome Hallway"})
-"aGF" = (/turf/open/floor/plasteel/green/side,/area/construction/hallway{name = "Biodome Hallway"})
-"aGG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/green/side,/area/construction/hallway{name = "Biodome Hallway"})
-"aGH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/green/side,/area/construction/hallway{name = "Biodome Hallway"})
-"aGI" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/green/side,/area/construction/hallway{name = "Biodome Hallway"})
-"aGJ" = (/obj/structure/cable{tag = "icon-1-4";icon_state = "1-4"},/turf/open/floor/plasteel/green/side,/area/construction/hallway{name = "Biodome Hallway"})
-"aGK" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/green/side,/area/construction/hallway{name = "Biodome Hallway"})
-"aGL" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/green/corner{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"aGM" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"aGN" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/green/side,/area/construction/hallway{name = "Biodome Hallway"})
-"aGO" = (/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/green/side,/area/construction/hallway{name = "Biodome Hallway"})
-"aGP" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"aGQ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plasteel/green/side,/area/construction/hallway{name = "Biodome Hallway"})
-"aGR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/green/corner{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"aGS" = (/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"aGT" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fore)
-"aGU" = (/obj/structure/closet/coffin,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)";icon_state = "camera";dir = 5},/turf/open/floor/plasteel/black,/area/chapel/main)
-"aGV" = (/obj/machinery/door/window/eastleft{dir = 4;name = "Coffin Storage";req_access_txt = "22"},/turf/open/floor/plasteel/black,/area/chapel/main)
-"aGW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/chapel/main)
-"aGX" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/turf/open/floor/wood,/area/chapel/main)
-"aGY" = (/obj/structure/chair/wood/normal{tag = "icon-wooden_chair (EAST)";icon_state = "wooden_chair";dir = 4},/turf/open/floor/wood,/area/chapel/main)
-"aGZ" = (/obj/structure/table/wood,/obj/item/weapon/folder,/obj/item/weapon/pen,/turf/open/floor/wood,/area/chapel/main)
-"aHa" = (/obj/item/device/radio/beacon,/turf/open/floor/wood,/area/chapel/main)
-"aHb" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/wood,/area/chapel/main)
-"aHc" = (/turf/open/floor/plasteel/black,/area/chapel/main)
-"aHd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/chapel/main)
-"aHe" = (/obj/structure/table/wood,/obj/item/candle,/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/turf/open/floor/carpet,/area/chapel/main)
-"aHf" = (/turf/open/floor/carpet,/area/chapel/main)
-"aHg" = (/obj/structure/chair/stool,/turf/open/floor/carpet,/area/chapel/main)
-"aHh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/turf/open/floor/carpet,/area/chapel/main)
-"aHi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/stool,/turf/open/floor/carpet,/area/chapel/main)
-"aHj" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/carpet,/area/chapel/main)
-"aHk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"aHl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/flora/grass/green,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aHm" = (/obj/structure/flora/ausbushes/grassybush,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aHn" = (/obj/structure/flora/ausbushes/pointybush,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aHo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aHp" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/green/side{dir = 10},/area/construction/hallway{name = "Biodome Hallway"})
-"aHq" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"aHr" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera/autoname{tag = "icon-camera (NORTH)";icon_state = "camera";dir = 1},/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aHs" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aHt" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"aHu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"aHv" = (/obj/structure/table/wood,/obj/item/weapon/storage/book/bible,/obj/structure/cable{icon_state = "2-4";tag = "icon-2-8"},/turf/open/floor/wood,/area/chapel/main)
-"aHw" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/wood,/area/chapel/main)
-"aHx" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/wood,/area/chapel/main)
-"aHy" = (/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/wood,/area/chapel/main)
-"aHz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/wood,/area/chapel/main)
-"aHA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{name = "Funeral Parlour";opacity = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/wood,/area/chapel/main)
-"aHB" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/black,/area/chapel/main)
-"aHC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/carpet,/area/chapel/main)
-"aHD" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/table/wood,/obj/item/weapon/storage/book/bible,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/carpet,/area/chapel/main)
-"aHE" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/carpet,/area/chapel/main)
-"aHF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/carpet,/area/chapel/main)
-"aHG" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{name = "Chapel";opacity = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel/black,/area/chapel/main)
-"aHH" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel/black,/area/chapel/main)
-"aHI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"aHJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plasteel/green/corner{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"aHK" = (/turf/closed/wall,/area/crew_quarters/theatre)
-"aHL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/theatre)
-"aHM" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/crew_quarters/theatre)
-"aHN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/crew_quarters/theatre)
-"aHO" = (/obj/structure/flora/ausbushes/pointybush,/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHWEST)";icon_state = "camera";dir = 10},/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aHP" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=2";freq = 1400;location = "Bar"},/obj/structure/plasticflaps{opacity = 1},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/crew_quarters/bar)
-"aHQ" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/construction/hallway{name = "Biodome Hallway"})
-"aHR" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"aHS" = (/obj/machinery/light,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/power/apc{dir = 2;name = "Kitchen APC";pixel_y = -24},/turf/open/floor/grass,/area/crew_quarters/kitchen)
-"aHT" = (/obj/machinery/power/apc{dir = 2;name = "Chapel APC";pixel_x = 0;pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/wood,/area/chapel/main)
-"aHU" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/turf/open/floor/wood,/area/chapel/main)
-"aHV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/table/wood,/obj/item/weapon/storage/fancy/candle_box,/obj/item/weapon/storage/fancy/candle_box,/turf/open/floor/wood,/area/chapel/main)
-"aHW" = (/obj/structure/table/wood,/obj/item/device/camera/spooky,/turf/open/floor/wood,/area/chapel/main)
-"aHX" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)";icon_state = "camera";dir = 5},/turf/open/floor/plasteel/black,/area/chapel/main)
-"aHY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/table/wood,/obj/item/candle,/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/carpet,/area/chapel/main)
-"aHZ" = (/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/turf/open/floor/carpet,/area/chapel/main)
-"aIa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/green/corner,/area/construction/hallway{name = "Biodome Hallway"})
-"aIb" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/crew_quarters/theatre)
-"aIc" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/computer/arcade,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aId" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 31},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aIe" = (/obj/machinery/computer/slot_machine,/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"aIf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/table/wood,/obj/item/weapon/gun/ballistic/revolver/russian,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aIg" = (/obj/machinery/vending/clothing,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aIh" = (/obj/machinery/power/apc{dir = 1;name = "Theatre APC";pixel_x = 0;pixel_y = 25},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aIi" = (/obj/machinery/light{dir = 1},/obj/structure/dresser,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aIj" = (/obj/machinery/vending/autodrobe,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aIk" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Bar Storage Maintenance";req_access_txt = "25"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/plating,/area/crew_quarters/bar)
-"aIl" = (/turf/closed/wall,/area/crew_quarters/bar)
-"aIm" = (/obj/machinery/door/window/southleft{base_state = "left";dir = 2;icon_state = "left";name = "Bar Delivery";req_access_txt = "25"},/turf/open/floor/plasteel{icon_state = "delivery"},/area/crew_quarters/bar)
-"aIn" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/crew_quarters/bar)
-"aIo" = (/turf/closed/wall,/area/crew_quarters/kitchen)
-"aIp" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/closed/wall,/area/crew_quarters/kitchen)
-"aIq" = (/obj/machinery/door/airlock/maintenance{name = "Kitchen Maintenance";req_access_txt = "28"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen)
-"aIr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera/autoname{tag = "icon-camera (EAST)";icon_state = "camera";dir = 4},/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"aIs" = (/obj/structure/sign/botany,/turf/closed/wall,/area/hydroponics)
-"aIt" = (/turf/closed/wall,/area/hydroponics)
-"aIu" = (/turf/closed/wall,/area/medical/morgue)
-"aIv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/medical/morgue)
-"aIw" = (/obj/structure/sign/biohazard,/turf/closed/wall,/area/medical/morgue)
-"aIx" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Morgue";req_access_txt = "6;5;27"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"aIy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/medical/morgue)
-"aIz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{layer = 2.7;name = "Crematorium";opacity = 1;req_access_txt = "27"},/turf/open/floor/plasteel/black,/area/chapel/main)
-"aIA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/chapel{tag = "icon-chapel (NORTHWEST)";icon_state = "chapel";dir = 9},/area/chapel/main)
-"aIB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/chapel{tag = "icon-chapel (NORTHEAST)";icon_state = "chapel";dir = 5},/area/chapel/main)
-"aIC" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/chapel{tag = "icon-chapel (EAST)";icon_state = "chapel";dir = 4},/area/chapel/main)
-"aID" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/chapel{tag = "icon-chapel (NORTHEAST)";icon_state = "chapel";dir = 5},/area/chapel/main)
-"aIE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/chapel{tag = "icon-chapel (NORTHWEST)";icon_state = "chapel";dir = 9},/area/chapel/main)
-"aIF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/chair/stool,/turf/open/floor/plasteel/chapel{tag = "icon-chapel (NORTHEAST)";icon_state = "chapel";dir = 5},/area/chapel/main)
-"aIG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/chapel{tag = "icon-chapel (NORTH)";icon_state = "chapel";dir = 1},/area/chapel/main)
-"aIH" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/bottle/wine,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/chapel{tag = "icon-chapel (EAST)";icon_state = "chapel";dir = 4},/area/chapel/main)
-"aII" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"aIJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"aIK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/theatre)
-"aIL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aIM" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aIN" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/chair/stool,/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"aIO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/stool,/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"aIP" = (/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/stool,/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"aIQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/table/wood,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aIR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/theatre)
-"aIS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/device/radio/intercom{dir = 8;pixel_x = -28},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aIT" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aIU" = (/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aIV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/wood,/area/crew_quarters/bar)
-"aIW" = (/obj/structure/closet/secure_closet/bar,/obj/item/weapon/vending_refill/boozeomat,/obj/item/weapon/vending_refill/cigarette,/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar)
-"aIX" = (/obj/machinery/light/small{dir = 1},/obj/item/clothing/head/that,/obj/structure/table/wood,/obj/item/weapon/wrench,/obj/item/clothing/glasses/sunglasses/reagent,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar)
-"aIY" = (/obj/item/weapon/storage/secure/safe{pixel_y = 32},/obj/structure/reagent_dispensers/beerkeg,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/wood,/area/crew_quarters/bar)
-"aIZ" = (/obj/structure/closet/gmcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar)
-"aJa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/bar)
-"aJb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/closet/secure_closet/freezer/kitchen,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aJc" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/closet/secure_closet/freezer/fridge,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aJd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/deepfryer,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aJe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/table,/obj/machinery/microwave,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aJf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/table,/obj/machinery/microwave,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aJg" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/closed/wall,/area/crew_quarters/kitchen)
-"aJh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/icecream_vat,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen)
-"aJi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen)
-"aJj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/gibber,/obj/machinery/camera/autoname,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen)
-"aJk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light{dir = 1},/obj/structure/kitchenspike,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen)
-"aJl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/kitchenspike,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen)
-"aJm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposaloutlet{dir = 2;name = "food delivery outlet"},/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen)
-"aJn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/crew_quarters/kitchen)
-"aJo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"aJp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel/green/corner{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"aJq" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/green/side{dir = 5},/area/construction/hallway{name = "Biodome Hallway"})
-"aJr" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/hydroponics)
-"aJs" = (/obj/machinery/disposal/deliveryChute{name = "food delivery chute"},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aJt" = (/obj/machinery/smartfridge,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aJu" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aJv" = (/obj/machinery/hydroponics/constructable,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aJw" = (/obj/machinery/hydroponics/constructable,/obj/machinery/camera/autoname,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aJx" = (/obj/structure/sink/kitchen{pixel_y = 32},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aJy" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aJz" = (/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo"},/turf/open/floor/plasteel,/area/hydroponics)
-"aJA" = (/obj/structure/closet/secure_closet/hydroponics,/turf/open/floor/plasteel,/area/hydroponics)
-"aJB" = (/obj/structure/bodycontainer/morgue,/turf/open/floor/plasteel/black,/area/medical/morgue)
-"aJC" = (/turf/open/floor/plasteel/black,/area/medical/morgue)
-"aJD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/medical/morgue)
-"aJE" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"aJF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/machinery/light_switch{pixel_y = 24},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"aJG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"aJH" = (/obj/structure/filingcabinet/medical,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"aJI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/medical/morgue)
-"aJJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/intercom{dir = 8;pixel_x = -28},/turf/open/floor/plasteel/black,/area/chapel/main)
-"aJK" = (/obj/structure/bodycontainer/crematorium,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/black,/area/chapel/main)
-"aJL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/chapel/main)
-"aJM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark/xmastree,/turf/open/floor/plasteel/black,/area/chapel/main)
-"aJN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/chapel{tag = "icon-chapel (SOUTHWEST)";icon_state = "chapel";dir = 10},/area/chapel/main)
-"aJO" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/chapel{tag = "icon-chapel (SOUTHEAST)";icon_state = "chapel";dir = 6},/area/chapel/main)
-"aJP" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/chapel{tag = "icon-chapel (WEST)";icon_state = "chapel";dir = 8},/area/chapel/main)
-"aJQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/chapel,/area/chapel/main)
-"aJR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/chapel{tag = "icon-chapel (SOUTHWEST)";icon_state = "chapel";dir = 10},/area/space)
-"aJS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/chapel{tag = "icon-chapel (SOUTHEAST)";icon_state = "chapel";dir = 6},/area/chapel/main)
-"aJT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/chapel{tag = "icon-chapel (WEST)";icon_state = "chapel";dir = 8},/area/chapel/main)
-"aJU" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/chapel{tag = "icon-chapel (SOUTHWEST)";icon_state = "chapel";dir = 10},/area/chapel/main)
-"aJV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/chapel{tag = "icon-chapel (SOUTHEAST)";icon_state = "chapel";dir = 6},/area/chapel/main)
-"aJW" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/bun,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/chapel,/area/chapel/main)
-"aJX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"aJY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"aJZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/theatre)
-"aKa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aKb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aKc" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aKd" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aKe" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/table/wood,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aKf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/theatre)
-"aKg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)";icon_state = "camera";dir = 5},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aKh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aKi" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Mime"},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aKj" = (/obj/structure/table/wood,/obj/structure/mirror{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aKk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4";tag = ""},/turf/open/floor/wood,/area/crew_quarters/bar)
-"aKl" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/wood,/area/crew_quarters/bar)
-"aKm" = (/obj/effect/landmark/start{name = "Bartender"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/wood,/area/crew_quarters/bar)
-"aKn" = (/obj/machinery/power/apc{dir = 2;name = "Bar APC";pixel_y = -24},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar)
-"aKo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/mob/living/simple_animal/bot/cleanbot{name = "C.L.E.A.N."},/turf/open/floor/wood,/area/crew_quarters/bar)
-"aKp" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/bar)
-"aKq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/intercom{dir = 8;pixel_x = -28},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aKr" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aKs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark/start{name = "Cook"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aKt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aKu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/kitchen)
-"aKv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen)
-"aKw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen)
-"aKx" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (WEST)";icon_state = "vent_map";dir = 8},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen)
-"aKy" = (/mob/living/simple_animal/hostile/retaliate/goat{name = "Pete"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen)
-"aKz" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen)
-"aKA" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/window/northleft{dir = 2},/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen)
-"aKB" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=2";freq = 1400;location = "Kitchen"},/obj/structure/plasticflaps{opacity = 1},/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/crew_quarters/kitchen)
-"aKC" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"aKD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"aKE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"aKF" = (/obj/structure/table/reinforced,/obj/machinery/door/window/northleft{dir = 8;name = "Hydroponics Desk";req_access_txt = "35"},/obj/machinery/door/firedoor/heavy,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aKG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aKH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aKI" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;name = "regular air vent";on = 1},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aKJ" = (/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aKK" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aKL" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel,/area/hydroponics)
-"aKM" = (/turf/open/floor/plasteel,/area/hydroponics)
-"aKN" = (/obj/machinery/door/airlock/maintenance{name = "Hydroponics Maintenance";req_access_txt = "35";req_one_access_txt = "0"},/turf/open/floor/plating,/area/maintenance/starboard)
-"aKO" = (/turf/closed/wall/mineral/iron{baseturf = /turf/open/floor/plating/asteroid/airless},/area/medical/morgue{name = "Crypt"})
-"aKP" = (/obj/structure/bodycontainer/morgue,/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"aKQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/bodycontainer/morgue,/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"aKR" = (/obj/structure/bodycontainer/morgue,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"aKS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/bodycontainer/morgue,/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"aKT" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"aKU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel/black,/area/chapel/main)
-"aKV" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/turf/open/floor/plasteel/black,/area/chapel/main)
-"aKW" = (/turf/closed/wall,/area/chapel/office)
-"aKX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/chapel/office)
-"aKY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{name = "Chapel Office";opacity = 1;req_access_txt = "27"},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/black,/area/chapel/office)
-"aKZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/chapel/office)
-"aLa" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/chapel/main)
-"aLb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/chapel/main)
-"aLc" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/chapel/main)
-"aLd" = (/obj/structure/sign/directions/medical,/turf/closed/wall,/area/chapel/main)
-"aLe" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"aLf" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"aLg" = (/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aLh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/chair/stool,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aLi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/chair/stool,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aLj" = (/obj/structure/chair/stool,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aLk" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal/bin,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aLl" = (/obj/machinery/light_switch{dir = 8;pixel_x = -24},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aLm" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aLn" = (/obj/structure/table/wood,/obj/item/weapon/lipstick,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aLo" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Bar Storage";req_access_txt = "25"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/wood,/area/crew_quarters/bar)
-"aLp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/crew_quarters/bar)
-"aLq" = (/obj/machinery/vending/boozeomat,/turf/closed/wall,/area/crew_quarters/bar)
-"aLr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/bar)
-"aLs" = (/obj/structure/disposalpipe/junction{dir = 1;icon_state = "pipe-j1";tag = "icon-pipe-j1 (EAST)"},/turf/closed/wall,/area/crew_quarters/bar)
-"aLt" = (/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aLu" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table,/obj/item/weapon/kitchen/rollingpin,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aLv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/enzyme,/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = 9},/obj/item/weapon/reagent_containers/food/condiment/peppermill,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aLw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aLx" = (/obj/structure/disposalpipe/junction{dir = 8;icon_state = "pipe-j2"},/obj/structure/table,/obj/item/weapon/storage/fancy/donut_box,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aLy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/crew_quarters/kitchen)
-"aLz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/closet/secure_closet/freezer/meat,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen)
-"aLA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen)
-"aLB" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen)
-"aLC" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/crew_quarters/kitchen)
-"aLD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"aLE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"aLF" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"aLG" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"aLH" = (/obj/structure/table/reinforced,/obj/machinery/door/window/northleft{dir = 8;name = "Hydroponics Desk";req_access_txt = "35"},/obj/machinery/door/firedoor/heavy,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aLI" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aLJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aLK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aLL" = (/obj/machinery/biogenerator,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aLM" = (/obj/machinery/seed_extractor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aLN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/effect/landmark/start{name = "Botanist"},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aLO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aLP" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aLQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/hydroponics)
-"aLR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table,/obj/machinery/juicer,/obj/item/weapon/book/manual/hydroponics_pod_people,/obj/machinery/camera/autoname{tag = "icon-camera (EAST)";icon_state = "camera";dir = 4},/turf/open/floor/plasteel,/area/hydroponics)
-"aLS" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;name = "regular air vent";on = 1},/obj/effect/landmark/start{name = "Botanist"},/turf/open/floor/plasteel,/area/hydroponics)
-"aLT" = (/obj/structure/closet/wardrobe/botanist,/turf/open/floor/plasteel,/area/hydroponics)
-"aLU" = (/obj/structure/bodycontainer/morgue,/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/medical/morgue{name = "Crypt"})
-"aLV" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/medical/morgue{name = "Crypt"})
-"aLW" = (/obj/structure/bodycontainer/morgue,/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/medical/morgue{name = "Crypt"})
-"aLX" = (/turf/open/floor/plating/airless/astplate,/area/medical/morgue{name = "Crypt"})
-"aLY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"aLZ" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"aMa" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{layer = 2.7;name = "Crematorium";opacity = 1;req_access_txt = "27"},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"aMb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel/black,/area/chapel/main)
-"aMc" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/black,/area/chapel/main)
-"aMd" = (/obj/structure/closet/wardrobe/chaplain_black,/obj/item/weapon/storage/book/bible/booze,/obj/item/weapon/nullrod,/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"aMe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/bookcase{name = "Holy Bookcase"},/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"aMf" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"aMg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"aMh" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/bin,/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"aMi" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/chapel/office)
-"aMj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/flora/grass/green,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aMk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aMl" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j1";dir = 4},/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aMm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aMn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHEAST)";icon_state = "camera";dir = 6},/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aMo" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"aMp" = (/obj/machinery/light{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"aMq" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/crew_quarters/theatre)
-"aMr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/chair/stool,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aMs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/table/wood/poker,/obj/effect/holodeck_effect/cards,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aMt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aMu" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aMv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,/obj/structure/table/wood/bar,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aMw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table/wood/bar,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aMx" = (/obj/structure/disposalpipe/junction{dir = 4;icon_state = "pipe-j2";tag = "icon-pipe-j1 (WEST)"},/obj/machinery/vending/cola/random,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aMy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/clown,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aMz" = (/obj/structure/sign/barsign,/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/crew_quarters/theatre)
-"aMA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aMB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table,/obj/machinery/chem_dispenser/drinks,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aMC" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aMD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table,/obj/machinery/chem_dispenser/drinks/beer,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aME" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j1";dir = 4},/obj/machinery/chem_master/condimaster{desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments.";name = "HoochMaster Deluxe";pixel_x = -4},/obj/item/weapon/book/manual/barman_recipes,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aMF" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/closed/wall,/area/crew_quarters/bar)
-"aMG" = (/obj/machinery/light_switch{dir = 8;pixel_x = -24},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)";icon_state = "camera";dir = 5},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aMH" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aMI" = (/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aMJ" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3;pixel_y = 3},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aMK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/kitchen)
-"aML" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/freezer,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen)
-"aMM" = (/obj/machinery/smartfridge,/turf/closed/wall,/area/crew_quarters/kitchen)
-"aMN" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"aMO" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"aMP" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/hydroponics)
-"aMQ" = (/obj/structure/reagent_dispensers/watertank/high,/obj/item/weapon/watertank,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aMR" = (/obj/effect/landmark/start{name = "Botanist"},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aMS" = (/obj/machinery/vending/hydroseeds,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aMT" = (/obj/machinery/vending/hydronutrients,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aMU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aMV" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aMW" = (/obj/item/device/radio/intercom{dir = 8;pixel_x = -28},/obj/machinery/plantgenes,/turf/open/floor/plasteel,/area/hydroponics)
-"aMX" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel,/area/hydroponics)
-"aMY" = (/obj/structure/closet/crate/hydroponics,/obj/item/weapon/shovel/spade,/obj/item/weapon/wrench,/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics)
-"aMZ" = (/obj/structure/ore_box,/turf/open/floor/plating/asteroid/airless{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"aNa" = (/obj/structure/mineral_door/iron,/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/medical/morgue{name = "Crypt"})
-"aNb" = (/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/maintenance/fore)
-"aNc" = (/obj/machinery/door/airlock/maintenance{name = "Morgue Maintenance";req_access_txt = "6"},/turf/open/floor/plating,/area/medical/morgue)
-"aNd" = (/obj/structure/bodycontainer/morgue,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"aNe" = (/obj/structure/table/wood,/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/pen,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"aNf" = (/obj/structure/bodycontainer/morgue,/turf/open/floor/plasteel/black,/area/chapel/main)
-"aNg" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel/black,/area/chapel/main)
-"aNh" = (/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"aNi" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"aNj" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"aNk" = (/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"aNl" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/chapel/office)
-"aNm" = (/obj/structure/disposalpipe/segment,/obj/structure/flora/grass/green,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aNn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aNo" = (/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"aNp" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"aNq" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/stool,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aNr" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aNs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/chair/stool,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aNt" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/chair/stool,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aNu" = (/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 32;pixel_y = 32},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aNv" = (/obj/machinery/light{dir = 1},/obj/structure/window/reinforced{dir = 8;pixel_x = 0},/obj/structure/piano,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/theatre)
-"aNw" = (/obj/structure/chair/stool,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"aNx" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/effect/landmark/start{name = "Clown"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"aNy" = (/obj/structure/table/wood,/obj/item/device/instrument/violin,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"aNz" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/table/wood,/obj/item/device/instrument/guitar,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/theatre)
-"aNA" = (/obj/structure/table/reinforced,/obj/machinery/juicer,/obj/structure/sign/securearea{desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'";icon_state = "monkey_painting";name = "Mr. Deempisi portrait";pixel_x = 0;pixel_y = 28},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aNB" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aNC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aND" = (/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aNE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aNF" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aNG" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Kitchen";req_access_txt = "28"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aNH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sink/kitchen{pixel_y = 32},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aNI" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aNJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aNK" = (/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aNL" = (/obj/machinery/vending/dinnerware,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aNM" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor/heavy,/obj/machinery/door/window/northleft{dir = 4;name = "Kitchen Desk";req_access_txt = "28"},/turf/open/floor/plating,/area/crew_quarters/kitchen)
-"aNN" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"aNO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"aNP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"aNQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"aNR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/hydroponics)
-"aNS" = (/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aNT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aNU" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aNV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aNW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aNX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/glass{name = "Hydroponics Storage"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel,/area/hydroponics)
-"aNY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel,/area/hydroponics)
-"aNZ" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plasteel,/area/hydroponics)
-"aOa" = (/obj/structure/ore_box,/obj/machinery/camera/autoname{tag = "icon-camera (NORTH)";icon_state = "camera";dir = 1},/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/quartermaster/miningdock)
-"aOb" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/quartermaster/miningdock)
-"aOc" = (/obj/structure/ore_box,/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/quartermaster/miningdock)
-"aOd" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/maintenance/fore)
-"aOe" = (/obj/structure/bodycontainer/morgue,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)";icon_state = "camera";dir = 5},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"aOf" = (/obj/structure/chair/wood/normal{tag = "icon-wooden_chair (EAST)";icon_state = "wooden_chair";dir = 4},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"aOg" = (/obj/structure/table/wood,/obj/item/weapon/folder/white,/turf/open/floor/plasteel/black,/area/medical/morgue)
-"aOh" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/chapel/main)
-"aOi" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)";icon_state = "camera";dir = 5},/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"aOj" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp,/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"aOk" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater,/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"aOl" = (/obj/structure/table/wood,/obj/item/weapon/storage/fancy/candle_box,/obj/item/weapon/storage/fancy/candle_box,/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"aOm" = (/obj/structure/disposalpipe/segment,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aOn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aOo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aOp" = (/obj/machinery/door/window{base_state = "right";dir = 8;icon_state = "right";name = "Theatre Stage";req_access_txt = "0"},/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"aOq" = (/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"aOr" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"aOs" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/rag,/obj/item/weapon/reagent_containers/food/drinks/shaker,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aOt" = (/obj/effect/landmark/start{name = "Bartender"},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aOu" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aOv" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aOw" = (/obj/structure/table,/obj/item/weapon/storage/fancy/donut_box,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aOx" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aOy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aOz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aOA" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aOB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table/reinforced,/obj/machinery/door/firedoor/heavy,/obj/machinery/door/window/northleft{dir = 4;name = "Kitchen Desk";req_access_txt = "28"},/turf/open/floor/plating,/area/crew_quarters/kitchen)
-"aOC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"aOD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"aOE" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"aOF" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass{name = "Hydroponics"},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aOG" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aOH" = (/obj/machinery/hydroponics/constructable,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aOI" = (/obj/machinery/hydroponics/constructable,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aOJ" = (/obj/machinery/hydroponics/constructable,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aOK" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aOL" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel,/area/hydroponics)
-"aOM" = (/obj/machinery/power/apc{dir = 2;name = "Hydroponics APC";pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel,/area/hydroponics)
-"aON" = (/obj/machinery/door/window/eastright{dir = 8;name = "Hydroponics Delivery";req_access_txt = "35"},/turf/open/floor/plasteel{icon_state = "delivery"},/area/hydroponics)
-"aOO" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=2";freq = 1400;location = "Hydroponics"},/obj/structure/plasticflaps{opacity = 1},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/hydroponics)
-"aOP" = (/turf/closed/wall,/area/quartermaster/miningdock)
-"aOQ" = (/obj/machinery/door/airlock/external{name = "Mining Airlock";req_access = null;req_access_txt = "48"},/turf/open/floor/noslip,/area/quartermaster/miningdock)
-"aOR" = (/turf/closed/wall,/area/maintenance/port)
-"aOS" = (/turf/open/floor/plating,/area/maintenance/port)
-"aOT" = (/obj/structure/bodycontainer/morgue,/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"aOU" = (/obj/structure/table/wood,/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"aOV" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/structure/chair/wood/wings{dir = 1},/obj/effect/landmark/start{name = "Chaplain"},/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"aOW" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"aOX" = (/obj/machinery/power/apc{dir = 2;lighting = 3;name = "Chapel Office APC";pixel_x = 0;pixel_y = -25},/obj/structure/cable{tag = "icon-0-8";icon_state = "0-8"},/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"aOY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aOZ" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark/event_spawn,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aPa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/flora/grass/green,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aPb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Bar"},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aPc" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aPd" = (/obj/structure/chair/wood{tag = "icon-wooden_chair (EAST)";icon_state = "wooden_chair";dir = 4},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aPe" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/obj/structure/table/wood,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aPf" = (/obj/structure/chair/wood{tag = "icon-wooden_chair (WEST)";icon_state = "wooden_chair";dir = 8},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aPg" = (/obj/structure/window/reinforced{dir = 8;pixel_x = 0},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/theatre)
-"aPh" = (/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"aPi" = (/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/mob/living/carbon/monkey/punpun,/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"aPj" = (/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/theatre)
-"aPk" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/smartfridge/drinks,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aPl" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor/border_only,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aPm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/table/reinforced,/obj/machinery/door/firedoor/border_only,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aPn" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor/border_only,/obj/item/clothing/head/bowler,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aPo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table/reinforced,/obj/machinery/door/firedoor/border_only,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aPp" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/window/southright{name = "Bar Door";req_access_txt = "0";req_one_access_txt = "25;28"},/obj/machinery/door/firedoor/border_only,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aPq" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/crew_quarters/bar)
-"aPr" = (/obj/structure/table,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aPs" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/obj/effect/landmark/start{name = "Cook"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aPt" = (/obj/machinery/holopad,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aPu" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aPv" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aPw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"aPx" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/hydroponics)
-"aPy" = (/obj/machinery/door/airlock/glass{name = "Hydroponics"},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"aPz" = (/obj/structure/sign/xeno_warning_mining{pixel_x = -30},/obj/structure/sign/vacuum{pixel_x = 30},/obj/machinery/light/small{dir = 8},/turf/open/floor/noslip,/area/quartermaster/miningdock)
-"aPA" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/obj/structure/cable{icon_state = "2-4";tag = "icon-2-8"},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"aPB" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"aPC" = (/obj/machinery/power/apc{dir = 4;name = "Morgue APC";pixel_x = 26;pixel_y = 0},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"aPD" = (/obj/effect/landmark/event_spawn,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aPE" = (/obj/structure/chair/wood{tag = "icon-wooden_chair (NORTH)";icon_state = "wooden_chair";dir = 1},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aPF" = (/obj/machinery/holopad,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aPG" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aPH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/chair/stool,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aPI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/stool,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aPJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aPK" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/obj/machinery/button/door{dir = 1;id = "bar-kit";name = "Bar Kitchen Shutters";pixel_y = -24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aPL" = (/obj/machinery/light,/obj/machinery/food_cart,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aPM" = (/obj/structure/table,/obj/machinery/juicer,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aPN" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aPO" = (/obj/machinery/processor,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aPP" = (/turf/open/floor/plasteel{icon_plating = "asteroid";icon_state = "asteroid";name = "Asteroid"},/area/hydroponics)
-"aPQ" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{icon_plating = "asteroid";icon_state = "asteroid";name = "Asteroid"},/area/hydroponics)
-"aPR" = (/turf/closed/mineral/random/labormineral,/area/space)
-"aPS" = (/obj/machinery/door/airlock/maintenance_hatch,/turf/open/floor/plating,/area/maintenance/port)
-"aPT" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/medical{name = "Morgue";req_access_txt = "5"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"aPU" = (/obj/structure/sign/bluecross,/turf/closed/wall,/area/medical/morgue)
-"aPV" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aPW" = (/obj/structure/table/wood/poker,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aPX" = (/obj/structure/disposalpipe/segment,/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aPY" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters{id = "bar-kit";name = "Bar-Kitchen Shutters"},/turf/open/floor/plasteel/bar,/area/crew_quarters/kitchen)
-"aPZ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters{id = "bar-kit";name = "Bar-Kitchen Shutters"},/turf/open/floor/plasteel/bar,/area/crew_quarters/kitchen)
-"aQa" = (/obj/structure/closet/chefcloset,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aQb" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/crew_quarters/kitchen)
-"aQc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"aQd" = (/turf/open/floor/plating,/area/maintenance/starboard)
-"aQe" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/starboard)
-"aQf" = (/turf/closed/wall/mineral/titanium,/area/mine/explored)
-"aQg" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/mine/explored)
-"aQh" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/quartermaster/miningdock)
-"aQi" = (/obj/structure/table,/obj/item/weapon/storage/bag/ore,/obj/item/weapon/shovel,/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTHWEST)";dir = 9;baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface},/area/quartermaster/miningdock)
-"aQj" = (/turf/open/floor/plasteel/brown{baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;dir = 1},/area/quartermaster/miningdock)
-"aQk" = (/obj/structure/ore_box,/turf/open/floor/plasteel/brown{dir = 5},/area/quartermaster/miningdock)
-"aQl" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/port)
-"aQm" = (/obj/structure/closet,/obj/item/weapon/storage/backpack/chemistry,/turf/open/floor/plating,/area/maintenance/port)
-"aQn" = (/obj/structure/sign/biohazard,/turf/closed/wall,/area/maintenance/port)
-"aQo" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)";icon_state = "camera";dir = 5},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"aQp" = (/turf/open/floor/plasteel/white,/area/medical/genetics)
-"aQq" = (/obj/structure/extinguisher_cabinet{pixel_y = 28},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"aQr" = (/obj/machinery/door/airlock/glass_medical{id_tag = "GeneticsDoor";name = "Genetics Access";req_access_txt = "0"},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"aQs" = (/obj/structure/sign/biohazard{pixel_y = -30},/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"aQt" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTH)";icon_state = "camera";dir = 1},/turf/open/floor/plasteel/green,/area/construction/hallway{name = "Biodome Hallway"})
-"aQu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/green,/area/construction/hallway{name = "Biodome Hallway"})
-"aQv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/green,/area/construction/hallway{name = "Biodome Hallway"})
-"aQw" = (/obj/structure/table/wood/poker,/obj/effect/holodeck_effect/cards,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aQx" = (/obj/structure/chair/wood,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aQy" = (/obj/structure/chair/wood,/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aQz" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aQA" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aQB" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aQC" = (/turf/open/floor/plasteel/bar,/area/construction/hallway{name = "Biodome Hallway"})
-"aQD" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aQE" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aQF" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aQG" = (/obj/structure/sink/puddle,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aQH" = (/obj/structure/flora/ausbushes/pointybush,/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aQI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (NORTH)";icon_state = "door_open";dir = 1},/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"aQJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"aQK" = (/obj/machinery/hydroponics/soil,/turf/open/floor/plasteel{icon_plating = "asteroid";icon_state = "asteroid";name = "Asteroid"},/area/hydroponics)
-"aQL" = (/obj/structure/table,/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor)
-"aQM" = (/obj/machinery/computer/shuttle/mining,/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor)
-"aQN" = (/obj/structure/table,/obj/item/weapon/pickaxe,/turf/open/floor/plasteel/brown{dir = 8},/area/quartermaster/miningdock)
-"aQO" = (/turf/open/floor/plasteel,/area/quartermaster/miningdock)
-"aQP" = (/obj/structure/ore_box,/turf/open/floor/plasteel/brown{baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;dir = 4},/area/quartermaster/miningdock)
-"aQQ" = (/obj/item/clothing/shoes/sneakers/blue,/obj/item/clothing/head/soft/blue,/obj/item/clothing/glasses/sunglasses/reagent,/turf/open/floor/plating,/area/maintenance/port)
-"aQR" = (/obj/structure/cable{icon_state = "2-4";tag = "icon-2-8"},/turf/open/floor/plating,/area/maintenance/port)
-"aQS" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/port)
-"aQT" = (/obj/structure/cable{icon_state = "2-4";tag = "icon-2-8"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/port)
-"aQU" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port)
-"aQV" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/maintenance_hatch,/turf/open/floor/plating,/area/maintenance/port)
-"aQW" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4";tag = "icon-2-8"},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"aQX" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"aQY" = (/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"aQZ" = (/turf/closed/wall,/area/medical/surgery)
-"aRa" = (/turf/closed/wall,/area/hallway/primary/fore)
-"aRb" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/hallway/primary/fore)
-"aRc" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/hallway/primary/fore)
-"aRd" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/hallway/primary/fore)
-"aRe" = (/obj/item/weapon/twohanded/required/kirbyplants{tag = "icon-plant-17";icon_state = "plant-17"},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aRf" = (/obj/machinery/light,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aRg" = (/obj/structure/table/wood,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aRh" = (/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHWEST)";icon_state = "camera";dir = 10},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aRi" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"aRj" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aRk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aRl" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aRm" = (/obj/structure/table,/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aRn" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aRo" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/construction/hallway{name = "Biodome Hallway"})
-"aRp" = (/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 31},/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aRq" = (/obj/structure/extinguisher_cabinet{pixel_y = 28},/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aRr" = (/obj/machinery/camera/autoname,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aRs" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/hallway/primary/fore)
-"aRt" = (/turf/open/floor/mineral/titanium/blue,/area/mine/explored)
-"aRu" = (/obj/structure/chair{dir = 1},/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor)
-"aRv" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/quartermaster/miningdock)
-"aRw" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plasteel,/area/quartermaster/miningdock)
-"aRx" = (/turf/open/floor/plasteel/brown{baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;dir = 4},/area/quartermaster/miningdock)
-"aRy" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port)
-"aRz" = (/obj/machinery/power/apc{cell_type = 5000;dir = 2;name = "Port Maintenance APC";pixel_y = -24},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/port)
-"aRA" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/port)
-"aRB" = (/obj/structure/frame/computer,/turf/open/floor/plating,/area/maintenance/port)
-"aRC" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"aRD" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/gloves,/turf/open/floor/plasteel/white,/area/medical/genetics)
-"aRE" = (/obj/machinery/light/small,/obj/structure/table/glass,/obj/item/weapon/storage/box/masks,/turf/open/floor/plasteel/white,/area/medical/genetics)
-"aRF" = (/obj/machinery/power/apc{dir = 4;name = "Surgery APC";pixel_x = 26;pixel_y = 0},/obj/structure/cable,/obj/structure/table/glass,/obj/item/weapon/paper_bin,/obj/item/weapon/folder/white,/turf/open/floor/plasteel/white,/area/medical/genetics)
-"aRG" = (/obj/machinery/computer/med_data,/turf/open/floor/plasteel/white/corner,/area/medical/surgery)
-"aRH" = (/obj/machinery/vending/wallmed{pixel_y = 28},/obj/structure/table,/obj/item/weapon/surgicaldrill,/obj/item/weapon/circular_saw,/turf/open/floor/plasteel/white/side,/area/medical/surgery)
-"aRI" = (/obj/machinery/light{dir = 1},/obj/structure/table,/obj/item/weapon/scalpel,/obj/item/weapon/retractor,/turf/open/floor/plasteel/white/side,/area/medical/surgery)
-"aRJ" = (/obj/structure/table,/obj/item/weapon/hemostat,/obj/item/weapon/cautery,/turf/open/floor/plasteel/white/side,/area/medical/surgery)
-"aRK" = (/obj/structure/table,/obj/machinery/firealarm{pixel_y = 24},/obj/item/weapon/storage/firstaid/brute,/turf/open/floor/plasteel/white/side,/area/medical/surgery)
-"aRL" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/turf/open/floor/plasteel/white/corner{tag = "icon-whitecorner (WEST)";icon_state = "whitecorner";dir = 8},/area/medical/surgery)
-"aRM" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/medical/surgery)
-"aRN" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/black,/area/medical/surgery)
-"aRO" = (/obj/machinery/firealarm{pixel_y = 24},/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-22"},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/black,/area/medical/surgery)
-"aRP" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/blue/side{tag = "icon-blue (WEST)";icon_state = "blue";dir = 8},/area/hallway/primary/fore)
-"aRQ" = (/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aRR" = (/obj/machinery/light{dir = 1},/obj/machinery/computer/arcade,/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aRS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aRT" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aRU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aRV" = (/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aRW" = (/obj/machinery/status_display,/turf/closed/wall,/area/crew_quarters/theatre)
-"aRX" = (/obj/structure/chair,/obj/item/device/radio/intercom{dir = 8;pixel_x = -28},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aRY" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aRZ" = (/obj/structure/table,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aSa" = (/obj/machinery/hydroponics/soil,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aSb" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/lime,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aSc" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/watermelon,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aSd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"aSe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"aSf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aSg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aSh" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aSi" = (/obj/machinery/door/airlock/titanium{name = "Mining Shuttle Airlock";req_access_txt = "0"},/obj/docking_port/mobile{dir = 8;dwidth = 3;height = 5;id = "mining";name = "mining shuttle";port_angle = 90;width = 7},/obj/docking_port/stationary{dir = 8;dwidth = 3;height = 5;id = "mining_home";name = "mining shuttle bay";width = 7},/turf/open/floor/plating,/area/shuttle/labor)
-"aSj" = (/obj/machinery/door/airlock/external{name = "Port Docking Bay 1"},/turf/open/floor/noslip,/area/quartermaster/miningdock)
-"aSk" = (/turf/open/floor/noslip,/area/quartermaster/miningdock)
-"aSl" = (/obj/machinery/door/airlock/external{name = "Port Docking Bay 1"},/turf/open/floor/plasteel,/area/quartermaster/miningdock)
-"aSm" = (/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plating,/area/maintenance/port)
-"aSn" = (/turf/closed/wall,/area/medical/genetics)
-"aSo" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/glass_medical{id_tag = "GeneticsDoor";name = "Genetics";req_access_txt = "5; 9"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"aSp" = (/obj/structure/chair/office/dark{dir = 1},/obj/machinery/light_switch{dir = 8;pixel_x = -24},/turf/open/floor/plasteel/white/side{tag = "icon-whitehall (EAST)";icon_state = "whitehall";dir = 4},/area/medical/surgery)
-"aSq" = (/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plasteel/white,/area/medical/surgery)
-"aSr" = (/turf/open/floor/plasteel/white,/area/medical/surgery)
-"aSs" = (/obj/structure/table,/obj/item/weapon/surgical_drapes,/turf/open/floor/plasteel/white/side{tag = "icon-whitehall (WEST)";icon_state = "whitehall";dir = 8},/area/medical/surgery)
-"aSt" = (/turf/open/floor/plasteel/black,/area/medical/surgery)
-"aSu" = (/turf/open/floor/plasteel/blue/side{tag = "icon-blue (WEST)";icon_state = "blue";dir = 8},/area/hallway/primary/fore)
-"aSv" = (/obj/structure/flora/grass,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aSw" = (/obj/structure/flora/grass/both,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aSx" = (/obj/structure/extinguisher_cabinet{pixel_y = 28},/turf/open/floor/plasteel/green/side{dir = 9},/area/construction/hallway{name = "Biodome Hallway"})
-"aSy" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel/green/side{dir = 5},/area/construction/hallway{name = "Biodome Hallway"})
-"aSz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aSA" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/apple,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aSB" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/orange,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aSC" = (/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"aSD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aSE" = (/turf/closed/wall,/area/crew_quarters/heads)
-"aSF" = (/obj/machinery/newscaster/security_unit,/turf/closed/wall,/area/crew_quarters/heads)
-"aSG" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads)
-"aSH" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/command{name = "Head of Personnel";req_access = null;req_access_txt = "57"},/turf/open/floor/wood,/area/crew_quarters/heads)
-"aSI" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel/brown{baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;dir = 4},/area/quartermaster/miningdock)
-"aSJ" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/structure/chair{dir = 4},/turf/open/floor/plating,/area/maintenance/port)
-"aSK" = (/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/structure/table,/obj/item/weapon/pen,/turf/open/floor/plating,/area/maintenance/port)
-"aSL" = (/obj/structure/chair{dir = 8},/turf/open/floor/plating,/area/maintenance/port)
-"aSM" = (/mob/living/carbon/monkey,/turf/open/floor/plasteel/neutral,/area/medical/genetics)
-"aSN" = (/obj/machinery/light{dir = 1},/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plasteel/neutral,/area/medical/genetics)
-"aSO" = (/obj/structure/closet/secure_closet/personal/patient,/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTHWEST)";icon_state = "whitepurple";dir = 9},/area/medical/genetics)
-"aSP" = (/obj/structure/extinguisher_cabinet{pixel_y = 28},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)";icon_state = "whitepurple";dir = 1},/area/medical/genetics)
-"aSQ" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)";icon_state = "whitepurple";dir = 1},/area/medical/genetics)
-"aSR" = (/obj/machinery/power/apc{dir = 1;name = "Genetics Lab APC";pixel_y = 24},/obj/structure/cable{tag = "icon-0-8";icon_state = "0-8"},/obj/structure/table/glass,/obj/item/weapon/storage/box/disks,/obj/item/weapon/storage/pill_bottle/mutadone,/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)";icon_state = "whitepurple";dir = 1},/area/medical/genetics)
-"aSS" = (/obj/machinery/firealarm{pixel_y = 24},/obj/structure/table/glass,/obj/item/weapon/storage/box/injectors,/obj/item/weapon/storage/pill_bottle/mannitol,/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)";icon_state = "whitepurple";dir = 1},/area/medical/genetics)
-"aST" = (/obj/machinery/light{dir = 1},/obj/machinery/dna_scannernew,/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)";icon_state = "whitepurple";dir = 1},/area/medical/genetics)
-"aSU" = (/obj/machinery/computer/scan_consolenew,/obj/machinery/requests_console{department = "Genetics";departmentType = 0;name = "Genetics Requests Console";pixel_x = 0;pixel_y = 30},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTHEAST)";icon_state = "whitepurple";dir = 5},/area/medical/genetics)
-"aSV" = (/turf/open/floor/plasteel/white/side{tag = "icon-whitehall (EAST)";icon_state = "whitehall";dir = 4},/area/medical/surgery)
-"aSW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/surgery)
-"aSX" = (/obj/machinery/computer/operating,/turf/open/floor/plasteel/white,/area/medical/surgery)
-"aSY" = (/obj/structure/table/optable,/turf/open/floor/plasteel/white,/area/medical/surgery)
-"aSZ" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel/white/side{tag = "icon-whitehall (WEST)";icon_state = "whitehall";dir = 8},/area/medical/surgery)
-"aTa" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "";name = "Surgery Observation";req_access_txt = "0"},/turf/open/floor/plasteel/black,/area/medical/surgery)
-"aTb" = (/obj/structure/flora/ausbushes/ppflowers,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aTc" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = 9},/obj/item/weapon/reagent_containers/food/condiment/peppermill,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aTd" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/obj/structure/chair{dir = 8},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aTe" = (/obj/structure/chair,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aTf" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/chair,/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aTg" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/tea,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aTh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"aTi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"aTj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aTk" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aTl" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aTm" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue";name = "HoP Queue Shutters"},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel/loadingarea{tag = "icon-loadingarea (EAST)";icon_state = "loadingarea";dir = 4},/area/crew_quarters/heads)
-"aTn" = (/turf/open/floor/plasteel/bot,/area/crew_quarters/heads)
-"aTo" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/door/poddoor/shutters/preopen{id = "hop";layer = 2.9;name = "Privacy Shutters"},/obj/machinery/door/firedoor/heavy,/obj/structure/sign/electricshock{pixel_y = 30},/turf/open/floor/plating,/area/crew_quarters/heads)
-"aTp" = (/turf/open/floor/wood,/area/crew_quarters/heads)
-"aTq" = (/obj/structure/filingcabinet,/obj/machinery/light_switch{pixel_x = 0;pixel_y = 32},/turf/open/floor/wood,/area/crew_quarters/heads)
-"aTr" = (/obj/machinery/light{dir = 1},/obj/structure/closet/secure_closet{name = "Spares";req_access_txt = "57"},/obj/item/weapon/storage/box/ids,/obj/item/weapon/storage/box/ids,/obj/item/weapon/storage/box/PDAs,/obj/item/weapon/storage/box/PDAs,/turf/open/floor/wood,/area/crew_quarters/heads)
-"aTs" = (/obj/structure/closet/secure_closet/hop,/turf/open/floor/wood,/area/crew_quarters/heads)
-"aTt" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/bin,/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 31},/turf/open/floor/wood,/area/crew_quarters/heads)
-"aTu" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/closed/wall/r_wall,/area/crew_quarters/heads)
-"aTv" = (/obj/structure/closet/crate,/turf/open/floor/mineral/titanium/blue,/area/mine/explored)
-"aTw" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8;pixel_x = 0},/turf/open/floor/plating,/area/shuttle/labor)
-"aTx" = (/obj/structure/ore_box,/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor)
-"aTy" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aTz" = (/obj/machinery/computer/shuttle/mining{req_access = "0"},/turf/open/floor/plasteel/brown{dir = 8},/area/quartermaster/miningdock)
-"aTA" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/chair{dir = 4},/turf/open/floor/plating,/area/maintenance/port)
-"aTB" = (/obj/structure/table,/obj/item/device/flashlight/lamp,/turf/open/floor/plating,/area/maintenance/port)
-"aTC" = (/obj/structure/rack,/obj/item/weapon/tank/internals/air,/turf/open/floor/plating,/area/maintenance/port)
-"aTD" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 4},/turf/open/floor/plating{icon_state = "bot"},/area/maintenance/port)
-"aTE" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4},/turf/open/floor/plating{icon_state = "floorgrime"},/area/maintenance/port)
-"aTF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating{icon_state = "floorgrime"},/area/maintenance/port)
-"aTG" = (/turf/open/floor/plasteel/neutral,/area/medical/genetics)
-"aTH" = (/obj/machinery/door/window/eastright{name = "Monkey Pen";req_access_txt = "5; 9"},/turf/open/floor/plasteel/neutral,/area/medical/genetics)
-"aTI" = (/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (WEST)";icon_state = "whitepurple";dir = 8},/area/medical/genetics)
-"aTJ" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"aTK" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"aTL" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (EAST)";icon_state = "whitepurple";dir = 4},/area/medical/genetics)
-"aTM" = (/obj/structure/closet/secure_closet/medical2,/turf/open/floor/plasteel/white/side{tag = "icon-whitehall (EAST)";icon_state = "whitehall";dir = 4},/area/medical/surgery)
-"aTN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/surgery)
-"aTO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;name = "regular air scrubber";on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/surgery)
-"aTP" = (/turf/open/floor/plasteel/white/side{tag = "icon-whitehall (WEST)";icon_state = "whitehall";dir = 8},/area/medical/surgery)
-"aTQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aTR" = (/obj/structure/flora/ausbushes/sunnybush,/obj/effect/landmark/event_spawn,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aTS" = (/obj/structure/flora/rock,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aTT" = (/obj/machinery/light,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aTU" = (/obj/machinery/newscaster{dir = 1;pixel_y = -30},/obj/structure/table,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aTV" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/table,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"aTW" = (/obj/structure/table,/turf/open/floor/plasteel/bar,/area/construction/hallway{name = "Biodome Hallway"})
-"aTX" = (/obj/structure/flora/ausbushes/grassybush,/obj/machinery/light{dir = 8},/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aTY" = (/obj/effect/landmark/event_spawn,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"aTZ" = (/obj/structure/extinguisher_cabinet{pixel_x = 24},/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"aUa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aUb" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue";name = "HoP Queue Shutters"},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/crew_quarters/heads)
-"aUc" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/door/poddoor/shutters/preopen{id = "hop";layer = 2.9;name = "Privacy Shutters"},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/crew_quarters/heads)
-"aUd" = (/obj/machinery/firealarm{dir = 4;pixel_x = 28;pixel_y = 0},/turf/open/floor/wood,/area/crew_quarters/heads)
-"aUe" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/crew_quarters/heads)
-"aUf" = (/obj/structure/shuttle/engine/propulsion/burst,/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plating/airless,/area/shuttle/labor)
-"aUg" = (/obj/machinery/computer/security/mining{network = list("MINE","AuxBase")},/turf/open/floor/plasteel/brown{dir = 8},/area/quartermaster/miningdock)
-"aUh" = (/obj/structure/chair{dir = 4},/turf/open/floor/plating,/area/maintenance/port)
-"aUi" = (/obj/structure/table,/obj/item/weapon/paper,/obj/item/weapon/poster/random_contraband,/turf/open/floor/plating,/area/maintenance/port)
-"aUj" = (/obj/structure/rack,/obj/item/weapon/razor,/turf/open/floor/plating,/area/maintenance/port)
-"aUk" = (/obj/machinery/atmospherics/components/unary/portables_connector{tag = "icon-connector_map (EAST)";icon_state = "connector_map";dir = 4},/turf/open/floor/plating{icon_state = "bot"},/area/maintenance/port)
-"aUl" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "floorgrime"},/area/maintenance/port)
-"aUm" = (/obj/machinery/camera/autoname{tag = "icon-camera (EAST)";icon_state = "camera";dir = 4},/mob/living/carbon/monkey,/turf/open/floor/plasteel/neutral,/area/medical/genetics)
-"aUn" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/mob/living/carbon/monkey,/turf/open/floor/plasteel/neutral,/area/medical/genetics)
-"aUo" = (/obj/structure/bed/roller,/turf/open/floor/plasteel/white,/area/medical/genetics)
-"aUp" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/medical/genetics)
-"aUq" = (/obj/effect/landmark/start{name = "Geneticist"},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"aUr" = (/obj/machinery/vending/wallmed{pixel_x = 24},/obj/structure/chair/office/dark,/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (EAST)";icon_state = "whitepurple";dir = 4},/area/medical/genetics)
-"aUs" = (/obj/structure/closet/secure_closet/personal/patient,/turf/open/floor/plasteel/white/corner{tag = "icon-whitecorner (EAST)";icon_state = "whitecorner";dir = 4},/area/medical/surgery)
-"aUt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white/side{tag = "icon-whitehall (NORTH)";icon_state = "whitehall";dir = 1},/area/medical/surgery)
-"aUu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light,/obj/machinery/iv_drip,/turf/open/floor/plasteel/white/side{tag = "icon-whitehall (NORTH)";icon_state = "whitehall";dir = 1},/area/medical/surgery)
-"aUv" = (/obj/structure/table,/obj/item/weapon/storage/box/masks{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/box/gloves,/turf/open/floor/plasteel/white/side{tag = "icon-whitehall (NORTH)";icon_state = "whitehall";dir = 1},/area/medical/surgery)
-"aUw" = (/obj/item/device/radio/intercom{pixel_y = -28},/turf/open/floor/plasteel/white/side{tag = "icon-whitehall (NORTH)";icon_state = "whitehall";dir = 1},/area/medical/surgery)
-"aUx" = (/turf/open/floor/plasteel/white/corner{tag = "icon-whitecorner (NORTH)";icon_state = "whitecorner";dir = 1},/area/medical/surgery)
-"aUy" = (/obj/machinery/light/small,/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plasteel/black,/area/medical/surgery)
-"aUz" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aUA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aUB" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"aUC" = (/obj/structure/sign/barsign,/turf/closed/wall,/area/crew_quarters/bar)
-"aUD" = (/obj/machinery/status_display,/turf/closed/wall,/area/crew_quarters/bar)
-"aUE" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/closed/wall,/area/crew_quarters/bar)
-"aUF" = (/obj/machinery/biogenerator,/turf/open/floor/sepia,/area/construction/hallway{name = "Biodome Hallway"})
-"aUG" = (/obj/machinery/seed_extractor,/turf/open/floor/sepia,/area/construction/hallway{name = "Biodome Hallway"})
-"aUH" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"aUI" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/construction/hallway{name = "Biodome Hallway"})
-"aUJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aUK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aUL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aUM" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue";name = "HoP Queue Shutters"},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/crew_quarters/heads)
-"aUN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/bot,/area/crew_quarters/heads)
-"aUO" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/poddoor/shutters/preopen{id = "hop";layer = 2.9;name = "Privacy Shutters"},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/crew_quarters/heads)
-"aUP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/photocopier,/turf/open/floor/wood,/area/crew_quarters/heads)
-"aUQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;name = "regular air scrubber";on = 1;scrub_Toxins = 0},/turf/open/floor/wood,/area/crew_quarters/heads)
-"aUR" = (/obj/effect/landmark/start{name = "Head of Personnel"},/turf/open/floor/wood,/area/crew_quarters/heads)
-"aUS" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/turf/open/floor/wood,/area/crew_quarters/heads)
-"aUT" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas.";dir = 4;name = "Prison Monitor";network = list("Prison");pixel_x = 30;pixel_y = 0},/turf/open/floor/wood,/area/crew_quarters/heads)
-"aUU" = (/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered{name = "Asteroid"})
-"aUV" = (/turf/open/floor/plasteel/brown{dir = 8},/area/quartermaster/miningdock)
-"aUW" = (/turf/open/floor/plating{icon_state = "floorgrime"},/area/maintenance/port)
-"aUX" = (/obj/machinery/light/small,/turf/open/floor/plating{icon_state = "floorgrime"},/area/maintenance/port)
-"aUY" = (/obj/machinery/atmospherics/components/binary/valve,/turf/open/floor/plating{icon_state = "floorgrime"},/area/maintenance/port)
-"aUZ" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plasteel/neutral,/area/medical/genetics)
-"aVa" = (/obj/machinery/dna_scannernew,/turf/open/floor/plasteel/white,/area/medical/genetics)
-"aVb" = (/obj/machinery/computer/scan_consolenew,/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (EAST)";icon_state = "whitepurple";dir = 4},/area/medical/genetics)
-"aVc" = (/turf/closed/wall,/area/medical/genetics_cloning)
-"aVd" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Operating Theatre";req_access_txt = "45"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/whitepurple,/area/medical/genetics_cloning)
-"aVe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/medical/genetics_cloning)
-"aVf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Operating Theatre";req_access_txt = "45"},/turf/open/floor/plasteel/whiteblue,/area/medical/medbay{name = "Medbay Central"})
-"aVg" = (/turf/closed/wall,/area/medical/medbay{name = "Medbay Central"})
-"aVh" = (/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel/blue/side{tag = "icon-blue (WEST)";icon_state = "blue";dir = 8},/area/hallway/primary/fore)
-"aVi" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aVj" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/hallway/primary/fore)
-"aVk" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{icon_state = "connector_map";dir = 8},/obj/machinery/portable_atmospherics/scrubber/huge/movable,/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"aVl" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/green/corner{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"aVm" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/scrubber/huge/movable,/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"aVn" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/construction/hallway{name = "Biodome Hallway"})
-"aVo" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aVp" = (/obj/machinery/pdapainter,/turf/open/floor/wood,/area/crew_quarters/heads)
-"aVq" = (/obj/machinery/holopad,/mob/living/simple_animal/pet/dog/corgi/Ian,/turf/open/floor/wood,/area/crew_quarters/heads)
-"aVr" = (/obj/structure/table,/obj/item/weapon/folder/blue,/obj/item/weapon/stamp/hop,/turf/open/floor/wood,/area/crew_quarters/heads)
-"aVs" = (/obj/structure/chair{dir = 8},/obj/machinery/camera/autoname{tag = "icon-camera (WEST)";icon_state = "camera";dir = 8},/obj/item/device/radio/intercom{desc = "Talk smack through this.";dir = 4;pixel_x = 28;syndie = 1},/turf/open/floor/wood,/area/crew_quarters/heads)
-"aVt" = (/obj/structure/closet/secure_closet/miner,/turf/open/floor/plasteel/brown{baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;dir = 4},/area/quartermaster/miningdock)
-"aVu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/glass_engineering{name = "Medbay Atmos Closet";req_access_txt = "32"},/turf/open/floor/plating{dir = 1;icon_state = "delivery"},/area/maintenance/port)
-"aVv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"aVw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"aVx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"aVy" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;name = "regular air vent";on = 1},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"aVz" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (EAST)";icon_state = "whitepurple";dir = 4},/area/medical/genetics)
-"aVA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "CloningDoor";name = "Cloning Lab";req_access_txt = "0";req_one_access_txt = "5"},/turf/open/floor/plasteel/whitepurple,/area/medical/genetics_cloning)
-"aVB" = (/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHEAST)";icon_state = "camera";dir = 6},/turf/open/floor/plasteel/whitepurple,/area/medical/genetics_cloning)
-"aVC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/whitepurple,/area/medical/genetics_cloning)
-"aVD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/whitepurple,/area/medical/genetics_cloning)
-"aVE" = (/obj/machinery/vending/clothing,/turf/open/floor/plasteel/whitepurple,/area/medical/genetics_cloning)
-"aVF" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/medical/genetics_cloning)
-"aVG" = (/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTHWEST)";icon_state = "whiteblue";dir = 9},/area/medical/medbay{name = "Medbay Central"})
-"aVH" = (/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer.";id = "MedbayFoyer";name = "Medbay Exit Button";normaldoorcontrol = 1;pixel_x = 0;pixel_y = 26},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTHEAST)";icon_state = "whiteblue";dir = 5},/area/medical/medbay{name = "Medbay Central"})
-"aVI" = (/obj/structure/sign/bluecross,/turf/closed/wall,/area/medical/medbay{name = "Medbay Central"})
-"aVJ" = (/obj/machinery/vending/snack,/turf/open/floor/plasteel/blue/side{tag = "icon-blue (NORTHWEST)";icon_state = "blue";dir = 9},/area/hallway/primary/fore)
-"aVK" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel/blue/side{tag = "icon-blue (NORTH)";icon_state = "blue";dir = 1},/area/hallway/primary/fore)
-"aVL" = (/turf/open/floor/plasteel/blue/corner{tag = "icon-bluecorner (NORTH)";icon_state = "bluecorner";dir = 1},/area/hallway/primary/fore)
-"aVM" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aVN" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aVO" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/hallway/primary/fore)
-"aVP" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{icon_state = "connector_map";dir = 8},/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"aVQ" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/green/side,/area/construction/hallway{name = "Biodome Hallway"})
-"aVR" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTH)";icon_state = "camera";dir = 1},/turf/open/floor/plasteel/green/side,/area/construction/hallway{name = "Biodome Hallway"})
-"aVS" = (/obj/machinery/light,/turf/open/floor/plasteel/green/side,/area/construction/hallway{name = "Biodome Hallway"})
-"aVT" = (/obj/machinery/airalarm{dir = 1;pixel_y = -22},/turf/open/floor/plasteel/green/side,/area/construction/hallway{name = "Biodome Hallway"})
-"aVU" = (/mob/living/simple_animal/bot/secbot/beepsky{name = "Officer Beepsky"},/turf/open/floor/plasteel/green/side,/area/construction/hallway{name = "Biodome Hallway"})
-"aVV" = (/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (EAST)";icon_state = "door_open";dir = 4},/turf/open/floor/plasteel/green/side,/area/construction/hallway{name = "Biodome Hallway"})
-"aVW" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"aVX" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/construction/hallway{name = "Biodome Hallway"})
-"aVY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aVZ" = (/obj/structure/table,/obj/machinery/recharger,/turf/open/floor/wood,/area/crew_quarters/heads)
-"aWa" = (/obj/structure/bed/dogbed{anchored = 1;desc = "Ian's bed! Looks comfy.";name = "Ian's bed"},/turf/open/floor/wood,/area/crew_quarters/heads)
-"aWb" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/open/floor/wood,/area/crew_quarters/heads)
-"aWc" = (/obj/machinery/computer/cargo,/turf/open/floor/wood,/area/crew_quarters/heads)
-"aWd" = (/turf/open/floor/plasteel/brown{dir = 10},/area/quartermaster/miningdock)
-"aWe" = (/turf/open/floor/plasteel/brown,/area/quartermaster/miningdock)
-"aWf" = (/obj/structure/closet/secure_closet/miner,/turf/open/floor/plasteel/brown{dir = 6},/area/quartermaster/miningdock)
-"aWg" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating,/area/maintenance/port)
-"aWh" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4";tag = ""},/turf/open/floor/plating,/area/maintenance/port)
-"aWi" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/machinery/door/airlock/maintenance_hatch,/turf/open/floor/plating,/area/maintenance/port)
-"aWj" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/port)
-"aWk" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/open/floor/plating,/area/maintenance/port)
-"aWl" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port)
-"aWm" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/port)
-"aWn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/port)
-"aWo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/medical/genetics)
-"aWp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral,/area/medical/genetics)
-"aWq" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/mob/living/carbon/monkey,/turf/open/floor/plasteel/neutral,/area/medical/genetics)
-"aWr" = (/obj/structure/closet/wardrobe/genetics_white,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (SOUTHWEST)";icon_state = "whitepurple";dir = 10},/area/medical/genetics)
-"aWs" = (/obj/machinery/light,/obj/structure/closet/wardrobe/white,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whitepurple/side,/area/medical/genetics)
-"aWt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table/glass,/obj/item/weapon/storage/box/rxglasses,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whitepurple/side,/area/medical/genetics)
-"aWu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whitepurple/side,/area/medical/genetics)
-"aWv" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel/whitepurple/side,/area/medical/genetics)
-"aWw" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (SOUTHEAST)";icon_state = "whitepurple";dir = 6},/area/medical/genetics)
-"aWx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/closed/wall,/area/medical/genetics_cloning)
-"aWy" = (/obj/structure/closet/wardrobe/white,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whitepurple,/area/medical/genetics_cloning)
-"aWz" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel/whitepurple,/area/medical/genetics_cloning)
-"aWA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;name = "regular air vent";on = 1},/turf/open/floor/plasteel/whitepurple,/area/medical/genetics_cloning)
-"aWB" = (/obj/machinery/dna_scannernew,/turf/open/floor/plasteel/whitepurple,/area/medical/genetics_cloning)
-"aWC" = (/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)";icon_state = "whiteblue";dir = 8},/area/medical/medbay{name = "Medbay Central"})
-"aWD" = (/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)";icon_state = "whiteblue";dir = 4},/area/medical/medbay{name = "Medbay Central"})
-"aWE" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer";name = "Medbay";req_access_txt = "5"},/turf/open/floor/plasteel/blue,/area/medical/medbay{name = "Medbay Central"})
-"aWF" = (/obj/structure/sign/directions/medical{tag = "icon-direction_med (WEST)";icon_state = "direction_med";dir = 8},/obj/structure/sign/directions/evac{dir = 4;icon_state = "direction_evac";pixel_y = -10;tag = "icon-direction_evac (EAST)"},/obj/structure/sign/directions/security{pixel_y = 10},/turf/closed/wall,/area/hallway/primary/fore)
-"aWG" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/green/side{dir = 6},/area/hallway/primary/fore)
-"aWH" = (/obj/machinery/status_display,/turf/closed/wall,/area/hallway/primary/fore)
-"aWI" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/glass{name = "Biodome"},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aWJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/machinery/firealarm{dir = 8;pixel_x = -24;pixel_y = 0},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aWK" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;name = "regular air scrubber";on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aWL" = (/obj/machinery/computer/card,/turf/open/floor/wood,/area/crew_quarters/heads)
-"aWM" = (/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/turf/open/floor/wood,/area/crew_quarters/heads)
-"aWN" = (/obj/machinery/requests_console{announcementConsole = 1;department = "Head of Personnel's Desk";departmentType = 5;name = "Head of Personnel RC";pixel_y = -30},/turf/open/floor/wood,/area/crew_quarters/heads)
-"aWO" = (/obj/machinery/door/airlock/mining{req_access_txt = "48"},/turf/open/floor/plasteel,/area/quartermaster/miningdock)
-"aWP" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/structure/rack,/obj/item/weapon/poster/random_official,/turf/open/floor/plating,/area/maintenance/port)
-"aWQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/port)
-"aWR" = (/turf/closed/wall,/area/medical/medbay3)
-"aWS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall,/area/medical/genetics)
-"aWT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/medical/genetics)
-"aWU" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/medical/genetics)
-"aWV" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "GeneticsDoor";name = "Genetics";req_access_txt = "5; 9"},/turf/open/floor/plasteel/whiteblue,/area/medical/genetics)
-"aWW" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{tag = "icon-0-8";icon_state = "0-8"},/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/medical/genetics)
-"aWX" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8";tag = ""},/turf/closed/wall,/area/medical/genetics)
-"aWY" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/medical/genetics_cloning)
-"aWZ" = (/obj/structure/closet/secure_closet/personal/patient,/turf/open/floor/plasteel/whitepurple,/area/medical/genetics_cloning)
-"aXa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/whitepurple,/area/medical/genetics_cloning)
-"aXb" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start{name = "Geneticist"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whitepurple,/area/medical/genetics_cloning)
-"aXc" = (/obj/machinery/computer/cloning,/obj/item/weapon/book/manual/medical_cloning,/turf/open/floor/plasteel/whitepurple,/area/medical/genetics_cloning)
-"aXd" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/blue/side{tag = "icon-blue (SOUTHWEST)";icon_state = "blue";dir = 10},/area/hallway/primary/fore)
-"aXe" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/blue/side,/area/hallway/primary/fore)
-"aXf" = (/obj/machinery/light,/turf/open/floor/plasteel/blue/side,/area/hallway/primary/fore)
-"aXg" = (/turf/open/floor/plasteel,/area/space)
-"aXh" = (/turf/open/floor/plasteel/blue/side,/area/hallway/primary/fore)
-"aXi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/blue/corner{tag = "icon-bluecorner (WEST)";icon_state = "bluecorner";dir = 8},/area/hallway/primary/fore)
-"aXj" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aXk" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aXl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aXm" = (/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aXn" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aXo" = (/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHEAST)";icon_state = "camera";dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aXp" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aXq" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aXr" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue";name = "HoP Queue Shutters"},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel/loadingarea{dir = 8},/area/crew_quarters/heads)
-"aXs" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/newscaster{dir = 1;pixel_y = -30},/turf/open/floor/plasteel/delivery,/area/crew_quarters/heads)
-"aXt" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor{base_state = "rightsecure";dir = 4;icon_state = "rightsecure";name = "Head of Personnel's Desk";req_access = null;req_access_txt = "57"},/obj/machinery/door/window/northleft{dir = 8;icon_state = "left";name = "Reception Window";req_access_txt = "0"},/obj/machinery/flasher{dir = 1;id = "hopflash";pixel_x = 0;pixel_y = -28},/obj/machinery/door/poddoor/shutters/preopen{id = "hop";layer = 2.9;name = "Privacy Shutters"},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel,/area/crew_quarters/heads)
-"aXu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/office/dark{dir = 8},/obj/machinery/button/door{id = "hopqueue";name = "Queue Shutters Control";pixel_x = -4;pixel_y = -25;req_access_txt = "28"},/obj/machinery/button/door{id = "hop";name = "Privacy Shutters Control";pixel_x = 6;pixel_y = -25;req_access_txt = "28"},/obj/machinery/button/flasher{id = "hopflash";pixel_x = 6;pixel_y = -36},/turf/open/floor/wood,/area/crew_quarters/heads)
-"aXv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/machinery/light,/turf/open/floor/wood,/area/crew_quarters/heads)
-"aXw" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/machinery/computer/secure_data,/turf/open/floor/wood,/area/crew_quarters/heads)
-"aXx" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/maintenance{name = "HoP Maintenance";req_access_txt = "57"},/turf/open/floor/plating,/area/maintenance/starboard)
-"aXy" = (/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plating,/area/maintenance/starboard)
-"aXz" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plating,/area/maintenance/starboard)
-"aXA" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/quartermaster/miningdock)
-"aXB" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/obj/machinery/power/apc{dir = 1;name = "Mining Dock APC";pixel_y = 24},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plasteel/brown{baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;dir = 4},/area/quartermaster/miningdock)
-"aXC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/closet/secure_closet/personal/patient,/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"aXD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/light_switch{pixel_y = 24},/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"aXE" = (/obj/structure/table,/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/glass/bottle/salglu_solution,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"aXF" = (/obj/structure/bed,/obj/item/weapon/bedsheet/medical,/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"aXG" = (/turf/closed/wall,/area/medical/patients_rooms)
-"aXH" = (/obj/machinery/power/apc{dir = 8;name = "Patient Room B APC";pixel_x = -26;pixel_y = 0},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"aXI" = (/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"aXJ" = (/obj/structure/bed,/obj/item/weapon/bedsheet/cmo,/turf/open/floor/carpet,/area/medical/medbay3)
-"aXK" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/turf/open/floor/carpet,/area/medical/medbay3)
-"aXL" = (/obj/structure/dresser,/turf/open/floor/carpet,/area/medical/medbay3)
-"aXM" = (/obj/structure/closet/wardrobe/white/medical,/obj/item/clothing/suit/hooded/wintercoat/medical,/turf/open/floor/carpet,/area/medical/medbay3)
-"aXN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/medical/cryo)
-"aXO" = (/obj/machinery/atmospherics/components/unary/cryo_cell,/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)";icon_state = "whiteblue";dir = 8},/area/medical/cryo)
-"aXP" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,/turf/open/floor/plasteel/whitepurple/corner{tag = "icon-whitepurplecorner (EAST)";icon_state = "whitepurplecorner";dir = 4},/area/medical/cryo)
-"aXQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)";icon_state = "whitepurple";dir = 1},/area/medical/cryo)
-"aXR" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,/turf/open/floor/plasteel/whitepurple/corner{tag = "icon-whitepurplecorner (NORTH)";icon_state = "whitepurplecorner";dir = 1},/area/medical/cryo)
-"aXS" = (/obj/machinery/atmospherics/components/unary/cryo_cell,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)";icon_state = "whiteblue";dir = 4},/area/medical/cryo)
-"aXT" = (/obj/machinery/power/apc{dir = 2;name = "Cloning Lab APC";pixel_y = -24},/obj/structure/table,/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/pen,/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plasteel/whitepurple,/area/medical/genetics_cloning)
-"aXU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/turf/open/floor/plasteel/whitepurple,/area/medical/genetics_cloning)
-"aXV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light,/obj/machinery/button/door{desc = "A remote control switch for the genetics doors.";id = "GeneticsDoor";name = "Genetics Exit Button";normaldoorcontrol = 1;pixel_x = -8;pixel_y = -24},/turf/open/floor/plasteel/whitepurple,/area/medical/genetics_cloning)
-"aXW" = (/obj/machinery/clonepod,/turf/open/floor/plasteel/whitepurple,/area/medical/genetics_cloning)
-"aXX" = (/obj/structure/extinguisher_cabinet{pixel_x = 24},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)";icon_state = "whiteblue";dir = 4},/area/medical/medbay{name = "Medbay Central"})
-"aXY" = (/turf/closed/wall,/area/medical/cmo)
-"aXZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/blue/side{tag = "icon-blue (WEST)";icon_state = "blue";dir = 8},/area/hallway/primary/fore)
-"aYa" = (/obj/structure/cable{icon_state = "2-4";tag = "icon-2-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aYb" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aYc" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aYd" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aYe" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aYf" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "L11"},/area/hallway/primary/fore)
-"aYg" = (/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aYh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/device/radio/intercom{desc = "Talk smack through this.";dir = 4;pixel_x = 28;syndie = 1},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aYi" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/starboard)
-"aYj" = (/obj/structure/disposalpipe/junction{dir = 8;icon_state = "pipe-j1";tag = "icon-pipe-j1 (EAST)"},/turf/open/floor/plating,/area/maintenance/starboard)
-"aYk" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard)
-"aYl" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/starboard)
-"aYm" = (/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plating,/area/maintenance/starboard)
-"aYn" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/starboard)
-"aYo" = (/turf/open/floor/plasteel/brown{dir = 8},/area/maintenance/starboard)
-"aYp" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/turf/open/floor/plasteel,/area/maintenance/starboard)
-"aYq" = (/turf/open/floor/plasteel/brown{baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;dir = 4},/area/maintenance/starboard)
-"aYr" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plating,/area/maintenance/starboard)
-"aYs" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plating,/area/maintenance/starboard)
-"aYt" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/item/weapon/rack_parts,/turf/open/floor/plating,/area/maintenance/port)
-"aYu" = (/obj/structure/closet/wardrobe/white,/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"aYv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"aYw" = (/obj/machinery/iv_drip,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"aYx" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/item/device/radio/intercom{dir = 8;pixel_x = -28},/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"aYy" = (/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/turf/open/floor/carpet,/area/medical/medbay3)
-"aYz" = (/turf/open/floor/carpet,/area/medical/medbay3)
-"aYA" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (NORTHEAST)";icon_state = "intact";dir = 5},/obj/structure/extinguisher_cabinet{pixel_x = -24},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)";icon_state = "whiteblue";dir = 8},/area/medical/cryo)
-"aYB" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 1},/turf/open/floor/plasteel/white,/area/medical/cryo)
-"aYC" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/cryo)
-"aYD" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel/white,/area/medical/cryo)
-"aYE" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)";icon_state = "whiteblue";dir = 4},/area/medical/cryo)
-"aYF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "CloningDoor";name = "Cloning Lab";req_access_txt = "0";req_one_access_txt = "5"},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/whitepurple,/area/medical/genetics_cloning)
-"aYG" = (/obj/structure/sign/nosmoking_2,/turf/closed/wall,/area/medical/genetics_cloning)
-"aYH" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor{density = 0;icon_state = "open";id = "cmo";name = "CMO Privacy Shutters"},/turf/open/floor/plating,/area/medical/cmo)
-"aYI" = (/obj/structure/bookcase/manuals/medical,/obj/item/weapon/book/manual/wiki/chemistry,/obj/item/weapon/book/manual/medical_cloning,/turf/open/floor/plasteel/cmo,/area/medical/cmo)
-"aYJ" = (/obj/structure/filingcabinet/medical,/obj/machinery/light_switch{pixel_y = 24},/turf/open/floor/plasteel/cmo,/area/medical/cmo)
-"aYK" = (/obj/machinery/light{dir = 1},/obj/machinery/suit_storage_unit/cmo,/turf/open/floor/plasteel/cmo,/area/medical/cmo)
-"aYL" = (/obj/structure/closet/secure_closet/CMO,/turf/open/floor/plasteel/cmo,/area/medical/cmo)
-"aYM" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aYN" = (/turf/open/floor/plasteel{icon_state = "L6"},/area/hallway/primary/fore)
-"aYO" = (/turf/open/floor/plasteel{icon_state = "L2"},/area/hallway/primary/fore)
-"aYP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "L4"},/area/hallway/primary/fore)
-"aYQ" = (/turf/open/floor/plasteel{icon_state = "L8"},/area/hallway/primary/fore)
-"aYR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "L12"},/area/hallway/primary/fore)
-"aYS" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aYT" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aYU" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard)
-"aYV" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard)
-"aYW" = (/obj/machinery/power/apc{dir = 1;name = "Head of Personnel APC";pixel_y = 24},/obj/structure/cable{tag = "icon-0-8";icon_state = "0-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/crew_quarters/heads)
-"aYX" = (/turf/closed/wall,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aYY" = (/obj/machinery/door/airlock/mining{req_access_txt = "48"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aYZ" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard)
-"aZa" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8;pixel_x = 0},/turf/open/floor/plating/asteroid/airless{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"aZb" = (/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating/asteroid/airless{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"aZc" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating/asteroid/airless{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"aZd" = (/obj/structure/window/reinforced{dir = 8;pixel_x = 0},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard)
-"aZe" = (/obj/effect/turf_decal/stripes{tag = "icon-warningline (NORTH)";icon_state = "warningline";dir = 1},/turf/open/floor/plating/airless/astplate,/area/ruin/unpowered{name = "Asteroid"})
-"aZf" = (/obj/effect/turf_decal/stripes{tag = "icon-warningline (NORTHEAST)";icon_state = "warningline";dir = 5},/turf/open/floor/plating/airless/astplate,/area/ruin/unpowered{name = "Asteroid"})
-"aZg" = (/turf/open/space,/area/shuttle/labor)
-"aZh" = (/turf/open/space,/area/hallway/secondary/entry)
-"aZi" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/structure/table,/obj/item/weapon/phone,/turf/open/floor/plating,/area/maintenance/port)
-"aZj" = (/obj/structure/table,/obj/structure/bedsheetbin,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"aZk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"aZl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Patient Room 1";req_access_txt = "5"},/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"aZm" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"aZn" = (/obj/machinery/door/airlock/medical{name = "Medbay Break Room";req_access_txt = "5"},/turf/open/floor/plasteel/barber,/area/medical/medbay3)
-"aZo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/closed/wall,/area/medical/cryo)
-"aZp" = (/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;name = "regular air scrubber";on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)";icon_state = "whiteblue";dir = 8},/area/medical/cryo)
-"aZq" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plasteel/white,/area/medical/cryo)
-"aZr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/start{name = "Medical Doctor"},/turf/open/floor/plasteel/white,/area/medical/cryo)
-"aZs" = (/turf/open/floor/plasteel/white,/area/medical/cryo)
-"aZt" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)";icon_state = "whiteblue";dir = 4},/area/medical/cryo)
-"aZu" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (EAST)";icon_state = "door_open";dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)";icon_state = "whiteblue";dir = 8},/area/medical/cryo)
-"aZv" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/whitepurple/corner{tag = "icon-whitepurplecorner (EAST)";icon_state = "whitepurplecorner";dir = 4},/area/medical/medbay{name = "Medbay Central"})
-"aZw" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)";icon_state = "whitepurple";dir = 1},/area/medical/medbay{name = "Medbay Central"})
-"aZx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/whitepurple/corner{tag = "icon-whitepurplecorner (NORTH)";icon_state = "whitepurplecorner";dir = 1},/area/medical/medbay{name = "Medbay Central"})
-"aZy" = (/obj/machinery/power/apc{dir = 1;name = "Medbay Central APC";pixel_y = 24},/obj/structure/cable{tag = "icon-0-8";icon_state = "0-8"},/turf/open/floor/plasteel/whiteblue/corner{tag = "icon-whitebluecorner (EAST)";icon_state = "whitebluecorner";dir = 4},/area/medical/medbay{name = "Medbay Central"})
-"aZz" = (/obj/machinery/camera/autoname,/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)";icon_state = "whiteblue";dir = 1},/area/medical/medbay{name = "Medbay Central"})
-"aZA" = (/turf/open/floor/plasteel/whiteblue/corner{tag = "icon-whitebluecorner (NORTH)";icon_state = "whitebluecorner";dir = 1},/area/medical/medbay{name = "Medbay Central"})
-"aZB" = (/obj/structure/chair/comfy/black,/obj/effect/landmark/start{name = "Chief Medical Officer"},/turf/open/floor/plasteel/cmo,/area/medical/cmo)
-"aZC" = (/turf/open/floor/plasteel/cmo,/area/medical/cmo)
-"aZD" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/turf/open/floor/plasteel/cmo,/area/medical/cmo)
-"aZE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel/cmo,/area/medical/cmo)
-"aZF" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor{density = 0;icon_state = "open";id = "cmo";name = "CMO Privacy Shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/medical/cmo)
-"aZG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/open/floor/plasteel/blue/side{tag = "icon-blue (WEST)";icon_state = "blue";dir = 8},/area/hallway/primary/port)
-"aZH" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/port)
-"aZI" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4;initialize_directions = 11},/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/open/floor/plasteel/blue/side{tag = "icon-blue (EAST)";icon_state = "blue";dir = 4},/area/hallway/primary/port)
-"aZJ" = (/turf/closed/wall,/area/hallway/primary/port)
-"aZK" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/hallway/primary/port)
-"aZL" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/glass{name = "Grass Enclosure";req_access_txt = "12"},/turf/open/floor/plasteel/green,/area/hallway/primary/port)
-"aZM" = (/obj/machinery/door/airlock/hatch{name = "Bridge Maintenance Access";req_access_txt = "0";req_one_access_txt = "19; 1"},/turf/open/floor/plating,/area/bridge)
-"aZN" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/shutters{id = "civ armory outer";name = "Emergency Storage"},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"aZO" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/security{name = "Emergency Storage";req_access = null;req_access_txt = "0";req_one_access_txt = "19; 3"},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"aZP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"aZQ" = (/turf/closed/wall/r_wall,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"aZR" = (/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{id = "civ armory inner";name = "Civilian Armory Inner Shutters";pixel_y = 28;req_access_txt = "0";req_one_access_txt = "19; 3"},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory{name = "Civilian Armory"})
-"aZS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"aZT" = (/obj/machinery/firealarm{dir = 4;pixel_x = 28;pixel_y = 0},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory{name = "Civilian Armory"})
-"aZU" = (/turf/closed/wall,/area/hallway/primary/starboard)
-"aZV" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/hallway/primary/starboard)
-"aZW" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/glass{name = "Grass Enclosure";req_access_txt = "12"},/turf/open/floor/plasteel/green,/area/hallway/primary/starboard)
-"aZX" = (/obj/structure/sign/directions/medical{tag = "icon-direction_med (WEST)";icon_state = "direction_med";dir = 8},/obj/structure/sign/directions/evac{pixel_y = -10},/obj/structure/sign/directions/security{dir = 8;icon_state = "direction_sec";pixel_y = 10;tag = "icon-direction_sec (WEST)"},/turf/closed/wall,/area/hallway/primary/starboard)
-"aZY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"aZZ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"baa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bab" = (/turf/closed/wall,/area/quartermaster/office)
-"bac" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/closed/wall,/area/quartermaster/office)
-"bad" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/closet/secure_closet/miner,/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTHWEST)";icon_state = "brown";dir = 9},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bae" = (/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/closet/secure_closet/miner,/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTH)";icon_state = "brown";dir = 1},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"baf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/closet/secure_closet/miner,/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTH)";icon_state = "brown";dir = 1},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bag" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/closet/secure_closet/miner,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTH)";icon_state = "brown";dir = 1},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bah" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/suit_storage_unit/mining/eva,/turf/open/floor/plasteel/darkyellow,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bai" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/ore_box,/obj/structure/window/reinforced{dir = 8;pixel_x = 0},/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTH)";icon_state = "brown";dir = 1},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"baj" = (/obj/machinery/power/apc{dir = 1;name = "Mining APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTH)";icon_state = "brown";dir = 1},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bak" = (/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/ore_box,/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTH)";icon_state = "brown";dir = 1},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bal" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/ore_box,/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTHEAST)";icon_state = "brown";dir = 5},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bam" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"ban" = (/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/closet/secure_closet/miner,/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTHWEST)";icon_state = "brown";dir = 9},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bao" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/mining{pixel_y = 30},/obj/structure/closet/secure_closet/miner,/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTH)";icon_state = "brown";dir = 1},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bap" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTH)";icon_state = "brown";dir = 1},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"baq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/closet/wardrobe/miner,/obj/item/device/radio/intercom{name = "Station Intercom";pixel_x = 0;pixel_y = 24},/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTH)";icon_state = "brown";dir = 1},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bar" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/closet/wardrobe/miner,/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTHEAST)";icon_state = "brown";dir = 5},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bas" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bat" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard)
-"bau" = (/obj/structure/window/reinforced{dir = 8;pixel_x = 0},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 4},/turf/open/floor/plating/asteroid/airless{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"bav" = (/turf/open/floor/plasteel{icon_plating = "asteroid";icon_state = "asteroid";name = "Asteroid"},/area/mine/explored)
-"baw" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/deliveryChute{dir = 8},/turf/open/floor/plating/asteroid/airless{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"bax" = (/obj/structure/window/reinforced{dir = 8;pixel_x = 0},/obj/structure/window/reinforced{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/deathsposal{pixel_x = 30},/turf/open/floor/plating,/area/maintenance/starboard)
-"bay" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 4},/turf/open/floor/plating/airless/astplate,/area/maintenance/starboard)
-"baz" = (/obj/effect/turf_decal/stripes{tag = "icon-warningline (EAST)";icon_state = "warningline";dir = 4},/turf/open/floor/plating/airless/astplate,/area/ruin/unpowered{name = "Asteroid"})
-"baA" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/closed/wall,/area/maintenance/port)
-"baB" = (/obj/machinery/vending/wallmed{pixel_x = -24},/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"baC" = (/obj/structure/table,/obj/machinery/computer/med_data/laptop,/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"baD" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"baE" = (/obj/machinery/vending/snack,/turf/open/floor/plasteel/barber,/area/medical/medbay3)
-"baF" = (/obj/machinery/vending/coffee,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/barber,/area/medical/medbay3)
-"baG" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/barber,/area/medical/medbay3)
-"baH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/barber,/area/medical/medbay3)
-"baI" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/closed/wall,/area/medical/cryo)
-"baJ" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{tag = "icon-freezer (EAST)";icon_state = "freezer";dir = 4},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)";icon_state = "camera";dir = 5},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)";icon_state = "whiteblue";dir = 8},/area/medical/cryo)
-"baK" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel/white,/area/medical/cryo)
-"baL" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel/white,/area/medical/cryo)
-"baM" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;name = "regular air vent";on = 1},/turf/open/floor/plasteel/white,/area/medical/cryo)
-"baN" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 4;name = "Cryogenics APC";pixel_x = 24;pixel_y = 0},/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/wrench,/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)";icon_state = "whiteblue";dir = 4},/area/medical/cryo)
-"baO" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/medical/cryo)
-"baP" = (/turf/open/floor/plasteel/whiteblue/corner{tag = "icon-whitebluecorner (WEST)";icon_state = "whitebluecorner";dir = 8},/area/medical/medbay{name = "Medbay Central"})
-"baQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"baR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;name = "regular air vent";on = 1},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"baS" = (/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"baT" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)";icon_state = "whiteblue";dir = 4},/area/medical/medbay{name = "Medbay Central"})
-"baU" = (/obj/machinery/computer/crew,/obj/structure/window/reinforced,/turf/open/floor/plasteel/cmo,/area/medical/cmo)
-"baV" = (/obj/structure/table/wood,/obj/machinery/computer/med_data/laptop,/obj/structure/window/reinforced,/obj/item/weapon/folder/white{pixel_x = 9},/obj/item/weapon/pen/red,/turf/open/floor/plasteel/cmo,/area/medical/cmo)
-"baW" = (/obj/machinery/door/window/southleft{name = "CMO Desk";req_access_txt = "40"},/mob/living/simple_animal/pet/cat/Runtime,/turf/open/floor/plasteel/cmo,/area/medical/cmo)
-"baX" = (/obj/structure/table/wood,/obj/structure/window/reinforced,/obj/machinery/keycard_auth,/obj/item/weapon/stamp/cmo{pixel_x = 9},/turf/open/floor/plasteel/cmo,/area/medical/cmo)
-"baY" = (/obj/machinery/status_display,/turf/closed/wall,/area/medical/cmo)
-"baZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/blue/side{tag = "icon-blue (WEST)";icon_state = "blue";dir = 8},/area/hallway/primary/port)
-"bba" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bbb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/blue/side{tag = "icon-blue (EAST)";icon_state = "blue";dir = 4},/area/hallway/primary/port)
-"bbc" = (/turf/open/floor/grass,/area/hallway/primary/port)
-"bbd" = (/obj/structure/flora/grass,/turf/open/floor/grass,/area/hallway/primary/port)
-"bbe" = (/obj/structure/flora/grass,/obj/structure/flora/grass/green,/turf/open/floor/grass,/area/hallway/primary/port)
-"bbf" = (/turf/open/floor/plating,/area/bridge)
-"bbg" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24;pixel_y = 0},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"bbh" = (/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"bbi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table/reinforced,/obj/machinery/door/firedoor/heavy,/obj/machinery/door/window/brigdoor{dir = 4;name = "Security Desk";req_access_txt = "1"},/obj/machinery/door/window/westleft{base_state = "right";dir = 8;icon_state = "right";name = "Outer Window";req_access_txt = "0"},/obj/machinery/door/poddoor/shutters{id = "civ armory inner";name = "Emergency Storage Interior Shutters"},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"bbj" = (/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{id = "civ armory outer";name = "Civilian Armory Outer Shutters";pixel_y = 28;req_one_access_txt = "19; 3"},/obj/machinery/camera/motion{c_tag = "Civ Armory Entrance";dir = 1;network = null},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"bbk" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/shutters{id = "civ armory inner";name = "Civilian Armory Interior Shutters"},/obj/machinery/door/airlock/security{name = "Civilian Armory";req_access = null;req_access_txt = "0";req_one_access_txt = "19; 3"},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory{name = "Civilian Armory"})
-"bbl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/table/reinforced,/obj/machinery/door/firedoor/heavy,/obj/machinery/door/window/brigdoor{dir = 8;name = "Security Desk";req_access_txt = "1"},/obj/machinery/door/window/westleft{base_state = "right";dir = 4;icon_state = "right";name = "Outer Window";req_access_txt = "0"},/obj/machinery/door/poddoor/shutters{id = "civ armory inner";name = "Emergency Storage Interior Shutters"},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"bbm" = (/obj/machinery/camera/motion{c_tag = "Civ Armory East";dir = 4;network = list("MiniSat")},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory{name = "Civilian Armory"})
-"bbn" = (/obj/machinery/firealarm{dir = 4;pixel_x = 28;pixel_y = 0},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"bbo" = (/turf/open/floor/grass,/area/hallway/primary/starboard)
-"bbp" = (/obj/structure/flora/grass,/turf/open/floor/grass,/area/hallway/primary/starboard)
-"bbq" = (/obj/structure/flora/grass/green,/turf/open/floor/grass,/area/hallway/primary/starboard)
-"bbr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bbs" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/junction{tag = "icon-pipe-y (EAST)";icon_state = "pipe-y";dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bbt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bbu" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/quartermaster/office)
-"bbv" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 4},/turf/open/floor/plasteel/black,/area/quartermaster/office)
-"bbw" = (/obj/machinery/conveyor{dir = 8;id = "garbage"},/turf/open/floor/plasteel/black,/area/quartermaster/office)
-"bbx" = (/obj/machinery/light{dir = 1},/obj/machinery/conveyor{dir = 8;id = "garbage"},/turf/open/floor/plasteel/black,/area/quartermaster/office)
-"bby" = (/obj/machinery/conveyor{dir = 8;id = "garbage"},/obj/machinery/recycler,/turf/open/floor/plasteel/black,/area/quartermaster/office)
-"bbz" = (/obj/machinery/conveyor{tag = "icon-conveyor0 (SOUTHEAST)";icon_state = "conveyor0";dir = 6;id = "garbage"},/turf/open/floor/plasteel/black,/area/quartermaster/office)
-"bbA" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/quartermaster/office)
-"bbB" = (/turf/open/floor/plasteel/brown{tag = "icon-brown (WEST)";icon_state = "brown";dir = 8},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bbC" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bbD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bbE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bbF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/darkyellow,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bbG" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/darkyellow,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bbH" = (/obj/structure/window/reinforced{dir = 8;pixel_x = 0},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bbI" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bbJ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bbK" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel/brown{tag = "icon-brown (EAST)";icon_state = "brown";dir = 4},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bbL" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24;pixel_y = 0},/turf/open/floor/plasteel/brown{tag = "icon-brown (WEST)";icon_state = "brown";dir = 8},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bbM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bbN" = (/turf/open/floor/plasteel/brown{tag = "icon-brown (EAST)";icon_state = "brown";dir = 4},/area/space)
-"bbO" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard)
-"bbP" = (/obj/structure/window/reinforced{dir = 8;pixel_x = 0},/turf/open/floor/plating/asteroid/airless{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"bbQ" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel{icon_plating = "asteroid";icon_state = "asteroid";name = "Asteroid"},/area/mine/explored)
-"bbR" = (/obj/effect/turf_decal/stripes,/turf/open/floor/plating/airless/astplate,/area/ruin/unpowered{name = "Asteroid"})
-"bbS" = (/obj/effect/turf_decal/stripes{tag = "icon-warningline (SOUTHEAST)";icon_state = "warningline";dir = 6},/turf/open/floor/plating/airless/astplate,/area/ruin/unpowered{name = "Asteroid"})
-"bbT" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/obj/structure/bed/roller,/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"bbU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHWEST)";icon_state = "camera";dir = 10},/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"bbV" = (/obj/structure/chair/office/light{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"bbW" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"bbX" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/medical/patients_rooms)
-"bbY" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"bbZ" = (/obj/machinery/status_display,/turf/closed/wall,/area/medical/medbay3)
-"bca" = (/turf/open/floor/plasteel/barber,/area/medical/medbay3)
-"bcb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel/barber,/area/medical/medbay3)
-"bcc" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel/barber,/area/medical/medbay3)
-"bcd" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/atmospherics/components/unary/portables_connector{tag = "icon-connector_map (EAST)";icon_state = "connector_map";dir = 4},/obj/machinery/portable_atmospherics/canister/oxygen,/obj/structure/sign/fire{pixel_x = -32},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)";icon_state = "whiteblue";dir = 8},/area/medical/cryo)
-"bce" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/cryo)
-"bcf" = (/obj/structure/bed/roller,/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)";icon_state = "whiteblue";dir = 4},/area/medical/cryo)
-"bcg" = (/obj/structure/disposalpipe/segment,/obj/machinery/status_display,/turf/closed/wall,/area/medical/cryo)
-"bch" = (/obj/effect/landmark/start{name = "Medical Doctor"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"bci" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/structure/cable{tag = "icon-1-4";icon_state = "1-4"},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"bcj" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"bck" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)";icon_state = "whiteblue";dir = 4},/area/medical/medbay{name = "Medbay Central"})
-"bcl" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor{density = 0;icon_state = "open";id = "cmo";name = "CMO Privacy Shutters"},/obj/machinery/door/airlock/glass_command{name = "Chief Medical Officer";req_access_txt = "40"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/cmo,/area/medical/cmo)
-"bcm" = (/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/turf/open/floor/plasteel/cmo,/area/medical/cmo)
-"bcn" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/cmo,/area/medical/cmo)
-"bco" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/cmo,/area/medical/cmo)
-"bcp" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor{density = 0;icon_state = "open";id = "cmo";name = "CMO Privacy Shutters"},/obj/machinery/door/airlock/glass_command{name = "Chief Medical Officer";req_access_txt = "40"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/cmo,/area/medical/cmo)
-"bcq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/blue/side{tag = "icon-blue (WEST)";icon_state = "blue";dir = 8},/area/hallway/primary/port)
-"bcr" = (/mob/living/carbon/monkey,/turf/open/floor/grass,/area/hallway/primary/port)
-"bcs" = (/obj/structure/flora/grass/green,/turf/open/floor/grass,/area/hallway/primary/port)
-"bct" = (/obj/structure/flora/grass,/obj/structure/flora/grass/green,/mob/living/carbon/monkey,/turf/open/floor/grass,/area/hallway/primary/port)
-"bcu" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"bcv" = (/obj/machinery/camera/motion{c_tag = "Civ Armory West";dir = 8},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"bcw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"bcx" = (/turf/closed/wall,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"bcy" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/shutters{id = "civ armory inner";name = "Emergency Storage Interior Shutters"},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"bcz" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/medipens{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/box/medipens/utility,/obj/machinery/button/door{id = "civ armory inner";name = "Civilian Armory Inner Shutters";pixel_y = 28;req_access_txt = "0";req_one_access_txt = "19; 3"},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory{name = "Civilian Armory"})
-"bcA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/closed/wall,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"bcB" = (/obj/machinery/camera/motion{c_tag = "Civ Armory East";dir = 4;network = list("MiniSat")},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"bcC" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"bcD" = (/obj/structure/flora/grass,/obj/structure/flora/grass/green,/turf/open/floor/grass,/area/hallway/primary/starboard)
-"bcE" = (/obj/structure/flora/grass/green,/mob/living/simple_animal/cow,/turf/open/floor/grass,/area/hallway/primary/starboard)
-"bcF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bcG" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bcH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bcI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/quartermaster/office)
-"bcJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/conveyor_switch/oneway{convdir = -1;id = "garbage";name = "disposal coveyor"},/obj/effect/turf_decal/stripes,/turf/open/floor/plasteel,/area/quartermaster/office)
-"bcK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes,/turf/open/floor/plasteel,/area/quartermaster/office)
-"bcL" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/obj/effect/turf_decal/stripes,/turf/open/floor/plasteel,/area/quartermaster/office)
-"bcM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/effect/turf_decal/stripes,/turf/open/floor/plasteel,/area/quartermaster/office)
-"bcN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bcO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/conveyor{tag = "icon-conveyor0 (NORTH)";icon_state = "conveyor0";dir = 1;id = "garbage"},/turf/open/floor/plasteel/black,/area/quartermaster/office)
-"bcP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/quartermaster/office)
-"bcQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/obj/machinery/firealarm{dir = 8;pixel_x = -24;pixel_y = 0},/turf/open/floor/plasteel/brown{tag = "icon-brown (WEST)";icon_state = "brown";dir = 8},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bcR" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bcS" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/start{name = "Shaft Miner"},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bcT" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bcU" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bcV" = (/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bcW" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bcX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plasteel/brown{tag = "icon-brown (EAST)";icon_state = "brown";dir = 4},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bcY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/mining{name = "Mining Office";req_access_txt = "48"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plasteel/delivery,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bcZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plasteel/brown{tag = "icon-brown (WEST)";icon_state = "brown";dir = 8},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bda" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bdb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/effect/landmark/start{name = "Shaft Miner"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bdc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bdd" = (/obj/structure/ore_box,/turf/open/floor/plasteel/brown{tag = "icon-brown (EAST)";icon_state = "brown";dir = 4},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bde" = (/obj/structure/window/reinforced{dir = 8;pixel_x = 0},/obj/structure/window/reinforced,/turf/open/floor/plating/asteroid/airless{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"bdf" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel{icon_plating = "asteroid";icon_state = "asteroid";name = "Asteroid"},/area/mine/explored)
-"bdg" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/open/floor/plasteel{icon_plating = "asteroid";icon_state = "asteroid";name = "Asteroid"},/area/mine/explored)
-"bdh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/medical/patients_rooms)
-"bdi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/medical/patients_rooms)
-"bdj" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/vending/wallmed{pixel_x = -24},/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"bdk" = (/obj/structure/extinguisher_cabinet{pixel_x = 24},/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"bdl" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,/obj/item/weapon/reagent_containers/food/drinks/britcup,/turf/open/floor/plasteel/barber,/area/medical/medbay3)
-"bdm" = (/obj/machinery/requests_console{announcementConsole = 0;department = "Medbay";departmentType = 1;name = "Medbay RC";pixel_x = 30;pixel_y = 0;pixel_z = 0},/obj/structure/chair/comfy/black{dir = 8},/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/plasteel/barber,/area/medical/medbay3)
-"bdn" = (/obj/machinery/atmospherics/components/unary/tank/oxygen{dir = 4},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHWEST)";icon_state = "whiteblue";dir = 10},/area/medical/cryo)
-"bdo" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/open/floor/plasteel/whiteblue/side,/area/medical/cryo)
-"bdp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/whiteblue/side,/area/medical/cryo)
-"bdq" = (/turf/open/floor/plasteel/whiteblue/side,/area/medical/cryo)
-"bdr" = (/obj/structure/bed/roller,/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHEAST)";icon_state = "whiteblue";dir = 6},/area/medical/cryo)
-"bds" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2";dir = 2},/turf/closed/wall,/area/medical/cryo)
-"bdt" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)";icon_state = "whiteblue";dir = 8},/area/medical/medbay{name = "Medbay Central"})
-"bdu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"bdv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/whiteblue/corner,/area/medical/medbay{name = "Medbay Central"})
-"bdw" = (/obj/structure/table/glass,/obj/item/weapon/soap/nanotrasen,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/whiteblue/side,/area/medical/medbay{name = "Medbay Central"})
-"bdx" = (/obj/machinery/vending/medical,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/whiteblue/side,/area/medical/medbay{name = "Medbay Central"})
-"bdy" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/whiteblue/side,/area/medical/medbay{name = "Medbay Central"})
-"bdz" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/bin,/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHEAST)";icon_state = "whiteblue";dir = 6},/area/medical/medbay{name = "Medbay Central"})
-"bdA" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 2;name = "CMO's Office APC";pixel_x = 0;pixel_y = -24},/turf/open/floor/plasteel/cmo,/area/medical/cmo)
-"bdB" = (/obj/machinery/light,/obj/machinery/button/door{id = "cmo";name = "CMO Privacy Shutters";pixel_y = -24},/turf/open/floor/plasteel/cmo,/area/medical/cmo)
-"bdC" = (/obj/machinery/computer/card/minor/cmo,/obj/machinery/requests_console{announcementConsole = 1;department = "Chief Medical Officer's Desk";departmentType = 5;name = "Chief Medical Officer RC";pixel_x = 0;pixel_y = -32},/turf/open/floor/plasteel/cmo,/area/medical/cmo)
-"bdD" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/item/weapon/twohanded/required/kirbyplants,/turf/open/floor/plasteel/cmo,/area/medical/cmo)
-"bdE" = (/obj/effect/landmark/event_spawn,/turf/open/floor/grass,/area/hallway/primary/port)
-"bdF" = (/obj/structure/flora/grass,/mob/living/carbon/monkey,/turf/open/floor/grass,/area/hallway/primary/port)
-"bdG" = (/obj/machinery/airalarm{dir = 4;locked = 0;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"bdH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"bdI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/brute{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/firstaid/fire,/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"bdJ" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/o2{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/firstaid/toxin,/obj/machinery/button/door{id = "civ armory outer";name = "Civilian Armory Outer Shutters";pixel_y = 28;req_access_txt = "19"},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"bdK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/table/reinforced,/obj/item/weapon/storage/backpack/dufflebag/sec{contents = newlist(/obj/item/weapon/scalpel,/obj/item/weapon/hemostat,/obj/item/weapon/retractor,/obj/item/weapon/cautery,/obj/item/weapon/circular_saw,/obj/item/weapon/surgical_drapes,/obj/item/clothing/mask/surgical);desc = "A large dufflebag for holding extra supplies - this one has a material inlay with space for various sharp-looking tools.";name = "dufflebag";pixel_y = 5},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"bdL" = (/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"bdM" = (/obj/machinery/power/apc{cell_type = 5000;dir = 4;name = "Emergency Storage APC";pixel_x = 24;pixel_y = 0},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"bdN" = (/mob/living/simple_animal/cow,/turf/open/floor/grass,/area/hallway/primary/starboard)
-"bdO" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bdP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bdQ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/quartermaster/office)
-"bdR" = (/turf/open/floor/plasteel,/area/quartermaster/office)
-"bdS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bdT" = (/turf/open/floor/plasteel/loadingarea{dir = 8},/area/quartermaster/office)
-"bdU" = (/obj/machinery/mineral/stacking_machine{input_dir = 4;stack_amt = 10},/obj/effect/turf_decal/stripes{tag = "icon-warningline (WEST)";icon_state = "warningline";dir = 8},/turf/open/floor/plasteel/delivery,/area/quartermaster/office)
-"bdV" = (/obj/machinery/conveyor{tag = "icon-conveyor0 (NORTH)";icon_state = "conveyor0";dir = 1;id = "garbage"},/turf/open/floor/plasteel/black,/area/quartermaster/office)
-"bdW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/device/radio/intercom{dir = 8;pixel_x = -28},/turf/open/floor/plasteel/brown{tag = "icon-brown (WEST)";icon_state = "brown";dir = 8},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bdX" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/effect/landmark/start{name = "Shaft Miner"},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bdY" = (/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bdZ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bea" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark/start{name = "Shaft Miner"},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"beb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/brown{tag = "icon-brown (EAST)";icon_state = "brown";dir = 4},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bec" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bed" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table,/obj/item/device/gps/mining,/obj/item/device/gps/mining,/turf/open/floor/plasteel/brown{tag = "icon-brown (SOUTHWEST)";icon_state = "brown";dir = 10},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bee" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/structure/table,/obj/item/weapon/pickaxe,/obj/item/weapon/storage/bag/ore,/turf/open/floor/plasteel/brown,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bef" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel/brown,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"beg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/brown,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"beh" = (/obj/machinery/light,/obj/machinery/mineral/equipment_vendor,/turf/open/floor/plasteel/brown{tag = "icon-brown (SOUTHEAST)";icon_state = "brown";dir = 6},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bei" = (/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard)
-"bej" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/camera/autoname{tag = "icon-camera (NORTH)";icon_state = "camera";dir = 1},/turf/open/floor/plating,/area/maintenance/starboard)
-"bek" = (/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"bel" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/table,/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/glass/bottle/salglu_solution,/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"bem" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"ben" = (/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/obj/structure/table,/obj/machinery/juicer,/obj/item/weapon/reagent_containers/food/snacks/grown/apple,/obj/item/weapon/reagent_containers/food/snacks/grown/apple,/obj/item/weapon/reagent_containers/food/snacks/grown/apple,/obj/item/weapon/reagent_containers/food/snacks/grown/apple,/obj/item/weapon/reagent_containers/food/snacks/grown/apple,/turf/open/floor/plasteel/barber,/area/medical/medbay3)
-"beo" = (/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plasteel/barber,/area/medical/medbay3)
-"bep" = (/obj/structure/chair/comfy/black{dir = 8},/obj/machinery/firealarm{dir = 4;pixel_x = 28;pixel_y = 0},/turf/open/floor/plasteel/barber,/area/medical/medbay3)
-"beq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall,/area/medical/sleeper{name = "Sleepers"})
-"ber" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/medical/sleeper{name = "Sleepers"})
-"bes" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/medical/sleeper{name = "Sleepers"})
-"bet" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/whiteblue,/area/medical/sleeper{name = "Sleepers"})
-"beu" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/medical/sleeper{name = "Sleepers"})
-"bev" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/medical/sleeper{name = "Sleepers"})
-"bew" = (/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)";icon_state = "whiteblue";dir = 8},/area/medical/medbay{name = "Medbay Central"})
-"bex" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"bey" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)";icon_state = "whiteblue";dir = 4},/area/medical/medbay{name = "Medbay Central"})
-"bez" = (/obj/structure/sign/chemistry,/turf/closed/wall,/area/medical/chemistry)
-"beA" = (/turf/closed/wall,/area/medical/chemistry)
-"beB" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/medical/chemistry)
-"beC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel/blue/side{tag = "icon-blue (WEST)";icon_state = "blue";dir = 8},/area/hallway/primary/port)
-"beD" = (/obj/structure/flora/grass/green,/mob/living/carbon/monkey,/turf/open/floor/grass,/area/hallway/primary/port)
-"beE" = (/turf/closed/wall/r_wall,/area/hallway/primary/port)
-"beF" = (/turf/open/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)";icon_state = "darkred";dir = 1},/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"beG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)";icon_state = "darkred";dir = 1},/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"beH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)";icon_state = "darkred";dir = 1},/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"beI" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/extinguisher_cabinet{pixel_x = 24},/turf/open/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)";icon_state = "darkred";dir = 1},/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"beJ" = (/turf/closed/wall/r_wall,/area/hallway/primary/starboard)
-"beK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"beL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/quartermaster/office)
-"beM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/intercom{dir = 8;pixel_x = -28},/turf/open/floor/plasteel,/area/quartermaster/office)
-"beN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office)
-"beO" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office)
-"beP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/mineral/stacking_unit_console{dir = 1;machinedir = 1;pixel_y = -30},/obj/effect/turf_decal/stripes{tag = "icon-warningline (WEST)";icon_state = "warningline";dir = 8},/turf/open/floor/plasteel/delivery,/area/quartermaster/office)
-"beQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/conveyor{tag = "icon-conveyor0 (NORTH)";icon_state = "conveyor0";dir = 1;id = "garbage"},/obj/structure/sign/deathsposal{pixel_x = 30},/turf/open/floor/plasteel/black,/area/quartermaster/office)
-"beR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/quartermaster/office)
-"beS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/ore_box,/turf/open/floor/plasteel/brown{tag = "icon-brown (SOUTHWEST)";icon_state = "brown";dir = 10},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"beT" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/brown,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"beU" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/machinery/camera/autoname{tag = "icon-camera (NORTH)";icon_state = "camera";dir = 1},/turf/open/floor/plasteel/brown,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"beV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/brown,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"beW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/turf/open/floor/plasteel/brown,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"beX" = (/obj/machinery/light,/turf/open/floor/plasteel/brown,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"beY" = (/turf/open/floor/plasteel/brown,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"beZ" = (/obj/structure/table,/obj/item/weapon/pickaxe,/obj/item/weapon/shovel,/turf/open/floor/plasteel/brown,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bfa" = (/obj/structure/table,/obj/item/weapon/pickaxe,/obj/item/weapon/pickaxe,/turf/open/floor/plasteel/brown,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bfb" = (/obj/structure/table,/obj/item/weapon/storage/bag/ore,/obj/item/weapon/storage/bag/ore,/obj/item/weapon/storage/bag/ore,/turf/open/floor/plasteel/brown,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bfc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table,/obj/item/device/gps/mining,/obj/item/device/gps/mining,/turf/open/floor/plasteel/brown{tag = "icon-brown (SOUTHEAST)";icon_state = "brown";dir = 6},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"bfd" = (/turf/closed/wall,/area/quartermaster/storage)
-"bfe" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/quartermaster/storage)
-"bff" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/quartermaster/storage)
-"bfg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating{icon_state = "floorgrime"},/area/maintenance/port)
-"bfh" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plating{icon_state = "floorgrime"},/area/maintenance/port)
-"bfi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/glass_engineering{name = "Security Atmos Closet";req_access_txt = "32"},/turf/open/floor/plating{dir = 1;icon_state = "delivery"},/area/maintenance/port)
-"bfj" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/port)
-"bfk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/iv_drip,/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"bfl" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"bfm" = (/obj/structure/table,/obj/machinery/microwave,/obj/item/weapon/storage/box/donkpockets,/obj/item/device/radio/intercom{dir = 8;pixel_x = -28},/turf/open/floor/plasteel/barber,/area/medical/medbay3)
-"bfn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/barber,/area/medical/medbay3)
-"bfo" = (/obj/machinery/photocopier,/turf/open/floor/plasteel/barber,/area/medical/medbay3)
-"bfp" = (/turf/closed/wall,/area/medical/sleeper{name = "Sleepers"})
-"bfq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/sleeper,/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTHWEST)";icon_state = "whiteblue";dir = 9},/area/medical/sleeper{name = "Sleepers"})
-"bfr" = (/obj/machinery/iv_drip,/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)";icon_state = "whiteblue";dir = 1},/area/medical/sleeper{name = "Sleepers"})
-"bfs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)";icon_state = "whiteblue";dir = 1},/area/medical/sleeper{name = "Sleepers"})
-"bft" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/sleeper,/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTHEAST)";icon_state = "whiteblue";dir = 5},/area/medical/sleeper{name = "Sleepers"})
-"bfu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/whiteblue/corner{tag = "icon-whitebluecorner (EAST)";icon_state = "whitebluecorner";dir = 4},/area/medical/medbay{name = "Medbay Central"})
-"bfv" = (/obj/machinery/chem_dispenser,/obj/item/weapon/reagent_containers/glass/beaker/large,/turf/open/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (NORTHWEST)";icon_state = "whiteyellow";dir = 9},/area/medical/chemistry)
-"bfw" = (/obj/machinery/chem_master,/obj/item/weapon/book/manual/wiki/chemistry,/turf/open/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (NORTH)";icon_state = "whiteyellow";dir = 1},/area/medical/chemistry)
-"bfx" = (/obj/machinery/smartfridge/chemistry/preloaded{name = "chemical component fridge"},/obj/machinery/camera/autoname,/turf/open/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (NORTH)";icon_state = "whiteyellow";dir = 1},/area/medical/chemistry)
-"bfy" = (/obj/structure/table,/obj/machinery/vending/wallmed{pixel_y = 28},/obj/item/weapon/hand_labeler,/obj/item/clothing/glasses/science,/turf/open/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (NORTH)";icon_state = "whiteyellow";dir = 1},/area/medical/chemistry)
-"bfz" = (/obj/structure/table,/obj/machinery/reagentgrinder,/obj/item/stack/sheet/mineral/plasma{layer = 2.9;pixel_y = 4},/obj/item/stack/sheet/mineral/plasma,/turf/open/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (NORTH)";icon_state = "whiteyellow";dir = 1},/area/medical/chemistry)
-"bfA" = (/obj/structure/sink{pixel_y = 24},/turf/open/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (NORTH)";icon_state = "whiteyellow";dir = 1},/area/medical/chemistry)
-"bfB" = (/obj/machinery/light{dir = 1},/obj/machinery/chem_master,/obj/item/weapon/book/manual/wiki/chemistry,/turf/open/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (NORTH)";icon_state = "whiteyellow";dir = 1},/area/medical/chemistry)
-"bfC" = (/obj/machinery/chem_dispenser,/obj/item/weapon/reagent_containers/glass/beaker/large,/turf/open/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (NORTHEAST)";icon_state = "whiteyellow";dir = 5},/area/medical/chemistry)
-"bfD" = (/obj/machinery/light{dir = 4},/turf/open/floor/grass,/area/hallway/primary/port)
-"bfE" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/hallway/primary/port)
-"bfF" = (/obj/structure/rack,/obj/item/weapon/storage/toolbox/emergency,/turf/open/floor/plasteel/black,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"bfG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/rack,/obj/item/weapon/storage/toolbox/mechanical,/turf/open/floor/plasteel/black,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"bfH" = (/obj/structure/rack,/obj/item/weapon/storage/box/silver_ids{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/box/ids,/turf/open/floor/plasteel/black,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"bfI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/rack,/obj/item/weapon/storage/box/mechabeacons,/turf/open/floor/plasteel/black,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"bfJ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/rack,/obj/item/weapon/storage/box/teargas,/turf/open/floor/plasteel/black,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"bfK" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/hallway/primary/starboard)
-"bfL" = (/obj/effect/landmark/start{name = "Cargo Technician"},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bfM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office)
-"bfN" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bfO" = (/obj/machinery/disposal/deliveryChute{tag = "icon-intake (NORTH)";icon_state = "intake";dir = 1},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/black,/area/quartermaster/office)
-"bfP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/quartermaster/office)
-"bfQ" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/door/airlock/mining{name = "Mining Office";req_access_txt = "48"},/turf/open/floor/plasteel/delivery,/area/quartermaster/office)
-"bfR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/quartermaster/office)
-"bfS" = (/turf/closed/wall,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"bfT" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"bfU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"bfV" = (/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTHWEST)";icon_state = "brown";dir = 9},/area/quartermaster/storage)
-"bfW" = (/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTH)";icon_state = "brown";dir = 1},/area/quartermaster/storage)
-"bfX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTH)";icon_state = "brown";dir = 1},/area/quartermaster/storage)
-"bfY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTH)";icon_state = "brown";dir = 1},/area/quartermaster/storage)
-"bfZ" = (/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTH)";icon_state = "brown";dir = 1},/area/quartermaster/storage)
-"bga" = (/obj/item/device/radio/intercom{name = "Station Intercom";pixel_x = 0;pixel_y = 24},/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTH)";icon_state = "brown";dir = 1},/area/quartermaster/storage)
-"bgb" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTH)";icon_state = "brown";dir = 1},/area/quartermaster/storage)
-"bgc" = (/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTHEAST)";icon_state = "brown";dir = 5},/area/quartermaster/storage)
-"bgd" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port)
-"bge" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"bgf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Patient Room 2";req_access_txt = "5"},/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"bgg" = (/obj/structure/sign/examroom,/turf/closed/wall,/area/medical/medbay3)
-"bgh" = (/obj/machinery/newscaster,/turf/closed/wall,/area/medical/medbay3)
-"bgi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Medbay Break Room";req_access_txt = "5"},/turf/open/floor/plasteel/barber,/area/medical/medbay3)
-"bgj" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/medical/medbay3)
-"bgk" = (/obj/machinery/power/apc{dir = 8;name = "Sleeper Room APC";pixel_x = -24;pixel_y = 0},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)";icon_state = "whiteblue";dir = 8},/area/medical/sleeper{name = "Sleepers"})
-"bgl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;name = "regular air scrubber";on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/sleeper{name = "Sleepers"})
-"bgm" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel/white,/area/medical/sleeper{name = "Sleepers"})
-"bgn" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;name = "regular air vent";on = 1},/turf/open/floor/plasteel/white,/area/medical/sleeper{name = "Sleepers"})
-"bgo" = (/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)";icon_state = "whiteblue";dir = 4},/area/medical/sleeper{name = "Sleepers"})
-"bgp" = (/obj/structure/disposalpipe/segment,/obj/structure/sign/examroom,/turf/closed/wall,/area/medical/sleeper{name = "Sleepers"})
-"bgq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/noticeboard{dir = 8;pixel_x = 27;pixel_y = 0},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/whiteyellow/corner,/area/medical/medbay{name = "Medbay Central"})
-"bgr" = (/obj/structure/table,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/storage/pill_bottle/epinephrine,/obj/item/weapon/storage/pill_bottle/charcoal,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"bgs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start{name = "Chemist"},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"bgt" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;name = "regular air scrubber";on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"bgu" = (/obj/machinery/chem_heater,/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"bgv" = (/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"bgw" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"bgx" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start{name = "Chemist"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (EAST)";icon_state = "whiteyellow";dir = 4},/area/medical/chemistry)
-"bgy" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastright{base_state = "left";dir = 8;icon_state = "left";name = "Chemistry Desk";req_access_txt = "33"},/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (EAST)";icon_state = "door_open";dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/orange,/area/medical/chemistry)
-"bgz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/blue/side{tag = "icon-blue (WEST)";icon_state = "blue";dir = 8},/area/hallway/primary/port)
-"bgA" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bgB" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel/blue/side{tag = "icon-blue (EAST)";icon_state = "blue";dir = 4},/area/hallway/primary/port)
-"bgC" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/security/checkpoint)
-"bgD" = (/obj/machinery/light/small{dir = 1},/obj/machinery/computer/security,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint)
-"bgE" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/pen/red,/obj/item/device/radio/intercom{name = "Station Intercom";pixel_x = 0;pixel_y = 24},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint)
-"bgF" = (/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint)
-"bgG" = (/obj/structure/table,/obj/machinery/recharger,/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHEAST)";icon_state = "camera";dir = 6},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint)
-"bgH" = (/obj/machinery/light/small{dir = 1},/obj/structure/filingcabinet/security,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint)
-"bgI" = (/turf/closed/wall/r_wall,/area/bridge)
-"bgJ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "bridge blast";layer = 2.9;name = "bridge blast door"},/obj/structure/sign/electricshock{pixel_x = -32},/turf/open/floor/plating,/area/bridge)
-"bgK" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "bridge blast";layer = 2.9;name = "bridge blast door"},/turf/open/floor/plating,/area/bridge)
-"bgL" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "bridge blast";layer = 2.9;name = "bridge blast door"},/turf/open/floor/plating,/area/bridge)
-"bgM" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "bridge blast";layer = 2.9;name = "bridge blast door"},/turf/open/floor/plating,/area/bridge)
-"bgN" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "bridge blast";layer = 2.9;name = "bridge blast door"},/obj/structure/sign/electricshock{pixel_x = 32},/turf/open/floor/plating,/area/bridge)
-"bgO" = (/obj/structure/table,/obj/machinery/recharger,/obj/machinery/light_switch{pixel_y = 24},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint)
-"bgP" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/pen/red,/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHEAST)";icon_state = "camera";dir = 6},/obj/item/device/radio/intercom{name = "Station Intercom";pixel_x = 0;pixel_y = 24},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint)
-"bgQ" = (/obj/machinery/airalarm{dir = 4;locked = 0;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bgR" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bgS" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bgT" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/closed/wall,/area/quartermaster/office)
-"bgU" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/closed/wall,/area/quartermaster/office)
-"bgV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTHWEST)";icon_state = "brown";dir = 9},/area/quartermaster/office)
-"bgW" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTH)";icon_state = "brown";dir = 1},/area/quartermaster/office)
-"bgX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTH)";icon_state = "brown";dir = 1},/area/quartermaster/office)
-"bgY" = (/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTHEAST)";icon_state = "brown";dir = 5},/area/quartermaster/office)
-"bgZ" = (/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTHWEST)";icon_state = "brown";dir = 9},/area/quartermaster/sorting{name = "\improper Warehouse"})
-"bha" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8";dir = 8;freq = 1400;location = "QM #1"},/obj/effect/turf_decal/bot,/mob/living/simple_animal/bot/mulebot{beacon_freq = 1400;home_destination = "QM #1";suffix = "#1"},/turf/open/floor/plasteel,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"bhb" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8";dir = 8;freq = 1400;location = "QM #2"},/obj/effect/turf_decal/bot,/mob/living/simple_animal/bot/mulebot{home_destination = "QM #2";suffix = "#2"},/turf/open/floor/plasteel,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"bhc" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8";dir = 8;freq = 1400;location = "QM #3"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"bhd" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8";dir = 8;freq = 1400;location = "QM #4"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"bhe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTHEAST)";icon_state = "brown";dir = 5},/area/quartermaster/sorting{name = "\improper Warehouse"})
-"bhf" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel/brown{tag = "icon-brown (WEST)";icon_state = "brown";dir = 8},/area/quartermaster/storage)
-"bhg" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage)
-"bhh" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8;initialize_directions = 11},/obj/structure/closet/crate{icon_state = "crateopen";opened = 1},/turf/open/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage)
-"bhi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage)
-"bhj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bhk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage)
-"bhl" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;name = "regular air vent";on = 1},/turf/open/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage)
-"bhm" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel/brown{tag = "icon-brown (EAST)";icon_state = "brown";dir = 4},/area/quartermaster/storage)
-"bhn" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port)
-"bho" = (/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHEAST)";icon_state = "camera";dir = 6},/turf/open/floor/plasteel/whiteblue,/area/medical/medbay3)
-"bhp" = (/turf/open/floor/plasteel/whiteblue,/area/medical/medbay3)
-"bhq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/whiteblue,/area/medical/medbay3)
-"bhr" = (/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (EAST)";icon_state = "door_open";dir = 4},/turf/open/floor/plasteel/whiteblue,/area/medical/sleeper{name = "Sleepers"})
-"bhs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)";icon_state = "whiteblue";dir = 8},/area/medical/sleeper{name = "Sleepers"})
-"bht" = (/obj/effect/landmark/start{name = "Medical Doctor"},/turf/open/floor/plasteel/white,/area/medical/sleeper{name = "Sleepers"})
-"bhu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/sleeper{name = "Sleepers"})
-"bhv" = (/turf/open/floor/plasteel/white,/area/medical/sleeper{name = "Sleepers"})
-"bhw" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (EAST)";icon_state = "door_open";dir = 4},/turf/open/floor/plasteel/whiteblue,/area/medical/sleeper{name = "Sleepers"})
-"bhx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (EAST)";icon_state = "whiteyellow";dir = 4},/area/medical/medbay{name = "Medbay Central"})
-"bhy" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/glass_medical{id_tag = null;name = "Chemistry Lab";req_access_txt = "5; 33"},/turf/open/floor/plasteel/orange,/area/medical/chemistry)
-"bhz" = (/turf/open/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (WEST)";icon_state = "whiteyellow";dir = 8},/area/medical/chemistry)
-"bhA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"bhB" = (/obj/structure/closet/secure_closet/chemical,/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"bhC" = (/obj/machinery/smartfridge/chemistry/preloaded{name = "chemical component fridge"},/turf/open/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (EAST)";icon_state = "whiteyellow";dir = 4},/area/medical/chemistry)
-"bhD" = (/turf/closed/wall/r_wall,/area/security/checkpoint)
-"bhE" = (/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/obj/machinery/computer/secure_data,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint)
-"bhF" = (/obj/structure/chair/office/dark{dir = 8},/obj/machinery/firealarm{dir = 1;pixel_x = 0;pixel_y = -26},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint)
-"bhG" = (/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint)
-"bhH" = (/obj/machinery/button/door{id = "bridge door west";name = "Port Bridge Door Control";pixel_x = 0;pixel_y = -24;req_access_txt = "19,1"},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint)
-"bhI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;name = "regular air scrubber";on = 1},/obj/structure/reagent_dispensers/peppertank{pixel_y = -28},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint)
-"bhJ" = (/obj/machinery/computer/med_data,/turf/open/floor/plasteel/darkblue,/area/bridge)
-"bhK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/computer/card,/turf/open/floor/plasteel/darkblue,/area/bridge)
-"bhL" = (/obj/machinery/computer/crew,/turf/open/floor/plasteel/darkblue,/area/bridge)
-"bhM" = (/obj/machinery/computer/station_alert,/turf/open/floor/plasteel/darkbrown,/area/bridge)
-"bhN" = (/obj/machinery/computer/monitor{name = "bridge power monitoring console"},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel/darkbrown,/area/bridge)
-"bhO" = (/obj/machinery/computer/atmos_alert,/turf/open/floor/plasteel/darkbrown,/area/bridge)
-"bhP" = (/obj/machinery/computer/security,/turf/open/floor/plasteel/darkred,/area/bridge)
-"bhQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/computer/secure_data,/turf/open/floor/plasteel/darkred,/area/bridge)
-"bhR" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/computer/prisoner,/turf/open/floor/plasteel/darkred,/area/bridge)
-"bhS" = (/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/obj/structure/reagent_dispensers/peppertank{pixel_y = -28},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint)
-"bhT" = (/obj/machinery/button/door{id = "bridge door east";name = "Starbord Bridge Door Control";pixel_x = 0;pixel_y = -24;req_access_txt = "19,1"},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint)
-"bhU" = (/obj/structure/chair/office/dark{dir = 4},/obj/machinery/firealarm{dir = 1;pixel_x = 0;pixel_y = -26},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint)
-"bhV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;name = "regular air scrubber";on = 1},/obj/machinery/computer/secure_data,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint)
-"bhW" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/item/hand_labeler_refill,/turf/open/floor/plasteel,/area/quartermaster/office)
-"bhX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel/brown{tag = "icon-brown (WEST)";icon_state = "brown";dir = 8},/area/quartermaster/office)
-"bhY" = (/obj/structure/cable{tag = "icon-1-4";icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bhZ" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;name = "regular air scrubber";on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bia" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/brown{tag = "icon-brown (EAST)";icon_state = "brown";dir = 4},/area/quartermaster/office)
-"bib" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/poddoor/shutters{id = "qm_warehouse";name = "warehouse shutters"},/obj/machinery/button/door{id = "qm_warehouse";name = "Warehouse Door Control";pixel_x = -1;pixel_y = 24;req_access_txt = "31"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/delivery,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"bic" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/brown{tag = "icon-brown (WEST)";icon_state = "brown";dir = 8},/area/quartermaster/sorting{name = "\improper Warehouse"})
-"bid" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/closet/crate{name = "Silver Crate"},/turf/open/floor/plasteel/delivery,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"bie" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/delivery,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"bif" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/closet/crate{icon_state = "crateopen";opened = 1},/turf/open/floor/plasteel/delivery,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"big" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/delivery,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"bih" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel/brown{tag = "icon-brown (EAST)";icon_state = "brown";dir = 4},/area/quartermaster/sorting{name = "\improper Warehouse"})
-"bii" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/brown{tag = "icon-brown (WEST)";icon_state = "brown";dir = 8},/area/quartermaster/storage)
-"bij" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bik" = (/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bil" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bim" = (/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bin" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel/brown{tag = "icon-brown (EAST)";icon_state = "brown";dir = 4},/area/quartermaster/storage)
-"bio" = (/turf/closed/wall/mineral/titanium,/area/shuttle/supply)
-"bip" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port)
-"biq" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4";tag = ""},/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"bir" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"bis" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/firealarm{dir = 1;pixel_x = 0;pixel_y = -26},/turf/open/floor/plasteel/whiteblue,/area/medical/medbay3)
-"bit" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/light,/turf/open/floor/plasteel/whiteblue,/area/medical/medbay3)
-"biu" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/turf/open/floor/plasteel/whiteblue,/area/medical/medbay3)
-"biv" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/whiteblue,/area/medical/medbay3)
-"biw" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel/whiteblue,/area/medical/medbay3)
-"bix" = (/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (EAST)";icon_state = "door_open";dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/whiteblue,/area/medical/sleeper{name = "Sleepers"})
-"biy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHWEST)";icon_state = "whiteblue";dir = 10},/area/medical/sleeper{name = "Sleepers"})
-"biz" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/whiteblue/side,/area/medical/sleeper{name = "Sleepers"})
-"biA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/whiteblue/side,/area/medical/sleeper{name = "Sleepers"})
-"biB" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHEAST)";icon_state = "whiteblue";dir = 6},/area/medical/sleeper{name = "Sleepers"})
-"biC" = (/obj/item/device/radio/intercom{broadcasting = 0;freerange = 0;frequency = 1485;listening = 1;name = "Station Intercom (Medbay)";pixel_x = 0;pixel_y = -30},/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (EAST)";icon_state = "door_open";dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/whiteblue,/area/medical/sleeper{name = "Sleepers"})
-"biD" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)";icon_state = "whiteblue";dir = 8},/area/medical/medbay{name = "Medbay Central"})
-"biE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"biF" = (/obj/machinery/power/apc{dir = 4;name = "Chemistry APC";pixel_x = 24;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/turf/open/floor/plasteel/whiteyellow/corner{tag = "icon-whiteyellowcorner (EAST)";icon_state = "whiteyellowcorner";dir = 4},/area/medical/chemistry)
-"biG" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/structure/closet/wardrobe/chemistry_white,/obj/item/weapon/storage/backpack/chemistry,/turf/open/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (SOUTHWEST)";icon_state = "whiteyellow";dir = 10},/area/medical/chemistry)
-"biH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table/glass,/obj/item/weapon/storage/box/beakers{pixel_x = 6;pixel_y = 6},/obj/item/weapon/storage/box/pillbottles{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/box/syringes,/turf/open/floor/plasteel/whiteyellow/side,/area/medical/chemistry)
-"biI" = (/obj/structure/table/glass,/obj/item/stack/cable_coil/orange,/obj/item/stack/cable_coil/orange,/obj/item/clothing/glasses/science,/obj/machinery/reagentgrinder,/turf/open/floor/plasteel/whiteyellow/side,/area/medical/chemistry)
-"biJ" = (/obj/structure/table/glass,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/screwdriver,/turf/open/floor/plasteel/whiteyellow/side,/area/medical/chemistry)
-"biK" = (/turf/open/floor/plasteel/whiteyellow/side,/area/medical/chemistry)
-"biL" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal/bin,/obj/machinery/requests_console{department = "Chemistry";departmentType = 2;pixel_x = 0;pixel_y = -30},/turf/open/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (SOUTHEAST)";icon_state = "whiteyellow";dir = 6},/area/medical/chemistry)
-"biM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/newscaster/security_unit,/turf/closed/wall/r_wall,/area/security/checkpoint)
-"biN" = (/obj/machinery/door/airlock/security{name = "Security Checkpoint";req_access = null;req_access_txt = "1"},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint)
-"biO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/security/checkpoint)
-"biP" = (/obj/machinery/light{dir = 8},/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/obj/machinery/status_display{dir = 8;pixel_x = -32},/turf/open/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTH)";icon_state = "darkblue";dir = 1},/area/bridge)
-"biQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTH)";icon_state = "darkblue";dir = 1},/area/bridge)
-"biR" = (/obj/structure/table,/obj/item/device/healthanalyzer,/turf/open/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTH)";icon_state = "darkblue";dir = 1},/area/bridge)
-"biS" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high,/turf/open/floor/plasteel/darkbrown/side{tag = "icon-darkbrown (NORTH)";icon_state = "darkbrown";dir = 1},/area/bridge)
-"biT" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plasteel/darkbrown/side{tag = "icon-darkbrown (NORTH)";icon_state = "darkbrown";dir = 1},/area/bridge)
-"biU" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/structure/table,/obj/item/weapon/storage/toolbox/emergency{pixel_x = -3;pixel_y = 3},/obj/item/weapon/storage/toolbox/mechanical,/obj/item/device/multitool,/turf/open/floor/plasteel/darkbrown/side{tag = "icon-darkbrown (NORTH)";icon_state = "darkbrown";dir = 1},/area/bridge)
-"biV" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/structure/table,/turf/open/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)";icon_state = "darkred";dir = 1},/area/bridge)
-"biW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/structure/chair/office/dark{dir = 1},/obj/machinery/button/door{dir = 8;id = "civ armory rack";name = "Civilian Armory Rack Shutters";pixel_x = -28;pixel_y = 0},/turf/open/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)";icon_state = "darkred";dir = 1},/area/bridge)
-"biX" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/obj/structure/table,/obj/item/weapon/storage/box/zipties,/obj/item/device/assembly/flash,/obj/machinery/status_display{dir = 4;pixel_x = 32},/turf/open/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)";icon_state = "darkred";dir = 1},/area/bridge)
-"biY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/security/checkpoint)
-"biZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/machinery/newscaster/security_unit,/turf/closed/wall/r_wall,/area/security/checkpoint)
-"bja" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/checkpoint)
-"bjb" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/hallway/primary/starboard)
-"bjc" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor/heavy,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/hallway/primary/starboard)
-"bjd" = (/obj/structure/table,/obj/machinery/computer/stockexchange,/turf/open/floor/plasteel,/area/quartermaster/office)
-"bje" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bjf" = (/obj/machinery/door/airlock/glass_mining{name = "Mailroom";req_access_txt = "0";req_one_access_txt = "48;50"},/turf/open/floor/plasteel/delivery,/area/quartermaster/office)
-"bjg" = (/turf/open/floor/plasteel/brown{tag = "icon-brown (WEST)";icon_state = "brown";dir = 8},/area/quartermaster/office)
-"bjh" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bji" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/quartermaster/office)
-"bjj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel/brown{tag = "icon-brown (EAST)";icon_state = "brown";dir = 4},/area/quartermaster/office)
-"bjk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"bjl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel/brown{tag = "icon-brown (WEST)";icon_state = "brown";dir = 8},/area/quartermaster/sorting{name = "\improper Warehouse"})
-"bjm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"bjn" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;name = "regular air vent";on = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"bjo" = (/turf/open/floor/plasteel,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"bjp" = (/obj/machinery/power/apc{dir = 4;name = "Warehouse APC";pixel_x = 27;pixel_y = 0},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/brown{tag = "icon-brown (EAST)";icon_state = "brown";dir = 4},/area/quartermaster/sorting{name = "\improper Warehouse"})
-"bjq" = (/turf/open/floor/plasteel/brown{tag = "icon-brown (WEST)";icon_state = "brown";dir = 8},/area/quartermaster/storage)
-"bjr" = (/obj/structure/closet/crate/internals,/turf/open/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage)
-"bjs" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage)
-"bjt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage)
-"bju" = (/turf/open/floor/plasteel/brown{tag = "icon-brown (EAST)";icon_state = "brown";dir = 4},/area/quartermaster/storage)
-"bjv" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/quartermaster/storage)
-"bjw" = (/turf/open/floor/mineral/titanium/blue,/area/shuttle/supply)
-"bjx" = (/turf/closed/wall/r_wall,/area/medical/medbay3)
-"bjy" = (/obj/machinery/door/firedoor/heavy,/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/door/poddoor/shutters{id = "medsec";name = "Secure Medbay Storage"},/turf/open/floor/plating{dir = 1;icon_state = "delivery"},/area/medical/medbay3)
-"bjz" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/shutters{id = "medsec";name = "Secure Medbay Storage"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{dir = 1;icon_state = "delivery"},/area/medical/medbay3)
-"bjA" = (/obj/machinery/button/door{id = "medsec";name = "Secure Medbay Storage";req_access_txt = "5"},/turf/closed/wall/r_wall,/area/medical/medbay3)
-"bjB" = (/turf/closed/wall/r_wall,/area/medical/medbay2{name = "Medbay Storage"})
-"bjC" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/medical/medbay2{name = "Medbay Storage"})
-"bjD" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/medical/medbay2{name = "Medbay Storage"})
-"bjE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/glass_medical{id_tag = null;name = "Medbay Storage";req_access_txt = "45"},/turf/open/floor/plasteel/whiteblue,/area/medical/medbay2{name = "Medbay Storage"})
-"bjF" = (/turf/closed/wall,/area/medical/medbay2{name = "Medbay Storage"})
-"bjG" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)";icon_state = "whiteblue";dir = 8},/area/medical/medbay{name = "Medbay Central"})
-"bjH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/whiteblue/corner,/area/medical/medbay{name = "Medbay Central"})
-"bjI" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/medical/chemistry)
-"bjJ" = (/obj/machinery/smartfridge/chemistry/preloaded,/turf/closed/wall,/area/medical/chemistry)
-"bjK" = (/obj/structure/table/reinforced,/obj/machinery/door/window/southleft{dir = 1;name = "Chemistry Desk";req_access_txt = "33"},/obj/machinery/door/firedoor/border_only,/turf/open/floor/plasteel/orange,/area/medical/chemistry)
-"bjL" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/medical/chemistry)
-"bjM" = (/obj/machinery/door/airlock/glass_command{name = "Bridge Access";req_access_txt = "0";req_one_access_txt = "19; 1"},/turf/open/floor/plasteel/darkblue,/area/bridge)
-"bjN" = (/obj/machinery/door/poddoor/preopen{id = "bridge blast";layer = 2.9;name = "bridge blast door"},/turf/open/floor/plasteel/darkblue,/area/bridge)
-"bjO" = (/turf/open/floor/plasteel/darkblue,/area/bridge)
-"bjP" = (/obj/structure/extinguisher_cabinet{pixel_y = 28},/obj/machinery/door/poddoor/preopen{id = "bridge blast";layer = 2.9;name = "bridge blast door"},/turf/open/floor/plasteel/darkblue,/area/bridge)
-"bjQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/darkblue,/area/bridge)
-"bjR" = (/obj/machinery/power/apc{dir = 1;name = "Security Checkpoint APC";pixel_x = 0;pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel/darkblue,/area/security/checkpoint)
-"bjS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHEAST)";icon_state = "camera";dir = 6},/turf/open/floor/plasteel/darkblue,/area/bridge)
-"bjT" = (/obj/structure/table,/obj/machinery/firealarm{dir = 8;pixel_x = -24;pixel_y = 0},/obj/item/weapon/storage/fancy/donut_box,/turf/open/floor/plasteel/black,/area/bridge)
-"bjU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/bridge)
-"bjV" = (/turf/open/floor/plasteel/black,/area/bridge)
-"bjW" = (/obj/item/device/radio/beacon,/turf/open/floor/plasteel/black,/area/bridge)
-"bjX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/black,/area/bridge)
-"bjY" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/table,/obj/machinery/firealarm{dir = 4;pixel_x = 28;pixel_y = 0},/obj/machinery/recharger,/turf/open/floor/plasteel/black,/area/bridge)
-"bjZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHEAST)";icon_state = "camera";dir = 6},/turf/open/floor/plasteel/darkblue,/area/bridge)
-"bka" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/darkblue,/area/bridge)
-"bkb" = (/obj/machinery/door/airlock/glass_command{name = "Bridge Access";req_access_txt = "0";req_one_access_txt = "19; 1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/darkblue,/area/bridge)
-"bkc" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bkd" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;name = "regular air scrubber";on = 1;scrub_Toxins = 0},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bke" = (/obj/machinery/light,/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/plasteel,/area/quartermaster/office)
-"bkf" = (/turf/open/floor/plasteel{icon_state = "bot"},/area/quartermaster/office)
-"bkg" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/quartermaster/office)
-"bkh" = (/turf/open/floor/plasteel/brown{tag = "icon-brown (SOUTHWEST)";icon_state = "brown";dir = 10},/area/quartermaster/office)
-"bki" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel/brown,/area/quartermaster/office)
-"bkj" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/brown,/area/quartermaster/office)
-"bkk" = (/turf/open/floor/plasteel/brown{tag = "icon-brown (SOUTHEAST)";icon_state = "brown";dir = 6},/area/quartermaster/office)
-"bkl" = (/obj/structure/closet/crate{icon_state = "crateopen";opened = 1},/turf/open/floor/plasteel/brown{tag = "icon-brown (SOUTHWEST)";icon_state = "brown";dir = 10},/area/quartermaster/sorting{name = "\improper Warehouse"})
-"bkm" = (/obj/structure/closet/crate,/turf/open/floor/plasteel/brown,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"bkn" = (/turf/open/floor/plasteel/brown,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"bko" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet/crate,/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel/brown{tag = "icon-brown (SOUTHEAST)";icon_state = "brown";dir = 6},/area/quartermaster/sorting{name = "\improper Warehouse"})
-"bkp" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/start{name = "Cargo Technician"},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bkq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bkr" = (/obj/effect/landmark/start{name = "Cargo Technician"},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bks" = (/turf/open/floor/plasteel/loadingarea{baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;dir = 8},/area/quartermaster/storage)
-"bkt" = (/turf/open/floor/plasteel/delivery,/area/quartermaster/storage)
-"bku" = (/obj/machinery/conveyor{dir = 4;id = "QMLoad2"},/turf/open/floor/plasteel/delivery,/area/quartermaster/storage)
-"bkv" = (/obj/machinery/conveyor{dir = 4;id = "QMLoad2"},/obj/machinery/door/poddoor{id = "QMLoaddoor2";name = "supply dock loading door"},/turf/open/floor/plating,/area/quartermaster/storage)
-"bkw" = (/obj/machinery/conveyor{dir = 4;id = "QMLoad2"},/turf/open/floor/plating,/area/quartermaster/storage)
-"bkx" = (/obj/machinery/conveyor{dir = 4;id = "QMLoad2"},/obj/structure/plasticflaps,/turf/open/floor/plating,/area/quartermaster/storage)
-"bky" = (/obj/machinery/conveyor{dir = 4;id = "QMLoad2"},/obj/machinery/door/poddoor{id = "QMLoaddoor2";name = "supply dock loading door"},/turf/open/floor/plating,/area/shuttle/supply)
-"bkz" = (/turf/closed/wall/r_wall,/area/security/transfer)
-"bkA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/machinery/light_switch{pixel_y = 24},/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"bkB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/table,/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/glass/bottle/salglu_solution,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"bkC" = (/obj/structure/bed,/obj/item/weapon/bedsheet/medical,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"bkD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/medical/patients_rooms)
-"bkE" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"bkF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"bkG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/medbay3)
-"bkH" = (/obj/structure/cable{tag = "icon-0-4";icon_state = "0-4"},/obj/machinery/power/apc{dir = 8;name = "Medbay Port APC";pixel_x = -24;pixel_y = 0},/obj/item/weapon/defibrillator/loaded,/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating{icon_state = "floorgrime"},/area/medical/medbay3)
-"bkI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/turf/open/floor/plating{icon_state = "floorgrime"},/area/medical/medbay3)
-"bkJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating{icon_state = "floorgrime"},/area/medical/medbay3)
-"bkK" = (/obj/structure/rack,/obj/item/weapon/caution,/obj/item/weapon/caution,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating{icon_state = "floorgrime"},/area/medical/medbay3)
-"bkL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/medbay2{name = "Medbay Storage"})
-"bkM" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/obj/structure/closet/secure_closet/medical1,/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTHWEST)";icon_state = "whiteblue";dir = 9},/area/medical/medbay2{name = "Medbay Storage"})
-"bkN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)";icon_state = "whiteblue";dir = 1},/area/medical/medbay2{name = "Medbay Storage"})
-"bkO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)";icon_state = "whiteblue";dir = 1},/area/medical/medbay2{name = "Medbay Storage"})
-"bkP" = (/obj/structure/closet/l3closet,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTHEAST)";icon_state = "whiteblue";dir = 5},/area/medical/medbay2{name = "Medbay Storage"})
-"bkQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/medical/medbay2{name = "Medbay Storage"})
-"bkR" = (/obj/structure/bed/roller,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)";icon_state = "whiteblue";dir = 8},/area/medical/medbay{name = "Medbay Central"})
-"bkS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"bkT" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plasteel/whiteblue/corner{tag = "icon-whitebluecorner (EAST)";icon_state = "whitebluecorner";dir = 4},/area/medical/medbay{name = "Medbay Central"})
-"bkU" = (/obj/structure/extinguisher_cabinet{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)";icon_state = "whiteblue";dir = 1},/area/medical/medbay{name = "Medbay Central"})
-"bkV" = (/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer.";id = "MedbayFoyer";name = "Medbay Exit Button";normaldoorcontrol = 1;pixel_x = 0;pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTHEAST)";icon_state = "whiteblue";dir = 5},/area/medical/medbay{name = "Medbay Central"})
-"bkW" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer";name = "Medbay";req_access_txt = "5"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/whiteblue,/area/medical/medbay{name = "Medbay Central"})
-"bkX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTHWEST)";icon_state = "whiteblue";dir = 9},/area/medical/medbay)
-"bkY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)";icon_state = "whiteblue";dir = 1},/area/medical/medbay)
-"bkZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)";icon_state = "whiteblue";dir = 1},/area/medical/medbay)
-"bla" = (/obj/structure/disposalpipe/junction{dir = 4;icon_state = "pipe-j2";tag = "icon-pipe-j1 (WEST)"},/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/regular,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTHEAST)";icon_state = "whiteblue";dir = 5},/area/medical/medbay)
-"blb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/medical/medbay)
-"blc" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/autoname{tag = "icon-camera (EAST)";icon_state = "camera";dir = 4},/turf/open/floor/plasteel/blue/side{tag = "icon-blue (WEST)";icon_state = "blue";dir = 8},/area/hallway/primary/port)
-"bld" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/junction{dir = 1;icon_state = "pipe-j2";tag = "icon-pipe-j1 (WEST)"},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"ble" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/blue/side{tag = "icon-blue (EAST)";icon_state = "blue";dir = 4},/area/hallway/primary/port)
-"blf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/glass_command{name = "Bridge Access";req_access_txt = "0";req_one_access_txt = "19; 1"},/turf/open/floor/plasteel/darkblue,/area/bridge)
-"blg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/poddoor/preopen{id = "bridge blast";layer = 2.9;name = "bridge blast door"},/turf/open/floor/plasteel/darkblue,/area/bridge)
-"blh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/glass_command{name = "Bridge Access";req_access_txt = "0";req_one_access_txt = "19; 1"},/turf/open/floor/plasteel/darkblue,/area/bridge)
-"bli" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/darkblue,/area/bridge)
-"blj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light,/turf/open/floor/plasteel/darkblue,/area/bridge)
-"blk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/darkblue,/area/bridge)
-"bll" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = ""},/turf/open/floor/plasteel/darkblue,/area/bridge)
-"blm" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/obj/machinery/light,/turf/open/floor/plasteel/darkblue,/area/bridge)
-"bln" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/darkblue,/area/bridge)
-"blo" = (/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plasteel/darkblue,/area/bridge)
-"blp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/glass_command{id_tag = "bridge door west";name = "Bridge Port";req_access_txt = "19"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plasteel/darkblue,/area/bridge)
-"blq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plasteel/black,/area/bridge)
-"blr" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plasteel/black,/area/bridge)
-"bls" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plasteel/black,/area/bridge)
-"blt" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/structure/table/reinforced,/obj/machinery/keycard_auth{pixel_x = -6},/obj/machinery/button/door{id = "bridge blast";name = "Bridge Blast Door Control";pixel_x = 6;pixel_y = 0;req_access_txt = "19"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTHWEST)";icon_state = "darkblue";dir = 9},/area/bridge)
-"blu" = (/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/machinery/computer/communications,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTH)";icon_state = "darkblue";dir = 1},/area/bridge)
-"blv" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/structure/table/reinforced,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTHEAST)";icon_state = "darkblue";dir = 5},/area/bridge)
-"blw" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plasteel/black,/area/bridge)
-"blx" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/black,/area/bridge)
-"bly" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/bridge)
-"blz" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/glass_command{id_tag = "bridge door east";name = "Bridge Starbord";req_access_txt = "19"},/turf/open/floor/plasteel/darkblue,/area/bridge)
-"blA" = (/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/darkblue,/area/bridge)
-"blB" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/darkblue,/area/bridge)
-"blC" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/machinery/light,/turf/open/floor/plasteel/darkblue,/area/bridge)
-"blD" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/darkblue,/area/bridge)
-"blE" = (/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/darkblue,/area/bridge)
-"blF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/darkblue,/area/bridge)
-"blG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/darkblue,/area/bridge)
-"blH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/poddoor/preopen{id = "bridge blast";layer = 2.9;name = "bridge blast door"},/turf/open/floor/plasteel/darkblue,/area/bridge)
-"blI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light,/turf/open/floor/plasteel/darkblue,/area/bridge)
-"blJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/glass_command{name = "Bridge Access";req_access_txt = "0";req_one_access_txt = "19; 1"},/turf/open/floor/plasteel/darkblue,/area/bridge)
-"blK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/glass_command{name = "Bridge Access";req_access_txt = "0";req_one_access_txt = "19; 1"},/turf/open/floor/plasteel/darkblue,/area/bridge)
-"blL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"blM" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"blN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"blO" = (/obj/machinery/mineral/ore_redemption,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/quartermaster/office)
-"blP" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/glass_mining{name = "Cargo Office";req_access_txt = "0";req_one_access_txt = "48;50"},/turf/open/floor/plasteel/delivery,/area/quartermaster/office)
-"blQ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"blR" = (/mob/living/simple_animal/sloth,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"blS" = (/obj/machinery/conveyor_switch/oneway{id = "QMLoad2"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"blT" = (/obj/machinery/door/airlock/glass_mining{name = "Cargo Bay";req_access_txt = "31"},/turf/open/floor/noslip,/area/quartermaster/storage)
-"blU" = (/turf/open/floor/noslip,/area/quartermaster/storage)
-"blV" = (/obj/machinery/light,/turf/open/floor/noslip,/area/quartermaster/storage)
-"blW" = (/obj/machinery/door/airlock/external{name = "Supply Dock Airlock";req_access_txt = "31"},/turf/open/floor/noslip,/area/quartermaster/storage)
-"blX" = (/obj/machinery/door/airlock/titanium{name = "Supply Shuttle Airlock";req_access_txt = "31"},/turf/open/floor/plating,/area/shuttle/supply)
-"blY" = (/turf/open/floor/plating{icon_state = "floorgrime"},/area/security/transfer)
-"blZ" = (/obj/machinery/light{dir = 1},/turf/open/floor/plating{icon_state = "floorgrime"},/area/security/transfer)
-"bma" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8;initialize_directions = 11},/obj/machinery/iv_drip,/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"bmb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"bmc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/medical/patients_rooms)
-"bmd" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"bme" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/medbay3)
-"bmf" = (/obj/machinery/light_switch{dir = 8;pixel_x = -24},/obj/structure/rack,/obj/item/weapon/reagent_containers/glass/bottle/charcoal,/obj/item/weapon/reagent_containers/glass/bottle/charcoal,/obj/item/weapon/reagent_containers/glass/bottle/potass_iodide,/obj/item/weapon/reagent_containers/glass/bottle/morphine,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "floorgrime"},/area/medical/medbay3)
-"bmg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "floorgrime"},/area/medical/medbay3)
-"bmh" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating{icon_state = "floorgrime"},/area/medical/medbay3)
-"bmi" = (/obj/structure/mopbucket,/obj/item/weapon/mop,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "floorgrime"},/area/medical/medbay3)
-"bmj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/medbay2{name = "Medbay Storage"})
-"bmk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet/secure_closet/medical3,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)";icon_state = "whiteblue";dir = 8},/area/medical/medbay2{name = "Medbay Storage"})
-"bml" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay2{name = "Medbay Storage"})
-"bmm" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay2{name = "Medbay Storage"})
-"bmn" = (/obj/structure/closet/wardrobe/white/medical,/obj/item/clothing/suit/hooded/wintercoat/medical,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)";icon_state = "whiteblue";dir = 4},/area/medical/medbay2{name = "Medbay Storage"})
-"bmo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/medical/medbay2{name = "Medbay Storage"})
-"bmp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/bed/roller,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHWEST)";icon_state = "whiteblue";dir = 10},/area/medical/medbay{name = "Medbay Central"})
-"bmq" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/whiteblue/side,/area/medical/medbay{name = "Medbay Central"})
-"bmr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue/side,/area/medical/medbay{name = "Medbay Central"})
-"bms" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/whiteblue/side,/area/medical/medbay{name = "Medbay Central"})
-"bmt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHEAST)";icon_state = "whiteblue";dir = 6},/area/medical/medbay{name = "Medbay Central"})
-"bmu" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer";name = "Medbay";req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue,/area/medical/medbay{name = "Medbay Central"})
-"bmv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)";icon_state = "whiteblue";dir = 8},/area/medical/medbay)
-"bmw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/medical/medbay)
-"bmx" = (/turf/open/floor/plasteel/white,/area/medical/medbay)
-"bmy" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel/white,/area/medical/medbay)
-"bmz" = (/obj/structure/table/glass,/obj/item/device/healthanalyzer,/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)";icon_state = "whiteblue";dir = 4},/area/medical/medbay)
-"bmA" = (/turf/closed/wall,/area/medical/medbay)
-"bmB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel/blue/side{tag = "icon-blue (WEST)";icon_state = "blue";dir = 8},/area/hallway/primary/port)
-"bmC" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/bridge)
-"bmD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/bridge)
-"bmE" = (/obj/machinery/door/airlock/command{name = "Conference Room";req_access = null;req_access_txt = "19"},/turf/open/floor/wood,/area/bridge/meeting_room)
-"bmF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/bridge)
-"bmG" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/hatch{name = "Bridge Maintenance Access";req_access_txt = "0";req_one_access_txt = "19; 1"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"bmH" = (/obj/structure/table/glass,/obj/item/device/aicard,/obj/machinery/airalarm{dir = 4;locked = 0;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel/darkpurple,/area/bridge)
-"bmI" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/darkpurple/side{tag = "icon-darkpurple (WEST)";icon_state = "darkpurple";dir = 8},/area/bridge)
-"bmJ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;name = "regular air scrubber";on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/bridge)
-"bmK" = (/obj/machinery/door/window/brigdoor{dir = 8;name = "Command Desk";req_access_txt = "19"},/turf/open/floor/plasteel/darkblue/side{tag = "icon-darkblue (WEST)";icon_state = "darkblue";dir = 8},/area/bridge)
-"bmL" = (/obj/structure/chair/comfy/brown{dir = 1},/turf/open/floor/plasteel/black,/area/bridge)
-"bmM" = (/obj/machinery/door/window/brigdoor{dir = 4;name = "Command Desk";req_access_txt = "19"},/obj/machinery/computer/security/telescreen{desc = "Used for watching output from station security cameras.";name = "Security Camera Monitor";network = list("SS13");pixel_x = 0;pixel_y = 30},/turf/open/floor/plasteel/darkblue/side{tag = "icon-darkblue (EAST)";icon_state = "darkblue";dir = 4},/area/bridge)
-"bmN" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plasteel/black,/area/bridge)
-"bmO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/darkgreen/side{tag = "icon-darkgreen (EAST)";icon_state = "darkgreen";dir = 4},/area/bridge)
-"bmP" = (/obj/machinery/computer/security/mining,/obj/machinery/requests_console{announcementConsole = 1;department = "Bridge";departmentType = 5;name = "Bridge RC";pixel_x = 32;pixel_y = 0},/turf/open/floor/plasteel/darkgreen,/area/bridge)
-"bmQ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/command{name = "Captain's Office";req_access = null;req_access_txt = "20"},/turf/open/floor/wood,/area/crew_quarters/captain)
-"bmR" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 1;icon_state = "pipe-j1";tag = "icon-pipe-j1 (EAST)"},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bmS" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/quartermaster/office)
-"bmT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/chair,/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTHWEST)";icon_state = "brown";dir = 9},/area/quartermaster/office)
-"bmU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/chair,/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTH)";icon_state = "brown";dir = 1},/area/quartermaster/office)
-"bmV" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/brown/corner{dir = 1},/area/quartermaster/office)
-"bmW" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/loadingarea{baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface},/area/quartermaster/office)
-"bmX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom";pixel_x = 0;pixel_y = 24},/turf/open/floor/plasteel/brown/corner{dir = 4},/area/quartermaster/office)
-"bmY" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTH)";icon_state = "brown";dir = 1},/area/quartermaster/office)
-"bmZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/computer/cargo/request,/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTHEAST)";icon_state = "brown";dir = 5},/area/quartermaster/office)
-"bna" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/computer/cargo,/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTHWEST)";icon_state = "brown";dir = 9},/area/quartermaster/office)
-"bnb" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTH)";icon_state = "brown";dir = 1},/area/quartermaster/office)
-"bnc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/filingcabinet,/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTH)";icon_state = "brown";dir = 1},/area/quartermaster/office)
-"bnd" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/bin,/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTH)";icon_state = "brown";dir = 1},/area/quartermaster/office)
-"bne" = (/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/obj/structure/table,/obj/item/weapon/clipboard,/obj/item/weapon/folder/yellow,/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTH)";icon_state = "brown";dir = 1},/area/quartermaster/office)
-"bnf" = (/obj/structure/table,/obj/machinery/computer/stockexchange,/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTH)";icon_state = "brown";dir = 1},/area/quartermaster/office)
-"bng" = (/obj/machinery/autolathe,/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTH)";icon_state = "brown";dir = 1},/area/quartermaster/office)
-"bnh" = (/obj/structure/table,/obj/item/weapon/paper_bin,/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTH)";icon_state = "brown";dir = 1},/area/quartermaster/office)
-"bni" = (/obj/structure/table,/obj/item/device/multitool,/obj/item/weapon/screwdriver,/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTH)";icon_state = "brown";dir = 1},/area/quartermaster/office)
-"bnj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table,/obj/item/weapon/crowbar,/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTHEAST)";icon_state = "brown";dir = 5},/area/quartermaster/office)
-"bnk" = (/obj/machinery/status_display{density = 0;name = "cargo display";pixel_x = 0;pixel_y = 0;supply_display = 1},/turf/closed/wall,/area/quartermaster/office)
-"bnl" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bnm" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bnn" = (/obj/machinery/computer/cargo,/obj/machinery/button/door{dir = 2;id = "QMLoaddoor2";name = "Loading Doors";pixel_x = 24;pixel_y = 8},/obj/machinery/button/door{id = "QMLoaddoor";name = "Loading Doors";pixel_x = 24;pixel_y = -8},/turf/open/floor/plasteel/brown{tag = "icon-brown (EAST)";icon_state = "brown";dir = 4},/area/quartermaster/storage)
-"bno" = (/obj/machinery/button/door{id = "QMLoaddoor";name = "Loading Doors";pixel_x = -24;pixel_y = -8},/obj/machinery/button/door{dir = 2;id = "QMLoaddoor2";name = "Loading Doors";pixel_x = -24;pixel_y = 8},/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/mineral/titanium/blue,/area/shuttle/supply)
-"bnp" = (/obj/machinery/power/emitter{anchored = 1;dir = 4;req_access = list(11,2);state = 2},/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/turf/open/floor/plating{dir = 1;icon_state = "delivery"},/area/security/transfer)
-"bnq" = (/obj/structure/reflector/box{tag = "icon-reflector_box (EAST)";icon_state = "reflector_box";dir = 4},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/transfer)
-"bnr" = (/turf/open/floor/plating{tag = "icon-delivery";icon_state = "delivery";dir = 2},/area/security/transfer)
-"bns" = (/obj/structure/reflector/box{tag = "icon-reflector_box (WEST)";icon_state = "reflector_box";dir = 8},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/transfer)
-"bnt" = (/obj/machinery/power/emitter{anchored = 1;dir = 8;req_access = list(11,2);state = 2},/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/turf/open/floor/plating{dir = 1;icon_state = "delivery"},/area/security/transfer)
-"bnu" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Patient Room 3";req_access_txt = "5"},/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"bnv" = (/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/obj/structure/rack,/obj/item/weapon/reagent_containers/glass/bottle/histamine,/obj/item/weapon/reagent_containers/glass/bottle/histamine,/obj/item/weapon/reagent_containers/glass/bottle/formaldehyde,/obj/item/weapon/reagent_containers/glass/bottle/toxin,/turf/open/floor/plating{icon_state = "floorgrime"},/area/medical/medbay3)
-"bnw" = (/turf/open/floor/plating{icon_state = "floorgrime"},/area/medical/medbay3)
-"bnx" = (/obj/structure/rack,/obj/item/weapon/cartridge/medical,/obj/item/weapon/cartridge/medical,/obj/item/weapon/cartridge/chemistry,/obj/item/weapon/cartridge/chemistry,/obj/structure/extinguisher_cabinet{pixel_x = 24},/turf/open/floor/plating{icon_state = "floorgrime"},/area/medical/medbay3)
-"bny" = (/obj/item/weapon/storage/firstaid/regular{pixel_x = 3;pixel_y = -3},/obj/item/weapon/storage/firstaid/fire{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/fire{pixel_x = -3;pixel_y = -3},/obj/structure/table/glass,/obj/machinery/light_switch{dir = 8;pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)";icon_state = "whiteblue";dir = 8},/area/medical/medbay2{name = "Medbay Storage"})
-"bnz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay2{name = "Medbay Storage"})
-"bnA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;name = "regular air scrubber";on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/medbay2{name = "Medbay Storage"})
-"bnB" = (/obj/effect/landmark/start{name = "Medical Doctor"},/turf/open/floor/plasteel/white,/area/medical/medbay2{name = "Medbay Storage"})
-"bnC" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/structure/closet/crate/freezer,/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/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OPlus,/obj/item/weapon/reagent_containers/blood/OPlus,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty,/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)";icon_state = "whiteblue";dir = 4},/area/medical/medbay2{name = "Medbay Storage"})
-"bnD" = (/turf/closed/wall,/area/security/checkpoint/medical)
-"bnE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/newscaster/security_unit,/turf/closed/wall,/area/security/checkpoint/medical)
-"bnF" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/glass_security{name = "Medbay Security Post";req_access_txt = "63"},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/medical)
-"bnG" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/security/checkpoint/medical)
-"bnH" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/security/checkpoint/medical)
-"bnI" = (/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)";icon_state = "whiteblue";dir = 8},/area/medical/medbay)
-"bnJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay)
-"bnK" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)";icon_state = "whiteblue";dir = 4},/area/medical/medbay)
-"bnL" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/bridge/meeting_room)
-"bnM" = (/obj/structure/chair/comfy/black,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/bridge/meeting_room)
-"bnN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/chair/comfy/black,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/bridge/meeting_room)
-"bnO" = (/obj/machinery/light_switch{pixel_y = 24},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/bridge/meeting_room)
-"bnP" = (/turf/open/floor/wood,/area/bridge/meeting_room)
-"bnQ" = (/obj/machinery/vending/coffee,/turf/open/floor/wood,/area/bridge/meeting_room)
-"bnR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/wood,/area/bridge/meeting_room)
-"bnS" = (/turf/closed/wall,/area/bridge/meeting_room)
-"bnT" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"bnU" = (/obj/machinery/computer/teleporter,/obj/item/device/radio/intercom{dir = 8;pixel_x = -28},/turf/open/floor/plasteel/darkpurple,/area/bridge)
-"bnV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light,/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/plasteel/darkpurple/side{tag = "icon-darkpurple (WEST)";icon_state = "darkpurple";dir = 8},/area/bridge)
-"bnW" = (/obj/structure/fireaxecabinet{pixel_y = -32},/turf/open/floor/plasteel/black,/area/bridge)
-"bnX" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHWEST)";icon_state = "camera";dir = 10},/turf/open/floor/plasteel/darkblue/side{tag = "icon-darkblue (WEST)";icon_state = "darkblue";dir = 8},/area/bridge)
-"bnY" = (/obj/machinery/holopad,/turf/open/floor/plasteel/black,/area/bridge)
-"bnZ" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/machinery/turretid{control_area = "AI Upload Chamber";name = "AI Upload turret control";pixel_y = -25},/turf/open/floor/plasteel/darkblue/side{tag = "icon-darkblue (EAST)";icon_state = "darkblue";dir = 4},/area/bridge)
-"boa" = (/obj/structure/cable,/obj/machinery/power/apc{cell_type = 5000;dir = 2;name = "Bridge APC";pixel_y = -24},/turf/open/floor/plasteel/black,/area/bridge)
-"bob" = (/obj/machinery/light,/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plasteel/darkgreen/side{tag = "icon-darkgreen (EAST)";icon_state = "darkgreen";dir = 4},/area/bridge)
-"boc" = (/obj/machinery/computer/cargo/request,/turf/open/floor/plasteel/darkgreen,/area/bridge)
-"bod" = (/turf/closed/wall/r_wall,/area/crew_quarters/captain)
-"boe" = (/obj/structure/displaycase/captain,/turf/open/floor/wood,/area/crew_quarters/captain)
-"bof" = (/obj/machinery/light_switch{pixel_y = 24},/obj/structure/table/wood,/obj/item/weapon/storage/fancy/cigarettes/cigars,/obj/item/weapon/coin/plasma{pixel_x = 3;pixel_y = 2},/obj/item/weapon/lighter{pixel_x = -6},/turf/open/floor/wood,/area/crew_quarters/captain)
-"bog" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/captain)
-"boh" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/computer/card,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/wood,/area/crew_quarters/captain)
-"boi" = (/obj/machinery/power/apc{cell_type = 2500;dir = 1;name = "Captain's Office APC";pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/wood,/area/crew_quarters/captain)
-"boj" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/obj/item/weapon/stamp/captain,/obj/machinery/newscaster/security_unit{pixel_y = 32},/obj/item/weapon/melee/chainofcommand,/obj/item/device/radio/intercom{desc = "Talk smack through this.";dir = 4;pixel_x = 28;syndie = 1},/turf/open/floor/wood,/area/crew_quarters/captain)
-"bok" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bol" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTHWEST)";icon_state = "brown";dir = 9},/area/quartermaster/office)
-"bom" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/brown/corner{tag = "icon-browncorner (NORTH)";icon_state = "browncorner";dir = 1},/area/quartermaster/office)
-"bon" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (WEST)";icon_state = "vent_map";dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office)
-"boo" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/quartermaster/office)
-"bop" = (/turf/open/floor/plasteel/brown{tag = "icon-brown (EAST)";icon_state = "brown";dir = 4},/area/quartermaster/office)
-"boq" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{dir = 4;name = "Cargo Desk";req_access_txt = "50"},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bor" = (/obj/structure/chair/office/light{dir = 8},/obj/effect/landmark/start{name = "Cargo Technician"},/turf/open/floor/plasteel/brown{tag = "icon-brown (WEST)";icon_state = "brown";dir = 8},/area/quartermaster/office)
-"bos" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bot" = (/obj/effect/landmark/start{name = "Cargo Technician"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bou" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bov" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/brown{tag = "icon-brown (EAST)";icon_state = "brown";dir = 4},/area/quartermaster/office)
-"bow" = (/obj/machinery/door/airlock/glass_mining{glass = 0;name = "Cargo Bay";opacity = 1;req_access_txt = "0";req_one_access_txt = "48;50"},/turf/open/floor/plasteel/delivery,/area/quartermaster/office)
-"box" = (/obj/machinery/conveyor_switch/oneway{convdir = -1;id = "QMLoad"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"boy" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 32;pixel_y = 0},/turf/open/floor/plasteel/brown{tag = "icon-brown (EAST)";icon_state = "brown";dir = 4},/area/quartermaster/storage)
-"boz" = (/obj/machinery/light{dir = 1},/turf/open/floor/noslip,/area/quartermaster/storage)
-"boA" = (/obj/machinery/door/airlock/titanium{name = "Supply Shuttle Airlock";req_access_txt = "31"},/obj/docking_port/mobile/supply{dir = 4;dwidth = 5;height = 7;port_angle = -90;width = 12},/obj/docking_port/stationary{dir = 4;dwidth = 5;height = 7;id = "supply_home";name = "Cargo Bay";width = 12},/turf/open/floor/plating,/area/shuttle/supply)
-"boB" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{icon_state = "closed";id = "exc";name = "Execution Chamber"},/turf/open/floor/plating{tag = "icon-warnplate (NORTH)";icon_state = "warnplate";dir = 1},/area/security/transfer)
-"boC" = (/obj/machinery/door/poddoor/preopen{icon_state = "closed";id = "exc";name = "Execution Chamber"},/turf/open/floor/plating{icon_state = "warnplate";dir = 5},/area/security/transfer)
-"boD" = (/obj/structure/chair/office/dark,/turf/open/floor/plating{icon_state = "bot"},/area/security/transfer)
-"boE" = (/obj/machinery/door/poddoor/preopen{icon_state = "closed";id = "exc";name = "Execution Chamber"},/turf/open/floor/plating{icon_state = "warnplate";dir = 9},/area/security/transfer)
-"boF" = (/obj/machinery/camera/autoname{tag = "icon-camera (EAST)";icon_state = "camera";dir = 4},/mob/living/simple_animal/bot/cleanbot{name = "Scrubs, MD";on = 0},/turf/open/floor/plating{icon_state = "floorgrime"},/area/medical/medbay3)
-"boG" = (/mob/living/simple_animal/bot/medbot{auto_patrol = 1;desc = "A little medical robot, officially part of the NanoTrasen medical inspectorate. He looks somewhat underwhelmed.";name = "Inspector Johnson"},/turf/open/floor/plating{icon_state = "floorgrime"},/area/medical/medbay3)
-"boH" = (/obj/structure/rack,/obj/item/weapon/gun/syringe,/obj/item/weapon/gun/syringe,/obj/item/weapon/storage/box/syringes,/obj/item/weapon/storage/box/syringes,/turf/open/floor/plating{icon_state = "floorgrime"},/area/medical/medbay3)
-"boI" = (/obj/item/weapon/storage/firstaid/regular{pixel_x = 3;pixel_y = -3},/obj/item/weapon/storage/firstaid/brute{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/firstaid/brute,/obj/item/weapon/storage/firstaid/brute{pixel_x = -3;pixel_y = -3},/obj/machinery/power/apc{dir = 2;name = "Medbay Storage APC";pixel_y = -24},/obj/structure/table/glass,/obj/machinery/firealarm{dir = 8;pixel_x = -24;pixel_y = 0},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)";icon_state = "whiteblue";dir = 8},/area/medical/medbay2{name = "Medbay Storage"})
-"boJ" = (/turf/open/floor/plasteel/white,/area/medical/medbay2{name = "Medbay Storage"})
-"boK" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/turf/open/floor/plasteel/white,/area/medical/medbay2{name = "Medbay Storage"})
-"boL" = (/obj/structure/table,/obj/item/weapon/storage/box/medipens{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/box/syringes,/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)";icon_state = "whiteblue";dir = 4},/area/medical/medbay2{name = "Medbay Storage"})
-"boM" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/checkpoint/medical)
-"boN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/filingcabinet/security,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/medical)
-"boO" = (/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer.";id = "MedbayFoyer";name = "Medbay Doors Control";normaldoorcontrol = 1;pixel_x = 24;pixel_y = 24},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/medical)
-"boP" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/machinery/light_switch{pixel_y = 24},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/medical)
-"boQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/computer/secure_data,/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHEAST)";icon_state = "camera";dir = 6},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/medical)
-"boR" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/pen/red,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/medical)
-"boS" = (/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/structure/filingcabinet/medical,/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (NORTH)";icon_state = "door_open";dir = 1},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)";icon_state = "whiteblue";dir = 8},/area/medical/medbay)
-"boT" = (/obj/machinery/door/window/northleft{name = "Medbay Reception";req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (NORTH)";icon_state = "door_open";dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay)
-"boU" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (EAST)";icon_state = "door_open";dir = 4},/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (NORTH)";icon_state = "door_open";dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay)
-"boV" = (/obj/structure/chair{dir = 8},/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)";icon_state = "whiteblue";dir = 4},/area/medical/medbay)
-"boW" = (/obj/structure/sign/bluecross,/turf/closed/wall,/area/medical/medbay)
-"boX" = (/obj/structure/flora/grass/green,/mob/living/simple_animal/chicken,/turf/open/floor/grass,/area/hallway/primary/port)
-"boY" = (/obj/machinery/light{dir = 4},/obj/structure/flora/grass/green,/turf/open/floor/grass,/area/hallway/primary/port)
-"boZ" = (/turf/closed/wall/r_wall,/area/bridge/meeting_room)
-"bpa" = (/obj/structure/table/wood,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/turf/open/floor/carpet,/area/bridge/meeting_room)
-"bpb" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8;initialize_directions = 11},/obj/structure/table/wood,/obj/item/weapon/folder/red,/obj/item/weapon/pen/red,/turf/open/floor/carpet,/area/bridge/meeting_room)
-"bpc" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;name = "regular air vent";on = 1},/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/bridge/meeting_room)
-"bpd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/wood,/area/bridge/meeting_room)
-"bpe" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload)
-"bpf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload)
-"bpg" = (/obj/machinery/door/airlock/highsecurity{icon_state = "door_closed";locked = 0;name = "AI Upload";req_access_txt = "16"},/turf/open/floor/circuit{icon_state = "gcircuit";luminosity = 2},/area/ai_monitored/turret_protected/ai_upload)
-"bph" = (/obj/machinery/light{dir = 8},/obj/machinery/suit_storage_unit/captain,/turf/open/floor/wood,/area/crew_quarters/captain)
-"bpi" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/turf/open/floor/wood,/area/crew_quarters/captain)
-"bpj" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/captain)
-"bpk" = (/obj/machinery/computer/communications,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/wood,/area/crew_quarters/captain)
-"bpl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/comfy/brown{dir = 8},/obj/effect/landmark/start{name = "Captain"},/turf/open/floor/wood,/area/crew_quarters/captain)
-"bpm" = (/obj/item/weapon/storage/secure/safe{pixel_x = 32},/turf/open/floor/wood,/area/crew_quarters/captain)
-"bpn" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/grass,/area/hallway/primary/starboard)
-"bpo" = (/obj/structure/flora/grass/green,/mob/living/simple_animal/pet/dog/corgi,/turf/open/floor/grass,/area/hallway/primary/starboard)
-"bpp" = (/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/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bpq" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bpr" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/brown{tag = "icon-brown (SOUTHWEST)";icon_state = "brown";dir = 10},/area/quartermaster/office)
-"bps" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/brown/corner{tag = "icon-browncorner (WEST)";icon_state = "browncorner";dir = 8},/area/quartermaster/office)
-"bpt" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bpu" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;name = "regular air scrubber";on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bpv" = (/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/turf/open/floor/plasteel/brown{tag = "icon-brown (EAST)";icon_state = "brown";dir = 4},/area/quartermaster/office)
-"bpw" = (/obj/structure/table,/obj/item/weapon/stamp{pixel_x = -6},/obj/item/weapon/stamp/denied,/obj/item/weapon/pen{pixel_x = 4;pixel_y = 7},/turf/open/floor/plasteel/brown{tag = "icon-brown (WEST)";icon_state = "brown";dir = 8},/area/quartermaster/office)
-"bpx" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office)
-"bpy" = (/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel/brown{tag = "icon-brown (WEST)";icon_state = "brown";dir = 8},/area/quartermaster/storage)
-"bpz" = (/turf/open/floor/plasteel/loadingarea{tag = "icon-loadingarea (EAST)";dir = 4;baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface},/area/quartermaster/storage)
-"bpA" = (/obj/machinery/conveyor{dir = 4;id = "QMLoad"},/turf/open/floor/plasteel/delivery,/area/quartermaster/storage)
-"bpB" = (/obj/machinery/conveyor{dir = 4;id = "QMLoad"},/obj/machinery/door/poddoor{id = "QMLoaddoor";name = "supply dock loading door"},/turf/open/floor/plating,/area/quartermaster/storage)
-"bpC" = (/obj/machinery/conveyor{dir = 4;id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage)
-"bpD" = (/obj/machinery/conveyor{dir = 4;id = "QMLoad"},/obj/structure/plasticflaps,/turf/open/floor/plating,/area/quartermaster/storage)
-"bpE" = (/obj/machinery/conveyor{dir = 4;id = "QMLoad"},/obj/machinery/door/poddoor{id = "QMLoaddoor";name = "supply dock loading door"},/turf/open/floor/plating,/area/shuttle/supply)
-"bpF" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (WEST)";icon_state = "darkredcorners";dir = 8},/area/security/transfer)
-"bpG" = (/obj/machinery/door/poddoor/preopen{icon_state = "closed";id = "exc";name = "Execution Chamber"},/turf/open/floor/plating{icon_state = "warnplatecorner";dir = 8},/area/security/transfer)
-"bpH" = (/obj/machinery/door/poddoor/preopen{icon_state = "closed";id = "exc";name = "Execution Chamber"},/turf/open/floor/plating{tag = "icon-warnplate (NORTH)";icon_state = "warnplate";dir = 1},/area/security/transfer)
-"bpI" = (/obj/machinery/door/poddoor/preopen{icon_state = "closed";id = "exc";name = "Execution Chamber"},/turf/open/floor/plating{icon_state = "warnplatecorner";dir = 4},/area/security/transfer)
-"bpJ" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/plasteel/darkred/corner,/area/security/transfer)
-"bpK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHWEST)";icon_state = "camera";dir = 10},/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"bpL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/chair/office/light{dir = 4},/turf/open/floor/plasteel/white,/area/medical/patients_rooms)
-"bpM" = (/obj/structure/closet/crate/medical,/turf/open/floor/plating{icon_state = "floorgrime"},/area/medical/medbay3)
-"bpN" = (/obj/structure/window/reinforced{dir = 8;pixel_x = 0},/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/machinery/door/window/northright{name = "Medbay Delivery";req_access_txt = "5"},/turf/open/floor/plasteel/delivery,/area/medical/medbay3)
-"bpO" = (/obj/structure/closet/crate,/obj/item/weapon/surgicaldrill,/obj/item/weapon/circular_saw,/obj/item/weapon/retractor,/obj/item/weapon/scalpel,/obj/item/weapon/hemostat,/obj/item/weapon/cautery,/obj/item/weapon/surgical_drapes,/turf/open/floor/plating{icon_state = "floorgrime"},/area/medical/medbay3)
-"bpP" = (/obj/machinery/reagentgrinder,/obj/structure/table,/turf/open/floor/plating{icon_state = "floorgrime"},/area/medical/medbay3)
-"bpQ" = (/obj/item/weapon/storage/firstaid/regular{pixel_x = 3;pixel_y = -3},/obj/item/weapon/storage/firstaid/toxin{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/toxin{pixel_x = -3;pixel_y = -3},/obj/structure/table/glass,/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHWEST)";icon_state = "whiteblue";dir = 10},/area/medical/medbay2{name = "Medbay Storage"})
-"bpR" = (/obj/item/weapon/storage/firstaid/regular{pixel_x = 3;pixel_y = -3},/obj/item/weapon/storage/firstaid/o2{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/firstaid/o2,/obj/item/weapon/storage/firstaid/o2{pixel_x = -3;pixel_y = -3},/obj/structure/table/glass,/obj/machinery/camera/autoname{tag = "icon-camera (NORTH)";icon_state = "camera";dir = 1},/turf/open/floor/plasteel/whiteblue/side,/area/medical/medbay2{name = "Medbay Storage"})
-"bpS" = (/obj/machinery/light,/obj/structure/closet/secure_closet/medical3,/turf/open/floor/plasteel/whiteblue/side,/area/medical/medbay2{name = "Medbay Storage"})
-"bpT" = (/obj/machinery/vending/medical,/turf/open/floor/plasteel/whiteblue/side,/area/medical/medbay2{name = "Medbay Storage"})
-"bpU" = (/obj/structure/table,/obj/item/weapon/storage/box/masks{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/box/gloves,/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHEAST)";icon_state = "whiteblue";dir = 6},/area/medical/medbay2{name = "Medbay Storage"})
-"bpV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/medical)
-"bpW" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;name = "regular air scrubber";on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/medical)
-"bpX" = (/obj/effect/landmark/start/depsec/medical,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/medical)
-"bpY" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/medical)
-"bpZ" = (/obj/structure/closet/secure_closet/security/med,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/medical)
-"bqa" = (/obj/machinery/computer/med_data,/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)";icon_state = "whiteblue";dir = 8},/area/medical/medbay)
-"bqb" = (/obj/structure/chair/office/dark{dir = 4},/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer.";id = "MedbayFoyer";name = "Medbay Doors Control";normaldoorcontrol = 1;pixel_x = 24;pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/medbay)
-"bqc" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (EAST)";icon_state = "door_open";dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay)
-"bqd" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay)
-"bqe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay)
-"bqf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)";icon_state = "whiteblue";dir = 4},/area/medical/medbay)
-"bqg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/whiteblue,/area/medical/medbay)
-"bqh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bqi" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/holopad,/turf/open/floor/carpet,/area/bridge/meeting_room)
-"bqj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/table/wood,/obj/item/weapon/folder/blue,/obj/item/weapon/pen/blue,/turf/open/floor/carpet,/area/bridge/meeting_room)
-"bqk" = (/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/bridge/meeting_room)
-"bql" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/wood,/area/bridge/meeting_room)
-"bqm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/light{dir = 4},/obj/structure/table/wood,/obj/item/weapon/paper_bin,/turf/open/floor/wood,/area/bridge/meeting_room)
-"bqn" = (/obj/structure/grille,/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"bqo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/machinery/porta_turret/ai{dir = 4},/turf/open/floor/circuit{icon_state = "gcircuit";luminosity = 2},/area/ai_monitored/turret_protected/ai_upload)
-"bqp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"bqq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"bqr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/circuit{icon_state = "gcircuit";luminosity = 2},/area/ai_monitored/turret_protected/ai_upload)
-"bqs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera/motion,/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"bqt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/porta_turret/ai{dir = 4},/turf/open/floor/circuit{icon_state = "gcircuit";luminosity = 2},/area/ai_monitored/turret_protected/ai_upload)
-"bqu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload)
-"bqv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/grille,/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"bqw" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"bqx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Captain's Office Maintenance";req_access_txt = "20"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"bqy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/captain)
-"bqz" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/captain)
-"bqA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/table/wood,/obj/machinery/recharger,/obj/item/weapon/hand_tele,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/wood,/area/crew_quarters/captain)
-"bqB" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/captain)
-"bqC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;name = "regular air scrubber";on = 1;scrub_Toxins = 0},/obj/machinery/light{dir = 4},/turf/open/floor/wood,/area/crew_quarters/captain)
-"bqD" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/brown{tag = "icon-brown (SOUTHWEST)";icon_state = "brown";dir = 10},/area/quartermaster/office)
-"bqE" = (/obj/machinery/light,/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/brown/corner{dir = 8},/area/quartermaster/office)
-"bqF" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTH)";icon_state = "camera";dir = 1},/turf/open/floor/plasteel{icon_state = "bot"},/area/quartermaster/office)
-"bqG" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel{icon_state = "bot"},/area/quartermaster/office)
-"bqH" = (/obj/structure/closet/crate{icon_state = "crateopen";opened = 1},/turf/open/floor/plasteel{icon_state = "bot"},/area/quartermaster/office)
-"bqI" = (/obj/machinery/light,/turf/open/floor/plasteel/brown/corner,/area/quartermaster/office)
-"bqJ" = (/obj/structure/cable{tag = "icon-1-4";icon_state = "1-4"},/turf/open/floor/plasteel/brown{tag = "icon-brown (SOUTHEAST)";icon_state = "brown";dir = 6},/area/quartermaster/office)
-"bqK" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/glass_mining{name = "Cargo Office";req_access_txt = "50"},/turf/open/floor/plasteel/delivery,/area/quartermaster/office)
-"bqL" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/brown{tag = "icon-brown (SOUTHWEST)";icon_state = "brown";dir = 10},/area/quartermaster/office)
-"bqM" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/brown,/area/quartermaster/office)
-"bqN" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light,/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/turf/open/floor/plasteel/brown,/area/quartermaster/office)
-"bqO" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel/brown,/area/quartermaster/office)
-"bqP" = (/obj/machinery/power/apc{dir = 2;name = "Cargo Office APC";pixel_x = 1;pixel_y = -24},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plasteel/brown,/area/quartermaster/office)
-"bqQ" = (/turf/open/floor/plasteel/brown,/area/quartermaster/office)
-"bqR" = (/obj/machinery/light,/turf/open/floor/plasteel/brown,/area/quartermaster/office)
-"bqS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/brown,/area/quartermaster/office)
-"bqT" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTH)";icon_state = "camera";dir = 1},/turf/open/floor/plasteel/brown,/area/quartermaster/office)
-"bqU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/brown{tag = "icon-brown (SOUTHEAST)";icon_state = "brown";dir = 6},/area/quartermaster/office)
-"bqV" = (/obj/structure/closet/wardrobe/cargotech,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)";icon_state = "camera";dir = 5},/turf/open/floor/plasteel/brown{tag = "icon-brown (WEST)";icon_state = "brown";dir = 8},/area/quartermaster/storage)
-"bqW" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bqX" = (/obj/machinery/status_display{density = 0;name = "cargo display";pixel_x = 32;pixel_y = 0;supply_display = 1},/turf/open/floor/plasteel/brown{tag = "icon-brown (EAST)";icon_state = "brown";dir = 4},/area/quartermaster/storage)
-"bqY" = (/turf/closed/wall,/area/maintenance/asmaint2)
-"bqZ" = (/obj/structure/cable{tag = "icon-1-4";icon_state = "1-4"},/turf/open/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHWEST)";icon_state = "darkred";dir = 10},/area/security/transfer)
-"bra" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/darkred/side,/area/security/transfer)
-"brb" = (/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4";tag = "icon-2-8"},/turf/open/floor/plasteel/darkred/side,/area/security/transfer)
-"brc" = (/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/obj/machinery/button/door{dir = 4;id = "exc";name = "Execution Chamber";pixel_x = 24},/turf/open/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHEAST)";icon_state = "darkred";dir = 6},/area/security/transfer)
-"brd" = (/obj/effect/decal/remains/human,/turf/open/floor/plasteel{icon_plating = "asteroid";icon_state = "asteroid";name = "Asteroid"},/area/ruin/unpowered{name = "Asteroid"})
-"bre" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance";req_access_txt = "5"},/turf/open/floor/plating,/area/medical/patients_rooms)
-"brf" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4";freq = 1400;location = "Medbay"},/obj/structure/plasticflaps{opacity = 1},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel{icon_state = "bot"},/area/medical/medbay3)
-"brg" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/structure/table,/obj/machinery/recharger,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/medical)
-"brh" = (/obj/structure/reagent_dispensers/peppertank{pixel_y = -28},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/medical)
-"bri" = (/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/medical)
-"brj" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/medical)
-"brk" = (/obj/structure/closet/wardrobe/red,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/medical)
-"brl" = (/obj/machinery/computer/crew,/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHWEST)";icon_state = "whiteblue";dir = 10},/area/medical/medbay)
-"brm" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/item/weapon/clipboard,/obj/item/weapon/folder/white,/obj/item/weapon/pen/blue,/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (EAST)";icon_state = "door_open";dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay)
-"brn" = (/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)";icon_state = "whiteblue";dir = 4},/area/medical/medbay)
-"bro" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/whiteblue,/area/medical/medbay)
-"brp" = (/obj/effect/landmark/event_spawn,/obj/structure/flora/grass/green,/turf/open/floor/grass,/area/hallway/primary/port)
-"brq" = (/mob/living/simple_animal/chicken,/turf/open/floor/grass,/area/hallway/primary/port)
-"brr" = (/obj/structure/table/wood,/obj/item/weapon/folder,/obj/item/weapon/pen,/obj/machinery/camera/autoname{tag = "icon-camera (EAST)";icon_state = "camera";dir = 4},/turf/open/floor/carpet,/area/bridge/meeting_room)
-"brs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/table/wood,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen,/turf/open/floor/carpet,/area/bridge/meeting_room)
-"brt" = (/obj/machinery/firealarm{dir = 1;pixel_x = 0;pixel_y = -26},/turf/open/floor/wood,/area/bridge/meeting_room)
-"bru" = (/obj/machinery/photocopier,/obj/structure/noticeboard{dir = 8;pixel_x = 27;pixel_y = 0},/turf/open/floor/wood,/area/bridge/meeting_room)
-"brv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"brw" = (/obj/structure/table,/obj/item/weapon/aiModule/core/full/asimov,/obj/item/weapon/aiModule/core/freeformcore,/obj/machinery/door/window{base_state = "right";dir = 4;icon_state = "right";name = "Core Modules";req_access_txt = "20"},/obj/structure/window/reinforced,/obj/item/weapon/aiModule/core/full/corp,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/aiModule/core/full/custom,/turf/open/floor/plasteel/blue,/area/ai_monitored/turret_protected/ai_upload)
-"brx" = (/turf/open/floor/plasteel/blue,/area/ai_monitored/turret_protected/ai_upload)
-"bry" = (/mob/living/simple_animal/bot/secbot/beepsky,/turf/open/floor/circuit{icon_state = "gcircuit";luminosity = 2},/area/ai_monitored/turret_protected/ai_upload)
-"brz" = (/obj/structure/table,/obj/item/weapon/aiModule/supplied/oxygen,/obj/item/weapon/aiModule/zeroth/oneHuman,/obj/machinery/door/window{base_state = "left";dir = 8;icon_state = "left";name = "High-Risk Modules";req_access_txt = "20"},/obj/item/weapon/aiModule/reset/purge,/obj/structure/window/reinforced,/obj/item/weapon/aiModule/core/full/antimov,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/aiModule/supplied/protectStation,/turf/open/floor/plasteel/blue,/area/ai_monitored/turret_protected/ai_upload)
-"brA" = (/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"brB" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/structure/table/wood,/obj/item/weapon/storage/lockbox/medal,/turf/open/floor/wood,/area/crew_quarters/captain)
-"brC" = (/obj/structure/table/wood,/obj/item/weapon/pinpointer,/obj/item/weapon/disk/nuclear,/turf/open/floor/wood,/area/crew_quarters/captain)
-"brD" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/space)
-"brE" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/firealarm{dir = 1;pixel_x = 0;pixel_y = -26},/turf/open/floor/wood,/area/crew_quarters/captain)
-"brF" = (/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/captain)
-"brG" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/bin,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/wood,/area/crew_quarters/captain)
-"brH" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/crew_quarters/captain)
-"brI" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/hallway/primary/starboard)
-"brJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/flora/grass/green,/turf/open/floor/grass,/area/hallway/primary/starboard)
-"brK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/event_spawn,/obj/structure/flora/grass/green,/turf/open/floor/grass,/area/hallway/primary/starboard)
-"brL" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/grass,/area/hallway/primary/starboard)
-"brM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/glass{name = "Grass Enclosure";req_access_txt = "12"},/turf/open/floor/plasteel/green,/area/hallway/primary/starboard)
-"brN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"brO" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2";dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"brP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"brQ" = (/turf/closed/wall,/area/security/checkpoint/supply)
-"brR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/security/checkpoint/supply)
-"brS" = (/obj/machinery/door/airlock/glass_security{name = "Security Post - Cargo";req_access_txt = "63"},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/supply)
-"brT" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/quartermaster/qm)
-"brU" = (/turf/closed/wall,/area/quartermaster/qm)
-"brV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/glass_mining{name = "Quartermaster";req_access_txt = "41"},/turf/open/floor/plasteel/delivery,/area/quartermaster/qm)
-"brW" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/quartermaster/qm)
-"brX" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/structure/closet/wardrobe/cargotech,/turf/open/floor/plasteel/brown{tag = "icon-brown (WEST)";icon_state = "brown";dir = 8},/area/quartermaster/storage)
-"brY" = (/obj/structure/table,/obj/item/device/gps,/turf/open/floor/plasteel/brown{tag = "icon-brown (EAST)";icon_state = "brown";dir = 4},/area/quartermaster/storage)
-"brZ" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2)
-"bsa" = (/turf/open/space,/area/ruin/unpowered{name = "Asteroid"})
-"bsb" = (/turf/open/floor/mineral/titanium/blue,/turf/closed/wall/mineral/titanium/interior,/area/shuttle/supply)
-"bsc" = (/obj/structure/closet/secure_closet{name = "Firing Squad Locker";req_access_txt = "2"},/obj/item/ammo_casing/a762,/obj/item/ammo_casing/a762,/obj/item/ammo_casing/a762,/obj/item/ammo_casing/a762,/obj/item/ammo_casing/a762,/obj/item/ammo_casing/a762,/obj/item/ammo_casing/a762,/obj/item/ammo_casing/a762,/obj/item/weapon/gun/ballistic/shotgun/boltaction,/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bsd" = (/obj/structure/table/reinforced,/obj/item/device/electropack,/obj/item/weapon/wrench,/obj/item/device/assembly/signaler,/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bse" = (/obj/structure/rack,/obj/item/weapon/tank/internals/anesthetic,/obj/item/clothing/mask/breath,/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bsf" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bsg" = (/obj/structure/table/reinforced,/obj/item/device/taperecorder,/obj/item/weapon/restraints/handcuffs,/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bsh" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/pen,/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bsi" = (/obj/structure/closet/secure_closet/injection,/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bsj" = (/obj/item/weapon/restraints/handcuffs/cable/zipties/used,/turf/open/floor/plasteel{icon_plating = "asteroid";icon_state = "asteroid";name = "Asteroid"},/area/ruin/unpowered{name = "Asteroid"})
-"bsk" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = ""},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port)
-"bsl" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/machinery/door/airlock/maintenance_hatch,/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/port)
-"bsm" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plating,/area/maintenance/port)
-"bsn" = (/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/port)
-"bso" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/port)
-"bsp" = (/obj/machinery/power/apc{dir = 1;name = "Medbay Storage APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/medical/medbay2{name = "Medbay Storage"})
-"bsq" = (/obj/machinery/power/apc{dir = 4;name = "Medbay Security APC";pixel_x = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/security/checkpoint/medical)
-"bsr" = (/obj/machinery/vending/wallmed{pixel_x = -24},/obj/structure/rack,/obj/item/weapon/storage/firstaid/regular,/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)";icon_state = "whiteblue";dir = 8},/area/medical/medbay)
-"bss" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/table/reinforced,/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (EAST)";icon_state = "door_open";dir = 4},/obj/item/weapon/paper_bin,/turf/open/floor/plasteel/white,/area/medical/medbay)
-"bst" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/turf/open/floor/plasteel/white,/area/medical/medbay)
-"bsu" = (/obj/machinery/shower{dir = 8;icon_state = "shower";name = "emergency shower"},/turf/open/floor/plasteel/delivery,/area/medical/medbay)
-"bsv" = (/obj/structure/chair/comfy/black{dir = 1},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/bridge/meeting_room)
-"bsw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/chair/comfy/black{dir = 1},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/bridge/meeting_room)
-"bsx" = (/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/bridge/meeting_room)
-"bsy" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"bsz" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;name = "regular air scrubber";on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel/blue,/area/ai_monitored/turret_protected/ai_upload)
-"bsA" = (/obj/effect/landmark/start{name = "Cyborg"},/turf/open/floor/circuit{icon_state = "gcircuit";luminosity = 2},/area/ai_monitored/turret_protected/ai_upload)
-"bsB" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/turf/open/floor/plasteel/blue,/area/ai_monitored/turret_protected/ai_upload)
-"bsC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"bsD" = (/turf/closed/wall/r_wall,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bsE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bsF" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/command{name = "Captain's Quarters";req_access = null;req_access_txt = "20"},/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bsG" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bsH" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bsI" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/asmaint2)
-"bsJ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/asmaint2)
-"bsK" = (/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/asmaint2)
-"bsL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/closet/secure_closet/security/cargo,/obj/item/device/radio/intercom{name = "Station Intercom";pixel_x = 0;pixel_y = 24},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/supply)
-"bsM" = (/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/supply)
-"bsN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/machinery/computer/security,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/supply)
-"bsO" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/security/checkpoint/supply)
-"bsP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/table,/obj/structure/table,/obj/machinery/computer/stockexchange,/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTHWEST)";icon_state = "brown";dir = 9},/area/quartermaster/qm)
-"bsQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTH)";icon_state = "brown";dir = 1},/area/quartermaster/qm)
-"bsR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTH)";icon_state = "brown";dir = 1},/area/quartermaster/qm)
-"bsS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom";pixel_x = 0;pixel_y = 24},/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTH)";icon_state = "brown";dir = 1},/area/quartermaster/qm)
-"bsT" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/obj/structure/closet/secure_closet/quartermaster,/turf/open/floor/plasteel/brown{tag = "icon-brown (NORTHEAST)";icon_state = "brown";dir = 5},/area/quartermaster/qm)
-"bsU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bsV" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bsW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bsX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bsY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;name = "regular air scrubber";on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bsZ" = (/obj/structure/table,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel/brown{tag = "icon-brown (EAST)";icon_state = "brown";dir = 4},/area/quartermaster/storage)
-"bta" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/shuttle/engine/heater,/turf/open/floor/plating/airless,/area/shuttle/supply)
-"btb" = (/turf/closed/wall/r_wall,/area/ruin/unpowered{name = "Asteroid"})
-"btc" = (/turf/closed/wall,/area/security/transfer)
-"btd" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/security{aiControlDisabled = 1;id_tag = "prisonereducation";name = "Prisoner Education Chamber";req_access = null;req_access_txt = "3"},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bte" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/security/transfer)
-"btf" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/structure/cable{tag = "icon-1-4";icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/port)
-"btg" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{tag = "icon-1-4";icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/port)
-"bth" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/port)
-"bti" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance";req_access_txt = "5"},/turf/open/floor/plating,/area/medical/medbay)
-"btj" = (/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHWEST)";icon_state = "whiteblue";dir = 10},/area/medical/medbay)
-"btk" = (/turf/open/floor/plasteel/whiteblue/side,/area/medical/medbay)
-"btl" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/table/reinforced,/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (EAST)";icon_state = "door_open";dir = 4},/turf/open/floor/plasteel/whiteblue/side,/area/medical/medbay)
-"btm" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/whiteblue/side,/area/medical/medbay)
-"btn" = (/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHEAST)";icon_state = "whiteblue";dir = 6},/area/medical/medbay)
-"bto" = (/obj/machinery/status_display,/turf/closed/wall,/area/medical/medbay)
-"btp" = (/obj/structure/reagent_dispensers/water_cooler,/turf/open/floor/wood,/area/bridge/meeting_room)
-"btq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/bridge/meeting_room)
-"btr" = (/obj/machinery/door/airlock/maintenance{name = "Conference Room Maintenance";req_access_txt = "19"},/turf/open/floor/plating,/area/bridge/meeting_room)
-"bts" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/power/apc{dir = 1;name = "Conference Room APC";pixel_x = 0;pixel_y = 24},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"btt" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"btu" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"btv" = (/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload)
-"btw" = (/turf/open/floor/circuit{icon_state = "gcircuit";luminosity = 2},/area/ai_monitored/turret_protected/ai_upload)
-"btx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"bty" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"btz" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"btA" = (/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"btB" = (/obj/machinery/power/apc{dir = 8;name = "Captain's Quarters APC";pixel_x = -24;pixel_y = 0},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/dresser,/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"btC" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/table/wood,/obj/item/weapon/card/id/captains_spare,/obj/item/weapon/reagent_containers/food/drinks/flask/gold,/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"btD" = (/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"btE" = (/obj/structure/closet/secure_closet/captains,/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"btF" = (/obj/structure/flora/grass/green,/mob/living/simple_animal/pet/dog/pug,/turf/open/floor/grass,/area/hallway/primary/starboard)
-"btG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/preopen{id = "Biohazard";name = "biohazard containment door"},/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"btH" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/poddoor/preopen{id = "Biohazard";name = "biohazard containment door"},/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"btI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/preopen{id = "Biohazard";name = "biohazard containment door"},/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/purple/corner,/area/hallway/primary/starboard)
-"btJ" = (/turf/closed/wall/r_wall,/area/toxins/lab)
-"btK" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/asmaint2)
-"btL" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/obj/structure/closet,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/supply)
-"btM" = (/obj/effect/landmark/start/depsec/supply,/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/supply)
-"btN" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/obj/machinery/computer/security/mining,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/supply)
-"btO" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/checkpoint/supply)
-"btP" = (/obj/structure/table,/obj/item/weapon/folder/yellow,/turf/open/floor/plasteel/brown{tag = "icon-brown (WEST)";icon_state = "brown";dir = 8},/area/quartermaster/qm)
-"btQ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/obj/structure/chair/office/light{dir = 8},/obj/effect/landmark/start{name = "Quartermaster"},/turf/open/floor/plasteel,/area/quartermaster/qm)
-"btR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/quartermaster/qm)
-"btS" = (/turf/open/floor/plasteel,/area/quartermaster/qm)
-"btT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel/brown{tag = "icon-brown (EAST)";icon_state = "brown";dir = 4},/area/quartermaster/qm)
-"btU" = (/turf/open/floor/plasteel/brown{tag = "icon-brown (SOUTHWEST)";icon_state = "brown";dir = 10},/area/quartermaster/storage)
-"btV" = (/turf/open/floor/plasteel/brown,/area/quartermaster/storage)
-"btW" = (/obj/machinery/power/apc{dir = 2;name = "Cargo Bay APC";pixel_x = 1;pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel/brown,/area/quartermaster/storage)
-"btX" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/brown,/area/quartermaster/storage)
-"btY" = (/obj/machinery/light,/obj/structure/closet/emcloset,/turf/open/floor/plasteel/brown,/area/quartermaster/storage)
-"btZ" = (/obj/structure/table,/obj/item/clothing/gloves/color/brown/cargo,/turf/open/floor/plasteel/brown,/area/quartermaster/storage)
-"bua" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/item/hand_labeler_refill,/turf/open/floor/plasteel/brown{tag = "icon-brown (SOUTHEAST)";icon_state = "brown";dir = 6},/area/quartermaster/storage)
-"bub" = (/obj/structure/shuttle/engine/propulsion{icon_state = "burst_l"},/turf/open/floor/plating/airless,/area/shuttle/supply)
-"buc" = (/obj/structure/shuttle/engine/propulsion,/turf/open/floor/plating/airless,/area/shuttle/supply)
-"bud" = (/obj/structure/shuttle/engine/propulsion{icon_state = "burst_r"},/turf/open/floor/plating/airless,/area/shuttle/supply)
-"bue" = (/obj/structure/closet/secure_closet{anchored = 1;name = "Secure Evidence Closet";req_access_txt = "0";req_one_access_txt = "3,4"},/turf/open/floor/plasteel/black,/area/security/transfer)
-"buf" = (/obj/structure/closet{name = "Evidence Closet 1"},/turf/open/floor/plasteel/black,/area/security/transfer)
-"bug" = (/obj/structure/closet{name = "Evidence Closet 2"},/turf/open/floor/plasteel/black,/area/security/transfer)
-"buh" = (/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bui" = (/obj/structure/cable{icon_state = "2-4";tag = "icon-2-8"},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"buj" = (/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 31},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"buk" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bul" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4";tag = "icon-2-8"},/obj/structure/cable{tag = "icon-1-4";icon_state = "1-4"},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bum" = (/obj/machinery/light{dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bun" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4";tag = "icon-2-8"},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"buo" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bup" = (/obj/machinery/camera/autoname,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"buq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;name = "regular air scrubber";on = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bur" = (/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bus" = (/obj/effect/landmark/event_spawn,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"but" = (/obj/machinery/light{dir = 1},/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"buu" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/bin,/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"buv" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/security/transfer)
-"buw" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/port)
-"bux" = (/turf/closed/wall,/area/crew_quarters/courtroom)
-"buy" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/port)
-"buz" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/port)
-"buA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/redblue/blueside{tag = "icon-bluered (WEST)";icon_state = "bluered";dir = 8},/area/hallway/primary/port)
-"buB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/redblue/blueside{tag = "icon-bluered (EAST)";icon_state = "bluered";dir = 4},/area/hallway/primary/port)
-"buC" = (/turf/closed/wall/r_wall,/area/security/hos)
-"buD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/security/hos)
-"buE" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/command{name = "Head of Security's Office";req_access = null;req_access_txt = "58"},/turf/open/floor/wood,/area/security/hos)
-"buF" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"buG" = (/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"buH" = (/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"buI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/computer/upload/ai,/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"buJ" = (/obj/structure/table,/obj/item/weapon/aiModule/core/full/asimov,/turf/open/floor/plasteel/blue,/area/ai_monitored/turret_protected/ai_upload)
-"buK" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/circuit{icon_state = "gcircuit";luminosity = 2},/area/ai_monitored/turret_protected/ai_upload)
-"buL" = (/obj/machinery/power/apc{cell_type = 5000;dir = 2;name = "Upload APC";pixel_y = -24},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"buM" = (/obj/structure/table,/obj/item/weapon/aiModule/core/freeformcore,/obj/item/weapon/aiModule/reset,/turf/open/floor/plasteel/blue,/area/ai_monitored/turret_protected/ai_upload)
-"buN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/computer/upload/borg,/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"buO" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/obj/structure/bed,/obj/item/weapon/bedsheet/captain,/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"buP" = (/obj/machinery/light,/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"buQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"buR" = (/obj/item/device/radio/intercom{desc = "Talk smack through this.";dir = 4;pixel_x = 28;syndie = 1},/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"buS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/purple/corner{tag = "icon-purplecorner (EAST)";icon_state = "purplecorner";dir = 4},/area/hallway/primary/starboard)
-"buT" = (/turf/open/floor/plasteel/purple/side{tag = "icon-purple (NORTHEAST)";icon_state = "purple";dir = 5},/area/hallway/primary/starboard)
-"buU" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd";name = "research lab shutters"},/turf/open/floor/plating,/area/toxins/lab)
-"buV" = (/obj/machinery/camera{c_tag = "Research and Development";dir = 2;network = list("SS13","RD");pixel_x = 22},/obj/machinery/button/door{dir = 2;id = "rnd";name = "Shutters Control Button";pixel_x = -6;pixel_y = 24;req_access_txt = "47"},/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/turf/open/floor/plasteel/white,/area/toxins/lab)
-"buW" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high,/turf/open/floor/plasteel/white,/area/toxins/lab)
-"buX" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50;pixel_x = 3;pixel_y = 3},/obj/item/stack/sheet/metal{amount = 50},/obj/item/clothing/glasses/welding,/obj/item/device/radio/intercom{name = "Station Intercom";pixel_x = 0;pixel_y = 24},/turf/open/floor/plasteel/white,/area/toxins/lab)
-"buY" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/white,/area/toxins/lab)
-"buZ" = (/obj/machinery/camera/autoname,/turf/open/floor/plasteel/white,/area/toxins/lab)
-"bva" = (/obj/machinery/door/window/eastright{base_state = "left";dir = 8;icon_state = "left";name = "Research Division Delivery";req_access_txt = "47"},/turf/open/floor/plasteel/delivery,/area/toxins/lab)
-"bvb" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8";dir = 8;freq = 1400;location = "Research Division"},/obj/structure/plasticflaps,/turf/open/floor/plasteel/bot,/area/toxins/lab)
-"bvc" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/machinery/firealarm{dir = 8;pixel_x = -24;pixel_y = 0},/obj/structure/filingcabinet/security,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/supply)
-"bvd" = (/obj/machinery/light/small,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/supply)
-"bve" = (/obj/machinery/computer/secure_data,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/supply)
-"bvf" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/machinery/camera/autoname{tag = "icon-camera (NORTH)";icon_state = "camera";dir = 1},/turf/open/floor/plasteel/brown{tag = "icon-brown (SOUTHWEST)";icon_state = "brown";dir = 10},/area/quartermaster/qm)
-"bvg" = (/obj/machinery/computer/cargo,/turf/open/floor/plasteel/brown,/area/quartermaster/qm)
-"bvh" = (/obj/machinery/light/small,/obj/machinery/computer/security/mining,/turf/open/floor/plasteel/brown,/area/quartermaster/qm)
-"bvi" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel/brown,/area/quartermaster/qm)
-"bvj" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/plasteel/brown{tag = "icon-brown (SOUTHEAST)";icon_state = "brown";dir = 6},/area/quartermaster/qm)
-"bvk" = (/obj/machinery/door/airlock/maintenance{name = "Cargo Bay Maintenance";req_access_txt = "0";req_one_access_txt = "48;50"},/turf/open/floor/plating,/area/maintenance/asmaint2)
-"bvl" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel/black,/area/security/transfer)
-"bvm" = (/turf/open/floor/plasteel/black,/area/security/transfer)
-"bvn" = (/obj/machinery/door/airlock/security{name = "Evidence Storage";req_access = null;req_access_txt = "0";req_one_access_txt = "1;4"},/turf/open/floor/plasteel/black,/area/security/transfer)
-"bvo" = (/obj/machinery/firealarm{dir = 1;pixel_x = 0;pixel_y = -26},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bvp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bvq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bvr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bvs" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bvt" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bvu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bvv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{dir = 4;pixel_x = 28;pixel_y = 0},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bvw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall/r_wall,/area/security/transfer)
-"bvx" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/port)
-"bvy" = (/turf/open/floor/plasteel/blue,/area/crew_quarters/courtroom)
-"bvz" = (/obj/machinery/camera/autoname,/turf/open/floor/plasteel/redblue/blueside{tag = "icon-bluered (WEST)";icon_state = "bluered";dir = 8},/area/crew_quarters/courtroom)
-"bvA" = (/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/plasteel/redgreen/side{tag = "icon-redgreen (EAST)";icon_state = "redgreen";dir = 4},/area/crew_quarters/courtroom)
-"bvB" = (/turf/open/floor/plasteel/green,/area/crew_quarters/courtroom)
-"bvC" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/courtroom)
-"bvD" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/plasteel/red/side{dir = 9},/area/crew_quarters/courtroom)
-"bvE" = (/turf/open/floor/plasteel/red/side{dir = 1},/area/crew_quarters/courtroom)
-"bvF" = (/obj/machinery/door/airlock/glass{name = "Courtroom"},/turf/open/floor/plasteel{icon_state = "redfull"},/area/crew_quarters/courtroom)
-"bvG" = (/obj/structure/sign/directions/evac{pixel_y = -10},/obj/structure/sign/directions/engineering,/obj/structure/sign/directions/science{pixel_y = 10},/turf/closed/wall,/area/hallway/primary/port)
-"bvH" = (/obj/machinery/computer/card/minor/hos,/obj/machinery/camera/autoname{tag = "icon-camera (EAST)";icon_state = "camera";dir = 4},/turf/open/floor/wood,/area/security/hos)
-"bvI" = (/obj/machinery/requests_console{announcementConsole = 1;department = "Head of Security's Desk";departmentType = 5;name = "Head of Security RC";pixel_x = 0;pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/security/hos)
-"bvJ" = (/turf/open/floor/wood,/area/security/hos)
-"bvK" = (/obj/item/weapon/storage/secure/safe/HoS{pixel_x = 35},/obj/structure/closet/secure_closet/hos,/turf/open/floor/wood,/area/security/hos)
-"bvL" = (/obj/machinery/camera/motion{c_tag = "MiniSat Foyer";dir = 1;network = list("MiniSat")},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"bvM" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai)
-"bvN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai)
-"bvO" = (/obj/machinery/status_display,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai)
-"bvP" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/highsecurity{icon_state = "door_closed";locked = 0;name = "AI Chamber";req_access_txt = "16"},/turf/open/floor/circuit{icon_state = "gcircuit";luminosity = 2},/area/ai_monitored/turret_protected/ai)
-"bvQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai)
-"bvR" = (/turf/closed/wall,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bvS" = (/obj/machinery/door/airlock{name = "Private Restroom";req_access_txt = "0"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bvT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/purple/corner{tag = "icon-purplecorner (WEST)";icon_state = "purplecorner";dir = 8},/area/hallway/primary/starboard)
-"bvU" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bvV" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bvW" = (/turf/open/floor/plasteel/purple/side{tag = "icon-purple (EAST)";icon_state = "purple";dir = 4},/area/hallway/primary/starboard)
-"bvX" = (/obj/structure/table/reinforced,/obj/machinery/door/window/southright{dir = 4;name = "Research and Development Desk";req_access_txt = "7"},/obj/machinery/door/poddoor/shutters/preopen{id = "rnd";name = "research lab shutters"},/turf/open/floor/plating,/area/toxins/lab)
-"bvY" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/toxins/lab)
-"bvZ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;name = "regular air scrubber";on = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/toxins/lab)
-"bwa" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel/white,/area/toxins/lab)
-"bwb" = (/turf/open/floor/plasteel/white,/area/toxins/lab)
-"bwc" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/obj/structure/table/glass,/obj/item/weapon/stock_parts/cell/high{pixel_x = 10;pixel_y = 5},/obj/item/weapon/stock_parts/cell/high,/turf/open/floor/plasteel/white,/area/toxins/lab)
-"bwd" = (/turf/open/floor/plating,/area/maintenance/asmaint2)
-"bwe" = (/obj/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/asmaint2)
-"bwf" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/asmaint2)
-"bwg" = (/obj/structure/closet{name = "Evidence Closet 5"},/turf/open/floor/plasteel/black,/area/security/transfer)
-"bwh" = (/obj/structure/closet{name = "Evidence Closet 4"},/turf/open/floor/plasteel/black,/area/security/transfer)
-"bwi" = (/obj/structure/closet{name = "Evidence Closet 3"},/turf/open/floor/plasteel/black,/area/security/transfer)
-"bwj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/closed/wall,/area/security/transfer)
-"bwk" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/glass_security{name = "Long-Term Cell 2";req_access_txt = "2"},/turf/open/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)";icon_state = "darkred";dir = 1},/area/security/transfer)
-"bwl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall,/area/security/transfer)
-"bwm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/security/transfer)
-"bwn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/security/transfer)
-"bwo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/glass_security{name = "Long-Term Cell 3";req_access_txt = "2"},/turf/open/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)";icon_state = "darkred";dir = 1},/area/security/transfer)
-"bwp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/closed/wall,/area/security/transfer)
-"bwq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/security{aiControlDisabled = 1;id_tag = null;name = "Prisoner Education Supplies";req_access = null;req_access_txt = "3"},/turf/open/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)";icon_state = "darkred";dir = 1},/area/security/transfer)
-"bwr" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/closed/wall,/area/security/transfer)
-"bws" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/tank_dispenser/oxygen,/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (NORTH)";icon_state = "door_open";dir = 1},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bwt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (NORTH)";icon_state = "door_open";dir = 1},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bwu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/window/brigdoor{dir = 1;name = "Atmos Locker";req_access_txt = "2"},/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (NORTH)";icon_state = "door_open";dir = 1},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bwv" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (NORTH)";icon_state = "door_open";dir = 1},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bww" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced{dir = 8;pixel_x = 0},/obj/structure/window/reinforced{dir = 1;pixel_y = 0},/obj/structure/closet/secure_closet/brig,/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (NORTH)";icon_state = "door_open";dir = 1},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bwx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (NORTH)";icon_state = "door_open";dir = 1},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bwy" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/structure/filingcabinet/security,/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (NORTH)";icon_state = "door_open";dir = 1},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bwz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced{dir = 8;pixel_x = 0},/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (WEST)";icon_state = "door_open";dir = 8},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bwA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bwB" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/power/apc{dir = 4;name = "Prisoner Transfer Centre";pixel_x = 24;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bwC" = (/obj/structure/chair{dir = 4;name = "Prosecution"},/turf/open/floor/plasteel/blue,/area/crew_quarters/courtroom)
-"bwD" = (/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/obj/structure/table/wood,/turf/open/floor/plasteel/blue,/area/crew_quarters/courtroom)
-"bwE" = (/turf/open/floor/plasteel/redblue/blueside{tag = "icon-bluered (WEST)";icon_state = "bluered";dir = 8},/area/crew_quarters/courtroom)
-"bwF" = (/turf/open/floor/plasteel/redgreen/side{tag = "icon-redgreen (EAST)";icon_state = "redgreen";dir = 4},/area/crew_quarters/courtroom)
-"bwG" = (/obj/structure/table/wood,/turf/open/floor/plasteel/green,/area/crew_quarters/courtroom)
-"bwH" = (/obj/structure/chair{dir = 8;name = "Defense"},/turf/open/floor/plasteel/green,/area/crew_quarters/courtroom)
-"bwI" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/structure/chair{dir = 4},/turf/open/floor/plasteel/red/side{dir = 8},/area/crew_quarters/courtroom)
-"bwJ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/crew_quarters/courtroom)
-"bwK" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/red/corner,/area/crew_quarters/courtroom)
-"bwL" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/red/side,/area/crew_quarters/courtroom)
-"bwM" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plasteel/red/side,/area/crew_quarters/courtroom)
-"bwN" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/machinery/door/airlock/glass{name = "Courtroom"},/turf/open/floor/plasteel{icon_state = "redfull"},/area/crew_quarters/courtroom)
-"bwO" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/redblue/blueside{tag = "icon-bluered (WEST)";icon_state = "bluered";dir = 8},/area/hallway/primary/port)
-"bwP" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bwQ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/security/detectives_office)
-"bwR" = (/obj/machinery/light/small{dir = 1},/obj/machinery/computer/secure_data,/turf/open/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office)
-"bwS" = (/turf/open/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office)
-"bwT" = (/obj/machinery/computer/security/wooden_tv,/turf/open/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office)
-"bwU" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/structure/table/wood,/obj/item/weapon/hand_labeler,/obj/item/weapon/reagent_containers/food/drinks/flask/det,/obj/item/device/radio/intercom{name = "Station Intercom";pixel_x = 0;pixel_y = 24},/turf/open/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office)
-"bwV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/obj/machinery/computer/secure_data,/turf/open/floor/wood,/area/security/hos)
-"bwW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/security/hos)
-"bwX" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/carpet,/area/security/hos)
-"bwY" = (/obj/structure/table/wood,/obj/item/weapon/storage/box/deputy,/obj/item/weapon/storage/box/seccarts{pixel_x = 3;pixel_y = 2},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/wood,/area/security/hos)
-"bwZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/porta_turret/ai{dir = 4},/turf/open/floor/circuit{icon_state = "gcircuit";luminosity = 2},/area/ai_monitored/turret_protected/ai)
-"bxa" = (/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai)
-"bxb" = (/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai)
-"bxc" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/circuit{icon_state = "gcircuit";luminosity = 2},/area/ai_monitored/turret_protected/ai)
-"bxd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/porta_turret/ai{dir = 4},/turf/open/floor/circuit{icon_state = "gcircuit";luminosity = 2},/area/ai_monitored/turret_protected/ai)
-"bxe" = (/obj/structure/toilet{dir = 4},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bxf" = (/obj/machinery/light{dir = 1},/obj/item/weapon/soap/deluxe,/obj/machinery/shower{tag = "icon-shower (NORTH)";icon_state = "shower";dir = 1},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bxg" = (/obj/structure/sink{pixel_y = 30},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bxh" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bxi" = (/turf/closed/wall,/area/medical/research{name = "Research Division"})
-"bxj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera/autoname{tag = "icon-camera (EAST)";icon_state = "camera";dir = 4},/turf/open/floor/plasteel/purple/side{tag = "icon-purple (WEST)";icon_state = "purple";dir = 8},/area/hallway/primary/starboard)
-"bxk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/purple/corner,/area/hallway/primary/starboard)
-"bxl" = (/turf/open/floor/plasteel/purple/side{tag = "icon-purple (SOUTHEAST)";icon_state = "purple";dir = 6},/area/hallway/primary/starboard)
-"bxm" = (/obj/machinery/r_n_d/destructive_analyzer,/turf/open/floor/plasteel/purple,/area/toxins/lab)
-"bxn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/purple,/area/toxins/lab)
-"bxo" = (/obj/machinery/r_n_d/protolathe,/turf/open/floor/plasteel/purple,/area/toxins/lab)
-"bxp" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/toxins/lab)
-"bxq" = (/obj/structure/table/glass,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/micro_laser,/obj/item/stack/cable_coil{pixel_x = 3;pixel_y = 3},/obj/item/stack/cable_coil,/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel/white,/area/toxins/lab)
-"bxr" = (/obj/structure/cable{tag = "icon-1-4";icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/asmaint2)
-"bxs" = (/obj/structure/window/reinforced,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/asmaint2)
-"bxt" = (/obj/structure/window/reinforced,/obj/machinery/power/apc{dir = 1;name = "Cargo Security APC";pixel_x = 1;pixel_y = 24},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/security/checkpoint/supply)
-"bxu" = (/obj/structure/window/reinforced,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/asmaint2)
-"bxv" = (/obj/structure/window/reinforced,/obj/machinery/power/apc{dir = 1;name = "Quartermaster's Office APC";pixel_x = 0;pixel_y = 30},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/quartermaster/qm)
-"bxw" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plating,/area/maintenance/asmaint2)
-"bxx" = (/turf/closed/mineral/random/labormineral,/area/maintenance/asmaint2)
-"bxy" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bxz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/black,/area/security/transfer)
-"bxA" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/black,/area/security/transfer)
-"bxB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/security/transfer)
-"bxC" = (/obj/structure/bodycontainer/morgue,/turf/open/floor/plasteel/black,/area/security/transfer)
-"bxD" = (/obj/structure/filingcabinet/security,/turf/open/floor/plasteel/black,/area/security/transfer)
-"bxE" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bxF" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/machinery/atmospherics/components/binary/pump{dir = 1;name = "Waste to Filter";on = 1},/obj/item/weapon/storage/toolbox/mechanical,/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bxG" = (/obj/structure/window/reinforced{dir = 8;pixel_x = 0},/obj/structure/closet/secure_closet/brig,/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bxH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bxI" = (/obj/structure/window/reinforced{dir = 8;pixel_x = 0},/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (WEST)";icon_state = "door_open";dir = 8},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = ""},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bxJ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bxK" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/structure/chair{dir = 4;name = "Prosecution"},/turf/open/floor/plasteel/blue,/area/crew_quarters/courtroom)
-"bxL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/table/wood,/turf/open/floor/plasteel/blue,/area/crew_quarters/courtroom)
-"bxM" = (/obj/structure/chair{dir = 8;name = "Defense"},/obj/machinery/firealarm{dir = 4;pixel_x = 28;pixel_y = 0},/turf/open/floor/plasteel/green,/area/crew_quarters/courtroom)
-"bxN" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel/red/side{dir = 8},/area/crew_quarters/courtroom)
-"bxO" = (/obj/item/device/radio/beacon,/turf/open/floor/plasteel,/area/crew_quarters/courtroom)
-"bxP" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/red/side{dir = 4},/area/crew_quarters/courtroom)
-"bxQ" = (/turf/closed/wall,/area/lawoffice)
-"bxR" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/lawoffice)
-"bxS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel/redblue/blueside{tag = "icon-bluered (WEST)";icon_state = "bluered";dir = 8},/area/hallway/primary/port)
-"bxT" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bxU" = (/obj/machinery/computer/med_data,/turf/open/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office)
-"bxV" = (/obj/structure/chair/office/dark,/turf/open/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office)
-"bxW" = (/obj/machinery/requests_console{department = "Detective's office";pixel_x = 30;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office)
-"bxX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/computer/security,/turf/open/floor/wood,/area/security/hos)
-"bxY" = (/obj/effect/landmark/start{name = "Head of Security"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/security/hos)
-"bxZ" = (/turf/open/floor/carpet,/area/security/hos)
-"bya" = (/obj/machinery/light{dir = 4},/obj/structure/table/wood,/obj/machinery/recharger,/turf/open/floor/wood,/area/security/hos)
-"byb" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"byc" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"byd" = (/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/obj/effect/landmark/start{name = "Cyborg"},/turf/open/floor/circuit{icon_state = "gcircuit";luminosity = 2},/area/ai_monitored/turret_protected/ai)
-"bye" = (/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"byf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"byg" = (/turf/closed/wall/r_wall,/area/crew_quarters/hor)
-"byh" = (/obj/structure/table,/obj/machinery/microwave,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"byi" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/medical/research{name = "Research Division"})
-"byj" = (/obj/machinery/vending/snack,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"byk" = (/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/medical/research{name = "Research Division"})
-"byl" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/medical/research{name = "Research Division"})
-"bym" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/purple/side{tag = "icon-purple (WEST)";icon_state = "purple";dir = 8},/area/hallway/primary/starboard)
-"byn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/purple/side{tag = "icon-purple (EAST)";icon_state = "purple";dir = 4},/area/hallway/primary/starboard)
-"byo" = (/obj/machinery/computer/rdconsole/core,/obj/machinery/light{dir = 8},/obj/machinery/requests_console{department = "Science";departmentType = 2;name = "Science Requests Console";pixel_x = -30;pixel_y = 0},/turf/open/floor/plasteel/purple,/area/toxins/lab)
-"byp" = (/obj/effect/landmark/start{name = "Scientist"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/purple,/area/toxins/lab)
-"byq" = (/obj/machinery/r_n_d/circuit_imprinter,/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,/turf/open/floor/plasteel/purple,/area/toxins/lab)
-"byr" = (/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/toxins/lab)
-"bys" = (/obj/item/weapon/stock_parts/console_screen,/obj/structure/table/glass,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/scanning_module{pixel_x = 2;pixel_y = 3},/obj/item/weapon/stock_parts/scanning_module,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel/white,/area/toxins/lab)
-"byt" = (/obj/structure/window/reinforced{dir = 8;pixel_x = 0},/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating/asteroid/airless{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"byu" = (/obj/structure/window/reinforced{dir = 8;pixel_x = 0},/turf/open/floor/plating,/area/maintenance/asmaint2)
-"byv" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/asmaint2)
-"byw" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/obj/structure/table,/obj/item/weapon/paper,/obj/item/weapon/pen,/turf/open/floor/plasteel/black,/area/security/transfer)
-"byx" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/obj/structure/bed,/obj/item/weapon/bedsheet/orange,/turf/open/floor/plasteel/black,/area/security/transfer)
-"byy" = (/obj/machinery/light/small,/turf/open/floor/plasteel/black,/area/security/transfer)
-"byz" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/bodybags,/turf/open/floor/plasteel/black,/area/security/transfer)
-"byA" = (/obj/machinery/suit_storage_unit/security,/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"byB" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/scrubber,/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"byC" = (/obj/machinery/light,/obj/structure/table,/obj/structure/window/reinforced{dir = 8;pixel_x = 0},/obj/item/weapon/storage/box/zipties,/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"byD" = (/obj/structure/table,/obj/item/weapon/storage/box/prisoner,/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"byE" = (/obj/machinery/computer/prisoner,/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"byF" = (/obj/machinery/door/airlock/glass_security{name = "Security Control";req_access_txt = "2"},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"byG" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/glass_security{name = "Prisoner Processing";req_access_txt = "2"},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"byH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/blue,/area/crew_quarters/courtroom)
-"byI" = (/obj/machinery/door/airlock/glass{name = "Courtroom";req_access_txt = "42"},/turf/open/floor/plasteel,/area/crew_quarters/courtroom)
-"byJ" = (/turf/open/floor/plasteel/red/side{dir = 10},/area/crew_quarters/courtroom)
-"byK" = (/turf/open/floor/plasteel/red/side,/area/crew_quarters/courtroom)
-"byL" = (/turf/open/floor/plasteel/red/side{dir = 6},/area/crew_quarters/courtroom)
-"byM" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Law Office";req_access_txt = "38"},/turf/open/floor/wood,/area/lawoffice)
-"byN" = (/turf/open/floor/wood,/area/lawoffice)
-"byO" = (/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/turf/open/floor/wood,/area/lawoffice)
-"byP" = (/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/wood,/area/lawoffice)
-"byQ" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/bin,/turf/open/floor/wood,/area/lawoffice)
-"byR" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "lawyer_blast";name = "privacy door"},/turf/open/floor/plating,/area/lawoffice)
-"byS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/red/side{dir = 8},/area/hallway/primary/port)
-"byT" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2";dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"byU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red/side{tag = "icon-red (EAST)";icon_state = "red";dir = 4},/area/hallway/primary/port)
-"byV" = (/obj/structure/table/wood,/obj/item/device/taperecorder,/obj/item/device/camera,/turf/open/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office)
-"byW" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;name = "regular air scrubber";on = 1},/obj/structure/table/wood,/obj/item/weapon/folder/red,/obj/item/weapon/pen/red,/turf/open/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office)
-"byX" = (/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/obj/structure/table/wood,/obj/item/weapon/paper_bin,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/open/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office)
-"byY" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office)
-"byZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/item/device/radio/intercom{dir = 4;name = "Station Intercom (General)";pixel_x = -31},/turf/open/floor/wood,/area/security/hos)
-"bza" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/security/hos)
-"bzb" = (/obj/machinery/keycard_auth{pixel_x = 24;pixel_y = 10},/obj/structure/table/wood,/obj/item/device/radio/off,/obj/item/device/taperecorder{pixel_y = 0},/turf/open/floor/wood,/area/security/hos)
-"bzc" = (/obj/machinery/porta_turret/ai{dir = 4},/turf/open/floor/circuit{icon_state = "gcircuit";luminosity = 2},/area/ai_monitored/turret_protected/ai)
-"bzd" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"bze" = (/turf/open/floor/plasteel/blue,/area/ai_monitored/turret_protected/ai)
-"bzf" = (/obj/machinery/camera/motion{c_tag = "MiniSat Foyer";dir = 1;network = list("MiniSat")},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"bzg" = (/obj/machinery/light,/turf/open/floor/circuit{icon_state = "gcircuit";luminosity = 2},/area/ai_monitored/turret_protected/ai)
-"bzh" = (/obj/machinery/turretid{name = "AI Chamber turret control";pixel_x = 5;pixel_y = -24},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"bzi" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{name = "RD Maintenance";req_access_txt = "30"},/turf/open/floor/plating,/area/crew_quarters/hor)
-"bzj" = (/obj/machinery/power/apc{dir = 1;name = "RD Office APC";pixel_x = 0;pixel_y = 24},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plasteel/whitepurple/corner,/area/crew_quarters/hor)
-"bzk" = (/obj/machinery/requests_console{announcementConsole = 1;department = "Research Director's Desk";departmentType = 5;name = "Research Director RC";pixel_x = -2;pixel_y = 30},/turf/open/floor/plasteel/whitepurple/corner,/area/crew_quarters/hor)
-"bzl" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/bin,/turf/open/floor/plasteel/whitepurple/corner,/area/crew_quarters/hor)
-"bzm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/weapon/twohanded/required/kirbyplants/dead,/turf/open/floor/plasteel/whitepurple/corner,/area/crew_quarters/hor)
-"bzn" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/crew_quarters/hor)
-"bzo" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/medical/research{name = "Research Division"})
-"bzp" = (/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"bzq" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"bzr" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/medical/research{name = "Research Division"})
-"bzs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/purple/side{tag = "icon-purple (WEST)";icon_state = "purple";dir = 8},/area/hallway/primary/starboard)
-"bzt" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/junction{icon_state = "pipe-y";dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bzu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/purple/side{tag = "icon-purple (EAST)";icon_state = "purple";dir = 4},/area/hallway/primary/starboard)
-"bzv" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/poddoor/shutters/preopen{id = "rnd";name = "research lab shutters"},/turf/open/floor/plating,/area/toxins/lab)
-"bzw" = (/obj/item/weapon/folder/white,/obj/structure/table,/obj/item/weapon/disk/tech_disk{pixel_x = 0;pixel_y = 0},/obj/item/weapon/disk/tech_disk{pixel_x = 0;pixel_y = 0},/obj/item/weapon/disk/design_disk,/obj/item/weapon/disk/design_disk,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/toxins/lab)
-"bzx" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/toxins/lab)
-"bzy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/toxins/lab)
-"bzz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/toxins/lab)
-"bzA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/lab)
-"bzB" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;name = "regular air vent";on = 1},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plasteel/white,/area/toxins/lab)
-"bzC" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/beaker/large{pixel_x = -3;pixel_y = 3},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8;pixel_y = 2},/obj/item/weapon/reagent_containers/dropper,/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel/white,/area/toxins/lab)
-"bzD" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8;pixel_x = 0},/turf/open/floor/plating/asteroid/airless{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"bzE" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating/asteroid/airless{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"bzF" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/item/device/radio/intercom{dir = 8;pixel_x = -28},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bzG" = (/obj/structure/cable,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/sign/electricshock{pixel_x = -32},/obj/structure/sign/electricshock{pixel_x = 32},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/security/transfer)
-"bzH" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bzI" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8;initialize_directions = 11},/turf/closed/wall/r_wall,/area/security/transfer)
-"bzJ" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port)
-"bzK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/courtroom)
-"bzL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/blue,/area/crew_quarters/courtroom)
-"bzM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/blue,/area/crew_quarters/courtroom)
-"bzN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/redblue/blueside{tag = "icon-bluered (WEST)";icon_state = "bluered";dir = 8},/area/crew_quarters/courtroom)
-"bzO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/redgreen/side{tag = "icon-redgreen (EAST)";icon_state = "redgreen";dir = 4},/area/crew_quarters/courtroom)
-"bzP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair{dir = 1;name = "Bailiff"},/turf/open/floor/plasteel/green,/area/crew_quarters/courtroom)
-"bzQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/green,/area/crew_quarters/courtroom)
-"bzR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/crew_quarters/courtroom)
-"bzS" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/crew_quarters/courtroom)
-"bzT" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable{tag = "icon-0-8";icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/crew_quarters/courtroom)
-"bzU" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{tag = "icon-0-8";icon_state = "0-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/crew_quarters/courtroom)
-"bzV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/lawoffice)
-"bzW" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/intercom{dir = 8;pixel_x = -28},/turf/open/floor/wood,/area/lawoffice)
-"bzX" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/storage/briefcase,/turf/open/floor/wood,/area/lawoffice)
-"bzY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/lawoffice)
-"bzZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table/wood,/obj/item/device/taperecorder,/obj/item/device/camera,/turf/open/floor/wood,/area/lawoffice)
-"bAa" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "lawyer_blast";name = "privacy door"},/turf/open/floor/plating,/area/lawoffice)
-"bAb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/side{dir = 8},/area/hallway/primary/port)
-"bAc" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bAd" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel/red/side{tag = "icon-red (EAST)";icon_state = "red";dir = 4},/area/hallway/primary/port)
-"bAe" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/security/detectives_office)
-"bAf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table/wood,/obj/item/weapon/storage/briefcase,/obj/item/clothing/glasses/sunglasses,/turf/open/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office)
-"bAg" = (/obj/effect/landmark/start{name = "Detective"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office)
-"bAh" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office)
-"bAi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office)
-"bAj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/hos)
-"bAk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/wood,/area/security/hos)
-"bAl" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/table/wood,/obj/item/weapon/folder/red,/obj/item/weapon/stamp/hos,/turf/open/floor/carpet,/area/security/hos)
-"bAm" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;name = "regular air vent";on = 1},/turf/open/floor/carpet,/area/security/hos)
-"bAn" = (/obj/machinery/power/apc{dir = 4;name = "Head of Security's Office APC";pixel_x = 24},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/wood,/area/security/hos)
-"bAo" = (/turf/closed/wall,/area/crew_quarters/hor)
-"bAp" = (/obj/machinery/suit_storage_unit/rd,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/crew_quarters/hor)
-"bAq" = (/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/turf/open/floor/plasteel/whitepurple/corner{dir = 1},/area/crew_quarters/hor)
-"bAr" = (/turf/open/floor/plasteel/whitepurple/corner{dir = 1},/area/crew_quarters/hor)
-"bAs" = (/obj/machinery/computer/aifixer,/turf/open/floor/plasteel/whitepurple/corner{dir = 1},/area/crew_quarters/hor)
-"bAt" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/hor)
-"bAu" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"bAv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/medical/research{name = "Research Division"})
-"bAw" = (/obj/structure/chair{dir = 4},/obj/effect/landmark/start{name = "Scientist"},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"bAx" = (/obj/structure/table,/obj/item/weapon/storage/fancy/donut_box,/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/medical/research{name = "Research Division"})
-"bAy" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bAz" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/turf/open/floor/plasteel/white,/area/toxins/lab)
-"bAA" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/toxins/lab)
-"bAB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/toxins/lab)
-"bAC" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/toxins/lab)
-"bAD" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/button/door{id = "rnd2";name = "Research Lab Shutter Control";pixel_x = -5;pixel_y = -24;req_access_txt = "47"},/turf/open/floor/plasteel/white,/area/toxins/lab)
-"bAE" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/toxins/lab)
-"bAF" = (/obj/machinery/power/apc{dir = 2;name = "Research Lab APC";pixel_x = 0;pixel_y = -26},/obj/structure/cable{tag = "icon-0-8";icon_state = "0-8"},/obj/structure/table/glass,/obj/item/device/gps/science,/turf/open/floor/plasteel/white,/area/toxins/lab)
-"bAG" = (/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating,/area/maintenance/asmaint2)
-"bAH" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/asmaint2)
-"bAI" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/asmaint2)
-"bAJ" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bAK" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/table,/obj/item/weapon/folder/red,/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bAL" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/sign/electricshock{pixel_y = -32},/turf/open/floor/plating,/area/security/transfer)
-"bAM" = (/turf/closed/wall,/area/maintenance/fpmaint2)
-"bAN" = (/obj/machinery/power/apc{dir = 1;name = "Arrivals North Maintenance APC";pixel_x = -1;pixel_y = 26},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint2)
-"bAO" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint2)
-"bAP" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint2)
-"bAQ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fpmaint2)
-"bAR" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel/darkred,/area/maintenance/fpmaint2)
-"bAS" = (/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{tag = "icon-2-8";icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/darkred,/area/maintenance/fpmaint2)
-"bAT" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/port)
-"bAU" = (/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/port)
-"bAV" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 0},/obj/machinery/light_switch{dir = 8;pixel_x = -24},/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (NORTH)";icon_state = "door_open";dir = 1},/turf/open/floor/plasteel/blue/side{tag = "icon-blue (NORTHWEST)";icon_state = "blue";dir = 9},/area/crew_quarters/courtroom)
-"bAW" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 0},/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (NORTH)";icon_state = "door_open";dir = 1},/obj/machinery/holopad,/turf/open/floor/plasteel/blue/side{tag = "icon-blue (NORTH)";icon_state = "blue";dir = 1},/area/crew_quarters/courtroom)
-"bAX" = (/obj/structure/table/wood,/obj/structure/window/reinforced{dir = 1;pixel_y = 0},/obj/item/weapon/gavelblock,/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (NORTH)";icon_state = "door_open";dir = 1},/turf/open/floor/plasteel/blue/side{tag = "icon-blue (NORTH)";icon_state = "blue";dir = 1},/area/crew_quarters/courtroom)
-"bAY" = (/obj/structure/table/wood,/obj/structure/window/reinforced{dir = 1;pixel_y = 0},/obj/item/device/radio/intercom{broadcasting = 0;dir = 8;listening = 1;name = "Station Intercom (Court)";pixel_x = 0},/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (NORTH)";icon_state = "door_open";dir = 1},/turf/open/floor/plasteel/blue/side{tag = "icon-blue (NORTH)";icon_state = "blue";dir = 1},/area/crew_quarters/courtroom)
-"bAZ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/window/reinforced{dir = 1;pixel_y = 0},/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (NORTH)";icon_state = "door_open";dir = 1},/turf/open/floor/plasteel/blue/side{tag = "icon-blue (NORTH)";icon_state = "blue";dir = 1},/area/crew_quarters/courtroom)
-"bBa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light{dir = 4},/obj/machinery/door/window/brigdoor{dir = 1;req_access_txt = "1"},/obj/machinery/door/firedoor/border_only{tag = "icon-door_open (NORTH)";icon_state = "door_open";dir = 1},/turf/open/floor/plasteel/blue/side{tag = "icon-blue (NORTHEAST)";icon_state = "blue";dir = 5},/area/crew_quarters/courtroom)
-"bBb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/crew_quarters/courtroom)
-"bBc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"bBd" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"bBe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/bed,/obj/item/weapon/bedsheet/orange,/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"bBf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/lawoffice)
-"bBg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light{dir = 8},/obj/structure/chair/office/light{dir = 4},/obj/machinery/requests_console{department = "Law office";pixel_x = -32;pixel_y = 0},/obj/effect/landmark/start{name = "Lawyer"},/turf/open/floor/wood,/area/lawoffice)
-"bBh" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/stamp/law,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/lawoffice)
-"bBi" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/turf/open/floor/wood,/area/lawoffice)
-"bBj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light{dir = 4},/obj/machinery/photocopier,/turf/open/floor/wood,/area/lawoffice)
-"bBk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/lawoffice)
-"bBl" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel/red/side{dir = 8},/area/hallway/primary/port)
-"bBm" = (/obj/structure/filingcabinet/security,/obj/machinery/firealarm{dir = 1;pixel_x = 0;pixel_y = -26},/turf/open/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office)
-"bBn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office)
-"bBo" = (/obj/item/weapon/storage/secure/safe{pixel_x = 0;pixel_y = -23},/obj/structure/closet{name = "Evidence Closet"},/turf/open/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office)
-"bBp" = (/obj/structure/closet/secure_closet/detective,/turf/open/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office)
-"bBq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table/wood,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/open/floor/wood,/area/security/hos)
-"bBr" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp,/obj/machinery/firealarm{dir = 1;pixel_x = 0;pixel_y = -26},/turf/open/floor/wood,/area/security/hos)
-"bBs" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/turf/open/floor/wood,/area/security/hos)
-"bBt" = (/obj/machinery/suit_storage_unit/hos,/turf/open/floor/wood,/area/security/hos)
-"bBu" = (/obj/effect/landmark{name = "tripai"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"bBv" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"bBw" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;name = "regular air scrubber";on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel/blue,/area/ai_monitored/turret_protected/ai)
-"bBx" = (/obj/effect/landmark/start{name = "AI"},/obj/item/device/radio/intercom{broadcasting = 0;freerange = 1;listening = 1;name = "Common Channel";pixel_x = -27;pixel_y = 9},/obj/item/device/radio/intercom{anyai = 1;freerange = 1;listening = 0;name = "Custom Channel";pixel_x = 0;pixel_y = 31},/obj/item/device/radio/intercom{anyai = 1;broadcasting = 0;freerange = 1;frequency = 1447;name = "Private Channel";pixel_x = 27;pixel_y = -9},/obj/machinery/newscaster/security_unit{pixel_x = -28;pixel_y = 28},/obj/machinery/requests_console{department = "AI";departmentType = 5;pixel_x = 28;pixel_y = 28},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"bBy" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/turf/open/floor/plasteel/blue,/area/ai_monitored/turret_protected/ai)
-"bBz" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"bBA" = (/obj/structure/displaycase/labcage,/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/crew_quarters/hor)
-"bBB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/whitepurple/corner,/area/crew_quarters/hor)
-"bBC" = (/obj/effect/landmark/start{name = "Research Director"},/obj/structure/chair/office/light{dir = 4},/turf/open/floor/plasteel/whitepurple/corner,/area/crew_quarters/hor)
-"bBD" = (/obj/machinery/light{dir = 4},/obj/machinery/computer/robotics,/turf/open/floor/plasteel/whitepurple/corner,/area/crew_quarters/hor)
-"bBE" = (/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/medical/research{name = "Research Division"})
-"bBF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"bBG" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/medical/research{name = "Research Division"})
-"bBH" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/power/apc{cell_type = 10000;dir = 4;name = "Research Division APC";pixel_x = 24;pixel_y = 0},/obj/structure/table,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"bBI" = (/obj/structure/sign/directions/medical{tag = "icon-direction_med (NORTH)";icon_state = "direction_med";dir = 1},/obj/structure/sign/directions/evac{pixel_y = -10},/obj/structure/sign/directions/security{pixel_y = 10},/turf/closed/wall/r_wall,/area/toxins/lab)
-"bBJ" = (/turf/closed/wall,/area/toxins/lab)
-"bBK" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/toxins/lab)
-"bBL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd2";name = "research lab shutters"},/obj/machinery/door/firedoor/heavy,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/white,/area/toxins/lab)
-"bBM" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd2";name = "research lab shutters"},/obj/machinery/door/firedoor/heavy,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/white,/area/toxins/lab)
-"bBN" = (/obj/machinery/door/airlock/maintenance{name = "Research Maintenance";req_access_txt = "47";req_one_access_txt = "0"},/turf/open/floor/plating,/area/maintenance/asmaint2)
-"bBO" = (/turf/closed/wall/r_wall,/area/medical/research{name = "Research Division"})
-"bBP" = (/turf/closed/wall/r_wall,/area/toxins/storage)
-"bBQ" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plating,/area/maintenance/asmaint2)
-"bBR" = (/turf/closed/wall/r_wall,/area/toxins/test_area)
-"bBS" = (/turf/open/floor/plating/asteroid/airless,/area/space)
-"bBT" = (/turf/closed/wall/mineral/titanium,/area/shuttle/labor)
-"bBU" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/labor)
-"bBV" = (/obj/structure/table,/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bBW" = (/turf/open/floor/plating,/area/maintenance/fpmaint2)
-"bBX" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating,/area/security/armory)
-"bBY" = (/obj/structure/grille,/obj/structure/cable{tag = "icon-0-8";icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plating,/area/security/armory)
-"bBZ" = (/obj/structure/grille,/obj/structure/cable{tag = "icon-0-8";icon_state = "0-8"},/obj/structure/cable,/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plating,/area/security/armory)
-"bCa" = (/turf/closed/wall/r_wall,/area/security/warden{name = "Security Control"})
-"bCb" = (/turf/open/floor/plasteel/darkred,/area/security/warden{name = "Security Control"})
-"bCc" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/darkred,/area/security/warden{name = "Security Control"})
-"bCd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/security/warden{name = "Security Control"})
-"bCe" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/port)
-"bCf" = (/turf/open/floor/plasteel/blue/side{tag = "icon-blue (WEST)";icon_state = "blue";dir = 8},/area/crew_quarters/courtroom)
-"bCg" = (/turf/open/floor/plasteel,/area/crew_quarters/courtroom)
-"bCh" = (/obj/structure/chair{dir = 1;name = "Judge"},/turf/open/floor/plasteel,/area/crew_quarters/courtroom)
-"bCi" = (/turf/open/floor/plasteel/blue/side{tag = "icon-blue (EAST)";icon_state = "blue";dir = 4},/area/crew_quarters/courtroom)
-"bCj" = (/turf/closed/wall/r_wall,/area/crew_quarters/courtroom)
-"bCk" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/flasher{id = "PCell 1";pixel_x = -28},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"bCl" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"bCm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"bCn" = (/turf/closed/wall/r_wall,/area/lawoffice)
-"bCo" = (/obj/machinery/light_switch{dir = 8;pixel_x = -24},/obj/machinery/camera/autoname{tag = "icon-camera (EAST)";icon_state = "camera";dir = 4},/turf/open/floor/wood,/area/lawoffice)
-"bCp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/turf/open/floor/wood,/area/lawoffice)
-"bCq" = (/obj/machinery/button/door{id = "lawyer_blast";name = "Privacy Shutters";pixel_x = 25;pixel_y = 8},/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/wood,/area/lawoffice)
-"bCr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/side{dir = 8},/area/hallway/primary/port)
-"bCs" = (/turf/closed/wall/r_wall,/area/security/detectives_office)
-"bCt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/glass_security{name = "Detective";req_access_txt = "4"},/turf/open/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office)
-"bCu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/security/hos)
-"bCv" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/command{name = "Head of Security's Office";req_access = null;req_access_txt = "58"},/turf/open/floor/plasteel,/area/security/hos)
-"bCw" = (/obj/machinery/power/apc{cell_type = 5000;dir = 1;name = "AI Chamber APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel/blue,/area/ai_monitored/turret_protected/ai)
-"bCx" = (/obj/machinery/camera/motion,/turf/open/floor/plasteel/blue,/area/ai_monitored/turret_protected/ai)
-"bCy" = (/obj/structure/rack,/obj/item/weapon/circuitboard/aicore{pixel_x = -2;pixel_y = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/item/device/radio/intercom{dir = 8;pixel_x = -28},/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/crew_quarters/hor)
-"bCz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/whitepurple/corner{dir = 1},/area/crew_quarters/hor)
-"bCA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/holopad,/turf/open/floor/plasteel/whitepurple/corner{dir = 1},/area/crew_quarters/hor)
-"bCB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/computer/mecha,/turf/open/floor/plasteel/whitepurple/corner{dir = 1},/area/crew_quarters/hor)
-"bCC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/hor)
-"bCD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"bCE" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/medical/research{name = "Research Division"})
-"bCF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair{dir = 4},/obj/effect/landmark/start{name = "Scientist"},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"bCG" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table,/obj/item/weapon/storage/fancy/cigarettes,/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/medical/research{name = "Research Division"})
-"bCH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/medical/research{name = "Research Division"})
-"bCI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/purple/side{tag = "icon-purple (WEST)";icon_state = "purple";dir = 8},/area/hallway/primary/starboard)
-"bCJ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bCK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bCL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/research{name = "Research Division"})
-"bCM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 1},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "Biohazard";name = "biohazard containment door"},/turf/open/floor/plasteel/delivery,/area/medical/research{name = "Research Division"})
-"bCN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/medical/research{name = "Research Division"})
-"bCO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)";icon_state = "whitepurple";dir = 1},/area/medical/research{name = "Research Division"})
-"bCP" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)";icon_state = "whitepurple";dir = 1},/area/medical/research{name = "Research Division"})
-"bCQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)";icon_state = "whitepurple";dir = 1},/area/medical/research{name = "Research Division"})
-"bCR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)";icon_state = "whitepurple";dir = 1},/area/medical/research{name = "Research Division"})
-"bCS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)";icon_state = "whitepurple";dir = 1},/area/medical/research{name = "Research Division"})
-"bCT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)";icon_state = "whitepurple";dir = 1},/area/medical/research{name = "Research Division"})
-"bCU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTHEAST)";icon_state = "whitepurple";dir = 5},/area/medical/research{name = "Research Division"})
-"bCV" = (/turf/closed/wall,/area/toxins/storage)
-"bCW" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel/bot,/area/toxins/storage)
-"bCX" = (/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/plasteel/floorgrime,/area/toxins/storage)
-"bCY" = (/obj/machinery/camera/autoname,/turf/open/floor/plasteel/floorgrime,/area/toxins/storage)
-"bCZ" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/open/floor/plasteel/delivery,/area/toxins/storage)
-"bDa" = (/obj/machinery/computer/shuttle/labor,/obj/structure/reagent_dispensers/peppertank{pixel_x = -31;pixel_y = 0},/turf/open/floor/mineral/plastitanium,/area/shuttle/labor)
-"bDb" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/mineral/plastitanium,/area/shuttle/labor)
-"bDc" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/restraints/handcuffs,/turf/open/floor/mineral/plastitanium,/area/shuttle/labor)
-"bDd" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{tag = "icon-0-4";icon_state = "0-4"},/turf/open/floor/plating,/area/security/transfer)
-"bDe" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{tag = "icon-0-4";icon_state = "0-4"},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/security/transfer)
-"bDf" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bDg" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bDh" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating,/area/security/armory)
-"bDi" = (/obj/structure/grille,/turf/open/floor/plating,/area/security/armory)
-"bDj" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/darkred,/area/security/warden{name = "Security Control"})
-"bDk" = (/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/item/weapon/storage/toolbox/mechanical,/turf/open/floor/plating,/area/maintenance/port)
-"bDl" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/closed/wall,/area/crew_quarters/courtroom)
-"bDm" = (/obj/structure/closet/secure_closet/courtroom,/obj/item/weapon/gavelhammer,/turf/open/floor/plasteel/blue/side{tag = "icon-blue (SOUTHWEST)";icon_state = "blue";dir = 10},/area/crew_quarters/courtroom)
-"bDn" = (/turf/open/floor/plasteel/blue/side,/area/crew_quarters/courtroom)
-"bDo" = (/obj/machinery/firealarm{dir = 1;pixel_x = 0;pixel_y = -26},/turf/open/floor/plasteel/blue/side,/area/crew_quarters/courtroom)
-"bDp" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTH)";icon_state = "camera";dir = 1},/turf/open/floor/plasteel/blue/side,/area/crew_quarters/courtroom)
-"bDq" = (/turf/open/floor/plasteel/blue/side{tag = "icon-blue (SOUTHEAST)";icon_state = "blue";dir = 6},/area/crew_quarters/courtroom)
-"bDr" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/security{name = "Court Cell";req_access = null;req_access_txt = "63"},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"bDs" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"bDt" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"bDu" = (/obj/structure/closet/lawcloset,/turf/open/floor/wood,/area/lawoffice)
-"bDv" = (/obj/item/weapon/twohanded/required/kirbyplants{tag = "icon-plant-18";icon_state = "plant-18"},/turf/open/floor/wood,/area/lawoffice)
-"bDw" = (/obj/structure/table/wood,/turf/open/floor/wood,/area/lawoffice)
-"bDx" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/structure/disposalpipe/junction{dir = 1;icon_state = "pipe-j1";tag = "icon-pipe-j1 (EAST)"},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bDy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/red/side{tag = "icon-red (EAST)";icon_state = "red";dir = 4},/area/hallway/primary/port)
-"bDz" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/security/main)
-"bDA" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/bin,/turf/open/floor/plasteel/red/side{dir = 9},/area/security/main)
-"bDB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/main)
-"bDC" = (/obj/structure/chair{dir = 4},/obj/effect/landmark/start{name = "Security Officer"},/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/main)
-"bDD" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/power/apc{dir = 1;name = "Security Office APC";pixel_x = 0;pixel_y = 24},/obj/structure/table,/obj/item/weapon/storage/fancy/donut_box,/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/main)
-"bDE" = (/obj/machinery/light{dir = 1},/obj/machinery/holopad,/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/main)
-"bDF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table,/obj/item/weapon/folder/red,/obj/machinery/camera/autoname,/obj/item/device/radio/intercom{name = "Station Intercom";pixel_x = 0;pixel_y = 24},/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/main)
-"bDG" = (/obj/structure/chair{dir = 8},/obj/effect/landmark/start{name = "Security Officer"},/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/main)
-"bDH" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/main)
-"bDI" = (/obj/structure/closet/cabinet,/obj/item/weapon/reagent_containers/food/drinks/bottle/vermouth,/obj/item/key/security,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/main)
-"bDJ" = (/turf/closed/wall/r_wall,/area/security/main)
-"bDK" = (/obj/structure/cable{tag = "icon-1-4";icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"bDL" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{tag = "icon-1-4";icon_state = "1-4"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"bDM" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"bDN" = (/obj/structure/rack,/obj/item/device/aicard,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)";icon_state = "camera";dir = 5},/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/crew_quarters/hor)
-"bDO" = (/turf/open/floor/plasteel/whitepurple/corner,/area/crew_quarters/hor)
-"bDP" = (/obj/machinery/door/airlock/command{name = "Research Director's Office";req_access_txt = "30";req_one_access_txt = "0"},/turf/open/floor/plasteel/white,/area/crew_quarters/hor)
-"bDQ" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/medical/research{name = "Research Division"})
-"bDR" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"bDS" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/medical/research{name = "Research Division"})
-"bDT" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"bDU" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/research{name = "Research Division";req_access_txt = "0";req_one_access_txt = "47"},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"bDV" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/purple/side{tag = "icon-purple (WEST)";icon_state = "purple";dir = 8},/area/medical/research{name = "Research Division"})
-"bDW" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/medical/research{name = "Research Division"})
-"bDX" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/medical/research{name = "Research Division"})
-"bDY" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/research{name = "Research Division";req_access_txt = "0";req_one_access_txt = "47"},/turf/open/floor/plasteel,/area/medical/research{name = "Research Division"})
-"bDZ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "Biohazard";name = "biohazard containment door"},/turf/open/floor/plasteel/delivery,/area/medical/research{name = "Research Division"})
-"bEa" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/research{name = "Research Division";req_access_txt = "0";req_one_access_txt = "47"},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"bEb" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"bEc" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/obj/effect/landmark/start{name = "Scientist"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"bEd" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"bEe" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/landmark/start{name = "Scientist"},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"bEf" = (/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"bEg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (EAST)";icon_state = "whitepurple";dir = 4},/area/medical/research{name = "Research Division"})
-"bEh" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel/bot,/area/toxins/storage)
-"bEi" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;name = "regular air scrubber";on = 1},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel/bot,/area/toxins/storage)
-"bEj" = (/turf/open/floor/plasteel/floorgrime,/area/toxins/storage)
-"bEk" = (/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/turf/open/floor/plasteel/floorgrime,/area/toxins/storage)
-"bEl" = (/obj/machinery/light{dir = 4},/obj/machinery/portable_atmospherics/canister/toxins,/turf/open/floor/plasteel/delivery,/area/toxins/storage)
-"bEm" = (/turf/open/floor/plasteel/airless,/area/toxins/test_area)
-"bEn" = (/turf/open/floor/mineral/plastitanium,/area/shuttle/labor)
-"bEo" = (/obj/machinery/button/flasher{id = "gulagshuttleflasher";name = "Flash Control";pixel_x = 0;pixel_y = -26;req_access_txt = "1"},/obj/machinery/light,/turf/open/floor/mineral/plastitanium,/area/shuttle/labor)
-"bEp" = (/obj/machinery/mineral/labor_claim_console{machinedir = 2;pixel_x = 30;pixel_y = 30},/turf/open/floor/mineral/plastitanium,/area/shuttle/labor)
-"bEq" = (/obj/machinery/door/airlock/titanium{name = "Labor Shuttle Airlock";req_access_txt = "2"},/turf/open/floor/mineral/plastitanium,/area/shuttle/labor)
-"bEr" = (/obj/machinery/door/airlock/external{name = "Arrival Airlock"},/turf/open/floor/noslip,/area/security/transfer)
-"bEs" = (/turf/open/floor/noslip,/area/security/transfer)
-"bEt" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/glass_security{name = "Labor Camp Shuttle Airlock";req_access_txt = "2"},/turf/open/floor/noslip,/area/security/transfer)
-"bEu" = (/turf/closed/wall/r_wall,/area/security/armory)
-"bEv" = (/obj/machinery/door/airlock/glass_security{name = "Security Control";req_access_txt = "2"},/turf/open/floor/plasteel/darkred,/area/security/warden{name = "Security Control"})
-"bEw" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/glass_security{name = "Security Control";req_access_txt = "2"},/turf/open/floor/plasteel/darkred,/area/security/warden{name = "Security Control"})
-"bEx" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/security/warden{name = "Security Control"})
-"bEy" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/glass_security{id_tag = null;name = "Brig";req_access_txt = "63"},/turf/open/floor/plasteel/darkred,/area/crew_quarters/courtroom)
-"bEz" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/glass_security{name = "Long-Term Cell 1";req_access_txt = "2"},/turf/open/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)";icon_state = "darkred";dir = 1},/area/crew_quarters/courtroom)
-"bEA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel/red/side{dir = 8},/area/hallway/primary/port)
-"bEB" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bEC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/red/side{tag = "icon-red (EAST)";icon_state = "red";dir = 4},/area/hallway/primary/port)
-"bED" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/main)
-"bEE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/corner{dir = 8},/area/security/main)
-"bEF" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/main)
-"bEG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair{dir = 4},/obj/effect/landmark/start{name = "Security Officer"},/turf/open/floor/plasteel,/area/security/main)
-"bEH" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/open/floor/plasteel,/area/security/main)
-"bEI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/table,/obj/item/weapon/folder/red,/turf/open/floor/plasteel,/area/security/main)
-"bEJ" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/obj/structure/table,/turf/open/floor/plasteel,/area/security/main)
-"bEK" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/chair{dir = 8},/obj/effect/landmark/start{name = "Security Officer"},/turf/open/floor/plasteel,/area/security/main)
-"bEL" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/turf/open/floor/plasteel,/area/security/main)
-"bEM" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel/red/corner{dir = 4},/area/security/main)
-"bEN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai)
-"bEO" = (/obj/machinery/power/terminal{icon_state = "term";dir = 1},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"bEP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai)
-"bEQ" = (/obj/structure/rack,/obj/item/device/taperecorder{pixel_x = -3},/obj/item/device/paicard{pixel_x = 4},/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/crew_quarters/hor)
-"bER" = (/obj/machinery/keycard_auth{pixel_x = 0;pixel_y = -24},/obj/machinery/light,/obj/machinery/computer/card/minor/rd,/turf/open/floor/plasteel/whitepurple/corner{dir = 1},/area/crew_quarters/hor)
-"bES" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/table,/obj/machinery/button/door{id = "Biohazard";name = "Biohazard Shutter Control";pixel_x = -5;pixel_y = 5;req_access_txt = "47"},/obj/machinery/button/door{id = "rnd2";name = "Research Lab Shutter Control";pixel_x = 5;pixel_y = 5;req_access_txt = "47"},/turf/open/floor/plasteel/whitepurple/corner{dir = 1},/area/crew_quarters/hor)
-"bET" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/closet/secure_closet/RD,/turf/open/floor/plasteel/whitepurple/corner{dir = 1},/area/crew_quarters/hor)
-"bEU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/hor)
-"bEV" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"bEW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHWEST)";icon_state = "camera";dir = 10},/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/medical/research{name = "Research Division"})
-"bEX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"bEY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/medical/research{name = "Research Division"})
-"bEZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/medical/research{name = "Research Division"})
-"bFa" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/purple/side{tag = "icon-purple (WEST)";icon_state = "purple";dir = 8},/area/hallway/primary/starboard)
-"bFb" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bFc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bFd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/research{name = "Research Division"})
-"bFe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "Biohazard";name = "biohazard containment door"},/obj/structure/closet/emcloset,/turf/open/floor/plasteel/delivery,/area/medical/research{name = "Research Division"})
-"bFf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/medical/research{name = "Research Division"})
-"bFg" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plasteel/whitepurple/side,/area/medical/research{name = "Research Division"})
-"bFh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/turf/open/floor/plasteel/whitepurple/side,/area/medical/research{name = "Research Division"})
-"bFi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whitepurple/side,/area/medical/research{name = "Research Division"})
-"bFj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whitepurple/side,/area/medical/research{name = "Research Division"})
-"bFk" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/whitepurple/corner{tag = "icon-whitepurplecorner (WEST)";icon_state = "whitepurplecorner";dir = 8},/area/medical/research{name = "Research Division"})
-"bFl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (EAST)";icon_state = "whitepurple";dir = 4},/area/medical/research{name = "Research Division"})
-"bFm" = (/obj/machinery/portable_atmospherics/canister/bz,/turf/open/floor/plasteel/bot,/area/toxins/storage)
-"bFn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/portable_atmospherics/canister/bz,/turf/open/floor/plasteel/bot,/area/toxins/storage)
-"bFo" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/floorgrime,/area/toxins/storage)
-"bFp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/floorgrime,/area/toxins/storage)
-"bFq" = (/obj/item/clothing/shoes/sneakers/purple,/obj/item/clothing/head/soft/purple,/obj/item/clothing/glasses/regular/hipster,/turf/open/floor/plating,/area/maintenance/asmaint2)
-"bFr" = (/obj/machinery/door/airlock/titanium{name = "Labor Shuttle Airlock";req_access_txt = "2"},/turf/open/floor/plasteel/black,/area/shuttle/labor)
-"bFs" = (/obj/machinery/mineral/stacking_machine/laborstacker{input_dir = 2;output_dir = 1},/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor)
-"bFt" = (/obj/structure/closet/secure_closet/lethalshots,/turf/open/floor/plasteel{icon_state = "vault";dir = 4},/area/ai_monitored/security/armory)
-"bFu" = (/obj/machinery/door/poddoor/shutters{id = "armory";name = "armory shutters"},/turf/open/floor/plasteel/black,/area/ai_monitored/security/armory)
-"bFv" = (/obj/structure/rack,/obj/item/weapon/storage/box/rubbershot{pixel_x = 4;pixel_y = -6},/obj/item/weapon/storage/box/rubbershot{pixel_x = 1;pixel_y = -2},/obj/item/weapon/storage/box/rubbershot{pixel_x = -3;pixel_y = 3},/obj/machinery/camera/motion{c_tag = "Armory Motion Sensor";dir = 2;name = "motion-sensitive security camera"},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory)
-"bFw" = (/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/obj/structure/rack,/obj/item/clothing/suit/armor/riot{pixel_x = 6;pixel_y = -6},/obj/item/clothing/suit/armor/riot{pixel_x = 3;pixel_y = -3},/obj/item/clothing/suit/armor/riot{pixel_x = -1;pixel_y = 1},/obj/item/clothing/head/helmet/riot{pixel_x = -4;pixel_y = -6},/obj/item/clothing/head/helmet/riot{pixel_x = -6;pixel_y = -2},/obj/item/clothing/head/helmet/riot{pixel_x = -8;pixel_y = 2},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory)
-"bFx" = (/obj/structure/rack,/obj/item/weapon/shield/riot{pixel_x = 4;pixel_y = -7},/obj/item/weapon/shield/riot{pixel_x = 0;pixel_y = -3},/obj/item/weapon/shield/riot{pixel_x = -4;pixel_y = 0},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory)
-"bFy" = (/obj/machinery/power/apc{cell_type = 5000;dir = 4;name = "Armory APC";pixel_x = 24;pixel_y = 0},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/button/door{id = "armory";name = "Armory Shutters";pixel_x = 0;pixel_y = 28;req_access_txt = "3"},/obj/structure/rack,/obj/item/clothing/mask/gas/sechailer{pixel_x = 6;pixel_y = -6},/obj/item/clothing/mask/gas/sechailer{pixel_x = 2;pixel_y = -2},/obj/item/clothing/mask/gas/sechailer{pixel_x = -2;pixel_y = 2},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory)
-"bFz" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/structure/table,/obj/item/clothing/ears/earmuffs,/obj/item/clothing/ears/earmuffs,/obj/item/clothing/glasses/sunglasses,/obj/item/clothing/glasses/sunglasses,/obj/item/weapon/storage/firstaid/regular,/obj/machinery/power/apc{cell_type = 5000;dir = 8;name = "Brig Control APC";pixel_x = -26;pixel_y = 0},/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bFA" = (/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bFB" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bFC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/table,/obj/machinery/recharger,/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 31},/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bFD" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/bin,/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHEAST)";icon_state = "camera";dir = 6},/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bFE" = (/obj/structure/disposalpipe/junction{dir = 4;icon_state = "pipe-j2";tag = "icon-pipe-j1 (WEST)"},/turf/closed/wall,/area/security/warden{name = "Security Control"})
-"bFF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/requests_console{department = "Security";departmentType = 5;pixel_y = 30},/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bFG" = (/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bFH" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bFI" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/power/apc{cell_type = 10000;dir = 1;name = "Brig APC";pixel_x = 0;pixel_y = 24},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bFJ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{pixel_y = 28},/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bFK" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bFL" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/button/flasher{id = "PCell 1";pixel_x = 6;pixel_y = 24},/obj/machinery/camera/autoname,/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bFM" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bFN" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/structure/disposalpipe/junction{icon_state = "pipe-j1";dir = 4},/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bFO" = (/obj/machinery/door/airlock/glass_security{id_tag = "innersec";name = "Security";req_access_txt = "63"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bFP" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bFQ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4";tag = ""},/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bFR" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bFS" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/flasher{id = "secentry";pixel_x = 0;pixel_y = 28},/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bFT" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{id_tag = "outersec";name = "Security";req_access_txt = "63"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bFU" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/red/side{dir = 8},/area/hallway/primary/port)
-"bFV" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2";dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bFW" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red/side{tag = "icon-red (EAST)";icon_state = "red";dir = 4},/area/hallway/primary/port)
-"bFX" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/security{name = "Security Office";req_access = null;req_access_txt = "63"},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/main)
-"bFY" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/red/corner{dir = 8},/area/security/main)
-"bFZ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/main)
-"bGa" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/main)
-"bGb" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8";tag = ""},/obj/structure/chair{dir = 1},/turf/open/floor/plasteel,/area/security/main)
-"bGc" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/chair{dir = 1},/obj/effect/landmark/start{name = "Security Officer"},/turf/open/floor/plasteel,/area/security/main)
-"bGd" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/chair{dir = 1},/turf/open/floor/plasteel,/area/security/main)
-"bGe" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main)
-"bGf" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8";tag = ""},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/main)
-"bGg" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/red/corner{dir = 4},/area/security/main)
-"bGh" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{name = "Security Maintenance";req_access_txt = "1"},/turf/open/floor/plating,/area/security/main)
-"bGi" = (/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"bGj" = (/obj/effect/turf_decal/delivery,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"bGk" = (/obj/machinery/light,/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai)
-"bGl" = (/turf/closed/wall/r_wall,/area/toxins/server)
-"bGm" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/glass_command{name = "Server Room";req_access_txt = "30"},/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/toxins/server)
-"bGn" = (/obj/item/device/radio/intercom{dir = 8;pixel_x = -28},/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/medical/research{name = "Research Division"})
-"bGo" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"bGp" = (/turf/open/floor/plasteel/purple/side{tag = "icon-purple (WEST)";icon_state = "purple";dir = 8},/area/hallway/primary/starboard)
-"bGq" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel/purple/corner,/area/hallway/primary/starboard)
-"bGr" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/medical/research{name = "Research Division"})
-"bGs" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "Biohazard";name = "biohazard containment door"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/medical/research{name = "Research Division"})
-"bGt" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "Biohazard";name = "biohazard containment door"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/medical/research{name = "Research Division"})
-"bGu" = (/turf/closed/wall,/area/security/checkpoint/science)
-"bGv" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/security/checkpoint/science)
-"bGw" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/checkpoint/science)
-"bGx" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (WEST)";icon_state = "whitepurple";dir = 8},/area/medical/research{name = "Research Division"})
-"bGy" = (/obj/machinery/power/apc{dir = 8;name = "Toxins Storage APC";pixel_x = -25},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/plasteel/bot,/area/toxins/storage)
-"bGz" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/plasteel/bot,/area/toxins/storage)
-"bGA" = (/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/turf/open/floor/plasteel/floorgrime,/area/toxins/storage)
-"bGB" = (/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor)
-"bGC" = (/obj/machinery/mineral/labor_claim_console{machinedir = 1;pixel_x = 30;pixel_y = 0},/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor)
-"bGD" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/structure/sign/electricshock{pixel_x = -32},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bGE" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bGF" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating,/area/ai_monitored/security/armory)
-"bGG" = (/obj/structure/grille,/turf/open/floor/plating,/area/ai_monitored/security/armory)
-"bGH" = (/turf/closed/wall/r_wall,/area/ai_monitored/security/armory)
-"bGI" = (/obj/structure/closet/secure_closet{name = "Autorifle Ammunition Locker";req_access_txt = "3"},/obj/item/ammo_box/magazine/wt550m9/wtap,/obj/item/ammo_box/magazine/wt550m9/wtap,/obj/item/ammo_box/magazine/wt550m9/wtap,/obj/item/ammo_box/magazine/wt550m9/wtap,/obj/item/ammo_box/magazine/wt550m9/wtap,/obj/item/ammo_box/magazine/wt550m9/wtap,/obj/item/ammo_box/magazine/wt550m9/wtap,/obj/item/ammo_box/magazine/wt550m9/wtap,/obj/item/ammo_box/magazine/wt550m9/wtap,/obj/item/ammo_box/magazine/wt550m9/wtap,/turf/open/floor/plasteel{icon_state = "vault";dir = 4},/area/ai_monitored/security/armory)
-"bGJ" = (/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory)
-"bGK" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory)
-"bGL" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/item/weapon/storage/toolbox/mechanical,/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bGM" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bGN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bGO" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/warden{name = "Security Control"})
-"bGP" = (/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bGQ" = (/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/brig{name = "Security"})
-"bGR" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/brig{name = "Security"})
-"bGS" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bGT" = (/obj/machinery/door/airlock/glass_security{id_tag = "innersec";name = "Security";req_access_txt = "63"},/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bGU" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bGV" = (/obj/machinery/door/airlock/glass_security{id_tag = "outersec";name = "Security";req_access_txt = "63"},/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bGW" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8;initialize_directions = 11},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel/red/side{tag = "icon-red (EAST)";icon_state = "red";dir = 4},/area/hallway/primary/port)
-"bGX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/main)
-"bGY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/intercom{dir = 8;pixel_x = -28},/turf/open/floor/plasteel/red/corner{dir = 8},/area/security/main)
-"bGZ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/main)
-"bHa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main)
-"bHb" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;name = "regular air vent";on = 1},/turf/open/floor/plasteel,/area/security/main)
-"bHc" = (/turf/open/floor/plasteel,/area/security/main)
-"bHd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/main)
-"bHe" = (/obj/structure/table,/obj/item/weapon/paper_bin,/turf/open/floor/plasteel/red/corner{dir = 4},/area/security/main)
-"bHf" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/camera/motion{c_tag = "MiniSat Core Hallway";dir = 4;network = list("MiniSat")},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"bHg" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"bHh" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/aisat)
-"bHi" = (/obj/machinery/r_n_d/server/robotics,/turf/open/floor/circuit{name = "Server Base";initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/server)
-"bHj" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;external_pressure_bound = 140;on = 1;pressure_checks = 0},/turf/open/floor/circuit{name = "Server Base";initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/server)
-"bHk" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/sign/securearea{desc = "A warning sign which reads 'SERVER ROOM'.";name = "SERVER ROOM";pixel_y = 32},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/server)
-"bHl" = (/obj/machinery/atmospherics/pipe/simple{dir = 10},/obj/machinery/camera/autoname,/turf/open/floor/plasteel/black,/area/toxins/server)
-"bHm" = (/obj/machinery/camera{c_tag = "Server Room";dir = 2;network = list("SS13","RD");pixel_x = 22},/obj/machinery/power/apc{dir = 1;name = "Server Room APC";pixel_x = 0;pixel_y = 25},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plasteel/black,/area/toxins/server)
-"bHn" = (/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/turf/open/floor/plasteel/black,/area/toxins/server)
-"bHo" = (/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"bHp" = (/obj/structure/rack,/obj/item/device/gps/science,/obj/item/device/radio,/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/medical/research{name = "Research Division"})
-"bHq" = (/obj/structure/frame,/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/medical/research{name = "Research Division"})
-"bHr" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/medical/research{name = "Research Division"})
-"bHs" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/medical/research{name = "Research Division"})
-"bHt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/table,/obj/item/device/radio,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/science)
-"bHu" = (/obj/structure/table,/obj/machinery/button/door{id = "Biohazard";name = "Biohazard Shutter Control";pixel_x = -5;pixel_y = 5;req_access_txt = "47"},/obj/machinery/button/door{id = "rnd2";name = "Research Lab Shutter Control";pixel_x = 5;pixel_y = 5;req_access_txt = "47"},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/science)
-"bHv" = (/obj/machinery/computer/security,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/science)
-"bHw" = (/obj/machinery/portable_atmospherics/scrubber/huge/movable,/turf/open/floor/plasteel/floorgrime,/area/toxins/storage)
-"bHx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/floorgrime,/area/toxins/storage)
-"bHy" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/floorgrime,/area/toxins/storage)
-"bHz" = (/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plating,/area/maintenance/asmaint2)
-"bHA" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/structure/closet/crate,/obj/item/weapon/storage/belt,/turf/open/floor/plating,/area/maintenance/asmaint2)
-"bHB" = (/obj/structure/chair{dir = 8},/obj/machinery/flasher{id = "gulagshuttleflasher";pixel_x = 25},/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor)
-"bHC" = (/obj/structure/table,/obj/item/weapon/storage/box/zipties,/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bHD" = (/obj/structure/rack,/obj/item/weapon/storage/lockbox/loyalty{pixel_x = 3;pixel_y = -3},/obj/item/weapon/storage/lockbox/loyalty,/turf/open/floor/plasteel{icon_state = "vault";dir = 4},/area/ai_monitored/security/armory)
-"bHE" = (/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory)
-"bHF" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory)
-"bHG" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/security{name = "Armory";req_access = null;req_access_txt = "3"},/turf/open/floor/plasteel/black,/area/ai_monitored/security/armory)
-"bHH" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{tag = "icon-1-4";icon_state = "1-4"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bHI" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bHJ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bHK" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;name = "regular air scrubber";on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bHL" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/glass_security{name = "Security Control";req_access_txt = "2"},/turf/open/floor/plasteel/darkred,/area/security/warden{name = "Security Control"})
-"bHM" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bHN" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bHO" = (/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bHP" = (/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/brig{name = "Security"})
-"bHQ" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bHR" = (/turf/closed/wall,/area/security/brig{name = "Security"})
-"bHS" = (/obj/machinery/door/firedoor/heavy,/obj/structure/cable,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/brig{name = "Security"})
-"bHT" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/glass_security{name = "Brig Desk";req_access_txt = "1"},/turf/open/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)";icon_state = "darkred";dir = 1},/area/security/brig{name = "Security"})
-"bHU" = (/turf/closed/wall/r_wall,/area/security/brig{name = "Security"})
-"bHV" = (/obj/machinery/light{dir = 8},/obj/machinery/photocopier,/turf/open/floor/plasteel/red/side{dir = 10},/area/security/main)
-"bHW" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/corner,/area/security/main)
-"bHX" = (/obj/machinery/button/flasher{id = "insaneflash";pixel_y = -26},/turf/open/floor/plasteel/red/corner,/area/security/main)
-"bHY" = (/obj/machinery/computer/security,/turf/open/floor/plasteel/red/corner,/area/security/main)
-"bHZ" = (/obj/machinery/computer/secure_data,/turf/open/floor/plasteel/red/corner,/area/security/main)
-"bIa" = (/obj/vehicle/secway,/turf/open/floor/plasteel/red/corner,/area/security/main)
-"bIb" = (/turf/open/floor/plasteel/red/corner,/area/security/main)
-"bIc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/corner,/area/security/main)
-"bId" = (/obj/machinery/door/window/eastright{base_state = "left";dir = 8;icon_state = "left";name = "Security Delivery";req_access_txt = "1"},/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plasteel{icon_state = "delivery"},/area/security/main)
-"bIe" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8";freq = 1400;location = "Security"},/obj/structure/plasticflaps{opacity = 1},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel{icon_state = "bot"},/area/security/main)
-"bIf" = (/obj/effect/turf_decal/delivery,/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"bIg" = (/obj/effect/turf_decal/delivery,/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"bIh" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/camera/motion{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"bIi" = (/obj/machinery/airalarm/server{dir = 4;pixel_x = -22;pixel_y = 0},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/black{name = "Server Walkway";initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/server)
-"bIj" = (/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plasteel/black{name = "Server Walkway";initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/server)
-"bIk" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "Server Room";req_access_txt = "30"},/turf/open/floor/plasteel/black,/area/toxins/server)
-"bIl" = (/obj/machinery/atmospherics/pipe/manifold{dir = 8},/turf/open/floor/plasteel/black,/area/toxins/server)
-"bIm" = (/obj/structure/chair/office/light,/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/open/floor/plasteel/black,/area/toxins/server)
-"bIn" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 10},/turf/open/floor/plasteel/black,/area/toxins/server)
-"bIo" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/medical/research{name = "Research Division"})
-"bIp" = (/obj/machinery/light{dir = 8},/obj/machinery/chem_dispenser,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"bIq" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"bIr" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = ""},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"bIs" = (/obj/machinery/door/airlock/glass_security{name = "Security Post - Research Division";req_access_txt = "63"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/science)
-"bIt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/science)
-"bIu" = (/obj/effect/landmark/start/depsec/science,/obj/structure/chair/office/dark{dir = 4},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/science)
-"bIv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/machinery/computer/secure_data,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/science)
-"bIw" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/security/checkpoint/science)
-"bIx" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (WEST)";icon_state = "whitepurple";dir = 8},/area/medical/research{name = "Research Division"})
-"bIy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/toxins/storage)
-"bIz" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/research{name = "Toxins Storage";req_access_txt = "8"},/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/toxins/storage)
-"bIA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/toxins/storage)
-"bIB" = (/turf/closed/wall/r_wall,/area/toxins/mixing)
-"bIC" = (/turf/closed/mineral/random/labormineral,/area/toxins/mixing)
-"bID" = (/obj/structure/closet/crate,/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor)
-"bIE" = (/obj/machinery/door/airlock/titanium{id_tag = "prisonshuttle";name = "Labor Shuttle Airlock"},/obj/docking_port/mobile{dir = 8;dwidth = 2;height = 5;id = "laborcamp";name = "labor camp shuttle";port_angle = 90;width = 9},/obj/docking_port/stationary{dir = 8;dwidth = 2;height = 5;id = "laborcamp_home";name = "fore bay 1";width = 9},/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor)
-"bIF" = (/obj/structure/chair,/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bIG" = (/obj/structure/grille,/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered{name = "Asteroid"})
-"bIH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory)
-"bII" = (/obj/structure/rack,/obj/item/weapon/storage/box/chemimp{pixel_x = 4;pixel_y = -3},/obj/item/weapon/storage/box/trackimp,/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1},/obj/item/weapon/storage/lockbox/loyalty{pixel_x = -4;pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory)
-"bIJ" = (/obj/structure/rack,/obj/item/weapon/storage/box/handcuffs{pixel_x = 3;pixel_y = -6},/obj/item/weapon/storage/box/flashbangs{pixel_x = -2;pixel_y = -2},/obj/item/weapon/storage/box/teargas{pixel_x = -6;pixel_y = 3},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory)
-"bIK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory)
-"bIL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/armory)
-"bIM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/button/door{dir = 8;id = "armory out";name = "Armory Outer Shutters";pixel_x = -28;pixel_y = 0;req_access_txt = "3"},/obj/machinery/computer/prisoner,/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bIN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bIO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bIP" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bIQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table/reinforced,/obj/item/weapon/folder/red,/obj/item/weapon/pen/red,/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bIR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor/heavy,/obj/structure/cable{tag = "icon-0-4";icon_state = "0-4"},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/warden{name = "Security Control"})
-"bIS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable,/obj/structure/cable{tag = "icon-0-4";icon_state = "0-4"},/obj/structure/cable{tag = "icon-0-8";icon_state = "0-8"},/obj/machinery/door/firedoor/heavy,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/brig{name = "Security"})
-"bIT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/glass_security{name = "Equipment Room";req_access_txt = "1"},/turf/open/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)";icon_state = "darkred";dir = 1},/area/security/brig{name = "Security"})
-"bIU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{tag = "icon-0-8";icon_state = "0-8"},/obj/structure/cable{tag = "icon-0-4";icon_state = "0-4"},/obj/machinery/door/firedoor/heavy,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/brig{name = "Security"})
-"bIV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{tag = "icon-0-8";icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/obj/machinery/door/firedoor/heavy,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/brig{name = "Security"})
-"bIW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/vending/security,/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bIX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/brig{name = "Security"})
-"bIY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark/start{name = "Security Officer"},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/brig{name = "Security"})
-"bIZ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/brig{name = "Security"})
-"bJa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/filingcabinet/security,/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bJb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/security/brig{name = "Security"})
-"bJc" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer.";id = "innersec";name = "Brig Interior Doors Control";normaldoorcontrol = 1;pixel_x = -26;pixel_y = 5;req_access_txt = "63"},/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer.";id = "outersec";name = "Brig Exterior Doors Control";normaldoorcontrol = 1;pixel_x = -26;pixel_y = -5;req_access_txt = "63"},/turf/open/floor/plasteel/black,/area/security/brig{name = "Security"})
-"bJd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/security/brig{name = "Security"})
-"bJe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;name = "regular air scrubber";on = 1},/obj/item/device/radio/intercom{dir = 8;freerange = 1;name = "Station Intercom (Telecoms)";pixel_x = 0;pixel_y = 26},/turf/open/floor/plasteel/black,/area/security/brig{name = "Security"})
-"bJf" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/electricshock{pixel_y = 32},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/shutters/preopen{id = "briggate";name = "security shutters"},/turf/open/floor/plating,/area/security/brig{name = "Security"})
-"bJg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/side{dir = 8},/area/hallway/primary/port)
-"bJh" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bJi" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/side{tag = "icon-red (EAST)";icon_state = "red";dir = 4},/area/hallway/primary/port)
-"bJj" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/glass_security{name = "Insanity Ward";req_access_txt = "2"},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/main)
-"bJk" = (/turf/closed/wall/r_wall,/area/security/brig{name = "Interrogation"})
-"bJl" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/security{name = "Interrogation";req_access = null;req_access_txt = "0";req_one_access_txt = "1;4"},/turf/open/floor/plasteel/black,/area/security/brig{name = "Interrogation"})
-"bJm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/security/brig{name = "Interrogation"})
-"bJn" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"bJo" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"bJp" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"bJq" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"bJr" = (/obj/machinery/power/apc{cell_type = 5000;dir = 1;name = "AI Maintenance APC";pixel_y = 24},/obj/structure/cable{tag = "icon-0-8";icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark/event_spawn,/obj/machinery/camera/motion{c_tag = "MiniSat Foyer";dir = 1;network = list("MiniSat")},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"bJs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"bJt" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"bJu" = (/obj/machinery/r_n_d/server/core,/turf/open/floor/circuit{name = "Server Base";initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/server)
-"bJv" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;external_pressure_bound = 120;initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/circuit{name = "Server Base";initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/server)
-"bJw" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'SERVER ROOM'.";name = "SERVER ROOM";pixel_y = -32},/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/server)
-"bJx" = (/obj/machinery/atmospherics/pipe/simple{dir = 9},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/pen{desc = "Writes upside down!";name = "astronaut pen"},/turf/open/floor/plasteel/black,/area/toxins/server)
-"bJy" = (/obj/machinery/computer/rdservercontrol,/turf/open/floor/plasteel/black,/area/toxins/server)
-"bJz" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 1},/turf/open/floor/plasteel/black,/area/toxins/server)
-"bJA" = (/obj/structure/closet/wardrobe/science_white,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"bJB" = (/obj/structure/closet/wardrobe/science_white,/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/medical/research{name = "Research Division"})
-"bJC" = (/obj/machinery/autolathe,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)";icon_state = "camera";dir = 5},/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/medical/research{name = "Research Division"})
-"bJD" = (/obj/structure/disposalpipe/segment,/obj/machinery/button/door{dir = 2;id = "robotics_lab";name = "Robotics Door Control";pixel_x = 0;pixel_y = -24;req_access_txt = "29"},/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/medical/research{name = "Research Division"})
-"bJE" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/science)
-"bJF" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/science)
-"bJG" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/science)
-"bJH" = (/obj/structure/closet/bombcloset,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bJI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 1},/obj/structure/closet/bombcloset,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bJJ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bJK" = (/obj/machinery/portable_atmospherics/canister,/obj/structure/window/reinforced{dir = 8},/obj/machinery/firealarm{dir = 2;pixel_y = 24},/obj/machinery/camera{c_tag = "Toxins Lab West";dir = 2;network = list("SS13","RD");pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bJL" = (/obj/machinery/portable_atmospherics/canister,/obj/item/device/radio/intercom{pixel_y = 25},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bJM" = (/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/obj/item/weapon/storage/firstaid/toxin,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bJN" = (/obj/machinery/portable_atmospherics/pump,/obj/structure/window/reinforced{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bJO" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bJP" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bJQ" = (/turf/closed/wall/r_wall,/area/maintenance/asmaint2)
-"bJR" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/asmaint2)
-"bJS" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plating/airless,/area/toxins/test_area)
-"bJT" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating/airless,/area/toxins/test_area)
-"bJU" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plating/airless,/area/toxins/test_area)
-"bJV" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plating/airless,/area/shuttle/labor)
-"bJW" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bJX" = (/obj/machinery/computer/shuttle/labor,/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"bJY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory)
-"bJZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory)
-"bKa" = (/obj/structure/rack,/obj/item/weapon/gun/energy/e_gun{pixel_x = -3;pixel_y = 3},/obj/item/weapon/gun/energy/e_gun,/obj/item/weapon/gun/energy/e_gun{pixel_x = 3;pixel_y = -3},/obj/effect/turf_decal/bot{dir = 2},/obj/machinery/door/poddoor/shutters/preopen{id = "armory out";name = "armory"},/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/ai_monitored/security/armory)
-"bKb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/computer/security,/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bKc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bKd" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bKe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bKf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start{name = "Warden"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bKg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor/heavy,/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor{dir = 8;name = "Brig Control Desk";req_access_txt = "2"},/obj/machinery/door/window/eastleft{name = "Brig Desk";req_access_txt = "1"},/turf/open/floor/plasteel/black,/area/security/warden{name = "Security Control"})
-"bKh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark{name = "secequipment"},/turf/open/floor/plasteel/black,/area/security/brig{name = "Security"})
-"bKi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/security/brig{name = "Security"})
-"bKj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/closet/secure_closet/security,/obj/item/weapon/storage/belt/security/full,/turf/open/floor/plasteel/black,/area/security/brig{name = "Security"})
-"bKk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/obj/structure/cable,/obj/machinery/door/firedoor/heavy,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/brig{name = "Security"})
-"bKl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bKm" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/brig{name = "Security"})
-"bKn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/brig{name = "Security"})
-"bKo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/start{name = "Security Officer"},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/brig{name = "Security"})
-"bKp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/reagent_dispensers/peppertank{pixel_x = 30},/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bKq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/security/brig{name = "Security"})
-"bKr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/turf/open/floor/plasteel/black,/area/space)
-"bKs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/computer/security,/turf/open/floor/plasteel/black,/area/security/brig{name = "Security"})
-"bKt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/computer/secure_data,/turf/open/floor/plasteel/black,/area/security/brig{name = "Security"})
-"bKu" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plasteel/black,/area/security/brig{name = "Security"})
-"bKv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/table/reinforced,/obj/machinery/door/window/southleft{dir = 4;name = "Brig Desk";req_access_txt = "1"},/obj/machinery/door/poddoor/shutters/preopen{id = "briggate";name = "security shutters"},/turf/open/floor/plasteel/black,/area/security/brig{name = "Security"})
-"bKw" = (/turf/closed/wall,/area/security/main)
-"bKx" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/pen/red,/turf/open/floor/plasteel/whitered/side{tag = "icon-whitered (NORTHWEST)";icon_state = "whitered";dir = 9},/area/security/main)
-"bKy" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/whitered/side{tag = "icon-whitered (NORTH)";icon_state = "whitered";dir = 1},/area/security/main)
-"bKz" = (/obj/machinery/sleeper{icon_state = "sleeper-open";dir = 8},/turf/open/floor/plasteel/whitered/side{tag = "icon-whitered (NORTH)";icon_state = "whitered";dir = 1},/area/security/main)
-"bKA" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/computer/med_data,/turf/open/floor/plasteel/whitered/side{tag = "icon-whitered (NORTHEAST)";icon_state = "whitered";dir = 5},/area/security/main)
-"bKB" = (/turf/closed/wall,/area/security/brig{name = "Interrogation"})
-"bKC" = (/turf/open/floor/plasteel/black,/area/security/brig{name = "Interrogation"})
-"bKD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/security/brig{name = "Interrogation"})
-"bKE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/maintenance/maintcentral)
-"bKF" = (/turf/closed/wall/r_wall,/area/maintenance/maintcentral)
-"bKG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/maintenance/maintcentral)
-"bKH" = (/obj/item/device/radio/intercom{dir = 8;pixel_x = -28},/turf/open/floor/plasteel/purple/side{tag = "icon-purple (WEST)";icon_state = "purple";dir = 8},/area/hallway/primary/starboard)
-"bKI" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel/purple/side{tag = "icon-purple (EAST)";icon_state = "purple";dir = 4},/area/hallway/primary/starboard)
-"bKJ" = (/turf/closed/wall/r_wall,/area/assembly/robotics)
-"bKK" = (/turf/closed/wall,/area/assembly/robotics)
-"bKL" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/assembly/robotics)
-"bKM" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/shutters{id = "robotics_lab";name = "robotics"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/assembly/robotics)
-"bKN" = (/obj/machinery/light,/obj/structure/closet,/obj/item/weapon/screwdriver,/obj/item/device/radio/intercom{dir = 8;pixel_x = -28},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/science)
-"bKO" = (/obj/machinery/power/apc{dir = 2;name = "Science Security APC";pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/science)
-"bKP" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/structure/filingcabinet/security,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/science)
-"bKQ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (WEST)";icon_state = "whitepurple";dir = 8},/area/medical/research{name = "Research Division"})
-"bKR" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (EAST)";icon_state = "whitepurple";dir = 4},/area/medical/research{name = "Research Division"})
-"bKS" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Toxins Lab";req_access_txt = "8"},/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bKT" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bKU" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bKV" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bKW" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bKX" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bKY" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bKZ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/machinery/meter,/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bLa" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plasteel/whitepurple/corner,/area/toxins/mixing)
-"bLb" = (/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/toxins/mixing)
-"bLc" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/toxins/mixing)
-"bLd" = (/obj/structure/closet,/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bLe" = (/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bLf" = (/obj/machinery/camera/autoname,/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bLg" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bLh" = (/obj/machinery/button/massdriver{dir = 2;id = "toxinsdriver";pixel_y = 24},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/toxins/mixing)
-"bLi" = (/obj/machinery/doppler_array{dir = 4},/turf/open/floor/plasteel,/area/toxins/mixing)
-"bLj" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating/airless,/area/toxins/test_area)
-"bLk" = (/turf/open/floor/plating/airless,/area/toxins/test_area)
-"bLl" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating/airless,/area/toxins/test_area)
-"bLm" = (/obj/structure/shuttle/engine/propulsion,/turf/open/floor/plating/airless,/area/shuttle/labor)
-"bLn" = (/obj/structure/rack,/obj/item/weapon/gun/energy/e_gun/dragnet{layer = 3.1;pixel_x = -4;pixel_y = 3},/obj/item/weapon/storage/box/firingpins{pixel_x = 3;pixel_y = -6},/obj/item/weapon/storage/box/firingpins,/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory)
-"bLo" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/obj/structure/rack,/obj/item/clothing/suit/armor/laserproof,/obj/item/weapon/gun/energy/ionrifle{pixel_y = -4},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory)
-"bLp" = (/obj/structure/rack,/obj/item/weapon/gun/energy/laser{pixel_x = -3;pixel_y = 3},/obj/item/weapon/gun/energy/laser,/obj/item/weapon/gun/energy/laser{pixel_x = 3;pixel_y = -3},/obj/effect/turf_decal/bot{dir = 2},/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/machinery/door/poddoor/shutters/preopen{id = "armory out";name = "armory"},/turf/open/floor/plasteel/black,/area/ai_monitored/security/armory)
-"bLq" = (/obj/machinery/computer/secure_data,/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bLr" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bLs" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/structure/table/reinforced,/obj/item/weapon/hand_labeler,/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bLt" = (/turf/closed/wall,/area/security/warden{name = "Security Control"})
-"bLu" = (/obj/machinery/light/small{dir = 8},/obj/structure/table,/obj/machinery/recharger,/turf/open/floor/plasteel/black,/area/security/brig{name = "Security"})
-"bLv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/security/brig{name = "Security"})
-"bLw" = (/obj/structure/closet/secure_closet/security,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/item/weapon/storage/belt/security/full,/turf/open/floor/plasteel/black,/area/security/brig{name = "Security"})
-"bLx" = (/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/obj/structure/cable,/obj/machinery/door/firedoor/heavy,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/brig{name = "Security"})
-"bLy" = (/obj/structure/table,/obj/item/device/radio,/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bLz" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/brig{name = "Security"})
-"bLA" = (/obj/machinery/status_display{dir = 4;pixel_x = 32},/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bLB" = (/obj/structure/cable{tag = "icon-0-4";icon_state = "0-4"},/obj/machinery/door/firedoor/heavy,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/brig{name = "Security"})
-"bLC" = (/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/obj/structure/cable{tag = "icon-0-8";icon_state = "0-8"},/obj/machinery/door/firedoor/heavy,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/brig{name = "Security"})
-"bLD" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/closed/wall/r_wall,/area/security/brig{name = "Security"})
-"bLE" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/red/side{tag = "icon-red (EAST)";icon_state = "red";dir = 4},/area/hallway/primary/port)
-"bLF" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/security/main)
-"bLG" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whitered/side{tag = "icon-whitered (WEST)";icon_state = "whitered";dir = 8},/area/security/main)
-"bLH" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8";tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/security/main)
-"bLI" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/security/main)
-"bLJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/flasher{id = "insaneflash";pixel_x = 26},/turf/open/floor/plasteel/whitered/side{tag = "icon-whitered (EAST)";icon_state = "whitered";dir = 4},/area/security/main)
-"bLK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/security/brig{name = "Interrogation"})
-"bLL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair{dir = 4},/turf/open/floor/plasteel/black,/area/security/brig{name = "Interrogation"})
-"bLM" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;name = "regular air vent";on = 1},/obj/structure/table,/obj/item/device/flashlight/lamp,/turf/open/floor/plasteel/black,/area/security/brig{name = "Interrogation"})
-"bLN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/plasteel/black,/area/security/brig{name = "Interrogation"})
-"bLO" = (/obj/machinery/door/airlock/maintenance{name = "Security Maintenance";req_access_txt = "1"},/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bLP" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bLQ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bLR" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space,/area/space/nearstation)
-"bLS" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/space,/area/space/nearstation)
-"bLT" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bLU" = (/obj/structure/cable{tag = "icon-1-4";icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bLV" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bLW" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4";tag = ""},/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bLX" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bLY" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/purple/side{tag = "icon-purple (NORTH)";icon_state = "purple";dir = 1},/area/hallway/primary/starboard)
-"bLZ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/purple/corner{tag = "icon-purplecorner (NORTH)";icon_state = "purplecorner";dir = 1},/area/hallway/primary/starboard)
-"bMa" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bMb" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/purple/side{tag = "icon-purple (EAST)";icon_state = "purple";dir = 4},/area/hallway/primary/starboard)
-"bMc" = (/obj/machinery/requests_console{department = "Robotics";departmentType = 2;name = "Robotics RC";pixel_y = 30},/obj/machinery/button/door{dir = 2;id = "robotics";name = "Shutters Control Button";pixel_x = -24;pixel_y = 0;req_access_txt = "29"},/obj/structure/table,/obj/item/weapon/stock_parts/cell/high,/obj/item/weapon/stock_parts/cell/high{pixel_x = 10;pixel_y = 5},/obj/item/weapon/stock_parts/cell/high{pixel_x = 10;pixel_y = 5},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTHWEST)";icon_state = "whitepurple";dir = 9},/area/assembly/robotics)
-"bMd" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)";icon_state = "whitepurple";dir = 1},/area/assembly/robotics)
-"bMe" = (/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)";icon_state = "whitepurple";dir = 1},/area/assembly/robotics)
-"bMf" = (/obj/machinery/button/door{dir = 2;id = "robotics_lab";name = "Robotics Door Control";pixel_x = 24;pixel_y = 0;req_access_txt = "29"},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTHEAST)";icon_state = "whitepurple";dir = 5},/area/assembly/robotics)
-"bMg" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (WEST)";icon_state = "whitepurple";dir = 8},/area/medical/research{name = "Research Division"})
-"bMh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (EAST)";icon_state = "whitepurple";dir = 4},/area/medical/research{name = "Research Division"})
-"bMi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/toxins/mixing)
-"bMj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)";icon_state = "camera";dir = 5},/turf/open/floor/plasteel/whitepurple/corner{tag = "icon-whitepurplecorner (WEST)";icon_state = "whitepurplecorner";dir = 8},/area/toxins/mixing)
-"bMk" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bMl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bMm" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bMn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bMo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bMp" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bMq" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bMr" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (EAST)";icon_state = "whitepurple";dir = 4},/area/toxins/mixing)
-"bMs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Toxins Lab";req_access_txt = "8"},/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bMt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bMu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Toxins Launch Room";req_access_txt = "8"},/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bMv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bMw" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;name = "regular air vent";on = 1},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bMx" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bMy" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel,/area/toxins/mixing)
-"bMz" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching the test chamber.";dir = 8;layer = 4;name = "Test Chamber Telescreen";network = list("Toxins");pixel_x = 30;pixel_y = 0},/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plasteel,/area/toxins/mixing)
-"bMA" = (/obj/structure/rack,/obj/item/weapon/gun/energy/e_gun/advtaser{pixel_x = -3;pixel_y = 3},/obj/item/weapon/gun/energy/e_gun/advtaser,/obj/item/weapon/gun/energy/e_gun/advtaser{pixel_x = 3;pixel_y = -3},/obj/effect/turf_decal/bot{dir = 2},/obj/machinery/door/poddoor/shutters/preopen{id = "armory out";name = "armory"},/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plasteel/black,/area/ai_monitored/security/armory)
-"bMB" = (/obj/structure/table,/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bMC" = (/obj/machinery/button/door{id = "Secure Gate";name = "Cell Shutters";pixel_x = -27;pixel_y = -2;req_access_txt = "0"},/obj/machinery/button/door{id = "Prison Gate";name = "Prison Wing Lockdown";pixel_x = -27;pixel_y = 8;req_access_txt = "2"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bMD" = (/obj/machinery/light{dir = 4},/obj/structure/closet/secure_closet/warden,/obj/item/key/security,/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bME" = (/obj/machinery/newscaster/security_unit,/turf/closed/wall,/area/security/warden{name = "Security Control"})
-"bMF" = (/obj/structure/table,/obj/machinery/recharger,/turf/open/floor/plasteel/black,/area/security/brig{name = "Security"})
-"bMG" = (/obj/effect/landmark{name = "secequipment"},/turf/open/floor/plasteel/black,/area/security/brig{name = "Security"})
-"bMH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet/secure_closet/security,/obj/item/weapon/storage/belt/security/full,/turf/open/floor/plasteel/black,/area/security/brig{name = "Security"})
-"bMI" = (/obj/machinery/door_timer{id = "Cell 1";name = "Cell 1";pixel_y = -32},/obj/machinery/camera/autoname{tag = "icon-camera (NORTH)";icon_state = "camera";dir = 1},/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bMJ" = (/obj/machinery/light,/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bMK" = (/obj/machinery/door_timer{id = "Cell 2";name = "Cell 2";pixel_y = -32},/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bML" = (/obj/machinery/door_timer{id = "Cell 3";name = "Cell 3";pixel_y = -32},/turf/open/floor/plasteel/darkred,/area/security/brig{name = "Security"})
-"bMM" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/shutters/preopen{id = "briggate";name = "security shutters"},/turf/open/floor/plating,/area/security/brig{name = "Security"})
-"bMN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/red/side{dir = 8},/area/hallway/primary/port)
-"bMO" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable,/obj/structure/sign/electricshock{pixel_y = -32},/turf/open/floor/plating,/area/security/main)
-"bMP" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/bottle/morphine,/obj/item/weapon/reagent_containers/syringe,/turf/open/floor/plasteel/whitered/side{tag = "icon-whitered (WEST)";icon_state = "whitered";dir = 8},/area/security/main)
-"bMQ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel/white,/area/security/main)
-"bMR" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/turf/open/floor/plasteel/white,/area/security/main)
-"bMS" = (/obj/machinery/light{dir = 4},/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/bottle/morphine,/obj/item/weapon/reagent_containers/syringe,/turf/open/floor/plasteel/whitered/side{tag = "icon-whitered (EAST)";icon_state = "whitered";dir = 4},/area/security/main)
-"bMT" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel/black,/area/security/brig{name = "Interrogation"})
-"bMU" = (/obj/structure/table,/obj/item/device/taperecorder,/turf/open/floor/plasteel/black,/area/security/brig{name = "Interrogation"})
-"bMV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/obj/structure/chair/office/light{dir = 8},/turf/open/floor/plasteel/black,/area/security/brig{name = "Interrogation"})
-"bMW" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel/black,/area/security/brig{name = "Interrogation"})
-"bMX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bMY" = (/turf/closed/wall,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bMZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/gravity_generator)
-"bNa" = (/obj/machinery/ai_status_display,/turf/closed/wall/r_wall,/area/engine/gravity_generator)
-"bNb" = (/turf/closed/wall/r_wall,/area/engine/gravity_generator)
-"bNc" = (/obj/machinery/status_display{density = 0;layer = 4},/turf/closed/wall/r_wall,/area/engine/gravity_generator)
-"bNd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/engine/gravity_generator)
-"bNe" = (/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bNf" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bNg" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bNh" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)";icon_state = "camera";dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bNi" = (/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bNj" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/assembly/robotics)
-"bNk" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high,/turf/open/floor/plasteel/whitepurple/corner{tag = "icon-whitepurplecorner (NORTH)";icon_state = "whitepurplecorner";dir = 1},/area/assembly/robotics)
-"bNl" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/assembly/robotics)
-"bNm" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plasteel/white,/area/assembly/robotics)
-"bNn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whitepurple/corner{tag = "icon-whitepurplecorner (EAST)";icon_state = "whitepurplecorner";dir = 4},/area/assembly/robotics)
-"bNo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)";icon_state = "whitepurple";dir = 1},/area/assembly/robotics)
-"bNp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)";icon_state = "whitepurple";dir = 1},/area/assembly/robotics)
-"bNq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHEAST)";icon_state = "camera";dir = 6},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)";icon_state = "whitepurple";dir = 1},/area/assembly/robotics)
-"bNr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTHEAST)";icon_state = "whitepurple";dir = 5},/area/assembly/robotics)
-"bNs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "Robotics Lab";req_access_txt = "29";req_one_access_txt = "0"},/turf/open/floor/plasteel/white,/area/assembly/robotics)
-"bNt" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (WEST)";icon_state = "whitepurple";dir = 8},/area/medical/research{name = "Research Division"})
-"bNu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (EAST)";icon_state = "whitepurple";dir = 4},/area/medical/research{name = "Research Division"})
-"bNv" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/toxins/mixing)
-"bNw" = (/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (WEST)";icon_state = "whitepurple";dir = 8},/area/toxins/mixing)
-"bNx" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bNy" = (/obj/item/device/assembly/prox_sensor{pixel_x = -4;pixel_y = 1},/obj/item/device/assembly/prox_sensor{pixel_x = 8;pixel_y = 9},/obj/item/device/assembly/prox_sensor{pixel_x = 9;pixel_y = -2},/obj/item/device/assembly/prox_sensor{pixel_x = 0;pixel_y = 2},/obj/structure/table/reinforced,/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bNz" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Scientist"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bNA" = (/obj/structure/table/reinforced,/obj/item/weapon/wrench,/obj/item/weapon/screwdriver{pixel_y = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bNB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bNC" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (EAST)";icon_state = "whitepurple";dir = 4},/area/toxins/mixing)
-"bND" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small,/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/toxins/mixing)
-"bNE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "whitepurplefull"},/area/toxins/mixing)
-"bNF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/window/southleft,/turf/open/floor/plasteel/loadingarea,/area/toxins/mixing)
-"bNG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/mixing)
-"bNH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/mixing)
-"bNI" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/mixing)
-"bNJ" = (/obj/structure/rack,/obj/item/weapon/gun/ballistic/automatic/wt550{pixel_x = 6;pixel_y = -6},/obj/item/weapon/gun/ballistic/automatic/wt550{pixel_x = 3;pixel_y = -3},/obj/item/weapon/gun/ballistic/automatic/wt550,/turf/open/floor/plasteel{icon_state = "vault";dir = 4},/area/security/armory)
-"bNK" = (/obj/machinery/door/poddoor/shutters{id = "armory";name = "armory shutters"},/turf/open/floor/plasteel/black,/area/security/armory)
-"bNL" = (/obj/structure/rack,/obj/item/weapon/grenade/barrier{pixel_x = 4;pixel_y = -4},/obj/item/weapon/grenade/barrier{pixel_x = 2;pixel_y = -2},/obj/item/weapon/grenade/barrier,/obj/item/weapon/grenade/barrier{pixel_x = -2;pixel_y = 2},/turf/open/floor/plasteel/darkred,/area/security/armory)
-"bNM" = (/obj/machinery/flasher/portable,/turf/open/floor/plasteel/darkred,/area/security/armory)
-"bNN" = (/obj/structure/closet/secure_closet{anchored = 1;name = "Contraband Locker";req_access_txt = "3"},/turf/open/floor/plasteel/darkred,/area/security/armory)
-"bNO" = (/obj/machinery/vending/security,/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bNP" = (/obj/machinery/firealarm{dir = 1;pixel_x = 0;pixel_y = -26},/obj/vehicle/secway,/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bNQ" = (/obj/structure/table,/obj/item/device/radio/intercom{desc = "Talk smack through this.";dir = 4;pixel_x = 28;syndie = 1},/obj/item/weapon/book/manual/wiki/security_space_law,/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bNR" = (/obj/structure/table,/obj/item/weapon/storage/fancy/donut_box,/turf/open/floor/plasteel/showroomfloor,/area/security/warden{name = "Security Control"})
-"bNS" = (/obj/structure/closet/wardrobe/red,/obj/item/device/radio/intercom{dir = 8;pixel_x = -28},/turf/open/floor/plasteel/black,/area/security/brig{name = "Security"})
-"bNT" = (/obj/structure/cable{tag = "icon-1-4";icon_state = "1-4"},/turf/closed/wall,/area/security/brig{name = "Security"})
-"bNU" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{tag = "icon-0-8";icon_state = "0-8"},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "briglockdown";name = "brig shutters"},/turf/open/floor/plating,/area/security/brig{name = "Security"})
-"bNV" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/poddoor/preopen{id = "briglockdown";name = "brig shutters"},/obj/machinery/door/window/brigdoor{id = "Cell 1";name = "Cell 1";req_access_txt = "2"},/turf/open/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)";icon_state = "darkred";dir = 1},/area/security/brig{name = "Security"})
-"bNW" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/closed/wall,/area/security/brig{name = "Security"})
-"bNX" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/poddoor/preopen{id = "briglockdown";name = "brig shutters"},/obj/machinery/door/window/brigdoor{id = "Cell 2";name = "Cell 2";req_access_txt = "2"},/turf/open/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)";icon_state = "darkred";dir = 1},/area/security/brig{name = "Security"})
-"bNY" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor/border_only,/obj/structure/cable{tag = "icon-1-4";icon_state = "1-4"},/obj/machinery/door/poddoor/preopen{id = "briglockdown";name = "brig shutters"},/obj/machinery/door/window/brigdoor{id = "Cell 3";name = "Cell 3";req_access_txt = "2"},/turf/open/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)";icon_state = "darkred";dir = 1},/area/security/brig{name = "Security"})
-"bNZ" = (/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/turf/closed/wall/r_wall,/area/security/brig{name = "Security"})
-"bOa" = (/obj/structure/bed,/obj/item/clothing/suit/straight_jacket,/turf/open/floor/plasteel/whitered/side{tag = "icon-whitered (SOUTHWEST)";icon_state = "whitered";dir = 10},/area/security/main)
-"bOb" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/turf/open/floor/plasteel/whitered/side,/area/security/main)
-"bOc" = (/turf/open/floor/plasteel/whitered/side,/area/security/main)
-"bOd" = (/obj/structure/bed,/obj/item/clothing/suit/straight_jacket,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel/whitered/side{tag = "icon-whitered (SOUTHEAST)";icon_state = "whitered";dir = 6},/area/security/main)
-"bOe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bOf" = (/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/gravity_generator)
-"bOg" = (/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHEAST)";icon_state = "camera";dir = 6},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/gravity_generator)
-"bOh" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bOi" = (/obj/machinery/power/apc{dir = 2;name = "Telecoms Monitoring APC";pixel_y = -24},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bOj" = (/obj/structure/closet/firecloset/full,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bOk" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastright{base_state = "left";dir = 4;icon_state = "left";name = "Robotics Desk";req_access_txt = "29"},/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics";name = "robotics lab shutters"},/turf/open/floor/plating,/area/assembly/robotics)
-"bOl" = (/obj/structure/chair/office/dark{dir = 8},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/assembly/robotics)
-"bOm" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/assembly/robotics)
-"bOn" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/assembly/robotics)
-"bOo" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel/white,/area/assembly/robotics)
-"bOp" = (/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/assembly/robotics)
-"bOq" = (/turf/open/floor/plasteel/white,/area/assembly/robotics)
-"bOr" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1;pixel_y = 6},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/obj/item/clothing/head/welding{pixel_x = -3;pixel_y = 5},/obj/item/clothing/glasses/welding,/turf/open/floor/plasteel/white,/area/assembly/robotics)
-"bOs" = (/obj/structure/closet/l3closet,/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (SOUTHWEST)";icon_state = "whitepurple";dir = 10},/area/toxins/mixing)
-"bOt" = (/obj/machinery/light,/turf/open/floor/plasteel/whitepurple/side,/area/toxins/mixing)
-"bOu" = (/turf/open/floor/plasteel/whitepurple/side,/area/toxins/mixing)
-"bOv" = (/obj/item/device/assembly/signaler{pixel_x = 0;pixel_y = 8},/obj/item/device/assembly/signaler{pixel_x = -8;pixel_y = 5},/obj/item/device/assembly/signaler{pixel_x = 6;pixel_y = 5},/obj/item/device/assembly/signaler{pixel_x = -2;pixel_y = -2},/obj/structure/table/reinforced,/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bOw" = (/obj/item/device/transfer_valve{pixel_x = -5},/obj/item/device/transfer_valve{pixel_x = -5},/obj/item/device/transfer_valve{pixel_x = 0},/obj/item/device/transfer_valve{pixel_x = 0},/obj/item/device/transfer_valve{pixel_x = 5},/obj/item/device/transfer_valve{pixel_x = 5},/obj/machinery/requests_console{department = "Science";departmentType = 2;name = "Science Requests Console";pixel_x = 0;pixel_y = -30},/obj/structure/table/reinforced,/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bOx" = (/obj/item/device/assembly/timer{pixel_x = 5;pixel_y = 4},/obj/item/device/assembly/timer{pixel_x = -4;pixel_y = 2},/obj/item/device/assembly/timer{pixel_x = 6;pixel_y = -4},/obj/item/device/assembly/timer{pixel_x = 0;pixel_y = 0},/obj/structure/table/reinforced,/turf/open/floor/plasteel/white,/area/toxins/mixing)
-"bOy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/whitepurple/side,/area/toxins/mixing)
-"bOz" = (/obj/machinery/power/apc{dir = 4;name = "Toxins Lab APC";pixel_x = 26;pixel_y = 0},/obj/structure/cable,/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (SOUTHEAST)";icon_state = "whitepurple";dir = 6},/area/toxins/mixing)
-"bOA" = (/obj/machinery/mass_driver{dir = 4;id = "toxinsdriver"},/turf/open/floor/plating,/area/toxins/mixing)
-"bOB" = (/turf/open/floor/plating,/area/toxins/mixing)
-"bOC" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/toxins/mixing)
-"bOD" = (/obj/machinery/door/poddoor{id = "toxinsdriver";name = "toxins launcher bay door"},/turf/open/floor/plating,/area/space)
-"bOE" = (/obj/item/device/radio/beacon,/turf/open/floor/plating/airless,/area/toxins/test_area)
-"bOF" = (/obj/machinery/camera{active_power_usage = 0;c_tag = "Bomb Test Site";desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site.";dir = 8;invuln = 1;light = null;name = "Hardened Bomb-Test Camera";network = list("Toxins");use_power = 0},/obj/item/target/alien{anchored = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating{luminosity = 2;initial_gas_mix = "o2=0.01;n2=0.01"},/area/toxins/test_area)
-"bOG" = (/turf/closed/indestructible/riveted,/area/toxins/test_area)
-"bOH" = (/obj/machinery/light/small{dir = 8},/obj/structure/closet/bombcloset,/turf/open/floor/plasteel/black,/area/security/brig{name = "Security"})
-"bOI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/landmark{name = "secequipment"},/turf/open/floor/plasteel/black,/area/security/brig{name = "Security"})
-"bOJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet/secure_closet/security,/obj/item/weapon/storage/belt/security/full,/turf/open/floor/plasteel/black,/area/security/brig{name = "Security"})
-"bOK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/black,/area/security/brig{name = "Security"})
-"bOL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel/black,/area/security/brig{name = "Security"})
-"bOM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/brig{name = "Security"})
-"bON" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Port Primary Hallway"},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bOO" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Port Primary Hallway"},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bOP" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Port Primary Hallway"},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bOQ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable,/obj/structure/sign/electricshock{pixel_x = -32},/turf/open/floor/plating,/area/security/main)
-"bOR" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/security/main)
-"bOS" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bOT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bOU" = (/turf/open/floor/plasteel{icon_state = "vault";dir = 1},/area/engine/gravity_generator)
-"bOV" = (/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/gravity_generator)
-"bOW" = (/turf/open/floor/plasteel{icon_state = "vault";dir = 4},/area/engine/gravity_generator)
-"bOX" = (/turf/closed/wall/r_wall,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bOY" = (/turf/closed/wall/r_wall,/area/tcommsat/chamber)
-"bOZ" = (/turf/closed/wall/r_wall,/area/tcommsat/computer)
-"bPa" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/caution,/area/hallway/primary/starboard)
-"bPb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel/caution/corner{tag = "icon-cautioncorner (WEST)";icon_state = "cautioncorner";dir = 8},/area/hallway/primary/starboard)
-"bPc" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics";name = "robotics lab shutters"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/assembly/robotics)
-"bPd" = (/obj/structure/table,/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/weapon/storage/firstaid/regular{empty = 1;name = "First-Aid (empty)"},/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/turf/open/floor/plasteel,/area/assembly/robotics)
-"bPe" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/assembly/robotics)
-"bPf" = (/obj/machinery/mecha_part_fabricator,/turf/open/floor/plasteel,/area/assembly/robotics)
-"bPg" = (/obj/effect/landmark/start{name = "Roboticist"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/assembly/robotics)
-"bPh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/assembly/robotics)
-"bPi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/assembly/robotics)
-"bPj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/closet/wardrobe/black,/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (EAST)";icon_state = "whitepurple";dir = 4},/area/assembly/robotics)
-"bPk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/assembly/robotics)
-"bPl" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)";icon_state = "whitepurple";dir = 1},/area/toxins/mixing)
-"bPm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)";icon_state = "whitepurple";dir = 1},/area/toxins/mixing)
-"bPn" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/asmaint2)
-"bPo" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/asmaint2)
-"bPp" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating/airless,/area/toxins/test_area)
-"bPq" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plating/airless,/area/toxins/test_area)
-"bPr" = (/obj/item/clothing/glasses/red,/obj/item/clothing/head/beret,/obj/item/clothing/shoes/sneakers/red,/obj/item/clothing/under/color/red,/turf/open/floor/plating,/area/maintenance/fpmaint2)
-"bPs" = (/obj/structure/closet/l3closet/security,/turf/open/floor/plasteel/black,/area/security/brig{name = "Security"})
-"bPt" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/turf/open/floor/plasteel/black,/area/security/brig{name = "Security"})
-"bPu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/closet/secure_closet/security,/obj/item/weapon/storage/belt/security/full,/turf/open/floor/plasteel/black,/area/security/brig{name = "Security"})
-"bPv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/obj/machinery/flasher{id = "Cell 1";pixel_x = -28},/obj/structure/bed,/obj/item/weapon/bedsheet/orange,/turf/open/floor/plasteel/black,/area/security/brig{name = "Security"})
-"bPw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/structure/closet/secure_closet/brig{id = "Cell 1";name = "Cell 1 Locker"},/turf/open/floor/plasteel/black,/area/security/brig{name = "Security"})
-"bPx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/obj/machinery/flasher{id = "Cell 2";pixel_x = -28},/obj/structure/bed,/obj/item/weapon/bedsheet/orange,/turf/open/floor/plasteel/black,/area/security/brig{name = "Security"})
-"bPy" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/structure/closet/secure_closet/brig{id = "Cell 2";name = "Cell 2 Locker"},/turf/open/floor/plasteel/black,/area/security/brig{name = "Security"})
-"bPz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/obj/machinery/flasher{id = "Cell 3";pixel_x = -28},/obj/structure/bed,/obj/item/weapon/bedsheet/orange,/turf/open/floor/plasteel/black,/area/security/brig{name = "Security"})
-"bPA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/structure/closet/secure_closet/brig{id = "Cell 3";name = "Cell 3 Locker"},/turf/open/floor/plasteel/black,/area/security/brig{name = "Security"})
-"bPB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/brig{name = "Security"})
-"bPC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"bPD" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"bPE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"bPF" = (/turf/open/floor/plasteel{icon_state = "grimy"},/area/hallway/secondary/entry)
-"bPG" = (/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/plasteel{icon_state = "grimy"},/area/hallway/secondary/entry)
-"bPH" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel{icon_state = "grimy"},/area/hallway/secondary/entry)
-"bPI" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel{icon_state = "grimy"},/area/hallway/secondary/entry)
-"bPJ" = (/obj/machinery/vending/snack,/turf/open/floor/plasteel{icon_state = "grimy"},/area/hallway/secondary/entry)
-"bPK" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel{icon_state = "grimy"},/area/hallway/secondary/entry)
-"bPL" = (/turf/open/floor/circuit{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bPM" = (/obj/machinery/telecomms/server/presets/engineering,/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bPN" = (/obj/machinery/telecomms/bus/preset_four,/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bPO" = (/obj/machinery/light{dir = 1},/obj/machinery/power/apc{cell_type = 5000;dir = 1;name = "Telecoms Server APC";pixel_x = 0;pixel_y = 25},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/circuit{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bPP" = (/obj/machinery/telecomms/processor/preset_three,/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bPQ" = (/obj/machinery/telecomms/server/presets/security,/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bPR" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/tcommsat/computer)
-"bPS" = (/obj/structure/table,/turf/open/floor/plasteel/yellow/side{dir = 9},/area/tcommsat/computer)
-"bPT" = (/obj/item/device/radio/intercom{dir = 8;freerange = 1;name = "Station Intercom (Telecoms)";pixel_x = 0;pixel_y = 26},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"bPU" = (/obj/machinery/light{dir = 1},/obj/machinery/announcement_system,/turf/open/floor/plasteel,/area/tcommsat/computer)
-"bPV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/caution{tag = "icon-caution (WEST)";icon_state = "caution";dir = 8},/area/hallway/primary/starboard)
-"bPW" = (/obj/machinery/light{dir = 8},/obj/structure/table,/obj/item/device/assembly/flash,/obj/item/device/assembly/flash,/obj/item/device/assembly/flash,/obj/item/device/assembly/flash,/obj/item/device/assembly/flash,/obj/item/device/assembly/prox_sensor{pixel_x = 4;pixel_y = 1},/obj/item/device/assembly/prox_sensor{pixel_x = 4;pixel_y = 1},/obj/item/device/assembly/prox_sensor{pixel_x = 4;pixel_y = 1},/turf/open/floor/plasteel,/area/assembly/robotics)
-"bPX" = (/turf/open/floor/plasteel/bot,/area/assembly/robotics)
-"bPY" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/assembly/robotics)
-"bPZ" = (/obj/machinery/vending/robotics,/turf/open/floor/plasteel/whitepurple/corner{tag = "icon-whitepurplecorner (EAST)";icon_state = "whitepurplecorner";dir = 4},/area/assembly/robotics)
-"bQa" = (/obj/structure/lattice,/turf/open/space,/area/toxins/mixing)
-"bQb" = (/obj/machinery/door/poddoor{id = "mixvent";name = "Mixer Room Vent"},/turf/open/floor/engine/vacuum,/area/toxins/mixing)
-"bQc" = (/turf/open/floor/engine/vacuum,/area/toxins/mixing)
-"bQd" = (/obj/machinery/sparker{dir = 2;id = "mixingsparker";pixel_x = 25},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;external_pressure_bound = 0;initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0;pixel_y = 32},/turf/open/floor/engine/vacuum,/area/toxins/mixing)
-"bQe" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/closed/wall/r_wall,/area/toxins/mixing)
-"bQf" = (/obj/machinery/airlock_sensor{id_tag = "tox_airlock_sensor";master_tag = "tox_airlock_control";pixel_y = 24},/obj/machinery/atmospherics/components/binary/pump{dir = 4;on = 1},/turf/open/floor/engine,/area/toxins/mixing)
-"bQg" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/meter,/obj/machinery/embedded_controller/radio/airlock_controller{airpump_tag = "tox_airlock_pump";exterior_door_tag = "tox_airlock_exterior";id_tag = "tox_airlock_control";interior_door_tag = "tox_airlock_interior";pixel_x = -24;pixel_y = 0;sanitize_external = 1;sensor_tag = "tox_airlock_sensor"},/turf/open/floor/engine,/area/toxins/mixing)
-"bQh" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4;name = "mix to port"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/engine,/area/toxins/mixing)
-"bQi" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/engine,/area/toxins/mixing)
-"bQj" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating,/area/security/armory)
-"bQk" = (/obj/structure/grille,/obj/structure/cable{tag = "icon-0-8";icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/window/reinforced,/turf/open/floor/plating,/area/security/armory)
-"bQl" = (/obj/structure/grille,/obj/structure/cable{tag = "icon-0-8";icon_state = "0-8"},/obj/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/security/armory)
-"bQm" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/brig{name = "Security"})
-"bQn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"bQo" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"bQp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"bQq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/hallway/secondary/entry)
-"bQr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/table/wood,/turf/open/floor/plasteel{icon_state = "grimy"},/area/hallway/secondary/entry)
-"bQs" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/turf/open/floor/carpet,/area/hallway/secondary/entry)
-"bQt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/comfy/beige,/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/carpet,/area/hallway/secondary/entry)
-"bQu" = (/obj/structure/chair/comfy/beige,/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/turf/open/floor/carpet,/area/hallway/secondary/entry)
-"bQv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "grimy"},/area/hallway/secondary/entry)
-"bQw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/door/airlock/maintenance,/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bQx" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bQy" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bQz" = (/obj/machinery/power/apc{cell_type = 2500;dir = 4;name = "Central Maintenance APC";pixel_x = 26;pixel_y = 0},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bQA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/closed/wall/r_wall,/area/engine/gravity_generator)
-"bQB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;name = "regular air scrubber";on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/gravity_generator)
-"bQC" = (/obj/machinery/gravity_generator/main/station,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/gravity_generator)
-"bQD" = (/obj/machinery/camera{c_tag = "Gravity Generator Room";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/gravity_generator)
-"bQE" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/gravity_generator)
-"bQF" = (/obj/machinery/telecomms/server/presets/common,/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bQG" = (/obj/machinery/telecomms/processor/preset_four,/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bQH" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/circuit{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bQI" = (/obj/machinery/telecomms/bus/preset_three,/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bQJ" = (/obj/machinery/telecomms/server/presets/command,/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bQK" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable,/turf/open/floor/plating,/area/tcommsat/computer)
-"bQL" = (/obj/machinery/computer/message_monitor,/turf/open/floor/plasteel/yellow/side{dir = 8},/area/tcommsat/computer)
-"bQM" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"bQN" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"bQO" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"bQP" = (/obj/machinery/power/apc{dir = 8;name = "Robotics Lab APC";pixel_x = -25},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel,/area/assembly/robotics)
-"bQQ" = (/turf/open/floor/plasteel,/area/assembly/robotics)
-"bQR" = (/obj/item/device/radio/intercom{desc = "Talk smack through this.";dir = 4;pixel_x = 28;syndie = 1},/turf/open/floor/plasteel,/area/assembly/robotics)
-"bQS" = (/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plasteel/white,/area/assembly/robotics)
-"bQT" = (/obj/structure/table,/obj/item/device/mmi,/obj/item/device/mmi,/obj/item/device/mmi,/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/turf/open/floor/plasteel/white,/area/assembly/robotics)
-"bQU" = (/obj/effect/landmark/event_spawn,/turf/open/floor/engine/vacuum,/area/toxins/mixing)
-"bQV" = (/obj/machinery/door/airlock/glass_research{autoclose = 0;frequency = 1449;glass = 1;heat_proof = 1;icon_state = "door_locked";id_tag = "tox_airlock_exterior";locked = 1;name = "Mixing Room Exterior Airlock";req_access_txt = "8"},/obj/effect/turf_decal/delivery,/turf/open/floor/engine,/area/toxins/mixing)
-"bQW" = (/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{dir = 2;frequency = 1449;id = "tox_airlock_pump"},/turf/open/floor/engine,/area/toxins/mixing)
-"bQX" = (/obj/machinery/door/airlock/glass_research{autoclose = 0;frequency = 1449;glass = 1;heat_proof = 1;icon_state = "door_locked";id_tag = "tox_airlock_interior";locked = 1;name = "Mixing Room Interior Airlock";req_access_txt = "8"},/obj/effect/turf_decal/delivery,/turf/open/floor/engine,/area/toxins/mixing)
-"bQY" = (/turf/open/floor/engine,/area/toxins/mixing)
-"bQZ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/turf/open/floor/engine,/area/toxins/mixing)
-"bRa" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/camera{c_tag = "Toxins Lab East";dir = 8;network = list("SS13","RD");pixel_y = -22},/turf/open/floor/engine,/area/toxins/mixing)
-"bRb" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint2)
-"bRc" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/fpmaint2)
-"bRd" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plating,/area/maintenance/fpmaint2)
-"bRe" = (/turf/closed/mineral/random/labormineral,/area/hallway/secondary/entry)
-"bRf" = (/turf/closed/wall,/area/hallway/secondary/entry)
-"bRg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"bRh" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"bRi" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"bRj" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/window/reinforced{dir = 8},/obj/structure/flora/ausbushes/ppflowers,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/grass,/area/hallway/secondary/entry)
-"bRk" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel{icon_state = "grimy"},/area/hallway/secondary/entry)
-"bRl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/turf/open/floor/carpet,/area/hallway/secondary/entry)
-"bRm" = (/obj/structure/table/wood,/turf/open/floor/carpet,/area/hallway/secondary/entry)
-"bRn" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/hallway/secondary/entry)
-"bRo" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel{icon_state = "grimy"},/area/hallway/secondary/entry)
-"bRp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bRq" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/gravity_generator)
-"bRr" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/gravity_generator)
-"bRs" = (/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bRt" = (/obj/machinery/blackbox_recorder,/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bRu" = (/obj/machinery/telecomms/broadcaster/preset_right,/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bRv" = (/obj/machinery/telecomms/receiver/preset_right,/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bRw" = (/obj/machinery/computer/telecomms/server{network = "tcommsat"},/turf/open/floor/plasteel/yellow/side{dir = 10},/area/tcommsat/computer)
-"bRx" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"bRy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"bRz" = (/obj/structure/table,/obj/item/weapon/folder/blue,/obj/item/weapon/pen/blue,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer)
-"bRA" = (/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/turf/open/floor/plasteel/purple/side{tag = "icon-purple (EAST)";icon_state = "purple";dir = 4},/area/hallway/primary/starboard)
-"bRB" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel,/area/assembly/robotics)
-"bRC" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/turf/open/floor/plasteel,/area/assembly/robotics)
-"bRD" = (/obj/machinery/r_n_d/circuit_imprinter,/turf/open/floor/plasteel,/area/assembly/robotics)
-"bRE" = (/obj/machinery/computer/rdconsole/robotics,/turf/open/floor/plasteel,/area/assembly/robotics)
-"bRF" = (/obj/structure/table,/obj/item/weapon/retractor,/obj/item/weapon/hemostat,/turf/open/floor/plasteel/white,/area/assembly/robotics)
-"bRG" = (/obj/effect/landmark/start{name = "Roboticist"},/turf/open/floor/plasteel/white,/area/assembly/robotics)
-"bRH" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/weapon/surgical_drapes,/obj/item/weapon/razor,/turf/open/floor/plasteel/white,/area/assembly/robotics)
-"bRI" = (/obj/machinery/sparker{dir = 2;id = "mixingsparker";pixel_x = 25},/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4;frequency = 1441;id = "air_in"},/turf/open/floor/engine/vacuum,/area/toxins/mixing)
-"bRJ" = (/obj/structure/sign/fire{pixel_y = -32},/obj/machinery/atmospherics/components/binary/pump{dir = 8;on = 1},/turf/open/floor/engine,/area/toxins/mixing)
-"bRK" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/meter,/obj/machinery/button/door{id = "mixvent";name = "Mixing Room Vent Control";pixel_x = -25;pixel_y = 5;req_access_txt = "7"},/obj/machinery/button/ignition{id = "mixingsparker";pixel_x = -25;pixel_y = -5},/turf/open/floor/engine,/area/toxins/mixing)
-"bRL" = (/obj/machinery/light,/obj/machinery/atmospherics/components/binary/valve{dir = 4;name = "port to mix"},/turf/open/floor/engine,/area/toxins/mixing)
-"bRM" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint2)
-"bRN" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plating/airless,/area/toxins/test_area)
-"bRO" = (/turf/closed/wall,/area/ruin/unpowered{name = "Asteroid"})
-"bRP" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/fpmaint2)
-"bRQ" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 0},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"bRR" = (/obj/machinery/light{dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"bRS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"bRT" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"bRU" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"bRV" = (/obj/structure/table/wood,/obj/effect/holodeck_effect/cards,/obj/item/device/radio/intercom{dir = 8;pixel_x = -28},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "grimy"},/area/hallway/secondary/entry)
-"bRW" = (/turf/open/floor/carpet,/area/hallway/secondary/entry)
-"bRX" = (/obj/structure/chair/comfy/beige{dir = 1;icon_state = "comfychair"},/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/carpet,/area/hallway/secondary/entry)
-"bRY" = (/obj/structure/chair/comfy/beige{dir = 1;icon_state = "comfychair"},/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/hallway/secondary/entry)
-"bRZ" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel{icon_state = "grimy"},/area/hallway/secondary/entry)
-"bSa" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_x = -32;pixel_y = 0},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/gravity_generator)
-"bSb" = (/obj/structure/grille,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/gravity_generator)
-"bSc" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/glass_engineering{name = "Gravity Generator";req_access_txt = "11";req_one_access_txt = "0"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/gravity_generator)
-"bSd" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'";icon_state = "radiation";name = "RADIOACTIVE AREA";pixel_x = 32;pixel_y = 0},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/gravity_generator)
-"bSe" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/circuit{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bSf" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/circuit{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bSg" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/circuit{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bSh" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/tcommsat/chamber)
-"bSi" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable,/turf/open/floor/plating,/area/tcommsat/computer)
-"bSj" = (/obj/machinery/status_display,/turf/closed/wall,/area/tcommsat/computer)
-"bSk" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/turf/open/floor/plating,/area/tcommsat/computer)
-"bSl" = (/obj/machinery/door/airlock/glass_command{name = "Control Room";req_access_txt = "19; 61"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer)
-"bSm" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/tcommsat/computer)
-"bSn" = (/turf/closed/wall/r_wall,/area/assembly/chargebay)
-"bSo" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/door/airlock/research{name = "Mech Bay";req_access_txt = "29";req_one_access_txt = "0"},/turf/open/floor/plasteel/white,/area/assembly/chargebay)
-"bSp" = (/turf/closed/wall,/area/assembly/chargebay)
-"bSq" = (/obj/structure/table,/obj/item/weapon/circular_saw,/obj/item/weapon/scalpel{pixel_y = 12},/turf/open/floor/plasteel/white,/area/assembly/robotics)
-"bSr" = (/obj/structure/table,/obj/item/weapon/rack_parts,/turf/open/floor/plating,/area/maintenance/asmaint2)
-"bSs" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"bSt" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"bSu" = (/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"bSv" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTH)";icon_state = "camera";dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"bSw" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"bSx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"bSy" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"bSz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "grimy"},/area/hallway/secondary/entry)
-"bSA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "grimy"},/area/hallway/secondary/entry)
-"bSB" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel{icon_state = "grimy"},/area/hallway/secondary/entry)
-"bSC" = (/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage)
-"bSD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage)
-"bSE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage)
-"bSF" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/effect/turf_decal/stripes{tag = "icon-warningline (NORTH)";icon_state = "warningline";dir = 1},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"bSG" = (/obj/effect/turf_decal/stripes{tag = "icon-warningline (NORTH)";icon_state = "warningline";dir = 1},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"bSH" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes{tag = "icon-warningline (NORTH)";icon_state = "warningline";dir = 1},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"bSI" = (/obj/machinery/power/terminal{dir = 4},/obj/machinery/ntnet_relay,/turf/open/floor/circuit{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bSJ" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/circuit{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bSK" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/circuit{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bSL" = (/obj/machinery/telecomms/hub/preset,/turf/open/floor/plasteel/vault{dir = 8;name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bSM" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/circuit{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bSN" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/circuit{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bSO" = (/obj/machinery/door/airlock/glass_engineering{cyclelinkeddir = 4;name = "Server Room";req_access_txt = "61"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/vault{dir = 5},/area/tcommsat/chamber)
-"bSP" = (/turf/open/floor/plasteel/vault{dir = 5},/area/tcommsat/entrance)
-"bSQ" = (/obj/machinery/door/airlock/glass_engineering{cyclelinkeddir = 8;name = "Server Room";req_access_txt = "61"},/turf/open/floor/plasteel/vault{dir = 5},/area/tcommsat/entrance)
-"bSR" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/entrance)
-"bSS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/tcommsat/entrance)
-"bST" = (/obj/structure/closet/emcloset,/obj/machinery/camera{c_tag = "Telecoms Monitoring";dir = 8;network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/tcommsat/entrance)
-"bSU" = (/turf/closed/wall/r_wall,/area/tcommsat/entrance)
-"bSV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 4},/obj/machinery/button/door{dir = 2;id = "Skynet_launch";name = "Mech Bay Door Control";pixel_x = 24;pixel_y = 0;req_access_txt = "29"},/turf/open/floor/plasteel/purple/corner{tag = "icon-purplecorner (EAST)";icon_state = "purplecorner";dir = 4},/area/hallway/primary/starboard)
-"bSW" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/machinery/button/door{dir = 2;id = "Skynet_launch";name = "Mech Bay Door Control";pixel_x = -24;pixel_y = 0;req_access_txt = "29"},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel,/area/assembly/chargebay)
-"bSX" = (/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/turf/open/floor/circuit,/area/assembly/chargebay)
-"bSY" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/circuit,/area/assembly/chargebay)
-"bSZ" = (/obj/machinery/power/apc{dir = 4;name = "Mech Bay APC";pixel_x = 28;pixel_y = 0},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/turf/open/floor/circuit,/area/assembly/chargebay)
-"bTa" = (/obj/structure/table,/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/pen,/turf/open/floor/plasteel/white,/area/assembly/robotics)
-"bTb" = (/obj/structure/table/optable{name = "Robotics Operating Table"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/assembly/robotics)
-"bTc" = (/obj/machinery/computer/operating{name = "Robotics Operating Computer"},/obj/machinery/light,/turf/open/floor/plasteel/white,/area/assembly/robotics)
-"bTd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (EAST)";icon_state = "whitepurple";dir = 4},/area/medical/research{name = "Research Division"})
-"bTe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/toxins/misc_lab)
-"bTf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/glass{amount = 50;pixel_x = 3;pixel_y = 3},/turf/open/floor/plasteel,/area/toxins/misc_lab)
-"bTg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/obj/structure/table,/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/sheet/mineral/plasma,/turf/open/floor/plasteel,/area/toxins/misc_lab)
-"bTh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/toxins/misc_lab)
-"bTi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/table,/obj/item/device/taperecorder,/turf/open/floor/plasteel,/area/toxins/misc_lab)
-"bTj" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/engine,/area/toxins/misc_lab)
-"bTk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/engine,/area/toxins/misc_lab)
-"bTl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;name = "regular air scrubber";on = 1;scrub_Toxins = 0},/turf/open/floor/engine,/area/toxins/misc_lab)
-"bTm" = (/turf/open/floor/engine,/area/toxins/misc_lab)
-"bTn" = (/turf/closed/wall/r_wall,/area/toxins/misc_lab)
-"bTo" = (/obj/structure/table,/obj/item/device/assembly/prox_sensor{pixel_x = 0;pixel_y = 2},/obj/item/device/assembly/signaler{pixel_x = -2;pixel_y = -2},/obj/machinery/light/small{brightness = 3;dir = 8},/turf/open/floor/plating,/area/maintenance/asmaint2)
-"bTp" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/entry)
-"bTq" = (/obj/machinery/door/airlock/external{name = "Arrivals Docking Bay 1"},/turf/open/floor/noslip,/area/hallway/secondary/entry)
-"bTr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/device/radio/intercom{dir = 8;pixel_x = -28},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"bTs" = (/turf/closed/wall,/area/storage/eva)
-"bTt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/storage/eva)
-"bTu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/storage/eva)
-"bTv" = (/obj/machinery/computer/bank_machine,/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/nuke_storage)
-"bTw" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/circuit,/area/ai_monitored/nuke_storage)
-"bTx" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/light{dir = 1},/turf/open/floor/circuit,/area/ai_monitored/nuke_storage)
-"bTy" = (/obj/machinery/power/apc{dir = 1;name = "Vault APC";pixel_x = 0;pixel_y = 25},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/circuit,/area/ai_monitored/nuke_storage)
-"bTz" = (/obj/structure/filingcabinet,/obj/item/weapon/folder/documents,/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/nuke_storage)
-"bTA" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/power/apc{dir = 8;name = "Gravity Generator APC";pixel_x = -25;pixel_y = 1},/obj/structure/table,/obj/item/weapon/paper/gravity_gen{layer = 3},/obj/item/weapon/pen/blue,/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -35},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"bTB" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"bTC" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable,/obj/machinery/power/smes{charge = 5e+006},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"bTD" = (/obj/machinery/camera{c_tag = "Telecoms Server Room";dir = 4;network = list("SS13")},/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bTE" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable,/turf/open/floor/plating,/area/tcommsat/chamber)
-"bTF" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/tcommsat/entrance)
-"bTG" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'SERVER ROOM'.";name = "SERVER ROOM";pixel_y = 0},/turf/closed/wall,/area/tcommsat/entrance)
-"bTH" = (/turf/open/floor/plasteel,/area/tcommsat/entrance)
-"bTI" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/tcommsat/entrance)
-"bTJ" = (/obj/machinery/requests_console{announcementConsole = 1;department = "Telecoms Admin";departmentType = 5;name = "Telecoms RC";pixel_x = 30;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/tcommsat/entrance)
-"bTK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/loadingarea{dir = 8},/area/hallway/primary/starboard)
-"bTL" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "Skynet_launch";name = "mech bay"},/turf/open/floor/plasteel/delivery,/area/assembly/chargebay)
-"bTM" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel,/area/assembly/chargebay)
-"bTN" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable,/turf/open/floor/plating,/area/assembly/chargebay)
-"bTO" = (/turf/open/floor/mech_bay_recharge_floor,/area/assembly/chargebay)
-"bTP" = (/obj/machinery/computer/mech_bay_power_console,/obj/structure/cable,/turf/open/floor/circuit,/area/assembly/chargebay)
-"bTQ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (WEST)";icon_state = "whitepurple";dir = 8},/area/medical/research{name = "Research Division"})
-"bTR" = (/turf/closed/wall,/area/toxins/misc_lab)
-"bTS" = (/obj/structure/table,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)";icon_state = "camera";dir = 5},/obj/item/device/radio/intercom{dir = 8;pixel_x = -28},/turf/open/floor/plasteel,/area/toxins/misc_lab)
-"bTT" = (/turf/open/floor/plasteel,/area/toxins/misc_lab)
-"bTU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/plasteel,/area/toxins/misc_lab)
-"bTV" = (/turf/open/floor/noslip,/area/hallway/secondary/entry)
-"bTW" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/junction{dir = 1;icon_state = "pipe-j1";tag = "icon-pipe-j1 (EAST)"},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"bTX" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"bTY" = (/obj/machinery/power/apc{dir = 1;name = "EVA Storage APC";pixel_x = 0;pixel_y = 24},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/tank_dispenser/oxygen,/turf/open/floor/plasteel,/area/storage/eva)
-"bTZ" = (/turf/open/floor/plasteel,/area/storage/eva)
-"bUa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/structure/closet/crate/rcd,/obj/machinery/camera/motion{c_tag = "EVA Motion Sensor";name = "motion-sensitive security camera"},/turf/open/floor/plasteel,/area/storage/eva)
-"bUb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/vault{dir = 1},/area/ai_monitored/nuke_storage)
-"bUc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/circuit,/area/ai_monitored/nuke_storage)
-"bUd" = (/obj/machinery/nuclearbomb/selfdestruct,/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/nuke_storage)
-"bUe" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/circuit,/area/ai_monitored/nuke_storage)
-"bUf" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel/vault{dir = 4},/area/ai_monitored/nuke_storage)
-"bUg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall/r_wall,/area/engine/gravity_generator)
-"bUh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/closed/wall/r_wall,/area/engine/gravity_generator)
-"bUi" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"bUj" = (/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"bUk" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"bUl" = (/obj/machinery/power/terminal{icon_state = "term";dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/closed/wall/r_wall,/area/engine/gravity_generator)
-"bUm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall/r_wall,/area/engine/gravity_generator)
-"bUn" = (/obj/machinery/message_server,/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bUo" = (/obj/machinery/telecomms/broadcaster/preset_left,/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bUp" = (/obj/machinery/telecomms/receiver/preset_left,/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bUq" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable,/turf/open/floor/plating,/area/tcommsat/entrance)
-"bUr" = (/obj/structure/table,/obj/item/device/multitool,/turf/open/floor/plasteel/yellow/side{dir = 9},/area/tcommsat/entrance)
-"bUs" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/tcommsat/entrance)
-"bUt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/tcommsat/entrance)
-"bUu" = (/obj/machinery/light_switch{pixel_x = 27},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/tcommsat/entrance)
-"bUv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/tcommsat/entrance)
-"bUw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)";icon_state = "camera";dir = 5},/turf/open/floor/plasteel/caution{tag = "icon-caution (WEST)";icon_state = "caution";dir = 8},/area/hallway/primary/starboard)
-"bUx" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel/loadingarea{dir = 8},/area/hallway/primary/starboard)
-"bUy" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "Skynet_launch";name = "mech bay"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/delivery,/area/assembly/chargebay)
-"bUz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plasteel,/area/assembly/chargebay)
-"bUA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{icon_state = "2-4";tag = "icon-2-8"},/turf/open/floor/plasteel,/area/assembly/chargebay)
-"bUB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark/start{name = "Roboticist"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/assembly/chargebay)
-"bUC" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHEAST)";icon_state = "camera";dir = 6},/turf/open/floor/plasteel,/area/assembly/chargebay)
-"bUD" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;name = "regular air vent";on = 1},/obj/item/device/radio/intercom{name = "Station Intercom";pixel_x = 0;pixel_y = 24},/turf/open/floor/plasteel/white,/area/assembly/chargebay)
-"bUE" = (/obj/structure/closet/wardrobe/robotics_black,/turf/open/floor/plasteel/white,/area/assembly/chargebay)
-"bUF" = (/obj/machinery/recharge_station,/turf/open/floor/plasteel/bot,/area/assembly/chargebay)
-"bUG" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "Testing Lab";req_access_txt = "47"},/turf/open/floor/plasteel/white,/area/toxins/misc_lab)
-"bUH" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/toxins/misc_lab)
-"bUI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel,/area/toxins/misc_lab)
-"bUJ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/toxins/misc_lab)
-"bUK" = (/obj/machinery/door/airlock/glass_research{name = "Test Chamber";req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/engine,/area/toxins/misc_lab)
-"bUL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/engine,/area/toxins/misc_lab)
-"bUM" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;name = "regular air vent";on = 1},/turf/open/floor/engine,/area/toxins/misc_lab)
-"bUN" = (/obj/item/device/radio/beacon,/obj/effect/landmark/event_spawn,/turf/open/floor/engine,/area/toxins/misc_lab)
-"bUO" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/engine,/area/toxins/misc_lab)
-"bUP" = (/obj/effect/spawner/lootdrop/crate_spawner,/turf/open/floor/plating,/area/maintenance/asmaint2)
-"bUQ" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/tank/jetpack/carbondioxide,/turf/open/floor/plasteel,/area/storage/eva)
-"bUR" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/clothing/shoes/magboots,/turf/open/floor/plasteel,/area/storage/eva)
-"bUS" = (/obj/structure/closet/crate{name = "Gold Crate"},/obj/item/stack/sheet/mineral/gold{pixel_x = -1;pixel_y = 5},/obj/item/stack/sheet/mineral/gold{pixel_y = 2},/obj/item/stack/sheet/mineral/gold{pixel_x = 1;pixel_y = -2},/obj/item/weapon/storage/belt/champion,/turf/open/floor/plasteel/vault{dir = 1},/area/ai_monitored/nuke_storage)
-"bUT" = (/turf/open/floor/circuit,/area/ai_monitored/nuke_storage)
-"bUU" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/circuit,/area/ai_monitored/nuke_storage)
-"bUV" = (/obj/item/weapon/coin/silver{pixel_x = 7;pixel_y = 12},/obj/item/weapon/coin/silver{pixel_x = 12;pixel_y = 7},/obj/item/weapon/coin/silver{pixel_x = 4;pixel_y = 8},/obj/item/weapon/coin/silver{pixel_x = -6;pixel_y = 5},/obj/item/weapon/coin/silver{pixel_x = 5;pixel_y = -8},/obj/structure/closet/crate{name = "Silver Crate"},/turf/open/floor/plasteel/vault{dir = 4},/area/ai_monitored/nuke_storage)
-"bUW" = (/obj/structure/closet/radiation,/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/gravity_generator)
-"bUX" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTH)";icon_state = "camera";dir = 1},/obj/structure/closet/radiation,/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/gravity_generator)
-"bUY" = (/obj/machinery/telecomms/server/presets/supply,/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bUZ" = (/obj/machinery/telecomms/bus/preset_two,/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bVa" = (/obj/machinery/telecomms/processor/preset_one,/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bVb" = (/obj/machinery/telecomms/server/presets/medical,/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bVc" = (/obj/machinery/computer/telecomms/monitor{network = "tcommsat"},/turf/open/floor/plasteel/yellow/side{dir = 8},/area/tcommsat/entrance)
-"bVd" = (/obj/structure/chair/office/dark{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/tcommsat/entrance)
-"bVe" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/tcommsat/entrance)
-"bVf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/entrance)
-"bVg" = (/obj/machinery/door/airlock/engineering{name = "Telecommunications";req_access_txt = "61"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/entrance)
-"bVh" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel/caution{tag = "icon-caution (WEST)";icon_state = "caution";dir = 8},/area/hallway/primary/starboard)
-"bVi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/purple/corner,/area/hallway/primary/starboard)
-"bVj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/assembly/chargebay)
-"bVk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/assembly/chargebay)
-"bVl" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/assembly/chargebay)
-"bVm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/mech_bay_recharge_floor,/area/assembly/chargebay)
-"bVn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/computer/mech_bay_power_console,/obj/structure/cable,/turf/open/floor/circuit,/area/assembly/chargebay)
-"bVo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plasteel,/area/assembly/chargebay)
-"bVp" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/assembly/chargebay)
-"bVq" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "delivery"},/area/assembly/chargebay)
-"bVr" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "Mech Bay";req_access_txt = "29";req_one_access_txt = "0"},/turf/open/floor/plasteel/white,/area/assembly/chargebay)
-"bVs" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/whitepurple/corner{dir = 1},/area/medical/research{name = "Research Division"})
-"bVt" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4;initialize_directions = 11},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel/whitepurple/corner{tag = "icon-whitepurplecorner (EAST)";icon_state = "whitepurplecorner";dir = 4},/area/medical/research{name = "Research Division"})
-"bVu" = (/obj/machinery/atmospherics/components/unary/portables_connector{tag = "icon-connector_map (EAST)";icon_state = "connector_map";dir = 4},/turf/open/floor/plasteel,/area/toxins/misc_lab)
-"bVv" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/open/floor/plasteel,/area/toxins/misc_lab)
-"bVw" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/turf/open/floor/plasteel,/area/toxins/misc_lab)
-"bVx" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/engine,/area/toxins/misc_lab)
-"bVy" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/asmaint2)
-"bVz" = (/turf/closed/wall/mineral/titanium,/area/shuttle/escape)
-"bVA" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/escape)
-"bVB" = (/turf/closed/wall/mineral/titanium,/area/shuttle/arrival)
-"bVC" = (/obj/machinery/door/airlock/shuttle{name = "Arrivals Shuttle Airlock"},/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival)
-"bVD" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/arrival)
-"bVE" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/storage/eva)
-"bVF" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/tank/jetpack/carbondioxide,/turf/open/floor/plasteel,/area/storage/eva)
-"bVG" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/clothing/shoes/magboots,/turf/open/floor/plasteel,/area/storage/eva)
-"bVH" = (/obj/machinery/camera/motion{c_tag = "Vault";dir = 1;network = list("MiniSat")},/turf/open/floor/plasteel/vault{dir = 1},/area/ai_monitored/nuke_storage)
-"bVI" = (/obj/machinery/light,/turf/open/floor/plasteel/vault{dir = 6},/area/ai_monitored/nuke_storage)
-"bVJ" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/vault,/area/ai_monitored/nuke_storage)
-"bVK" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/light,/turf/open/floor/plasteel/vault{dir = 10},/area/ai_monitored/nuke_storage)
-"bVL" = (/obj/structure/safe,/obj/item/clothing/head/bearpelt,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/weapon/gun/ballistic/revolver/russian,/obj/item/ammo_box/a357,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,/turf/open/floor/plasteel/vault{dir = 4},/area/ai_monitored/nuke_storage)
-"bVM" = (/obj/machinery/door/airlock/highsecurity{name = "Gravity Generator Room";req_access_txt = "19;23"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/gravity_generator)
-"bVN" = (/obj/machinery/telecomms/server/presets/service,/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bVO" = (/obj/machinery/telecomms/processor/preset_two,/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bVP" = (/obj/structure/sign/nosmoking_2{pixel_y = -32},/obj/machinery/light,/turf/open/floor/circuit{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bVQ" = (/obj/machinery/telecomms/bus/preset_one,/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bVR" = (/obj/machinery/telecomms/server/presets/science,/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/chamber)
-"bVS" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable,/turf/open/floor/plating,/area/tcommsat/entrance)
-"bVT" = (/obj/structure/table,/obj/item/device/radio/off,/turf/open/floor/plasteel/yellow/side{dir = 10},/area/tcommsat/entrance)
-"bVU" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -35},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/tcommsat/entrance)
-"bVV" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/machinery/light,/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/plasteel,/area/tcommsat/entrance)
-"bVW" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/turf/open/floor/plasteel,/area/tcommsat/entrance)
-"bVX" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Mech Bay";req_access_txt = "29";req_one_access_txt = "0"},/turf/open/floor/plasteel,/area/assembly/chargebay)
-"bVY" = (/turf/open/floor/plasteel,/area/assembly/chargebay)
-"bVZ" = (/turf/open/floor/circuit,/area/assembly/chargebay)
-"bWa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/circuit,/area/assembly/chargebay)
-"bWb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/assembly/chargebay)
-"bWc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light,/turf/open/floor/plasteel/white,/area/assembly/chargebay)
-"bWd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/droneDispenser,/turf/open/floor/plasteel/white,/area/assembly/chargebay)
-"bWe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/recharge_station,/turf/open/floor/plasteel/bot,/area/assembly/chargebay)
-"bWf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/assembly/chargebay)
-"bWg" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/obj/machinery/door/poddoor/preopen{id = "Biohazard";name = "biohazard containment door"},/obj/machinery/door/firedoor/heavy,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"bWh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/preopen{id = "Biohazard";name = "biohazard containment door"},/obj/machinery/door/firedoor/heavy,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"bWi" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/misc_lab)
-"bWj" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/toxins/misc_lab)
-"bWk" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel,/area/toxins/misc_lab)
-"bWl" = (/obj/machinery/power/apc{dir = 2;name = "Testing Lab APC";pixel_x = 0;pixel_y = -24},/obj/structure/cable{tag = "icon-0-8";icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel,/area/toxins/misc_lab)
-"bWm" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/engine,/area/toxins/misc_lab)
-"bWn" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8},/turf/open/floor/engine,/area/toxins/misc_lab)
-"bWo" = (/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plating,/area/maintenance/asmaint2)
-"bWp" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plating,/area/maintenance/asmaint2)
-"bWq" = (/turf/open/floor/mineral/titanium,/turf/closed/wall/mineral/titanium/interior,/area/shuttle/escape)
-"bWr" = (/obj/structure/table,/obj/machinery/recharger,/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"bWs" = (/obj/structure/chair{dir = 1},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"bWt" = (/obj/machinery/computer/emergency_shuttle,/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"bWu" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 2;pixel_y = 3},/obj/item/weapon/crowbar,/obj/item/weapon/storage/firstaid/fire,/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"bWv" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_l (EAST)";icon_state = "propulsion_l";dir = 4},/turf/open/floor/plating/airless,/area/shuttle/arrival)
-"bWw" = (/obj/structure/shuttle/engine/heater{icon_state = "heater";dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating/airless,/area/shuttle/arrival)
-"bWx" = (/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival)
-"bWy" = (/obj/structure/closet/wardrobe/black,/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival)
-"bWz" = (/obj/structure/closet/wardrobe/grey,/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival)
-"bWA" = (/obj/structure/closet/wardrobe/mixed,/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival)
-"bWB" = (/obj/structure/closet/wardrobe/white,/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival)
-"bWC" = (/turf/closed/wall/mineral/titanium/interior,/area/shuttle/arrival)
-"bWD" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/storage/eva)
-"bWE" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/storage/eva)
-"bWF" = (/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage)
-"bWG" = (/obj/machinery/door/airlock/vault{icon_state = "door_locked";locked = 1;req_access_txt = "53"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/yellow,/area/ai_monitored/nuke_storage)
-"bWH" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/primary/aft)
-"bWI" = (/turf/open/floor/plasteel/stairs,/area/hallway/primary/aft)
-"bWJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/glass{name = "Starboard Primary Hallway"},/obj/machinery/door/poddoor/preopen{id = "Biohazard";name = "biohazard containment door"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/caution{tag = "icon-caution (WEST)";icon_state = "caution";dir = 8},/area/hallway/primary/starboard)
-"bWK" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/glass{name = "Starboard Primary Hallway"},/obj/machinery/door/poddoor/preopen{id = "Biohazard";name = "biohazard containment door"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bWL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/glass{name = "Starboard Primary Hallway"},/obj/machinery/door/poddoor/preopen{id = "Biohazard";name = "biohazard containment door"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/purple/side{tag = "icon-purple (EAST)";icon_state = "purple";dir = 4},/area/hallway/primary/starboard)
-"bWM" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/assembly/chargebay)
-"bWN" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/research{name = "Research Division";req_access_txt = "0";req_one_access_txt = "47"},/turf/open/floor/plasteel/whitepurple,/area/medical/research{name = "Research Division"})
-"bWO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/research{name = "Research Division";req_access_txt = "0";req_one_access_txt = "47"},/turf/open/floor/plasteel/whitepurple,/area/medical/research{name = "Research Division"})
-"bWP" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/misc_lab)
-"bWQ" = (/obj/machinery/computer/atmos_alert,/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"bWR" = (/obj/structure/chair{dir = 8},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"bWS" = (/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"bWT" = (/obj/structure/chair{dir = 4},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"bWU" = (/obj/machinery/computer/security,/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"bWV" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion";dir = 4},/turf/open/floor/plating/airless,/area/shuttle/arrival)
-"bWW" = (/obj/effect/landmark/latejoin,/obj/structure/chair{dir = 4},/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival)
-"bWX" = (/obj/machinery/door/airlock/shuttle{name = "bridge"},/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/arrival)
-"bWY" = (/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/arrival)
-"bWZ" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/storage/eva)
-"bXa" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/storage/eva)
-"bXb" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/primary/aft)
-"bXc" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/stairs,/area/hallway/primary/aft)
-"bXd" = (/turf/open/floor/plasteel/yellow,/area/hallway/primary/aft)
-"bXe" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bXf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/caution{tag = "icon-caution (WEST)";icon_state = "caution";dir = 8},/area/hallway/secondary/exit)
-"bXg" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bXh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/purple/corner{tag = "icon-purplecorner (EAST)";icon_state = "purplecorner";dir = 4},/area/hallway/secondary/exit)
-"bXi" = (/turf/open/floor/plasteel/purple/side{tag = "icon-purple (NORTH)";icon_state = "purple";dir = 1},/area/hallway/secondary/exit)
-"bXj" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/purple/side{tag = "icon-purple (NORTH)";icon_state = "purple";dir = 1},/area/hallway/secondary/exit)
-"bXk" = (/obj/machinery/camera/autoname,/turf/open/floor/plasteel/purple/side{tag = "icon-purple (NORTH)";icon_state = "purple";dir = 1},/area/hallway/secondary/exit)
-"bXl" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/purple/side{tag = "icon-purple (NORTH)";icon_state = "purple";dir = 1},/area/hallway/secondary/exit)
-"bXm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/purple/side{tag = "icon-purple (NORTH)";icon_state = "purple";dir = 1},/area/hallway/secondary/exit)
-"bXn" = (/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/plasteel/purple/side{tag = "icon-purple (NORTH)";icon_state = "purple";dir = 1},/area/hallway/secondary/exit)
-"bXo" = (/obj/machinery/power/apc{dir = 1;name = "Escape Hallway APC";pixel_x = 0;pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel/purple/corner{tag = "icon-purplecorner (NORTH)";icon_state = "purplecorner";dir = 1},/area/hallway/secondary/exit)
-"bXp" = (/obj/machinery/camera/autoname,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bXq" = (/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bXr" = (/obj/machinery/light{dir = 1},/obj/machinery/vending/cigarette,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bXs" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/exit)
-"bXt" = (/turf/closed/wall,/area/hallway/secondary/exit)
-"bXu" = (/obj/machinery/computer/crew,/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"bXv" = (/obj/structure/chair{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = -30},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"bXw" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_x = 0;pixel_y = -29},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"bXx" = (/obj/machinery/button/flasher{id = "cockpit_flasher";pixel_x = 6;pixel_y = -24},/obj/machinery/light,/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"bXy" = (/obj/machinery/computer/communications,/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"bXz" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival)
-"bXA" = (/obj/machinery/computer,/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/arrival)
-"bXB" = (/obj/structure/sign/directions/medical{tag = "icon-direction_med (NORTH)";icon_state = "direction_med";dir = 1},/obj/structure/sign/directions/evac{dir = 4;icon_state = "direction_evac";pixel_y = -10;tag = "icon-direction_evac (EAST)"},/obj/structure/sign/directions/security{dir = 1;icon_state = "direction_sec";pixel_y = 10;tag = "icon-direction_sec (NORTH)"},/turf/closed/wall,/area/storage/eva)
-"bXC" = (/obj/structure/sign/directions/science{tag = "icon-direction_sci (EAST)";icon_state = "direction_sci";dir = 4},/obj/structure/sign/directions/engineering{dir = 4;icon_state = "direction_eng";pixel_y = 10;tag = "icon-direction_eng (EAST)"},/turf/closed/wall,/area/storage/eva)
-"bXD" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "E.V.A. Storage";req_access_txt = "18"},/turf/open/floor/plasteel,/area/storage/eva)
-"bXE" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/turf/open/floor/plasteel/yellow,/area/hallway/primary/aft)
-"bXF" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/hallway/primary/aft)
-"bXG" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/hallway/primary/aft)
-"bXH" = (/turf/closed/wall,/area/hallway/primary/aft)
-"bXI" = (/obj/structure/sign/directions/medical{tag = "icon-direction_med (WEST)";icon_state = "direction_med";dir = 8},/obj/structure/sign/directions/evac{dir = 4;icon_state = "direction_evac";pixel_y = -10;tag = "icon-direction_evac (EAST)"},/obj/structure/sign/directions/security{dir = 8;icon_state = "direction_sec";pixel_y = 10;tag = "icon-direction_sec (WEST)"},/turf/closed/wall,/area/hallway/primary/aft)
-"bXJ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bXK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bXL" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;name = "regular air vent";on = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bXM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bXN" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bXO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bXP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bXQ" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bXR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Departures"},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bXS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/escape{tag = "icon-escape (NORTHWEST)";icon_state = "escape";dir = 9},/area/hallway/secondary/exit)
-"bXT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/escape{tag = "icon-escape (NORTH)";icon_state = "escape";dir = 1},/area/hallway/secondary/exit)
-"bXU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair,/turf/open/floor/plasteel/escape{tag = "icon-escape (NORTH)";icon_state = "escape";dir = 1},/area/hallway/secondary/exit)
-"bXV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair,/obj/machinery/camera/autoname,/turf/open/floor/plasteel/escape{tag = "icon-escape (NORTH)";icon_state = "escape";dir = 1},/area/hallway/secondary/exit)
-"bXW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/escape{tag = "icon-escape (NORTH)";icon_state = "escape";dir = 1},/area/hallway/secondary/exit)
-"bXX" = (/obj/machinery/computer/arcade,/turf/open/floor/plasteel/escape{tag = "icon-escape (NORTHEAST)";icon_state = "escape";dir = 5},/area/hallway/secondary/exit)
-"bXY" = (/obj/machinery/door/airlock/glass{name = "Emergency Shuttle Cockpit";req_access_txt = "19"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"bXZ" = (/obj/machinery/status_display,/turf/closed/wall/mineral/titanium,/area/shuttle/escape)
-"bYa" = (/obj/effect/landmark{name = "Observer-Start"},/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival)
-"bYb" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/arrival)
-"bYc" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"bYd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"bYe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Engineering Hallway"},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTHWEST)";icon_state = "yellow";dir = 9},/area/hallway/primary/aft)
-"bYf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/hallway/primary/aft)
-"bYg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/hallway/primary/aft)
-"bYh" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/hallway/primary/aft)
-"bYi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/hallway/primary/aft)
-"bYj" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/hallway/primary/aft)
-"bYk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/hallway/primary/aft)
-"bYl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/hallway/primary/aft)
-"bYm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Engineering Hallway"},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTHEAST)";icon_state = "yellow";dir = 5},/area/hallway/primary/aft)
-"bYn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/caution{tag = "icon-caution (WEST)";icon_state = "caution";dir = 8},/area/hallway/secondary/exit)
-"bYo" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bYp" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bYq" = (/obj/machinery/button/door{id = 9966;req_access_txt = "19"},/turf/closed/wall,/area/storage/tools)
-"bYr" = (/obj/machinery/door/poddoor/shutters/preopen{id = 9966;name = "Tool Storage shutters"},/obj/structure/window/reinforced{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/black,/area/storage/tools)
-"bYs" = (/obj/machinery/door/poddoor/shutters/preopen{id = 9966;name = "Tool Storage shutters"},/obj/machinery/door/window/northleft,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/black,/area/storage/tools)
-"bYt" = (/obj/machinery/door/poddoor/shutters/preopen{id = 9966;name = "Tool Storage shutters"},/obj/machinery/light/small{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/black,/area/storage/tools)
-"bYu" = (/turf/closed/wall,/area/storage/tools)
-"bYv" = (/obj/machinery/power/apc{dir = 8;name = "Tool Storage APC";pixel_x = -24;pixel_y = 0},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel,/area/storage/tools)
-"bYw" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bYx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bYy" = (/turf/closed/wall,/area/storage/emergency)
-"bYz" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/black,/area/storage/emergency)
-"bYA" = (/obj/machinery/door/window/northleft,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/black,/area/storage/emergency)
-"bYB" = (/obj/machinery/light/small{dir = 4},/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/black,/area/storage/emergency)
-"bYC" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/power/apc{dir = 8;name = "Port Emergency Storage APC";pixel_x = -24;pixel_y = 0},/turf/open/floor/plasteel,/area/storage/emergency)
-"bYD" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bYE" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bYF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Departures"},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bYG" = (/turf/open/floor/plasteel/escape{tag = "icon-escape (WEST)";icon_state = "escape";dir = 8},/area/hallway/secondary/exit)
-"bYH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bYI" = (/turf/open/floor/plasteel/escape{tag = "icon-escape (EAST)";icon_state = "escape";dir = 4},/area/hallway/secondary/exit)
-"bYJ" = (/obj/structure/closet/crate,/turf/open/floor/mineral/titanium/yellow,/area/shuttle/escape)
-"bYK" = (/turf/open/floor/mineral/titanium/yellow,/area/shuttle/escape)
-"bYL" = (/obj/machinery/flasher{id = "cockpit_flasher";pixel_x = 6;pixel_y = 24},/obj/machinery/light{dir = 1},/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"bYM" = (/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"bYN" = (/obj/structure/closet/emcloset,/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"bYO" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/regular{pixel_x = 2;pixel_y = 3},/obj/item/weapon/crowbar,/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"bYP" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"bYQ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"bYR" = (/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/glass{name = "Engineering Hallway"},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (WEST)";icon_state = "yellow";dir = 8},/area/hallway/primary/aft)
-"bYS" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bYT" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bYU" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4";tag = "icon-2-8"},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bYV" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bYW" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bYX" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bYY" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = ""},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bYZ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/structure/cable{icon_state = "2-4";tag = "icon-2-8"},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bZa" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bZb" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bZc" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bZd" = (/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4";tag = "icon-2-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bZe" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bZf" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bZg" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bZh" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bZi" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bZj" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Engineering Hallway"},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)";icon_state = "yellow";dir = 4},/area/hallway/primary/aft)
-"bZk" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/caution{tag = "icon-caution (WEST)";icon_state = "caution";dir = 8},/area/hallway/secondary/exit)
-"bZl" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bZm" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bZn" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/storage/tools)
-"bZo" = (/obj/structure/table/reinforced,/obj/item/stack/cable_coil,/obj/item/device/multitool,/obj/item/device/geiger_counter,/turf/open/floor/plasteel{tag = "icon-vault (WEST)";icon_state = "vault";dir = 8},/area/storage/tools)
-"bZp" = (/obj/machinery/vending/tool,/turf/open/floor/plasteel{tag = "icon-vault (WEST)";icon_state = "vault";dir = 8},/area/storage/tools)
-"bZq" = (/obj/machinery/vending/assist,/turf/open/floor/plasteel{tag = "icon-vault (WEST)";icon_state = "vault";dir = 8},/area/storage/tools)
-"bZr" = (/obj/structure/table/reinforced,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/plasteel{amount = 10},/obj/item/stack/sheet/plasteel{amount = 10},/turf/open/floor/plasteel{tag = "icon-vault (WEST)";icon_state = "vault";dir = 8},/area/storage/tools)
-"bZs" = (/obj/structure/table/reinforced,/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/rods{amount = 50},/turf/open/floor/plasteel{tag = "icon-vault (WEST)";icon_state = "vault";dir = 8},/area/storage/tools)
-"bZt" = (/obj/structure/closet/toolcloset,/turf/open/floor/plasteel{tag = "icon-vault (WEST)";icon_state = "vault";dir = 8},/area/storage/tools)
-"bZu" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bZv" = (/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bZw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bZx" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bZy" = (/obj/structure/tank_dispenser/oxygen,/turf/open/floor/plasteel{tag = "icon-vault (WEST)";icon_state = "vault";dir = 8},/area/storage/emergency)
-"bZz" = (/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/structure/closet/crate,/turf/open/floor/plasteel{tag = "icon-vault (WEST)";icon_state = "vault";dir = 8},/area/storage/emergency)
-"bZA" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel{tag = "icon-vault (WEST)";icon_state = "vault";dir = 8},/area/storage/emergency)
-"bZB" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plasteel{tag = "icon-vault (WEST)";icon_state = "vault";dir = 8},/area/storage/emergency)
-"bZC" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel{tag = "icon-vault (WEST)";icon_state = "vault";dir = 8},/area/storage/emergency)
-"bZD" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel{tag = "icon-vault (WEST)";icon_state = "vault";dir = 8},/area/storage/emergency)
-"bZE" = (/obj/machinery/space_heater,/turf/open/floor/plasteel{tag = "icon-vault (WEST)";icon_state = "vault";dir = 8},/area/storage/emergency)
-"bZF" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/obj/structure/cable{icon_state = "2-4";tag = "icon-2-8"},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bZG" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bZH" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/hallway/secondary/exit)
-"bZI" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/escape{tag = "icon-escape (WEST)";icon_state = "escape";dir = 8},/area/hallway/secondary/exit)
-"bZJ" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8;pixel_x = 0},/obj/structure/flora/ausbushes/ppflowers,/turf/open/floor/grass,/area/hallway/secondary/exit)
-"bZK" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/flora/ausbushes/ppflowers,/turf/open/floor/grass,/area/hallway/secondary/exit)
-"bZL" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/flora/ausbushes/ppflowers,/turf/open/floor/grass,/area/hallway/secondary/exit)
-"bZM" = (/obj/machinery/door/airlock/glass{name = "Emergency Shuttle Cargo"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"bZN" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_r (EAST)";icon_state = "propulsion_r";dir = 4},/turf/open/floor/plating/airless,/area/shuttle/arrival)
-"bZO" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"bZP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"bZQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Engineering Hallway"},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (SOUTHWEST)";icon_state = "yellow";dir = 10},/area/hallway/primary/aft)
-"bZR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light,/turf/open/floor/plasteel/yellow/side,/area/hallway/primary/aft)
-"bZS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/yellow/side,/area/hallway/primary/aft)
-"bZT" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/turf/open/floor/plasteel/yellow/side,/area/hallway/primary/aft)
-"bZU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/yellow/side,/area/hallway/primary/aft)
-"bZV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/yellow/side,/area/hallway/primary/aft)
-"bZW" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/yellow/side,/area/hallway/primary/aft)
-"bZX" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel/yellow/side,/area/hallway/primary/aft)
-"bZY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHWEST)";icon_state = "camera";dir = 10},/turf/open/floor/plasteel/yellow/side,/area/hallway/primary/aft)
-"bZZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/yellow/side,/area/hallway/primary/aft)
-"caa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/yellow/side,/area/hallway/primary/aft)
-"cab" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/yellow/side,/area/hallway/primary/aft)
-"cac" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/yellow/side,/area/hallway/primary/aft)
-"cad" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Engineering Hallway"},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (SOUTHEAST)";icon_state = "yellow";dir = 6},/area/hallway/primary/aft)
-"cae" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/caution{tag = "icon-caution (WEST)";icon_state = "caution";dir = 8},/area/hallway/secondary/exit)
-"caf" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cag" = (/obj/machinery/door/poddoor/shutters/preopen{id = 9966;name = "Tool Storage shutters"},/obj/structure/window/reinforced,/obj/machinery/light/small{dir = 8},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/black,/area/storage/tools)
-"cah" = (/obj/machinery/door/poddoor/shutters/preopen{id = 9966;name = "Tool Storage shutters"},/obj/machinery/door/window,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/black,/area/storage/tools)
-"cai" = (/obj/machinery/door/poddoor/shutters/preopen{id = 9966;name = "Tool Storage shutters"},/obj/structure/window/reinforced,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/black,/area/storage/tools)
-"caj" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cak" = (/obj/machinery/light/small{dir = 8},/obj/structure/window/reinforced,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/black,/area/storage/emergency)
-"cal" = (/obj/machinery/door/window,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/black,/area/storage/emergency)
-"cam" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/black,/area/storage/emergency)
-"can" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cao" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/turf/open/floor/plasteel/escape{tag = "icon-escape (WEST)";icon_state = "escape";dir = 8},/area/hallway/secondary/exit)
-"cap" = (/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"caq" = (/obj/machinery/door/airlock/external{name = "Escape Airlock"},/turf/open/floor/noslip,/area/hallway/secondary/exit)
-"car" = (/turf/open/floor/noslip,/area/hallway/secondary/exit)
-"cas" = (/obj/machinery/door/airlock/titanium{name = "Emergency Shuttle Airlock";req_access_txt = "2"},/turf/open/floor/noslip,/area/shuttle/escape)
-"cat" = (/obj/structure/closet,/turf/open/floor/mineral/titanium/yellow,/area/shuttle/escape)
-"cau" = (/obj/structure/chair,/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"cav" = (/obj/structure/chair{dir = 4},/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"caw" = (/obj/structure/table,/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"cax" = (/obj/machinery/door/airlock/titanium{name = "Arrivals Shuttle Airlock"},/obj/docking_port/mobile{dwidth = 3;height = 8;id = "arrival";name = "arrival shuttle";port_angle = -90;preferred_direction = 8;width = 16},/obj/docking_port/stationary{dwidth = 3;height = 8;id = "arrival_home";name = "port bay 1";width = 16},/turf/open/floor/plating,/area/shuttle/arrival)
-"cay" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"caz" = (/obj/machinery/power/apc{dir = 4;name = "Entry Hall APC";pixel_x = 24;pixel_y = 0},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"caA" = (/turf/closed/wall/r_wall,/area/hallway/secondary/entry)
-"caB" = (/turf/closed/wall/r_wall,/area/teleporter)
-"caC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/closed/wall/r_wall,/area/teleporter)
-"caD" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Teleport Access";req_access_txt = "17"},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/turf/open/floor/plasteel,/area/teleporter)
-"caE" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Foyer";req_access_txt = "0";req_one_access_txt = "32;19"},/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"caF" = (/turf/closed/wall,/area/engine/engineering)
-"caG" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/engine/engineering)
-"caH" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/closed/wall,/area/engine/chiefs_office)
-"caI" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{tag = "icon-0-8";icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable,/turf/open/floor/plating,/area/engine/chiefs_office)
-"caJ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{tag = "icon-0-8";icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/engine/chiefs_office)
-"caK" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/engine/chiefs_office)
-"caL" = (/turf/closed/wall,/area/engine/chiefs_office)
-"caM" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plating,/area/engine/engineering)
-"caN" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Foyer";req_access_txt = "0";req_one_access_txt = "32;19"},/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"caO" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/engineering)
-"caP" = (/turf/closed/wall/r_wall,/area/ai_monitored/storage/secure)
-"caQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/storage/secure)
-"caR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/storage/secure)
-"caS" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Tech Storage";req_access_txt = "0";req_one_access_txt = "23;30"},/turf/open/floor/plating{tag = "icon-delivery";icon_state = "delivery";dir = 2},/area/ai_monitored/storage/secure)
-"caT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/aft)
-"caU" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)";icon_state = "camera";dir = 5},/turf/open/floor/plasteel/caution{tag = "icon-caution (WEST)";icon_state = "caution";dir = 8},/area/hallway/secondary/exit)
-"caV" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"caW" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"caX" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/obj/structure/cable{icon_state = "2-4";tag = "icon-2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"caY" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"caZ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cba" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cbb" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cbc" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cbd" = (/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cbe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cbf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Departures"},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cbg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/turf/open/floor/plasteel/escape{tag = "icon-escape (WEST)";icon_state = "escape";dir = 8},/area/hallway/secondary/exit)
-"cbh" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cbi" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/escape{tag = "icon-escape (EAST)";icon_state = "escape";dir = 4},/area/hallway/secondary/exit)
-"cbj" = (/turf/closed/wall/mineral/titanium/nodiagonal,/area/shuttle/escape)
-"cbk" = (/obj/machinery/shieldwallgen,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/teleporter)
-"cbl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/plasteel,/area/teleporter)
-"cbm" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/turf/open/floor/plasteel,/area/teleporter)
-"cbn" = (/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"cbo" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"cbp" = (/obj/structure/disposalpipe/segment,/obj/structure/lattice,/turf/open/space,/area/space/nearstation)
-"cbq" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/electricshock{pixel_y = 32},/turf/open/floor/plating,/area/engine/chiefs_office)
-"cbr" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/bin,/turf/open/floor/wood,/area/engine/chiefs_office)
-"cbs" = (/turf/open/floor/wood,/area/engine/chiefs_office)
-"cbt" = (/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/turf/open/floor/wood,/area/engine/chiefs_office)
-"cbu" = (/obj/structure/closet/secure_closet/engineering_chief{req_access_txt = "0"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)";icon_state = "yellow";dir = 4},/area/engine/chiefs_office)
-"cbv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"cbw" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"cbx" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/yellow,/area/hallway/primary/aft)
-"cby" = (/obj/structure/table,/obj/item/device/flashlight{pixel_x = 1;pixel_y = 5},/obj/item/device/flashlight{pixel_x = 1;pixel_y = 5},/obj/item/device/assembly/flash/handheld,/obj/item/device/assembly/flash/handheld,/obj/machinery/ai_status_display{pixel_x = -32;pixel_y = 0},/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"cbz" = (/obj/structure/table,/obj/item/weapon/electronics/apc,/obj/item/weapon/electronics/airlock,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"cbA" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell,/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"cbB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/vending/assist,/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"cbC" = (/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"cbD" = (/obj/machinery/power/apc{dir = 1;name = "Tech Storage APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"cbE" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"cbF" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"cbG" = (/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"cbH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/aft)
-"cbI" = (/turf/open/floor/plasteel/caution{tag = "icon-caution (WEST)";icon_state = "caution";dir = 8},/area/hallway/secondary/exit)
-"cbJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/caution/corner,/area/hallway/secondary/exit)
-"cbK" = (/turf/open/floor/plasteel/caution,/area/hallway/secondary/exit)
-"cbL" = (/obj/machinery/light,/turf/open/floor/plasteel/caution,/area/hallway/secondary/exit)
-"cbM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/caution,/area/hallway/secondary/exit)
-"cbN" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/caution,/area/hallway/secondary/exit)
-"cbO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/caution,/area/hallway/secondary/exit)
-"cbP" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/caution,/area/hallway/secondary/exit)
-"cbQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/caution,/area/hallway/secondary/exit)
-"cbR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/caution,/area/hallway/secondary/exit)
-"cbS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera/autoname{tag = "icon-camera (NORTH)";icon_state = "camera";dir = 1},/turf/open/floor/plasteel/caution,/area/hallway/secondary/exit)
-"cbT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/caution/corner{tag = "icon-cautioncorner (WEST)";icon_state = "cautioncorner";dir = 8},/area/hallway/secondary/exit)
-"cbU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cbV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cbW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/closet/firecloset/full,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cbX" = (/obj/machinery/door/airlock/external{name = "External Access";req_access = null;req_access_txt = "13"},/turf/open/floor/noslip,/area/hallway/secondary/exit)
-"cbY" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cbZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cca" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"ccb" = (/obj/machinery/door/airlock/titanium{name = "Emergency Shuttle Airlock"},/obj/docking_port/mobile/emergency{name = "Box emergency shuttle";timid = 0},/obj/docking_port/stationary{dir = 4;dwidth = 12;height = 18;id = "emergency_home";name = "BoxStation emergency evac bay";turf_type = /turf/open/space;width = 32},/turf/open/floor/noslip,/area/shuttle/escape)
-"ccc" = (/obj/structure/extinguisher_cabinet{pixel_x = -5;pixel_y = 30},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"ccd" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/light/small{dir = 4},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"cce" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/turf/open/floor/plasteel,/area/teleporter)
-"ccf" = (/obj/machinery/shieldwallgen,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/teleporter)
-"ccg" = (/turf/open/floor/plasteel/yellow/side{dir = 8},/area/engine/break_room{name = "Engineering Hallway"})
-"cch" = (/turf/open/floor/plasteel/yellow/side{dir = 4},/area/engine/break_room{name = "Engineering Hallway"})
-"cci" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/break_room{name = "Engineering Hallway"})
-"ccj" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/engine/chiefs_office)
-"cck" = (/obj/machinery/computer/atmos_alert,/turf/open/floor/wood,/area/engine/chiefs_office)
-"ccl" = (/obj/structure/table/reinforced,/obj/item/weapon/clipboard,/obj/item/weapon/lighter,/obj/item/clothing/glasses/meson{pixel_y = 4},/obj/item/weapon/stamp/ce,/obj/item/weapon/stock_parts/cell/high/plus,/turf/open/floor/wood,/area/engine/chiefs_office)
-"ccm" = (/obj/item/weapon/cartridge/engineering{pixel_x = 4;pixel_y = 5},/obj/item/weapon/cartridge/engineering{pixel_x = -3;pixel_y = 2},/obj/item/weapon/cartridge/engineering{pixel_x = 3},/obj/structure/table/reinforced,/obj/machinery/light_switch{pixel_x = 27},/obj/item/weapon/cartridge/atmos,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)";icon_state = "yellow";dir = 4},/area/engine/chiefs_office)
-"ccn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/yellow/side{dir = 8},/area/engine/engineering)
-"cco" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/turf/open/floor/plasteel,/area/engine/engineering)
-"ccp" = (/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)";icon_state = "yellow";dir = 4},/area/engine/engineering)
-"ccq" = (/obj/structure/table,/obj/item/device/aicard,/obj/item/weapon/aiModule/reset,/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"ccr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"ccs" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/pandemic{pixel_x = -3;pixel_y = 3},/obj/item/weapon/circuitboard/computer/rdconsole,/obj/item/weapon/circuitboard/machine/rdserver{pixel_x = 3;pixel_y = -3},/obj/item/weapon/circuitboard/machine/destructive_analyzer,/obj/item/weapon/circuitboard/machine/protolathe,/obj/item/weapon/circuitboard/computer/aifixer,/obj/item/weapon/circuitboard/computer/teleporter,/obj/item/weapon/circuitboard/machine/circuit_imprinter,/obj/item/weapon/circuitboard/machine/mechfab,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"cct" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/mining,/obj/item/weapon/circuitboard/machine/autolathe{pixel_x = 3;pixel_y = -3},/obj/item/weapon/circuitboard/computer/arcade/battle,/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"ccu" = (/obj/structure/rack,/obj/item/weapon/circuitboard/machine/telecomms/processor,/obj/item/weapon/circuitboard/machine/telecomms/receiver,/obj/item/weapon/circuitboard/machine/telecomms/server,/obj/item/weapon/circuitboard/machine/telecomms/bus,/obj/item/weapon/circuitboard/machine/telecomms/broadcaster,/obj/item/weapon/circuitboard/computer/message_monitor{pixel_y = -5},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"ccv" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"ccw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel{dir = 8;icon_state = "caution"},/area/hallway/secondary/exit)
-"ccx" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel{icon_state = "caution";dir = 4},/area/hallway/secondary/exit)
-"ccy" = (/turf/closed/wall/r_wall,/area/atmos)
-"ccz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/atmos)
-"ccA" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/glass_engineering{name = "Atmospherics";req_access_txt = "32"},/turf/open/floor/plasteel,/area/atmos)
-"ccB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall/r_wall,/area/atmos)
-"ccC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/atmos)
-"ccD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/turf/closed/wall/r_wall,/area/atmos)
-"ccE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall/r_wall,/area/atmos)
-"ccF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/closed/wall/r_wall,/area/atmos)
-"ccG" = (/obj/machinery/power/apc{cell_type = 5000;dir = 8;name = "Departure Lounge APC";pixel_x = -24;pixel_y = 0},/obj/structure/cable,/turf/open/floor/plasteel/escape{tag = "icon-escape (WEST)";icon_state = "escape";dir = 8},/area/hallway/secondary/exit)
-"ccH" = (/obj/structure/chair{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"ccI" = (/obj/structure/chair{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"ccJ" = (/obj/structure/chair{dir = 8},/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"ccK" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";name = "KEEP CLEAR: DOCKING AREA";pixel_y = 0},/turf/closed/wall,/area/hallway/secondary/entry)
-"ccL" = (/turf/open/floor/plasteel,/area/teleporter)
-"ccM" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/closed/wall,/area/engine/chiefs_office)
-"ccN" = (/obj/machinery/computer/station_alert,/obj/machinery/camera{c_tag = "Chief Engineer's Office";dir = 4;network = list("SS13")},/obj/machinery/requests_console{announcementConsole = 1;department = "Chief Engineer's Desk";departmentType = 3;name = "Chief Engineer RC";pixel_x = -32;pixel_y = 0},/turf/open/floor/wood,/area/engine/chiefs_office)
-"ccO" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/landmark/start{name = "Chief Engineer"},/turf/open/floor/wood,/area/engine/chiefs_office)
-"ccP" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/yellow,/obj/item/weapon/paper/monitorkey,/obj/effect/landmark/event_spawn,/turf/open/floor/wood,/area/engine/chiefs_office)
-"ccQ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)";icon_state = "yellow";dir = 4},/area/engine/chiefs_office)
-"ccR" = (/obj/machinery/door/airlock/command{name = "Chief Engineer's Office";req_access_txt = "56";req_one_access_txt = "0"},/turf/open/floor/plasteel/yellow,/area/engine/chiefs_office)
-"ccS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/yellow/side{dir = 8},/area/engine/break_room{name = "Engineering Hallway"})
-"ccT" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/turf/open/floor/plasteel,/area/engine/break_room{name = "Engineering Hallway"})
-"ccU" = (/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)";icon_state = "yellow";dir = 4},/area/engine/break_room{name = "Engineering Hallway"})
-"ccV" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/ai_monitored/storage/secure)
-"ccW" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/borgupload{pixel_x = -1;pixel_y = 1},/obj/item/weapon/circuitboard/computer/aiupload{pixel_x = 2;pixel_y = -2},/turf/open/floor/plasteel,/area/ai_monitored/storage/secure)
-"ccX" = (/obj/machinery/light/small{dir = 4},/obj/machinery/camera/autoname,/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"ccY" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"ccZ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"cda" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/table,/obj/item/stack/cable_coil{pixel_y = 3},/obj/item/stack/cable_coil,/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"cdb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"cdc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"cdd" = (/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"cde" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"cdf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/device/radio/beacon,/turf/open/floor/plasteel{dir = 8;icon_state = "caution"},/area/hallway/secondary/exit)
-"cdg" = (/turf/open/floor/plasteel{icon_state = "caution";dir = 4},/area/hallway/secondary/exit)
-"cdh" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/atmos)
-"cdi" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/atmos)
-"cdj" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/machinery/camera/autoname,/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/atmos)
-"cdk" = (/obj/machinery/portable_atmospherics/canister/bz,/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/atmos)
-"cdl" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/atmos)
-"cdm" = (/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/atmos)
-"cdn" = (/obj/machinery/firealarm{dir = 2;pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/atmos)
-"cdo" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/atmos)
-"cdp" = (/obj/machinery/pipedispenser,/turf/open/floor/plasteel,/area/atmos)
-"cdq" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos)
-"cdr" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/obj/machinery/light{dir = 1},/obj/machinery/meter{frequency = 1441;id_tag = "waste_meter";name = "Waste Loop"},/turf/open/floor/plasteel,/area/atmos)
-"cds" = (/obj/machinery/camera{c_tag = "Atmospherics North East"},/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "Distro to Waste";on = 0},/turf/open/floor/plasteel,/area/atmos)
-"cdt" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{dir = 2},/obj/machinery/meter{frequency = 1441;id_tag = "distro_meter";name = "Distribution Loop"},/turf/open/floor/plasteel,/area/atmos)
-"cdu" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{dir = 1},/turf/open/floor/plasteel,/area/atmos)
-"cdv" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "Air to Distro";on = 1},/turf/open/floor/plasteel,/area/atmos)
-"cdw" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10;initialize_directions = 10},/turf/open/floor/plasteel,/area/atmos)
-"cdx" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plasteel,/area/atmos)
-"cdy" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel/escape{tag = "icon-escape (EAST)";icon_state = "escape";dir = 4},/area/hallway/secondary/exit)
-"cdz" = (/turf/closed/wall/mineral/titanium,/area/shuttle/pod_1)
-"cdA" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 4;icon_state = "propulsion";tag = "icon-propulsion (WEST)"},/turf/closed/wall/mineral/titanium,/area/shuttle/pod_1)
-"cdB" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/hallway/secondary/entry)
-"cdC" = (/obj/machinery/camera/autoname,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"cdD" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"cdE" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"cdF" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"cdG" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;name = "regular air vent";on = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"cdH" = (/obj/machinery/bluespace_beacon,/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/turf/open/floor/plasteel,/area/teleporter)
-"cdI" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel/yellow/side{dir = 4},/area/engine/break_room{name = "Engineering Hallway"})
-"cdJ" = (/obj/machinery/computer/card/minor/ce,/turf/open/floor/wood,/area/engine/chiefs_office)
-"cdK" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/obj/item/weapon/storage/fancy/cigarettes,/turf/open/floor/wood,/area/engine/chiefs_office)
-"cdL" = (/obj/machinery/atmospherics/components/unary/vent_pump{name = "regular air vent";on = 1},/turf/open/floor/wood,/area/engine/chiefs_office)
-"cdM" = (/obj/item/device/radio/intercom{dir = 4;name = "Station Intercom (General)";pixel_x = 27},/obj/structure/filingcabinet/chestdrawer,/obj/effect/turf_decal/stripes/line{dir = 8},/mob/living/simple_animal/parrot/Poly,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)";icon_state = "yellow";dir = 4},/area/engine/chiefs_office)
-"cdN" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable,/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/ai_monitored/storage/secure)
-"cdO" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/crew{pixel_x = -1;pixel_y = 1},/obj/item/weapon/circuitboard/computer/card{pixel_x = 2;pixel_y = -2},/obj/item/weapon/circuitboard/computer/communications{pixel_x = 5;pixel_y = -5},/obj/machinery/light/small{dir = 8},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plasteel,/area/ai_monitored/storage/secure)
-"cdP" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/machinery/door/airlock/highsecurity{name = "Secure Tech Storage";req_access_txt = "19;23"},/turf/open/floor/plating{dir = 1;icon_state = "delivery"},/area/ai_monitored/storage/secure)
-"cdQ" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/item/weapon/stock_parts/subspace/analyzer,/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"cdR" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"cdS" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"cdT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"cdU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel{icon_state = "arrival";dir = 8},/area/hallway/secondary/exit)
-"cdV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel{icon_state = "caution";dir = 4},/area/hallway/secondary/exit)
-"cdW" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor{density = 0;icon_state = "open";id = "atmos";name = "Atmos Blast Door";opacity = 0},/turf/open/floor/plating,/area/atmos)
-"cdX" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/atmos)
-"cdY" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/atmos)
-"cdZ" = (/turf/open/floor/plasteel,/area/atmos)
-"cea" = (/obj/machinery/computer/atmos_control,/turf/open/floor/plasteel{icon_state = "caution";dir = 4},/area/atmos)
-"ceb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/atmos)
-"cec" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/atmos)
-"ced" = (/obj/machinery/pipedispenser/disposal,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"cee" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos)
-"cef" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"ceg" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/atmos)
-"ceh" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1;name = "Mix to Distro";on = 0},/turf/open/floor/plasteel,/area/atmos)
-"cei" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8;initialize_directions = 11},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos)
-"cej" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 1;name = "Mix to Incinerator";on = 0},/turf/open/floor/plasteel,/area/atmos)
-"cek" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10;initialize_directions = 10},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos)
-"cel" = (/obj/structure/grille,/turf/closed/wall/r_wall,/area/atmos)
-"cem" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/space/nearstation)
-"cen" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/escape{tag = "icon-escape (WEST)";icon_state = "escape";dir = 8},/area/hallway/secondary/exit)
-"ceo" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cep" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"ceq" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/escape{tag = "icon-escape (EAST)";icon_state = "escape";dir = 4},/area/hallway/secondary/exit)
-"cer" = (/obj/docking_port/stationary/random{dir = 8;id = "pod_asteroid1";name = "asteroid"},/turf/open/space,/area/space)
-"ces" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/pod_1)
-"cet" = (/obj/machinery/computer/shuttle/pod{pixel_x = 0;pixel_y = -32;possible_destinations = "pod_asteroid1";shuttleId = "pod1"},/obj/structure/chair{dir = 8},/obj/machinery/status_display{density = 0;layer = 3;pixel_x = 0;pixel_y = 32},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_1)
-"ceu" = (/obj/item/weapon/storage/pod{pixel_x = 6;pixel_y = -28},/obj/item/device/radio/intercom{pixel_x = 0;pixel_y = 25},/obj/structure/chair{dir = 8},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_1)
-"cev" = (/obj/machinery/door/airlock/titanium{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{dir = 8;id = "pod1";name = "escape pod 1";port_angle = 180},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_1)
-"cew" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 1;name = "Escape Pod One"},/turf/open/floor/plating,/area/hallway/secondary/entry)
-"cex" = (/turf/open/floor/plating,/area/hallway/secondary/entry)
-"cey" = (/obj/structure/closet/crate,/obj/machinery/power/apc{dir = 8;name = "Teleporter APC";pixel_x = -24},/obj/structure/cable{tag = "icon-0-4";icon_state = "0-4"},/turf/open/floor/plasteel,/area/teleporter)
-"cez" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel,/area/teleporter)
-"ceA" = (/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel,/area/teleporter)
-"ceB" = (/obj/structure/closet/crate,/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel,/area/teleporter)
-"ceC" = (/obj/machinery/suit_storage_unit/ce,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel/yellow,/area/engine/chiefs_office)
-"ceD" = (/obj/machinery/light,/turf/open/floor/wood,/area/engine/chiefs_office)
-"ceE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/engine/chiefs_office)
-"ceF" = (/obj/machinery/power/apc{dir = 4;name = "CE Office APC";pixel_x = 28;pixel_y = 0},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)";icon_state = "yellow";dir = 4},/area/engine/chiefs_office)
-"ceG" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable,/turf/open/floor/plating,/area/ai_monitored/storage/secure)
-"ceH" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/robotics{pixel_x = -2;pixel_y = 2},/obj/item/weapon/circuitboard/computer/mecha_control{pixel_x = 1;pixel_y = -1},/turf/open/floor/plasteel,/area/ai_monitored/storage/secure)
-"ceI" = (/obj/structure/table,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/obj/machinery/camera/autoname{tag = "icon-camera (EAST)";icon_state = "camera";dir = 4},/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"ceJ" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/item/weapon/stock_parts/subspace/amplifier,/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"ceK" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/cloning{pixel_x = 0},/obj/item/weapon/circuitboard/computer/med_data{pixel_x = 3;pixel_y = -3},/obj/item/weapon/circuitboard/machine/clonescanner,/obj/item/weapon/circuitboard/machine/clonepod,/obj/item/weapon/circuitboard/computer/scan_consolenew,/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"ceL" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/secure_data{pixel_x = -2;pixel_y = 2},/obj/item/weapon/circuitboard/computer/security{pixel_x = 1;pixel_y = -1},/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"ceM" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/powermonitor{pixel_x = -2;pixel_y = 2},/obj/item/weapon/circuitboard/computer/stationalert{pixel_x = 1;pixel_y = -1},/obj/item/weapon/circuitboard/computer/atmos_alert{pixel_x = 3;pixel_y = -3},/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"ceN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "caution";dir = 4},/area/hallway/secondary/exit)
-"ceO" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor{density = 0;icon_state = "pdoor0";id = "atmos";name = "Atmos Blast Door";opacity = 0},/obj/machinery/door/window/northleft{dir = 4;icon_state = "left";name = "Atmospherics Desk";req_access_txt = "24"},/obj/item/weapon/folder/yellow,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor{density = 0;icon_state = "open";id = "atmos";name = "Atmos Blast Door";opacity = 0},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/atmos)
-"ceP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/atmos)
-"ceQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"ceR" = (/obj/machinery/computer/atmos_control,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "caution";dir = 4},/area/atmos)
-"ceS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos)
-"ceT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/atmos)
-"ceU" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel,/area/atmos)
-"ceV" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/atmos)
-"ceW" = (/obj/machinery/pipedispenser/disposal/transit_tube,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"ceX" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos)
-"ceY" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Waste In";on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"ceZ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/atmos)
-"cfa" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/turf/open/floor/plasteel,/area/atmos)
-"cfb" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible,/turf/open/floor/plasteel,/area/atmos)
-"cfc" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "Mix Outlet Pump";on = 0},/turf/open/floor/plasteel,/area/atmos)
-"cfd" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Air to Mix";on = 0},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"cfe" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/machinery/atmospherics/pipe/manifold/yellow/visible,/turf/open/floor/plasteel/green/side{dir = 5},/area/atmos)
-"cff" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos)
-"cfg" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/space,/area/space/nearstation)
-"cfh" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/grille,/obj/machinery/meter,/turf/closed/wall/r_wall,/area/atmos)
-"cfi" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;external_pressure_bound = 0;frequency = 1441;id_tag = "mix_in";initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine/vacuum,/area/atmos)
-"cfj" = (/obj/machinery/camera{c_tag = "Atmospherics Waste Tank"},/turf/open/floor/engine/vacuum,/area/atmos)
-"cfk" = (/turf/open/floor/engine/vacuum,/area/atmos)
-"cfl" = (/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel/escape{tag = "icon-escape (WEST)";icon_state = "escape";dir = 8},/area/hallway/secondary/exit)
-"cfm" = (/obj/machinery/camera{c_tag = "Arrivals Escape Pod 1";dir = 8},/obj/machinery/light/small,/turf/open/floor/plating,/area/hallway/secondary/entry)
-"cfn" = (/obj/structure/sign/pods,/turf/closed/wall,/area/hallway/secondary/entry)
-"cfo" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"cfp" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line,/obj/item/device/radio/beacon,/obj/item/device/radio/intercom{dir = 8;pixel_x = -28},/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel,/area/teleporter)
-"cfq" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/teleporter)
-"cfr" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/closed/wall,/area/engine/chiefs_office)
-"cfs" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/closed/wall,/area/engine/chiefs_office)
-"cft" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable{tag = "icon-0-4";icon_state = "0-4"},/turf/open/floor/plating,/area/engine/chiefs_office)
-"cfu" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{tag = "icon-0-8";icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/engine/chiefs_office)
-"cfv" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{tag = "icon-0-8";icon_state = "0-8"},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/open/floor/plating,/area/engine/chiefs_office)
-"cfw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/closed/wall,/area/engine/chiefs_office)
-"cfx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/yellow/side{dir = 8},/area/engine/break_room{name = "Engineering Hallway"})
-"cfy" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/transmitter,/obj/item/weapon/stock_parts/subspace/transmitter,/obj/item/weapon/stock_parts/subspace/treatment,/obj/item/weapon/stock_parts/subspace/treatment,/obj/item/weapon/stock_parts/subspace/treatment,/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"cfz" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/machinery/light/small,/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"cfA" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/ansible,/obj/item/weapon/stock_parts/subspace/ansible,/obj/item/weapon/stock_parts/subspace/ansible,/obj/item/weapon/stock_parts/subspace/crystal,/obj/item/weapon/stock_parts/subspace/crystal,/obj/item/weapon/stock_parts/subspace/crystal,/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"cfB" = (/obj/machinery/vending/engivend,/turf/open/floor/plating{icon_state = "floorgrime"},/area/ai_monitored/storage/secure)
-"cfC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel{dir = 8;icon_state = "escape"},/area/hallway/secondary/exit)
-"cfD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cfE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "caution";dir = 4},/area/hallway/secondary/exit)
-"cfF" = (/obj/structure/tank_dispenser,/turf/open/floor/plasteel,/area/atmos)
-"cfG" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/atmos)
-"cfH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"cfI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start{name = "Atmospheric Technician"},/turf/open/floor/plasteel,/area/atmos)
-"cfJ" = (/obj/machinery/computer/atmos_alert,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "caution";dir = 4},/area/atmos)
-"cfK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos)
-"cfL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/atmos)
-"cfM" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/atmos)
-"cfN" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/atmos)
-"cfO" = (/obj/structure/closet/crate,/turf/open/floor/plasteel,/area/atmos)
-"cfP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/atmos)
-"cfQ" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "Mix to Filter";on = 1},/turf/open/floor/plasteel,/area/atmos)
-"cfR" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"cfS" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 6},/turf/open/floor/plasteel,/area/atmos)
-"cfT" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 1},/turf/open/floor/plasteel,/area/atmos)
-"cfU" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"cfV" = (/obj/machinery/computer/atmos_control/tank{frequency = 1441;input_tag = "mix_in";name = "Gas Mix Tank Control";output_tag = "mix_out";sensors = list("mix_sensor" = "Tank")},/turf/open/floor/plasteel/green/side{dir = 4},/area/atmos)
-"cfW" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos)
-"cfX" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating/airless,/area/atmos)
-"cfY" = (/obj/machinery/air_sensor{frequency = 1441;id_tag = "mix_sensor"},/turf/open/floor/engine/vacuum,/area/atmos)
-"cfZ" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine/vacuum,/area/atmos)
-"cga" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel/escape{tag = "icon-escape (WEST)";icon_state = "escape";dir = 8},/area/hallway/secondary/exit)
-"cgb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 8},/obj/item/device/radio/intercom{dir = 8;pixel_x = -28},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"cgc" = (/obj/structure/table,/obj/item/weapon/hand_tele,/turf/open/floor/plasteel,/area/teleporter)
-"cgd" = (/obj/machinery/computer/teleporter,/turf/open/floor/plating,/area/teleporter)
-"cge" = (/obj/machinery/teleport/station,/turf/open/floor/plating,/area/teleporter)
-"cgf" = (/obj/machinery/teleport/hub,/turf/open/floor/plating,/area/teleporter)
-"cgg" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/yellow/side{dir = 8},/area/engine/break_room{name = "Engineering Hallway"})
-"cgh" = (/turf/open/floor/plasteel/yellow/side{dir = 4},/area/engine/break_room)
-"cgi" = (/turf/closed/wall,/area/engine/break_room)
-"cgj" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/lattice,/turf/open/space,/area/space/nearstation)
-"cgk" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/space,/area/space/nearstation)
-"cgl" = (/obj/structure/disposalpipe/junction{dir = 8;icon_state = "pipe-j2"},/obj/structure/lattice,/turf/open/space,/area/space/nearstation)
-"cgm" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/lattice,/turf/open/space,/area/space/nearstation)
-"cgn" = (/turf/closed/wall,/area/engine/break_room{name = "Engineering Hallway"})
-"cgo" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Tech Storage";req_access_txt = "0";req_one_access_txt = "23;30"},/turf/open/floor/plating{tag = "icon-delivery";icon_state = "delivery";dir = 2},/area/ai_monitored/storage/secure)
-"cgp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/aft)
-"cgq" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/hallway/secondary/exit)
-"cgr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel{dir = 8;icon_state = "escape"},/area/hallway/secondary/exit)
-"cgs" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cgt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "caution";dir = 4},/area/hallway/secondary/exit)
-"cgu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/plasticflaps{opacity = 1},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4";freq = 1400;location = "Atmospherics"},/obj/machinery/door/poddoor{density = 0;icon_state = "open";id = "atmos";name = "Atmos Blast Door";opacity = 0},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/atmos)
-"cgv" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/table,/obj/item/clothing/mask/breath,/turf/open/floor/plasteel,/area/atmos)
-"cgw" = (/obj/machinery/computer/station_alert,/turf/open/floor/plasteel{dir = 6;icon_state = "caution"},/area/atmos)
-"cgx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/atmos)
-"cgy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"cgz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_atmos{name = "Distribution Loop";req_access_txt = "24"},/turf/open/floor/plasteel,/area/atmos)
-"cgA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/open/floor/plasteel,/area/atmos)
-"cgB" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 9},/turf/open/floor/plasteel,/area/atmos)
-"cgC" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1;name = "Pure to Mix";on = 0},/turf/open/floor/plasteel,/area/atmos)
-"cgD" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 5;initialize_directions = 12},/turf/open/floor/plasteel,/area/atmos)
-"cgE" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1;name = "Unfiltered to Mix";on = 1},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4;initialize_directions = 12},/turf/open/floor/plasteel,/area/atmos)
-"cgF" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel/green/side{dir = 6},/area/atmos)
-"cgG" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos)
-"cgH" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/space,/area/space/nearstation)
-"cgI" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8;frequency = 1441;id = "mix_in";pixel_y = 1},/turf/open/floor/engine/vacuum,/area/atmos)
-"cgJ" = (/obj/machinery/vending/snack,/turf/open/floor/plasteel/escape{tag = "icon-escape (SOUTHWEST)";icon_state = "escape";dir = 10},/area/hallway/secondary/exit)
-"cgK" = (/turf/open/floor/plasteel/escape,/area/hallway/secondary/exit)
-"cgL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/escape,/area/hallway/secondary/exit)
-"cgM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/escape,/area/hallway/secondary/exit)
-"cgN" = (/turf/open/floor/plasteel/escape{tag = "icon-escape (SOUTHEAST)";icon_state = "escape";dir = 6},/area/hallway/secondary/exit)
-"cgO" = (/obj/machinery/door/airlock/titanium{name = "Emergency Shuttle Airlock"},/turf/open/floor/noslip,/area/shuttle/escape)
-"cgP" = (/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = -30},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"cgQ" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"cgR" = (/turf/closed/wall/r_wall,/area/hallway/primary/aft)
-"cgS" = (/turf/closed/wall/r_wall,/area/security/checkpoint/engineering)
-"cgT" = (/turf/open/floor/plasteel/yellow/side{dir = 10},/area/engine/break_room{name = "Engineering Hallway"})
-"cgU" = (/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (SOUTHEAST)";icon_state = "yellow";dir = 6},/area/engine/break_room)
-"cgV" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/engine/break_room)
-"cgW" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/yellow,/area/engine/break_room{name = "Engineering Hallway"})
-"cgX" = (/turf/open/floor/plasteel/yellow,/area/engine/break_room{name = "Engineering Hallway"})
-"cgY" = (/turf/open/floor/plasteel/yellow,/area/space)
-"cgZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/aft)
-"cha" = (/obj/item/weapon/crowbar,/obj/item/weapon/wrench,/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/secondary/exit)
-"chb" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel{icon_state = "caution";dir = 4},/area/hallway/secondary/exit)
-"chc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/atmos)
-"chd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/table,/obj/item/weapon/wrench,/turf/open/floor/plasteel,/area/atmos)
-"che" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "Air to External";on = 1},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/atmos)
-"chf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"chg" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6;initialize_directions = 6},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos)
-"chh" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos)
-"chi" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos)
-"chj" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos)
-"chk" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos)
-"chl" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos)
-"chm" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4;initialize_directions = 11},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos)
-"chn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/security{name = "Brig";req_access = null;req_access_txt = "63; 42"},/turf/open/floor/plasteel/red,/area/hallway/secondary/exit)
-"cho" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/hallway/secondary/exit)
-"chp" = (/obj/machinery/door/airlock/glass{name = "Emergency Shuttle Brig";req_access_txt = "2"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"chq" = (/obj/machinery/door/airlock/glass{name = "Emergency Shuttle Infirmary"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"chr" = (/turf/closed/wall/mineral/titanium,/area/shuttle/transport)
-"chs" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/transport)
-"cht" = (/obj/machinery/door/airlock/external,/turf/open/floor/pod/dark,/area/shuttle/transport)
-"chu" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"chv" = (/turf/closed/wall,/area/security/checkpoint/engineering)
-"chw" = (/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/obj/structure/table,/obj/machinery/recharger,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/engineering)
-"chx" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/power/apc{dir = 1;name = "Engineering Security APC";pixel_x = 0;pixel_y = 24},/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/engineering)
-"chy" = (/obj/machinery/computer/security,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/engineering)
-"chz" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/security/checkpoint/engineering)
-"chA" = (/turf/open/floor/plasteel,/area/engine/break_room)
-"chB" = (/obj/structure/table,/obj/item/device/radio/intercom{name = "Station Intercom";pixel_x = 0;pixel_y = 24},/turf/open/floor/plasteel/yellow,/area/engine/break_room)
-"chC" = (/obj/machinery/light/small{dir = 1},/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/thirteenloko,/turf/open/floor/plasteel,/area/engine/break_room)
-"chD" = (/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/obj/structure/table,/turf/open/floor/plasteel/yellow,/area/engine/break_room)
-"chE" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/obj/machinery/camera/autoname,/turf/open/floor/plasteel,/area/engine/break_room)
-"chF" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/space,/area/space/nearstation)
-"chG" = (/turf/open/floor/plasteel,/area/engine/break_room{name = "Engineering Hallway"})
-"chH" = (/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)";icon_state = "yellow";dir = 4},/area/space)
-"chI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/closet/emcloset,/turf/open/floor/plasteel{dir = 10;icon_state = "yellow"},/area/hallway/secondary/exit)
-"chJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/yellow/side,/area/hallway/secondary/exit)
-"chK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 6;icon_state = "yellow"},/area/hallway/secondary/exit)
-"chL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/turf/open/floor/plasteel,/area/atmos)
-"chM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/atmosplaque{pixel_y = -30},/turf/open/floor/plasteel,/area/atmos)
-"chN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics Monitoring";req_access_txt = "24"},/obj/structure/sign/nosmoking_2{pixel_y = 30},/turf/open/floor/plasteel,/area/atmos)
-"chO" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4;name = "External to Filter";on = 1},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/atmos)
-"chP" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"chQ" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (NORTHEAST)";icon_state = "intact";dir = 5},/turf/open/floor/plasteel,/area/atmos)
-"chR" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"chS" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4;initialize_directions = 11},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos)
-"chT" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos)
-"chU" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos)
-"chV" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/turf/open/floor/plasteel,/area/atmos)
-"chW" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"chX" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "N2O Outlet Pump";on = 0},/turf/open/floor/plasteel/escape{dir = 5},/area/atmos)
-"chY" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;external_pressure_bound = 0;frequency = 1441;id_tag = "n2o_out";initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine/n2o,/area/atmos)
-"chZ" = (/turf/open/floor/engine/n2o,/area/atmos)
-"cia" = (/turf/open/floor/plasteel/red,/area/hallway/secondary/exit)
-"cib" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red,/area/hallway/secondary/exit)
-"cic" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red,/area/hallway/secondary/exit)
-"cid" = (/obj/machinery/door/airlock/titanium{name = "Emergency Shuttle Airlock";req_access_txt = "2"},/turf/open/floor/plating,/area/shuttle/escape)
-"cie" = (/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/escape)
-"cif" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/structure/chair{name = "tactical chair"},/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/escape)
-"cig" = (/obj/machinery/sleeper{icon_state = "sleeper-open";dir = 8},/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"cih" = (/obj/structure/shuttle/engine/propulsion{dir = 8;icon_state = "propulsion_l"},/turf/open/floor/plating/airless,/area/shuttle/transport)
-"cii" = (/obj/structure/shuttle/engine/heater{icon_state = "heater";dir = 8},/obj/structure/window/reinforced,/turf/open/floor/plating/airless,/area/shuttle/transport)
-"cij" = (/obj/structure/chair,/turf/open/floor/pod/dark,/area/shuttle/transport)
-"cik" = (/turf/open/floor/pod/light,/area/shuttle/transport)
-"cil" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/entry)
-"cim" = (/obj/structure/closet/firecloset/full,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cin" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = -30},/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/engineering)
-"cio" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/engineering)
-"cip" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/computer/secure_data,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/engineering)
-"ciq" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/security/checkpoint/engineering)
-"cir" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room{name = "Engineering Hallway"})
-"cis" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/yellow,/area/engine/break_room)
-"cit" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/engine/break_room)
-"ciu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Station Engineer"},/turf/open/floor/plasteel/yellow,/area/engine/break_room)
-"civ" = (/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/engine/break_room)
-"ciw" = (/obj/structure/sink/kitchen{dir = 8;pixel_x = 11},/turf/open/floor/plasteel/yellow,/area/engine/break_room)
-"cix" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/engine/break_room{name = "Engineering Hallway"})
-"ciy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/maintenance,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/aft)
-"ciz" = (/turf/closed/wall/r_wall,/area/engine/break_room)
-"ciA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/engine/break_room)
-"ciB" = (/obj/machinery/door/airlock/glass_engineering{name = "Engineering Storage";req_access_txt = "32"},/turf/open/floor/plasteel/yellow,/area/engine/break_room)
-"ciC" = (/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics Monitoring";req_access_txt = "24"},/turf/open/floor/plasteel,/area/engine/break_room)
-"ciD" = (/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/atmos)
-"ciE" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel,/area/atmos)
-"ciF" = (/obj/item/device/radio/beacon,/turf/open/floor/plasteel,/area/atmos)
-"ciG" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Air to Port";on = 0},/turf/open/floor/plasteel,/area/atmos)
-"ciH" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Mix to Port";on = 0},/turf/open/floor/plasteel,/area/atmos)
-"ciI" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Pure to Port";on = 0},/turf/open/floor/plasteel,/area/atmos)
-"ciJ" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plasteel,/area/atmos)
-"ciK" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/atmos)
-"ciL" = (/obj/machinery/computer/atmos_control/tank{frequency = 1441;input_tag = "n2o_in";name = "Nitrous Oxide Supply Control";output_tag = "n2o_out";sensors = list("n2o_sensor" = "Tank")},/turf/open/floor/plasteel/escape{dir = 4},/area/atmos)
-"ciM" = (/obj/machinery/air_sensor{frequency = 1441;id_tag = "n2o_sensor"},/turf/open/floor/engine/n2o,/area/atmos)
-"ciN" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/engine/n2o,/area/atmos)
-"ciO" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine/n2o,/area/atmos)
-"ciP" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/turf/open/floor/plasteel/red,/area/hallway/secondary/exit)
-"ciQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/red,/area/hallway/secondary/exit)
-"ciR" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/red,/area/hallway/secondary/exit)
-"ciS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/red,/area/hallway/secondary/exit)
-"ciT" = (/obj/machinery/flasher{id = "shuttle_flasher";pixel_x = -24;pixel_y = 6},/obj/machinery/button/flasher{id = "shuttle_flasher";pixel_x = -24;pixel_y = -6},/obj/machinery/light/small{brightness = 3;dir = 8},/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/escape)
-"ciU" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/regular{pixel_x = 2;pixel_y = 3},/obj/item/weapon/crowbar,/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/light/small{dir = 4},/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"ciV" = (/obj/structure/shuttle/engine/heater{icon_state = "heater";dir = 8},/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plating/airless,/area/shuttle/transport)
-"ciW" = (/obj/machinery/door/airlock/titanium,/turf/open/floor/pod/light,/area/shuttle/transport)
-"ciX" = (/obj/machinery/computer/shuttle/ferry/request,/turf/open/floor/pod/dark,/area/shuttle/transport)
-"ciY" = (/obj/machinery/door/airlock/titanium,/obj/docking_port/mobile{dir = 8;dwidth = 2;height = 13;id = "ferry";name = "ferry shuttle";port_angle = 0;preferred_direction = 4;roundstart_move = "ferry_away";width = 5},/obj/docking_port/stationary{dir = 8;dwidth = 2;height = 13;id = "ferry_home";name = "port bay 2";turf_type = /turf/open/space;width = 5},/turf/open/floor/pod/light,/area/shuttle/transport)
-"ciZ" = (/obj/machinery/door/airlock/external{id_tag = null;name = "Port Docking Bay 2";req_access_txt = "0"},/turf/open/floor/noslip,/area/hallway/secondary/entry)
-"cja" = (/obj/machinery/light{dir = 8},/obj/item/device/radio/intercom{dir = 8;pixel_x = -28},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/engineering)
-"cjb" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/engineering)
-"cjc" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/engineering)
-"cjd" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/structure/cable{tag = "icon-1-4";icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4";tag = "icon-2-8"},/obj/machinery/door/airlock/glass_security{name = "Engineering Security Post";req_access_txt = "63"},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/engineering)
-"cje" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/yellow,/area/engine/break_room{name = "Engineering Hallway"})
-"cjf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plasteel,/area/engine/break_room)
-"cjg" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;name = "regular air vent";on = 1},/turf/open/floor/plasteel/yellow,/area/engine/break_room)
-"cjh" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/break_room)
-"cji" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel/yellow,/area/engine/break_room)
-"cjj" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plasteel,/area/engine/break_room)
-"cjk" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Foyer";req_access_txt = "0";req_one_access_txt = "32;19"},/turf/open/floor/plasteel/yellow,/area/engine/break_room)
-"cjl" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/engine/break_room{name = "Engineering Hallway"})
-"cjm" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/engine/break_room{name = "Engineering Hallway"})
-"cjn" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/engine/break_room{name = "Engineering Hallway"})
-"cjo" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (NORTH)";icon_state = "yellowcorner";dir = 1},/area/engine/break_room{name = "Engineering Hallway"})
-"cjp" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/engine/break_room{name = "Engineering Hallway"})
-"cjq" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (EAST)";icon_state = "yellowcorner";dir = 4},/area/engine/break_room{name = "Engineering Hallway"})
-"cjr" = (/obj/machinery/power/apc{dir = 1;name = "Engineering Foyer APC";pixel_x = 0;pixel_y = 24},/obj/structure/cable{tag = "icon-0-8";icon_state = "0-8"},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/engine/break_room{name = "Engineering Hallway"})
-"cjs" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/engine/break_room{name = "Engineering Hallway"})
-"cjt" = (/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHEAST)";icon_state = "camera";dir = 6},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/engine/break_room{name = "Engineering Hallway"})
-"cju" = (/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/engine/break_room{name = "Engineering Hallway"})
-"cjv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/engine/break_room{name = "Engineering Hallway"})
-"cjw" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/engine/break_room{name = "Engineering Hallway"})
-"cjx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Foyer";req_access_txt = "0";req_one_access_txt = "32;19"},/turf/open/floor/plasteel/yellow,/area/engine/break_room{name = "Engineering Hallway"})
-"cjy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/engine/break_room{name = "Engineering Hallway"})
-"cjz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (NORTH)";icon_state = "yellowcorner";dir = 1},/area/engine/break_room{name = "Engineering Hallway"})
-"cjA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room{name = "Engineering Hallway"})
-"cjB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (EAST)";icon_state = "yellowcorner";dir = 4},/area/engine/break_room{name = "Engineering Hallway"})
-"cjC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/engine/break_room{name = "Engineering Hallway"})
-"cjD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTHEAST)";icon_state = "yellow";dir = 5},/area/engine/break_room{name = "Engineering Hallway"})
-"cjE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Storage";req_access_txt = "32"},/turf/open/floor/plasteel/yellow,/area/engine/break_room)
-"cjF" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTHWEST)";icon_state = "yellow";dir = 9},/area/engine/break_room)
-"cjG" = (/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/engine/break_room)
-"cjH" = (/obj/machinery/vending/engivend,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/engine/break_room)
-"cjI" = (/obj/machinery/vending/tool,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/engine/break_room)
-"cjJ" = (/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/obj/structure/closet/secure_closet/engineering_welding,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/engine/break_room)
-"cjK" = (/obj/structure/closet/secure_closet/engineering_electrical,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/engine/break_room)
-"cjL" = (/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTHEAST)";icon_state = "yellow";dir = 5},/area/engine/break_room)
-"cjM" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/yellow,/area/engine/break_room)
-"cjN" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel,/area/atmos)
-"cjO" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/atmos)
-"cjP" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/gloves/color/black,/obj/item/clothing/gloves/color/black,/obj/item/clothing/gloves/color/black,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/turf/open/floor/plasteel,/area/atmos)
-"cjQ" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plasteel,/area/atmos)
-"cjR" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos)
-"cjS" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel,/area/atmos)
-"cjT" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 1;filter_type = "n2o";on = 1},/turf/open/floor/plasteel,/area/atmos)
-"cjU" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel/escape{dir = 6},/area/atmos)
-"cjV" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8;frequency = 1441;id = "n2o_in";pixel_y = 1},/turf/open/floor/engine/n2o,/area/atmos)
-"cjW" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/red,/area/hallway/secondary/exit)
-"cjX" = (/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHWEST)";icon_state = "camera";dir = 10},/turf/open/floor/plasteel/red,/area/hallway/secondary/exit)
-"cjY" = (/obj/machinery/light,/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/red,/area/hallway/secondary/exit)
-"cjZ" = (/obj/structure/chair{dir = 1;name = "tactical chair"},/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/escape)
-"cka" = (/obj/structure/shuttle/engine/heater{icon_state = "heater";dir = 8},/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/turf/open/floor/plating/airless,/area/shuttle/transport)
-"ckb" = (/obj/structure/chair{dir = 1},/turf/open/floor/pod/dark,/area/shuttle/transport)
-"ckc" = (/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"ckd" = (/obj/structure/filingcabinet/security,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/engineering)
-"cke" = (/obj/effect/landmark/start/depsec/engineering,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/engineering)
-"ckf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/engineering)
-"ckg" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/security/checkpoint/engineering)
-"ckh" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/break_room{name = "Engineering Hallway"})
-"cki" = (/turf/open/floor/plasteel/yellow,/area/engine/break_room)
-"ckj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/engine/break_room)
-"ckk" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/yellow,/area/engine/break_room)
-"ckl" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plasteel,/area/engine/break_room)
-"ckm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Foyer";req_access_txt = "0";req_one_access_txt = "32;19"},/turf/open/floor/plasteel/yellow,/area/engine/break_room)
-"ckn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/yellow/side,/area/engine/break_room{name = "Engineering Hallway"})
-"cko" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/yellow/side,/area/engine/break_room{name = "Engineering Hallway"})
-"ckp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHWEST)";icon_state = "camera";dir = 10},/turf/open/floor/plasteel/yellow/side,/area/engine/break_room{name = "Engineering Hallway"})
-"ckq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (WEST)";icon_state = "yellowcorner";dir = 8},/area/engine/break_room{name = "Engineering Hallway"})
-"ckr" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room{name = "Engineering Hallway"})
-"cks" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/yellow/corner,/area/engine/break_room{name = "Engineering Hallway"})
-"ckt" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plasteel/yellow/side,/area/engine/break_room{name = "Engineering Hallway"})
-"cku" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Foyer";req_access_txt = "0";req_one_access_txt = "32;19"},/turf/open/floor/plasteel/yellow,/area/engine/break_room{name = "Engineering Hallway"})
-"ckv" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (SOUTHEAST)";icon_state = "yellow";dir = 6},/area/engine/break_room)
-"ckw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Storage";req_access_txt = "32"},/turf/open/floor/plasteel/yellow,/area/engine/break_room)
-"ckx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (WEST)";icon_state = "yellow";dir = 8},/area/engine/break_room)
-"cky" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
-"ckz" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;name = "regular air scrubber";on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/engine/break_room)
-"ckA" = (/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)";icon_state = "yellow";dir = 4},/area/engine/break_room)
-"ckB" = (/obj/machinery/door/airlock/glass_engineering{name = "Atmospherics";req_access_txt = "32"},/turf/open/floor/plasteel{icon_state = "dark"},/area/atmos)
-"ckC" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/camera{c_tag = "Atmospherics West";dir = 8;network = list("SS13")},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel,/area/atmos)
-"ckD" = (/turf/closed/wall,/area/atmos)
-"ckE" = (/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Air to Port";on = 0},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/atmos)
-"ckF" = (/obj/effect/landmark/start{name = "Atmospheric Technician"},/turf/open/floor/plasteel,/area/atmos)
-"ckG" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"ckH" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/shuttle/engine/heater,/turf/open/floor/plating/airless,/area/shuttle/escape)
-"ckI" = (/obj/machinery/door/airlock/external,/turf/open/floor/pod/light,/area/shuttle/transport)
-"ckJ" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"ckK" = (/obj/structure/closet,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/engineering)
-"ckL" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTH)";icon_state = "camera";dir = 1},/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/engineering)
-"ckM" = (/obj/item/device/radio,/turf/open/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/engineering)
-"ckN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/yellow,/area/engine/break_room{name = "Engineering Hallway"})
-"ckO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/noticeboard{dir = 1;pixel_y = -27},/turf/open/floor/plasteel/yellow,/area/engine/break_room)
-"ckP" = (/obj/structure/table,/obj/machinery/microwave,/turf/open/floor/plasteel,/area/engine/break_room)
-"ckQ" = (/obj/machinery/light/small,/obj/machinery/vending/cola,/turf/open/floor/plasteel/yellow,/area/engine/break_room)
-"ckR" = (/obj/machinery/vending/snack,/turf/open/floor/plasteel,/area/engine/break_room)
-"ckS" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/break_room{name = "Engineering Hallway"})
-"ckT" = (/turf/closed/wall,/area/maintenance/aft)
-"ckU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/light{dir = 8},/obj/structure/tank_dispenser/oxygen,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (WEST)";icon_state = "yellow";dir = 8},/area/engine/break_room)
-"ckV" = (/obj/structure/closet/secure_closet/atmospherics,/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/engine/break_room)
-"ckW" = (/obj/structure/closet/secure_closet/engineering_personal,/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/engine/break_room)
-"ckX" = (/obj/effect/turf_decal/delivery,/obj/item/device/radio/intercom{desc = "Talk smack through this.";dir = 4;pixel_x = 28;syndie = 1},/turf/open/floor/plasteel/yellow,/area/engine/break_room)
-"ckY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/atmos)
-"ckZ" = (/obj/structure/closet/secure_closet/atmospherics,/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/atmos)
-"cla" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/atmos)
-"clb" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/effect/turf_decal/bot{dir = 2},/turf/open/floor/plasteel{dir = 2},/area/atmos)
-"clc" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 8},/turf/open/floor/plasteel,/area/atmos)
-"cld" = (/obj/machinery/camera{c_tag = "Atmospherics East";dir = 8;network = list("SS13")},/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "Plasma Outlet Pump";on = 0},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/atmos)
-"cle" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;external_pressure_bound = 0;frequency = 1441;id_tag = "tox_out";initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine/plasma,/area/atmos)
-"clf" = (/turf/open/floor/engine/plasma,/area/atmos)
-"clg" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/engine/plasma,/area/atmos)
-"clh" = (/obj/structure/shuttle/engine/propulsion,/turf/open/floor/plating/airless,/area/shuttle/escape)
-"cli" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/yellow/side{dir = 9},/area/engine/break_room{name = "Engineering Hallway"})
-"clj" = (/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTHEAST)";icon_state = "yellow";dir = 5},/area/engine/break_room{name = "Engineering Hallway"})
-"clk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/engine/break_room{name = "Engineering Hallway"})
-"cll" = (/obj/structure/lattice,/obj/structure/disposalpipe/junction{dir = 1;icon_state = "pipe-j1";tag = "icon-pipe-j1 (EAST)"},/turf/open/space,/area/space/nearstation)
-"clm" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/engine/break_room{name = "Engineering Hallway"})
-"cln" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/yellow/side{dir = 8},/area/engine/break_room{name = "Engineering Hallway"})
-"clo" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room{name = "Engineering Hallway"})
-"clp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)";icon_state = "yellow";dir = 4},/area/engine/break_room{name = "Engineering Hallway"})
-"clq" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/maintenance/aft)
-"clr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/junction{tag = "icon-pipe-y (WEST)";icon_state = "pipe-y";dir = 8},/turf/open/floor/plating,/area/maintenance/aft)
-"cls" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/suit_storage_unit/engine,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (WEST)";icon_state = "yellow";dir = 8},/area/engine/break_room)
-"clt" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)";icon_state = "yellow";dir = 4},/area/engine/break_room)
-"clu" = (/obj/structure/fireaxecabinet{pixel_x = -30},/obj/machinery/camera/autoname{tag = "icon-camera (EAST)";icon_state = "camera";dir = 4},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/atmos)
-"clv" = (/obj/machinery/suit_storage_unit/atmos,/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/atmos)
-"clw" = (/obj/structure/sign/nosmoking_2,/turf/closed/wall,/area/atmos)
-"clx" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4;initialize_directions = 11},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos)
-"cly" = (/obj/machinery/computer/atmos_control/tank{frequency = 1441;input_tag = "tox_in";name = "Plasma Supply Control";output_tag = "tox_out";sensors = list("tox_sensor" = "Tank")},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"clz" = (/obj/machinery/air_sensor{frequency = 1441;id_tag = "tox_sensor"},/turf/open/floor/engine/plasma,/area/atmos)
-"clA" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/open/floor/engine/plasma,/area/atmos)
-"clB" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine/plasma,/area/atmos)
-"clC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"clD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/yellow/side{dir = 8},/area/engine/break_room{name = "Engineering Hallway"})
-"clE" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/engine/break_room{name = "Engineering Hallway"})
-"clF" = (/obj/structure/disposalpipe/segment,/turf/open/space,/area/space/nearstation)
-"clG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8;initialize_directions = 11},/obj/machinery/suit_storage_unit/engine,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (WEST)";icon_state = "yellow";dir = 8},/area/engine/break_room)
-"clH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
-"clI" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room)
-"clJ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;name = "regular air vent";on = 1},/turf/open/floor/plasteel,/area/engine/break_room)
-"clK" = (/turf/open/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (EAST)";icon_state = "yellowcorner";dir = 4},/area/engine/break_room)
-"clL" = (/obj/structure/closet/toolcloset,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTHEAST)";icon_state = "yellow";dir = 5},/area/engine/break_room)
-"clM" = (/obj/machinery/power/apc{dir = 8;name = "Atmospherics APC";pixel_x = -24},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/atmos)
-"clN" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/atmos)
-"clO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/atmos)
-"clP" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4;initialize_directions = 11},/obj/item/weapon/wrench,/turf/open/floor/plasteel,/area/atmos)
-"clQ" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos)
-"clR" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 1;filter_type = "plasma";on = 1},/turf/open/floor/plasteel,/area/atmos)
-"clS" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/atmos)
-"clT" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8;frequency = 1441;id = "tox_in";pixel_y = 1},/turf/open/floor/engine/plasma,/area/atmos)
-"clU" = (/obj/structure/grille,/obj/structure/lattice,/turf/open/space,/area/space)
-"clV" = (/obj/structure/grille{density = 0;icon_state = "brokengrille"},/obj/structure/lattice,/turf/open/space,/area/space)
-"clW" = (/turf/closed/wall/mineral/titanium,/area/shuttle/pod_2)
-"clX" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 4;icon_state = "propulsion";tag = "icon-propulsion (WEST)"},/turf/closed/wall/mineral/titanium,/area/shuttle/pod_2)
-"clY" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"clZ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/aft)
-"cma" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/suit_storage_unit/atmos,/turf/open/floor/plasteel/green/side{dir = 10},/area/engine/break_room)
-"cmb" = (/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHWEST)";icon_state = "camera";dir = 10},/turf/open/floor/plasteel/green/side,/area/engine/break_room)
-"cmc" = (/obj/machinery/suit_storage_unit/engine,/turf/open/floor/plasteel/orange/side,/area/engine/break_room)
-"cmd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (WEST)";icon_state = "yellowcorner";dir = 8},/area/engine/break_room)
-"cme" = (/turf/open/floor/plasteel/yellow/corner,/area/engine/break_room)
-"cmf" = (/turf/open/floor/plasteel/yellow/side,/area/engine/break_room)
-"cmg" = (/obj/structure/closet/radiation,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (SOUTHEAST)";icon_state = "yellow";dir = 6},/area/engine/break_room)
-"cmh" = (/obj/structure/closet/wardrobe/atmospherics_yellow,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel{icon_state = "dark"},/area/atmos)
-"cmi" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/atmos)
-"cmj" = (/obj/machinery/requests_console{department = "Atmospherics";departmentType = 4;name = "Atmos RC";pixel_x = 30;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel,/area/atmos)
-"cmk" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/camera{c_tag = "Atmospherics Central";dir = 4;network = list("SS13")},/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Port to Filter";on = 0},/turf/open/floor/plasteel,/area/atmos)
-"cml" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/atmos)
-"cmm" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 8},/turf/open/floor/plasteel,/area/atmos)
-"cmn" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/pod_2)
-"cmo" = (/obj/machinery/computer/shuttle/pod{pixel_x = 0;pixel_y = -32;possible_destinations = "pod_asteroid2";shuttleId = "pod2"},/obj/structure/chair{dir = 8},/obj/machinery/status_display{density = 0;layer = 3;pixel_x = 0;pixel_y = 32},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_2)
-"cmp" = (/obj/item/weapon/storage/pod{pixel_x = 6;pixel_y = -28},/obj/item/device/radio/intercom{pixel_x = 0;pixel_y = 25},/obj/structure/chair{dir = 8},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_2)
-"cmq" = (/obj/machinery/door/airlock/titanium{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{dir = 8;id = "pod2";name = "escape pod 2";port_angle = 180},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_2)
-"cmr" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 1;name = "Escape Pod Two"},/turf/open/floor/plating,/area/hallway/secondary/entry)
-"cms" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 8},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/yellow/side{dir = 8},/area/engine/break_room{name = "Engineering Hallway"})
-"cmt" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/aft)
-"cmu" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/aft)
-"cmv" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/aft)
-"cmw" = (/mob/living/simple_animal/bot/floorbot,/turf/open/floor/plating,/area/maintenance/aft)
-"cmx" = (/turf/closed/wall/r_wall,/area/maintenance/atmos_control)
-"cmy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/closed/wall/r_wall,/area/maintenance/atmos_control)
-"cmz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (SOUTHWEST)";icon_state = "yellow";dir = 10},/area/engine/break_room)
-"cmA" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (SOUTHEAST)";icon_state = "yellow";dir = 6},/area/engine/break_room)
-"cmB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/atmos)
-"cmC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel,/area/atmos)
-"cmD" = (/obj/structure/closet/wardrobe/atmospherics_yellow,/turf/open/floor/plasteel,/area/atmos)
-"cmE" = (/obj/machinery/space_heater,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/atmos)
-"cmF" = (/obj/machinery/space_heater,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/atmos)
-"cmG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/turf/open/floor/plasteel,/area/atmos)
-"cmH" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "Port to Filter";on = 0},/turf/open/floor/plasteel,/area/atmos)
-"cmI" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/item/weapon/cigbutt,/turf/open/floor/plasteel,/area/atmos)
-"cmJ" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 8},/turf/open/floor/plasteel,/area/atmos)
-"cmK" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "CO2 Outlet Pump";on = 0},/turf/open/floor/plasteel/yellow/side{dir = 5},/area/atmos)
-"cmL" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;external_pressure_bound = 0;frequency = 1441;id_tag = "co2_out";initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine/co2,/area/atmos)
-"cmM" = (/turf/open/floor/engine/co2,/area/atmos)
-"cmN" = (/obj/machinery/camera{c_tag = "Arrivals Escape Pod 2";dir = 8},/obj/machinery/light/small,/turf/open/floor/plating,/area/hallway/secondary/entry)
-"cmO" = (/obj/machinery/airalarm{dir = 1;pixel_y = -22},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"cmP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = ""},/turf/open/floor/plasteel/yellow,/area/engine/break_room{name = "Engineering Hallway"})
-"cmQ" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/yellow,/area/engine/break_room{name = "Engineering Hallway"})
-"cmR" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/yellow/side,/area/engine/break_room{name = "Engineering Hallway"})
-"cmS" = (/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (SOUTHEAST)";icon_state = "yellow";dir = 6},/area/engine/break_room{name = "Engineering Hallway"})
-"cmT" = (/turf/open/floor/plating,/area/maintenance/aft)
-"cmU" = (/obj/structure/cable{icon_state = "2-4";tag = "icon-2-8"},/turf/open/floor/plating,/area/maintenance/aft)
-"cmV" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/aft)
-"cmW" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft)
-"cmX" = (/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/aft)
-"cmY" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/atmos_control)
-"cmZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/closet/crate{name = "solar pack crate"},/turf/open/floor/plating,/area/maintenance/atmos_control)
-"cna" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/atmos_control)
-"cnb" = (/obj/item/weapon/storage/backpack/industrial,/turf/open/floor/plating,/area/maintenance/atmos_control)
-"cnc" = (/turf/closed/wall/r_wall,/area/maintenance/aft)
-"cnd" = (/obj/machinery/door/airlock/maintenance{name = "Storage Room";req_access_txt = "32"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft)
-"cne" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal/bin,/turf/open/floor/plasteel{icon_state = "dark"},/area/atmos)
-"cnf" = (/turf/open/floor/plasteel{icon_state = "dark"},/area/atmos)
-"cng" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/turf/open/floor/plasteel,/area/atmos)
-"cnh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 1},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos)
-"cni" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 1},/turf/open/floor/plasteel,/area/atmos)
-"cnj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/atmos)
-"cnk" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6;initialize_directions = 6},/turf/open/floor/plasteel,/area/atmos)
-"cnl" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4;name = "N2 to Pure";on = 0},/turf/open/floor/plasteel,/area/atmos)
-"cnm" = (/obj/machinery/computer/atmos_control/tank{frequency = 1441;input_tag = "co2_in";name = "Carbon Dioxide Supply Control";output_tag = "co2_out";sensors = list("co2_sensor" = "Tank")},/turf/open/floor/plasteel/yellow/side{dir = 4},/area/atmos)
-"cnn" = (/obj/machinery/air_sensor{frequency = 1441;id_tag = "co2_sensor"},/turf/open/floor/engine/co2,/area/atmos)
-"cno" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/open/floor/engine/co2,/area/atmos)
-"cnp" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine/co2,/area/atmos)
-"cnq" = (/obj/structure/lattice,/obj/structure/grille,/turf/open/space,/area/space)
-"cnr" = (/turf/closed/wall,/area/mining_construction)
-"cns" = (/turf/closed/wall/r_wall,/area/engine/engineering)
-"cnt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/closed/wall/r_wall,/area/engine/engineering)
-"cnu" = (/obj/machinery/door/airlock/glass_engineering{name = "Power Monitoring";req_access_txt = "32"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"cnv" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/closed/wall,/area/engine/break_room{name = "Engineering Hallway"})
-"cnw" = (/obj/machinery/light{dir = 8},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/yellow,/area/engine/break_room{name = "Engineering Hallway"})
-"cnx" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/yellow,/area/engine/break_room{name = "Engineering Hallway"})
-"cny" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/yellow,/area/engine/break_room{name = "Engineering Hallway"})
-"cnz" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/storage/belt/utility,/turf/open/floor/plating,/area/maintenance/aft)
-"cnA" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/aft)
-"cnB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft)
-"cnC" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/aft)
-"cnD" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/aft)
-"cnE" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/atmos_control)
-"cnF" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/atmos_control)
-"cnG" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/atmos_control)
-"cnH" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/maintenance/aft)
-"cnI" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/aft)
-"cnJ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plating,/area/maintenance/aft)
-"cnK" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/machinery/door/airlock/maintenance{name = "Atmospherics Maintenance";req_access_txt = "24"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/aft)
-"cnL" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plasteel{icon_state = "dark"},/area/atmos)
-"cnM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/atmos)
-"cnN" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel,/area/atmos)
-"cnO" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos)
-"cnP" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/turf/open/floor/plasteel,/area/atmos)
-"cnQ" = (/obj/machinery/atmospherics/components/trinary/mixer{dir = 4;node1_concentration = 0.8;node2_concentration = 0.2;on = 1;pixel_x = 0;pixel_y = 0;target_pressure = 4500},/turf/open/floor/plasteel,/area/atmos)
-"cnR" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 1;name = "O2 to Pure";on = 0},/turf/open/floor/plasteel,/area/atmos)
-"cnS" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 1;filter_type = "co2";on = 1},/turf/open/floor/plasteel,/area/atmos)
-"cnT" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel/yellow/side{dir = 6},/area/atmos)
-"cnU" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8;frequency = 1441;id = "co2_in";pixel_y = 1},/turf/open/floor/engine/co2,/area/atmos)
-"cnV" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plating,/area/shuttle/auxillary_base)
-"cnW" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/shuttle/auxillary_base)
-"cnX" = (/obj/structure/closet/secure_closet/miner{locked = 0},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plating,/area/shuttle/auxillary_base)
-"cnY" = (/obj/machinery/computer/arcade,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"cnZ" = (/obj/machinery/light/small{dir = 8},/obj/machinery/computer/station_alert,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTHWEST)";icon_state = "yellow";dir = 9},/area/engine/engineering)
-"coa" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/engine/engineering)
-"cob" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom";pixel_x = 0;pixel_y = 24},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/engine/engineering)
-"coc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera/autoname,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/engine/engineering)
-"cod" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8";tag = ""},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTHEAST)";icon_state = "yellow";dir = 5},/area/engine/engineering)
-"coe" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/engine/engineering)
-"cof" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/engine/engineering)
-"cog" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Engine Room";req_access_txt = "10"},/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"coh" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{name = "Engine Maintenance";req_access_txt = "10"},/turf/open/floor/plating,/area/maintenance/aft)
-"coi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/engine/engineering)
-"coj" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/machinery/power/apc{dir = 8;name = "Engineering Maintenance APC";pixel_x = -25;pixel_y = 1},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/aft)
-"cok" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/aft)
-"col" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/aft)
-"com" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/aft)
-"con" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/aft)
-"coo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel{icon_state = "dark"},/area/atmos)
-"cop" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/atmos)
-"coq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/atmos)
-"cor" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plasteel,/area/atmos)
-"cos" = (/obj/machinery/atmospherics/components/binary/valve/digital{name = "Waste Release"},/turf/open/floor/plasteel,/area/atmos)
-"cot" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/turf/open/floor/plasteel,/area/atmos)
-"cou" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/open/floor/plating,/area/atmos)
-"cov" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/power/solar{id = "portsolar";name = "Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/auxstarboard{name = "Auxiliary Solar Array"})
-"cow" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard{name = "Auxiliary Solar Array"})
-"cox" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/power/solar{id = "portsolar";name = "Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/auxstarboard{name = "Auxiliary Solar Array"})
-"coy" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/shuttle/auxillary_base)
-"coz" = (/turf/open/floor/plating,/area/shuttle/auxillary_base)
-"coA" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/shuttle/auxillary_base)
-"coB" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"coC" = (/obj/machinery/computer/monitor{name = "primary power monitoring console"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (SOUTHWEST)";icon_state = "yellow";dir = 10},/area/engine/engineering)
-"coD" = (/obj/structure/chair/office/dark{dir = 8},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8";tag = ""},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plasteel/yellow/side,/area/engine/engineering)
-"coE" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/turf/open/floor/plasteel/yellow/side,/area/engine/engineering)
-"coF" = (/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/yellow/side,/area/engine/engineering)
-"coG" = (/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (SOUTHEAST)";icon_state = "yellow";dir = 6},/area/engine/engineering)
-"coH" = (/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"coI" = (/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/glass_engineering{name = "Power Monitoring";req_access_txt = "32"},/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"coJ" = (/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTHWEST)";icon_state = "yellow";dir = 9},/area/engine/engineering)
-"coK" = (/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/machinery/camera/autoname,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/engine/engineering)
-"coL" = (/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 1},/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/engine/engineering)
-"coM" = (/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/rack,/obj/item/clothing/head/welding,/obj/item/clothing/glasses/welding,/obj/item/clothing/glasses/welding,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/engine/engineering)
-"coN" = (/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/obj/structure/rack,/obj/item/weapon/storage/belt/utility,/turf/open/floor/plasteel/yellow/side{dir = 5},/area/engine/engineering)
-"coO" = (/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/engineering)
-"coP" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"coQ" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/engine/engineering)
-"coR" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8";tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/engine/engineering)
-"coS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/engine/engineering)
-"coT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/computer/station_alert,/obj/structure/cable{tag = "icon-0-8";icon_state = "0-8"},/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"coU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/engineering)
-"coV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/closet/secure_closet/engineering_personal,/turf/open/floor/plasteel/yellow/side{dir = 9},/area/engine/engineering)
-"coW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 1},/obj/structure/closet/secure_closet/engineering_personal,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/engine/engineering)
-"coX" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/engine/engineering)
-"coY" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/closet/wardrobe/engineering_yellow,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)";icon_state = "yellow";dir = 1},/area/engine/engineering)
-"coZ" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (NORTHEAST)";icon_state = "yellow";dir = 5},/area/engine/engineering)
-"cpa" = (/obj/machinery/power/port_gen/pacman,/turf/open/floor/plasteel{tag = "icon-vault (WEST)";icon_state = "vault";dir = 8},/area/engine/engineering)
-"cpb" = (/obj/machinery/portable_atmospherics/scrubber/huge/movable,/turf/open/floor/plasteel{tag = "icon-vault (WEST)";icon_state = "vault";dir = 8},/area/engine/engineering)
-"cpc" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/open/floor/plasteel{tag = "icon-vault (WEST)";icon_state = "vault";dir = 8},/area/engine/engineering)
-"cpd" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engineering)
-"cpe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/aft)
-"cpf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft)
-"cpg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/aft)
-"cph" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel{icon_state = "dark"},/area/atmos)
-"cpi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/atmos)
-"cpj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/atmos)
-"cpk" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 2;filter_type = "n2";on = 1},/turf/open/floor/plasteel,/area/atmos)
-"cpl" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plasteel,/area/atmos)
-"cpm" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/open/floor/plasteel,/area/atmos)
-"cpn" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard{name = "Auxiliary Solar Array"})
-"cpo" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/mining_construction)
-"cpp" = (/obj/machinery/vending/snack,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"cpq" = (/turf/closed/wall/r_wall,/area/engine/engine_smes)
-"cpr" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/engine_smes)
-"cps" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engine_smes)
-"cpt" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/glass_engineering{name = "Power Monitoring";req_access_txt = "32"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes)
-"cpu" = (/turf/closed/wall,/area/engine/engine_smes)
-"cpv" = (/obj/item/device/radio/intercom{dir = 8;pixel_x = -28},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (WEST)";icon_state = "yellow";dir = 8},/area/engine/engineering)
-"cpw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering)
-"cpx" = (/turf/open/floor/plasteel,/area/engine/engineering)
-"cpy" = (/obj/structure/cable/yellow{icon_state = "1-4";d1 = 1;d2 = 4},/obj/structure/closet/secure_closet/engineering_personal,/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"cpz" = (/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/turf/open/floor/plasteel,/area/engine/engineering)
-"cpA" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering)
-"cpB" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/turf/open/floor/plasteel,/area/engine/engineering)
-"cpC" = (/obj/machinery/computer/monitor,/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"cpD" = (/turf/open/floor/plasteel/yellow/side{dir = 8},/area/engine/engineering)
-"cpE" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering)
-"cpF" = (/obj/machinery/door/poddoor{id = "Secure Storage";name = "secure storage"},/turf/open/floor/plating,/area/engine/engineering)
-"cpG" = (/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engineering)
-"cpH" = (/obj/machinery/light/small{dir = 4},/obj/structure/tank_dispenser,/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engineering)
-"cpI" = (/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/camera/autoname{tag = "icon-camera (EAST)";icon_state = "camera";dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/atmos)
-"cpJ" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/atmos)
-"cpK" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel,/area/atmos)
-"cpL" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plasteel,/area/atmos)
-"cpM" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel,/area/atmos)
-"cpN" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 4;filter_type = "o2";on = 1},/turf/open/floor/plasteel,/area/atmos)
-"cpO" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"cpP" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4;initialize_directions = 12},/turf/open/floor/plasteel,/area/atmos)
-"cpQ" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 9},/turf/open/floor/plasteel,/area/atmos)
-"cpR" = (/obj/machinery/light,/turf/open/floor/plating,/area/shuttle/auxillary_base)
-"cpS" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0;pixel_y = 32},/turf/open/floor/plating,/area/mining_construction)
-"cpT" = (/obj/structure/closet/toolcloset,/turf/open/floor/plasteel/yellow/side{dir = 9},/area/mining_construction)
-"cpU" = (/obj/structure/closet/toolcloset,/turf/open/floor/plasteel/yellow/side{dir = 1},/area/mining_construction)
-"cpV" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel/yellow/side{dir = 5},/area/mining_construction)
-"cpW" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"cpX" = (/obj/structure/table,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"cpY" = (/obj/machinery/power/apc{dir = 8;name = "SMES Room APC";pixel_x = -24;pixel_y = 0},/obj/structure/cable{tag = "icon-0-4";icon_state = "0-4"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes)
-"cpZ" = (/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes)
-"cqa" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes)
-"cqb" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes)
-"cqc" = (/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes)
-"cqd" = (/obj/structure/table,/obj/item/device/flashlight,/turf/open/floor/plasteel/yellow/side{dir = 9},/area/engine/engineering)
-"cqe" = (/turf/open/floor/plasteel/yellow/side{dir = 1},/area/engine/engineering)
-"cqf" = (/turf/open/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (NORTH)";icon_state = "yellowcorner";dir = 1},/area/engine/engineering)
-"cqg" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/engine/engineering)
-"cqh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)";icon_state = "yellow";dir = 4},/area/engine/engineering)
-"cqi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/engineering{name = "Engine Room";req_access_txt = "10"},/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"cqj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"cqk" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering)
-"cql" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/landmark/start{name = "Station Engineer"},/turf/open/floor/plasteel,/area/engine/engineering)
-"cqm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering)
-"cqn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/yellow/side{dir = 8},/area/engine/engineering)
-"cqo" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;name = "regular air scrubber";on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/engine/engineering)
-"cqp" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/engine/engineering)
-"cqq" = (/obj/machinery/shieldgen,/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engineering)
-"cqr" = (/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel{icon_state = "dark"},/area/atmos)
-"cqs" = (/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/atmos)
-"cqt" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel/red/side{dir = 10},/area/atmos)
-"cqu" = (/obj/machinery/computer/atmos_control/tank{frequency = 1441;input_tag = "n2_in";name = "Nitrogen Supply Control";output_tag = "n2_out";sensors = list("n2_sensor" = "Tank")},/turf/open/floor/plasteel/red/side,/area/atmos)
-"cqv" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1;name = "N2 Outlet Pump";on = 1},/turf/open/floor/plasteel/red/side{dir = 6},/area/atmos)
-"cqw" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel,/area/atmos)
-"cqx" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel/blue/side{dir = 10},/area/atmos)
-"cqy" = (/obj/machinery/computer/atmos_control/tank{frequency = 1441;input_tag = "o2_in";name = "Oxygen Supply Control";output_tag = "o2_out";sensors = list("o2_sensor" = "Tank")},/turf/open/floor/plasteel/blue/side{dir = 0},/area/atmos)
-"cqz" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1;name = "O2 Outlet Pump";on = 1},/turf/open/floor/plasteel/blue/side{dir = 6},/area/atmos)
-"cqA" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plasteel/arrival{dir = 10},/area/atmos)
-"cqB" = (/obj/machinery/computer/atmos_control/tank{frequency = 1441;input_tag = "air_in";name = "Mixed Air Supply Control";output_tag = "air_out";sensors = list("air_sensor" = "Tank")},/turf/open/floor/plasteel/arrival,/area/atmos)
-"cqC" = (/obj/machinery/camera{c_tag = "Atmospherics South East";dir = 1},/obj/machinery/atmospherics/components/binary/pump{dir = 1;name = "Air Outlet Pump";on = 1},/turf/open/floor/plasteel/arrival{dir = 6},/area/atmos)
-"cqD" = (/obj/machinery/door/airlock/external{name = "Atmospherics External Airlock";req_access_txt = "24"},/turf/open/floor/noslip,/area/atmos)
-"cqE" = (/turf/open/floor/noslip,/area/atmos)
-"cqF" = (/obj/machinery/camera{c_tag = "Auxillary Mining Base";dir = 8;network = list("SS13","AuxBase")},/turf/open/floor/plating,/area/shuttle/auxillary_base)
-"cqG" = (/obj/docking_port/mobile/auxillary_base{dheight = 4;dir = 4;dwidth = 4;height = 9;width = 9},/obj/machinery/bluespace_beacon,/obj/machinery/computer/auxillary_base{pixel_y = 0},/turf/closed/wall,/area/shuttle/auxillary_base)
-"cqH" = (/obj/structure/mining_shuttle_beacon{dir = 4},/turf/open/floor/plating,/area/shuttle/auxillary_base)
-"cqI" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/docking_port/stationary/public_mining_dock{dir = 8},/turf/open/floor/plating,/area/shuttle/auxillary_base)
-"cqJ" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 1;name = "Construction Zone";req_access = null;req_access_txt = "0";req_one_access_txt = "0"},/turf/open/floor/plating,/area/mining_construction)
-"cqK" = (/turf/open/floor/plasteel/yellow/side{dir = 8},/area/mining_construction)
-"cqL" = (/turf/open/floor/plasteel,/area/mining_construction)
-"cqM" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/machinery/camera{c_tag = "Auxillary Base Construction";dir = 8},/obj/machinery/computer/camera_advanced/base_construction,/turf/open/floor/plasteel/yellow/side{dir = 4},/area/mining_construction)
-"cqN" = (/obj/machinery/light{dir = 8},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes)
-"cqO" = (/obj/machinery/power/smes/engineering,/obj/structure/cable{tag = "icon-0-8";icon_state = "0-8"},/turf/open/floor/plasteel{tag = "icon-vault (WEST)";icon_state = "vault";dir = 8},/area/engine/engine_smes)
-"cqP" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes)
-"cqQ" = (/obj/machinery/power/smes/engineering,/obj/structure/cable{tag = "icon-0-4";icon_state = "0-4"},/turf/open/floor/plasteel{tag = "icon-vault (WEST)";icon_state = "vault";dir = 8},/area/engine/engine_smes)
-"cqR" = (/obj/machinery/light{dir = 4},/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes)
-"cqS" = (/obj/machinery/power/apc{cell_type = 10000;dir = 8;name = "Engine Room APC";pixel_x = -26;pixel_y = 0},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (WEST)";icon_state = "yellow";dir = 8},/area/engine/engineering)
-"cqT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4";tag = ""},/obj/structure/table,/obj/item/weapon/storage/toolbox,/obj/item/weapon/storage/toolbox,/turf/open/floor/plasteel,/area/engine/engineering)
-"cqU" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/engineering)
-"cqV" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)";icon_state = "yellow";dir = 4},/area/engine/engineering)
-"cqW" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/engineering)
-"cqX" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/closet/radiation,/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"cqY" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8";tag = ""},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;name = "regular air scrubber";on = 1},/turf/open/floor/plasteel,/area/engine/engineering)
-"cqZ" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/engineering)
-"cra" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/table,/obj/item/clothing/gloves/color/yellow,/obj/item/weapon/reagent_containers/pill/charcoal,/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"crb" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/table,/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/camera/autoname{tag = "icon-camera (EAST)";icon_state = "camera";dir = 4},/turf/open/floor/plasteel/yellow/side{dir = 8},/area/engine/engineering)
-"crc" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/engineering)
-"crd" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering)
-"cre" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/closet/secure_closet/engineering_electrical,/obj/machinery/button/door{desc = "A remote control-switch for secure storage.";id = "Secure Storage";name = "Engineering Secure Storage";pixel_x = 24;pixel_y = 0;req_access_txt = "11"},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)";icon_state = "yellow";dir = 4},/area/engine/engineering)
-"crf" = (/obj/structure/closet/crate,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/airlock,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/obj/item/stack/sheet/mineral/plasma{amount = 30},/obj/item/device/gps,/obj/machinery/button/door{desc = "A remote control-switch for secure storage.";id = "Secure Storage";name = "Engineering Secure Storage";pixel_x = -24;pixel_y = 0;req_access_txt = "11"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engineering)
-"crg" = (/obj/machinery/shieldgen,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)";icon_state = "camera";dir = 9},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engineering)
-"crh" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/closed/wall/r_wall,/area/atmos)
-"cri" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos)
-"crj" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plating,/area/atmos)
-"crk" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos)
-"crl" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos)
-"crm" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/closed/wall/r_wall,/area/atmos)
-"crn" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/space)
-"cro" = (/turf/closed/wall/r_wall,/area/maintenance/auxsolarstarboard{name = "Auxiliary Solar Control"})
-"crp" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating/airless,/area/maintenance/auxsolarstarboard{name = "Auxiliary Solar Control"})
-"crq" = (/obj/docking_port/stationary{dheight = 9;dir = 2;dwidth = 5;height = 24;id = "syndicate_southmaint";name = "south maintenance airlock";turf_type = /turf/open/space;width = 18},/turf/open/space,/area/space)
-"crr" = (/obj/machinery/light{dir = 1},/turf/open/floor/plating,/area/shuttle/auxillary_base)
-"crs" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/yellow/side{dir = 8},/area/mining_construction)
-"crt" = (/obj/structure/rack{dir = 4},/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/airlock,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/device/assault_pod/mining,/obj/machinery/computer/security/telescreen{desc = "Used for the Auxillary Mining Base.";dir = 8;name = "Auxillary Base Monitor";network = list("AuxBase");pixel_x = 28},/turf/open/floor/plasteel/yellow/side{dir = 4},/area/mining_construction)
-"cru" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes)
-"crv" = (/obj/machinery/power/terminal{icon_state = "term";dir = 1},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes)
-"crw" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8";tag = ""},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes)
-"crx" = (/obj/machinery/power/terminal{icon_state = "term";dir = 1},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes)
-"cry" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/structure/table,/obj/item/weapon/folder/yellow,/obj/item/clothing/ears/earmuffs{pixel_x = -3;pixel_y = -2},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (WEST)";icon_state = "yellow";dir = 8},/area/engine/engineering)
-"crz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/table,/obj/item/weapon/storage/toolbox/electrical,/turf/open/floor/plasteel,/area/engine/engineering)
-"crA" = (/obj/effect/landmark/start{name = "Station Engineer"},/turf/open/floor/plasteel,/area/engine/engineering)
-"crB" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/table,/obj/item/weapon/electronics/apc,/obj/item/weapon/electronics/apc,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)";icon_state = "yellow";dir = 4},/area/engine/engineering)
-"crC" = (/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/engineering)
-"crD" = (/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/obj/machinery/light,/obj/structure/closet/radiation,/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"crE" = (/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/turf/open/floor/plasteel/yellow/side,/area/engine/engineering)
-"crF" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "1-4";d1 = 1;d2 = 4},/turf/open/floor/plasteel/yellow/side,/area/engine/engineering)
-"crG" = (/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/obj/machinery/computer/security/telescreen{desc = "Used for watching the singularity chamber.";dir = 2;layer = 4;name = "Engine Containment Telescreen";network = list("Singularity");pixel_x = 0;pixel_y = -30},/turf/open/floor/plasteel/yellow/side,/area/engine/engineering)
-"crH" = (/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/obj/machinery/light,/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high,/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"crI" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/table,/obj/item/weapon/book/manual/wiki/engineering_construction{pixel_x = 6},/obj/item/weapon/book/manual/wiki/engineering_guide,/obj/item/weapon/book/manual/wiki/engineering_hacking{pixel_x = -6},/turf/open/floor/plasteel/yellow/side{dir = 8},/area/engine/engineering)
-"crJ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/structure/closet/secure_closet/engineering_welding,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)";icon_state = "yellow";dir = 4},/area/engine/engineering)
-"crK" = (/obj/machinery/field/generator{anchored = 0;state = 2},/obj/machinery/camera/autoname{tag = "icon-camera (EAST)";icon_state = "camera";dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engineering)
-"crL" = (/obj/machinery/field/generator{anchored = 0;state = 2},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engineering)
-"crM" = (/obj/machinery/the_singularitygen{anchored = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engineering)
-"crN" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/space,/area/space/nearstation)
-"crO" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/space,/area/space/nearstation)
-"crP" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1;frequency = 1441;id = "waste_out"},/turf/open/floor/plating/airless,/area/atmos)
-"crQ" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/space,/area/space/nearstation)
-"crR" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/turf/open/space,/area/space)
-"crS" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/power/smes,/turf/open/floor/plating,/area/maintenance/auxsolarstarboard{name = "Auxiliary Solar Control"})
-"crT" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/light/small{dir = 1},/obj/machinery/power/terminal{tag = "icon-term (WEST)";icon_state = "term";dir = 8},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard{name = "Auxiliary Solar Control"})
-"crU" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 32;pixel_y = 0},/obj/item/stack/cable_coil,/turf/open/floor/plating,/area/maintenance/auxsolarstarboard{name = "Auxiliary Solar Control"})
-"crV" = (/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard{name = "Auxiliary Solar Array"})
-"crW" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/space,/area/solar/auxstarboard{name = "Auxiliary Solar Array"})
-"crX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/yellow/side{dir = 8},/area/mining_construction)
-"crY" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/turf/open/floor/plasteel/yellow/side{dir = 4},/area/mining_construction)
-"crZ" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes)
-"csa" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/engine/engine_smes)
-"csb" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (WEST)";icon_state = "yellow";dir = 8},/area/engine/engineering)
-"csc" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/obj/structure/table,/obj/item/weapon/storage/toolbox/emergency,/turf/open/floor/plasteel,/area/engine/engineering)
-"csd" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/table,/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/airlock,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)";icon_state = "yellow";dir = 4},/area/engine/engineering)
-"cse" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/button/door{id = "Singularity";name = "Shutters Control";pixel_x = -25;pixel_y = 0;req_access_txt = "11"},/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity";name = "radiation shutters"},/obj/machinery/door/airlock/engineering{name = "Engine Room";req_access_txt = "10"},/turf/open/floor/plating{dir = 1;icon_state = "delivery"},/area/engine/engineering)
-"csf" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/table,/obj/item/weapon/book/manual/engineering_particle_accelerator{pixel_x = 3},/obj/item/weapon/book/manual/engineering_singularity_safety{pixel_x = -3},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (WEST)";icon_state = "yellow";dir = 8},/area/engine/engineering)
-"csg" = (/obj/structure/table,/obj/item/stack/sheet/rglass{amount = 50},/turf/open/floor/plasteel,/area/engine/engineering)
-"csh" = (/obj/machinery/atmospherics/components/unary/vent_pump{tag = "icon-vent_map (NORTH)";name = "regular air vent";icon_state = "vent_map";dir = 1;on = 1},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plasteel,/area/engine/engineering)
-"csi" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/structure/closet/toolcloset,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)";icon_state = "yellow";dir = 4},/area/engine/engineering)
-"csj" = (/obj/machinery/field/generator{anchored = 0;state = 2},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engineering)
-"csk" = (/obj/machinery/atmospherics/pipe/simple,/obj/structure/grille,/obj/machinery/meter,/turf/closed/wall/r_wall,/area/atmos)
-"csl" = (/obj/machinery/atmospherics/pipe/simple,/obj/structure/grille,/obj/machinery/meter{name = "Mixed Air Tank In"},/turf/closed/wall/r_wall,/area/atmos)
-"csm" = (/obj/machinery/atmospherics/pipe/simple,/obj/structure/grille,/obj/machinery/meter{name = "Mixed Air Tank Out"},/turf/closed/wall/r_wall,/area/atmos)
-"csn" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = ""},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4";tag = ""},/turf/open/space,/area/space)
-"cso" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/space,/area/space)
-"csp" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 8;name = "Solar Maintenance";req_access = null;req_access_txt = "10; 13"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard{name = "Auxiliary Solar Control"})
-"csq" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard{name = "Auxiliary Solar Control"})
-"csr" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 4;name = "Solar Maintenance";req_access = null;req_access_txt = "10; 13"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard{name = "Auxiliary Solar Control"})
-"css" = (/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";tag = ""},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard{name = "Auxiliary Solar Control"})
-"cst" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = ""},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard{name = "Auxiliary Solar Control"})
-"csu" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard{name = "Auxiliary Solar Control"})
-"csv" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/external{cyclelinkeddir = 8;name = "Solar Maintenance";req_access = null;req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard{name = "Auxiliary Solar Control"})
-"csw" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/external{cyclelinkeddir = 4;name = "Solar Maintenance";req_access = null;req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard{name = "Auxiliary Solar Control"})
-"csx" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/maintenance/auxsolarstarboard{name = "Auxiliary Solar Control"})
-"csy" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard{name = "Auxiliary Solar Array"})
-"csz" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/space,/area/solar/auxstarboard{name = "Auxiliary Solar Array"})
-"csA" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/space,/area/solar/auxstarboard{name = "Auxiliary Solar Array"})
-"csB" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8";tag = ""},/turf/open/space,/area/solar/auxstarboard{name = "Auxiliary Solar Array"})
-"csC" = (/obj/structure/lattice/catwalk,/obj/item/stack/cable_coil,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/space,/area/solar/auxstarboard{name = "Auxiliary Solar Array"})
-"csD" = (/obj/machinery/power/tracker,/obj/structure/cable{tag = "icon-0-8";icon_state = "0-8"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/auxstarboard{name = "Auxiliary Solar Array"})
-"csE" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/mining_construction)
-"csF" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/obj/item/stack/rods{amount = 50},/turf/open/floor/plasteel/yellow/side{dir = 4},/area/mining_construction)
-"csG" = (/obj/structure/closet/firecloset,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"csH" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/engine_smes)
-"csI" = (/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes)
-"csJ" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8";tag = ""},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes)
-"csK" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (WEST)";icon_state = "yellow";dir = 8},/area/engine/engineering)
-"csL" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/turf/open/floor/plasteel,/area/engine/engineering)
-"csM" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/table,/obj/item/weapon/electronics/firealarm,/obj/item/stack/cable_coil{pixel_x = 5},/obj/item/stack/cable_coil,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)";icon_state = "yellow";dir = 4},/area/engine/engineering)
-"csN" = (/turf/open/floor/plating{icon_state = "floorgrime"},/area/engine/engineering)
-"csO" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating{icon_state = "floorgrime"},/area/engine/engineering)
-"csP" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating{icon_state = "floorgrime"},/area/engine/engineering)
-"csQ" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/table,/obj/item/weapon/airlock_painter,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (WEST)";icon_state = "yellow";dir = 8},/area/engine/engineering)
-"csR" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/turf/open/floor/plasteel,/area/engine/engineering)
-"csS" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/structure/table,/obj/item/weapon/wrench,/obj/item/weapon/crowbar/red,/obj/item/weapon/storage/belt/utility,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)";icon_state = "yellow";dir = 4},/area/engine/engineering)
-"csT" = (/obj/machinery/power/emitter,/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engineering)
-"csU" = (/obj/structure/closet/crate,/obj/machinery/power/rad_collector,/obj/machinery/power/rad_collector,/obj/machinery/power/rad_collector,/obj/machinery/power/rad_collector,/obj/machinery/power/rad_collector,/obj/machinery/power/rad_collector,/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engineering)
-"csV" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1;frequency = 1441;id = "n2_in"},/turf/open/floor/engine/n2,/area/atmos)
-"csW" = (/obj/machinery/air_sensor{frequency = 1441;id_tag = "n2_sensor"},/turf/open/floor/engine/n2,/area/atmos)
-"csX" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 0;frequency = 1441;id_tag = "n2_out";initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine/n2,/area/atmos)
-"csY" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1;frequency = 1441;id = "o2_in"},/turf/open/floor/engine/o2,/area/atmos)
-"csZ" = (/obj/machinery/air_sensor{frequency = 1441;id_tag = "o2_sensor"},/turf/open/floor/engine/o2,/area/atmos)
-"cta" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 0;frequency = 1441;id_tag = "o2_out";initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine/o2,/area/atmos)
-"ctb" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1;frequency = 1441;id = "air_in"},/turf/open/floor/engine/air,/area/atmos)
-"ctc" = (/obj/machinery/air_sensor{frequency = 1441;id_tag = "air_sensor"},/turf/open/floor/engine/air,/area/atmos)
-"ctd" = (/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{dir = 1;external_pressure_bound = 0;frequency = 1441;icon_state = "vent_map";id_tag = "air_out";internal_pressure_bound = 2000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine/air,/area/atmos)
-"cte" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/space,/area/space)
-"ctf" = (/obj/machinery/power/apc{dir = 8;name = "Aft Port Solar APC";pixel_x = -23;pixel_y = 2},/obj/machinery/camera{c_tag = "Aft Port Solar Control";dir = 1},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/auxsolarstarboard{name = "Auxiliary Solar Control"})
-"ctg" = (/turf/open/floor/plating,/area/maintenance/auxsolarstarboard{name = "Auxiliary Solar Control"})
-"cth" = (/obj/machinery/power/solar_control{id = "portsolar";name = "Aft Port Solar Control";track = 0},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/auxsolarstarboard{name = "Auxiliary Solar Control"})
-"cti" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard{name = "Auxiliary Solar Array"})
-"ctj" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plating,/area/shuttle/auxillary_base)
-"ctk" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/shuttle/auxillary_base)
-"ctl" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plating,/area/shuttle/auxillary_base)
-"ctm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/yellow/side{dir = 10},/area/mining_construction)
-"ctn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/yellow/side,/area/mining_construction)
-"cto" = (/obj/structure/table,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/pipe_dispenser,/obj/machinery/button/door{id = "aux_base_shutters";name = "Public Shutters Control";pixel_x = 24;pixel_y = 0;req_access_txt = "0";req_one_access_txt = "32;47;48"},/turf/open/floor/plasteel/yellow/side{dir = 6},/area/mining_construction)
-"ctp" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/obj/machinery/light{dir = 8},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/yellow/side{dir = 10},/area/engine/engineering)
-"ctq" = (/obj/structure/table,/obj/item/clothing/gloves/color/yellow,/turf/open/floor/plasteel,/area/engine/engineering)
-"ctr" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/engine/engineering)
-"cts" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/button/door{id = "Singularity";name = "Shutters Control";pixel_x = 25;pixel_y = 0;req_access_txt = "11"},/obj/structure/closet/radiation,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)";icon_state = "yellow";dir = 4},/area/engine/engineering)
-"ctt" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4";tag = ""},/obj/machinery/button/door{id = "Singularity";name = "Shutters Control";pixel_x = -25;pixel_y = 0;req_access_txt = "11"},/turf/open/floor/plating{icon_state = "floorgrime"},/area/engine/engineering)
-"ctu" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8";tag = ""},/turf/open/floor/plating{icon_state = "floorgrime"},/area/engine/engineering)
-"ctv" = (/obj/structure/particle_accelerator/end_cap,/turf/open/floor/plating{icon_state = "floorgrime"},/area/engine/engineering)
-"ctw" = (/obj/machinery/light{dir = 4},/obj/machinery/button/door{id = "Singularity";name = "Shutters Control";pixel_x = 25;pixel_y = 0;req_access_txt = "11"},/turf/open/floor/plating{icon_state = "floorgrime"},/area/engine/engineering)
-"ctx" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/button/door{id = "Singularity";name = "Shutters Control";pixel_x = -25;pixel_y = 0;req_access_txt = "11"},/obj/structure/closet/radiation,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (WEST)";icon_state = "yellow";dir = 8},/area/engine/engineering)
-"cty" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/rods{amount = 50},/turf/open/floor/plasteel,/area/engine/engineering)
-"ctz" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/structure/table,/obj/item/clothing/gloves/color/yellow,/obj/item/weapon/storage/firstaid/fire,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)";icon_state = "yellow";dir = 4},/area/engine/engineering)
-"ctA" = (/turf/open/floor/engine/n2,/area/atmos)
-"ctB" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/open/floor/engine/n2,/area/atmos)
-"ctC" = (/turf/open/floor/engine/o2,/area/atmos)
-"ctD" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/engine/o2,/area/atmos)
-"ctE" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/engine/air,/area/atmos)
-"ctF" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/landmark/event_spawn,/turf/open/floor/engine/air,/area/atmos)
-"ctG" = (/turf/open/floor/engine/air,/area/atmos)
-"ctH" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard{name = "Auxiliary Solar Array"})
-"ctI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/shutters{id = "aux_base_shutters";name = "Auxillary Base Shutters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/mining_construction)
-"ctJ" = (/obj/machinery/door/airlock/engineering{cyclelinkeddir = 1;name = "Auxillary Base Construction";req_access_txt = "0";req_one_access_txt = "32;47;48"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/mining_construction)
-"ctK" = (/obj/structure/closet/firecloset,/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"ctL" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (WEST)";icon_state = "yellow";dir = 8},/area/engine/engineering)
-"ctM" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/engineering_guide,/turf/open/floor/plasteel,/area/engine/engineering)
-"ctN" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)";icon_state = "yellow";dir = 4},/area/engine/engineering)
-"ctO" = (/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity";name = "radiation shutters"},/obj/machinery/door/airlock/engineering{name = "Engine Room";req_access_txt = "10"},/turf/open/floor/plating{dir = 1;icon_state = "delivery"},/area/engine/engineering)
-"ctP" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating{icon_state = "floorgrime"},/area/engine/engineering)
-"ctQ" = (/obj/structure/cable/yellow,/obj/machinery/particle_accelerator/control_box,/turf/open/floor/plating{icon_state = "floorgrime"},/area/engine/engineering)
-"ctR" = (/obj/structure/particle_accelerator/fuel_chamber,/turf/open/floor/plating{icon_state = "floorgrime"},/area/engine/engineering)
-"ctS" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (WEST)";icon_state = "yellow";dir = 8},/area/engine/engineering)
-"ctT" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)";icon_state = "yellow";dir = 4},/area/engine/engineering)
-"ctU" = (/obj/machinery/light{dir = 4},/obj/structure/closet/emcloset,/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"ctV" = (/obj/machinery/light/small,/turf/open/floor/engine/n2,/area/atmos)
-"ctW" = (/obj/machinery/light/small,/turf/open/floor/engine/o2,/area/atmos)
-"ctX" = (/obj/machinery/light/small,/turf/open/floor/engine/air,/area/atmos)
-"ctY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"ctZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"cua" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"cub" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"cuc" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)";icon_state = "camera";dir = 5},/obj/structure/closet/firecloset,/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"cud" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plasteel/yellow/side{dir = 10},/area/engine/engineering)
-"cue" = (/turf/open/floor/plasteel/yellow/side,/area/engine/engineering)
-"cuf" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (SOUTHEAST)";icon_state = "yellow";dir = 6},/area/engine/engineering)
-"cug" = (/obj/structure/particle_accelerator/power_box,/turf/open/floor/plating{icon_state = "floorgrime"},/area/engine/engineering)
-"cuh" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (SOUTHWEST)";icon_state = "yellow";dir = 10},/area/engine/engineering)
-"cui" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (SOUTHEAST)";icon_state = "yellow";dir = 6},/area/engine/engineering)
-"cuj" = (/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"cuk" = (/obj/structure/lattice/catwalk,/obj/structure/cable,/turf/open/space,/area/space)
-"cul" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"cum" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTH)";icon_state = "camera";dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"cun" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"cuo" = (/obj/structure/cable{tag = "icon-1-8";icon_state = "1-8"},/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"cup" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating{dir = 1;icon_state = "delivery"},/area/engine/engineering)
-"cuq" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/turf/open/floor/plating{dir = 1;icon_state = "delivery"},/area/engine/engineering)
-"cur" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating{dir = 1;icon_state = "delivery"},/area/engine/engineering)
-"cus" = (/obj/structure/particle_accelerator/particle_emitter/left,/turf/open/floor/plating{icon_state = "floorgrime"},/area/engine/engineering)
-"cut" = (/obj/structure/particle_accelerator/particle_emitter/center,/turf/open/floor/plating{icon_state = "floorgrime"},/area/engine/engineering)
-"cuu" = (/obj/structure/particle_accelerator/particle_emitter/right,/turf/open/floor/plating{icon_state = "floorgrime"},/area/engine/engineering)
-"cuv" = (/obj/structure/cable/yellow{icon_state = "1-4";d1 = 1;d2 = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating{dir = 1;icon_state = "delivery"},/area/engine/engineering)
-"cuw" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/turf/open/floor/plating{dir = 1;icon_state = "delivery"},/area/engine/engineering)
-"cux" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating{dir = 1;icon_state = "delivery"},/area/engine/engineering)
-"cuy" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"cuz" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/camera/autoname,/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"cuA" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"cuB" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"cuC" = (/obj/machinery/door/airlock/external{cyclelinkedairlock = 4;name = "External Access";req_access = null;req_access_txt = "13"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/noslip,/area/engine/engineering)
-"cuD" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/noslip,/area/engine/engineering)
-"cuE" = (/obj/machinery/door/airlock/external{cyclelinkedairlock = 8;name = "External Access";req_access = null;req_access_txt = "13"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/noslip,/area/engine/engineering)
-"cuF" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/space,/area/space)
-"cuG" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/effect/landmark{name = "Syndicate Breach Area"},/turf/open/floor/plating,/area/hallway/secondary/entry)
-"cuH" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"cuI" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"cuJ" = (/obj/structure/cable/yellow,/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity";name = "radiation shutters"},/turf/open/floor/plating{dir = 1;icon_state = "delivery"},/area/engine/engineering)
-"cuK" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity";name = "radiation shutters"},/turf/open/floor/plating,/area/engine/engineering)
-"cuL" = (/obj/structure/cable/yellow{icon_state = "1-4";d1 = 1;d2 = 4},/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity";name = "radiation shutters"},/turf/open/floor/plating{dir = 1;icon_state = "delivery"},/area/engine/engineering)
-"cuM" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity";name = "radiation shutters"},/turf/open/floor/plating{dir = 1;icon_state = "delivery"},/area/engine/engineering)
-"cuN" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity";name = "radiation shutters"},/turf/open/floor/plating{dir = 1;icon_state = "delivery"},/area/engine/engineering)
-"cuO" = (/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity";name = "radiation shutters"},/turf/open/floor/plating{dir = 1;icon_state = "delivery"},/area/engine/engineering)
-"cuP" = (/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity";name = "radiation shutters"},/obj/machinery/camera/emp_proof{c_tag = "Containment - Particle Accelerator";dir = 1;network = list("Singularity")},/turf/open/floor/plating{dir = 1;icon_state = "delivery"},/area/engine/engineering)
-"cuQ" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"cuR" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"cuS" = (/obj/structure/cable{tag = "icon-2-8";icon_state = "2-8"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 32;pixel_y = 0},/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"cuT" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard{name = "Auxiliary Solar Array"})
-"cuU" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/yellow,/area/engine/engineering)
-"cuV" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engineering)
-"cuW" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/machinery/light/small{brightness = 3;dir = 8},/turf/open/floor/noslip,/area/engine/engineering)
-"cuX" = (/obj/machinery/door/airlock/external{cyclelinkedairlock = 0;name = "Engineering External Access";req_access = null;req_access_txt = "10;13"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/noslip,/area/engine/engineering)
-"cuY" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/noslip,/area/engine/engineering)
-"cuZ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/door/airlock/external{cyclelinkedairlock = 0;name = "Engineering External Access";req_access = null;req_access_txt = "10;13"},/turf/open/floor/noslip,/area/engine/engineering)
-"cva" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/space,/area/engine/engineering{name = "Singularity Chamber"})
-"cvb" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/engine/engineering{name = "Singularity Chamber"})
-"cvc" = (/obj/machinery/power/grounding_rod,/obj/effect/turf_decal/delivery,/turf/open/floor/plating/airless,/area/engine/engineering{name = "Singularity Chamber"})
-"cvd" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/space,/area/engine/engineering{name = "Singularity Chamber"})
-"cve" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-4";tag = "icon-2-8"},/turf/open/space,/area/engine/engineering{name = "Singularity Chamber"})
-"cvf" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8";tag = ""},/obj/machinery/light/small{dir = 4},/turf/open/floor/noslip,/area/engine/engineering)
-"cvg" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = ""},/turf/open/space,/area/space)
-"cvh" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4";tag = ""},/turf/open/space,/area/space)
-"cvi" = (/obj/structure/lattice/catwalk,/obj/structure/cable{tag = "icon-0-8";icon_state = "0-8"},/turf/open/space,/area/space)
-"cvj" = (/turf/closed/wall/r_wall,/area/engine/engineering{name = "Singularity Chamber"})
-"cvk" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/turf/open/space,/area/engine/engineering{name = "Singularity Chamber"})
-"cvl" = (/turf/closed/wall/r_wall,/area/maintenance/starboardsolar)
-"cvm" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 2;name = "Solar Maintenance";req_access = null;req_access_txt = "10; 13"},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboardsolar)
-"cvn" = (/obj/structure/lattice,/turf/open/space,/area/engine/engineering{name = "Singularity Chamber"})
-"cvo" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8";tag = ""},/turf/open/space,/area/engine/engineering{name = "Singularity Chamber"})
-"cvp" = (/turf/open/floor/plating/airless,/area/engine/engineering{name = "Singularity Chamber"})
-"cvq" = (/turf/open/space,/area/engine/engineering{name = "Singularity Chamber"})
-"cvr" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/space,/area/engine/engineering{name = "Singularity Chamber"})
-"cvs" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboardsolar)
-"cvt" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/camera/emp_proof{c_tag = "Containment - Fore Port";dir = 4;icon_state = "camera";network = list("Singularity");tag = "icon-camera (EAST)"},/turf/open/floor/plating/airless,/area/engine/engineering{name = "Singularity Chamber"})
-"cvu" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4";tag = ""},/turf/open/floor/plating/airless,/area/engine/engineering{name = "Singularity Chamber"})
-"cvv" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating/airless,/area/engine/engineering{name = "Singularity Chamber"})
-"cvw" = (/obj/structure/cable/yellow{icon_state = "0-4";d2 = 4},/obj/structure/cable/yellow{tag = "icon-0-8";icon_state = "0-8"},/obj/machinery/power/tesla_coil,/obj/effect/turf_decal/bot,/turf/open/floor/plating/airless,/area/engine/engineering{name = "Singularity Chamber"})
-"cvx" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8";tag = ""},/obj/structure/cable/yellow{icon_state = "1-4";d1 = 1;d2 = 4},/turf/open/floor/plating/airless,/area/engine/engineering{name = "Singularity Chamber"})
-"cvy" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating/airless,/area/engine/engineering{name = "Singularity Chamber"})
-"cvz" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/obj/machinery/camera/emp_proof{c_tag = "Containment - Fore Starboard";dir = 8;icon_state = "camera";network = list("Singularity");tag = "icon-camera (WEST)"},/turf/open/floor/plating/airless,/area/engine/engineering{name = "Singularity Chamber"})
-"cvA" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 1;name = "Solar Maintenance";req_access = null;req_access_txt = "10; 13"},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboardsolar)
-"cvB" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = 0},/turf/closed/wall/r_wall,/area/maintenance/starboardsolar)
-"cvC" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plating/airless,/area/engine/engineering{name = "Singularity Chamber"})
-"cvD" = (/obj/machinery/power/emitter{anchored = 1;dir = 4;state = 2},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/effect/turf_decal/delivery,/turf/open/floor/plating/airless,/area/engine/engineering{name = "Singularity Chamber"})
-"cvE" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plating/airless,/area/engine/engineering{name = "Singularity Chamber"})
-"cvF" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/delivery,/turf/open/floor/plating/airless,/area/engine/engineering{name = "Singularity Chamber"})
-"cvG" = (/obj/machinery/field/generator{anchored = 1;state = 2},/obj/effect/turf_decal/bot,/turf/open/floor/plating/airless,/area/engine/engineering{name = "Singularity Chamber"})
-"cvH" = (/obj/machinery/power/emitter{anchored = 1;dir = 8;state = 2},/obj/effect/turf_decal/delivery,/obj/structure/cable{tag = "icon-0-4";icon_state = "0-4"},/turf/open/floor/plating/airless,/area/engine/engineering{name = "Singularity Chamber"})
-"cvI" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8";tag = ""},/turf/open/floor/plating/airless,/area/engine/engineering{name = "Singularity Chamber"})
-"cvJ" = (/obj/machinery/power/apc{dir = 8;name = "Aft Starboard Solar APC";pixel_x = -26;pixel_y = 3},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/maintenance/starboardsolar)
-"cvK" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/starboardsolar)
-"cvL" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/power/smes,/turf/open/floor/plating,/area/maintenance/starboardsolar)
-"cvM" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/turf/open/floor/plating/airless,/area/engine/engineering{name = "Singularity Chamber"})
-"cvN" = (/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/structure/cable/yellow,/obj/machinery/power/tesla_coil,/obj/effect/turf_decal/bot,/turf/open/floor/plating/airless,/area/engine/engineering{name = "Singularity Chamber"})
-"cvO" = (/obj/structure/chair/stool,/obj/machinery/camera{c_tag = "Aft Starboard Solar Control";dir = 4;network = list("SS13")},/turf/open/floor/plating,/area/maintenance/starboardsolar)
-"cvP" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/starboardsolar)
-"cvQ" = (/obj/machinery/power/terminal{icon_state = "term";dir = 1},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/starboardsolar)
-"cvR" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating/airless,/area/engine/engineering{name = "Singularity Chamber"})
-"cvS" = (/obj/machinery/power/solar_control{id = "starboardsolar";name = "Aft Starboard Solar Control";track = 0},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/maintenance/starboardsolar)
-"cvT" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/starboardsolar)
-"cvU" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0;pixel_y = -32},/obj/item/stack/cable_coil,/turf/open/floor/plating,/area/maintenance/starboardsolar)
-"cvV" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/starboardsolar)
-"cvW" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/door/airlock/external{cyclelinkeddir = 2;name = "Solar Maintenance";req_access = null;req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/starboardsolar)
-"cvX" = (/obj/machinery/the_singularitygen/tesla,/obj/effect/turf_decal/bot,/turf/open/floor/plating/airless,/area/engine/engineering{name = "Singularity Chamber"})
-"cvY" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/starboardsolar)
-"cvZ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/door/airlock/external{cyclelinkeddir = 1;name = "Solar Maintenance";req_access = null;req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/starboardsolar)
-"cwa" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard)
-"cwb" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plating/airless,/area/engine/engineering{name = "Singularity Chamber"})
-"cwc" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plating/airless,/area/engine/engineering{name = "Singularity Chamber"})
-"cwd" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8";tag = ""},/turf/open/floor/plating/airless,/area/engine/engineering{name = "Singularity Chamber"})
-"cwe" = (/obj/structure/lattice,/obj/structure/grille/broken,/turf/open/space,/area/space)
-"cwf" = (/obj/machinery/camera/emp_proof{c_tag = "Containment - Aft Port";dir = 4;icon_state = "camera";network = list("Singularity");tag = "icon-camera (NORTHEAST)"},/turf/open/floor/plating/airless,/area/engine/engineering{name = "Singularity Chamber"})
-"cwg" = (/obj/structure/cable/yellow{icon_state = "1-4";d1 = 1;d2 = 4},/turf/open/floor/plating/airless,/area/engine/engineering{name = "Singularity Chamber"})
-"cwh" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8";tag = ""},/turf/open/floor/plating/airless,/area/engine/engineering{name = "Singularity Chamber"})
-"cwi" = (/obj/machinery/camera/emp_proof{c_tag = "Containment - Aft Starboard";dir = 8;icon_state = "camera";network = list("Singularity");tag = "icon-camera (NORTHWEST)"},/turf/open/floor/plating/airless,/area/engine/engineering{name = "Singularity Chamber"})
-"cwj" = (/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard)
-"cwk" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/power/solar{id = "starboardsolar";name = "Starboard Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard)
-"cwl" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard)
-"cwm" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard)
-"cwn" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/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},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard)
-"cwo" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard)
-"cwp" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard)
-"cwq" = (/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";pixel_x = 0},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard)
-"cwr" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard)
-"cws" = (/obj/structure/cable,/obj/machinery/power/solar{id = "starboardsolar";name = "Starboard Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard)
-"cwt" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard)
-"cwu" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard)
-"cwv" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard)
-"cww" = (/obj/docking_port/stationary{dheight = 9;dir = 2;dwidth = 5;height = 24;id = "syndicate_s";name = "south of station";turf_type = /turf/open/space;width = 18},/turf/open/space,/area/space)
-"cwx" = (/obj/structure/cable,/obj/machinery/power/tracker,/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard)
-"cwy" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/maintenance/fore)
-"cwz" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/maintenance/fore)
-"cwA" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/obj/structure/closet/crate{icon_state = "crateopen";opened = 1},/obj/item/weapon/hatchet,/turf/open/floor/plating,/area/maintenance/fore)
-"cwB" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/obj/item/device/radio,/turf/open/floor/plating,/area/maintenance/fore)
-"cwC" = (/obj/item/weapon/storage/box/emptysandbags,/turf/open/floor/plating,/area/maintenance/fore)
-"cwD" = (/obj/machinery/iv_drip,/turf/open/floor/plating,/area/maintenance/fore)
-"cwE" = (/obj/structure/rack,/obj/item/weapon/storage/fancy/candle_box,/obj/item/weapon/lighter,/turf/open/floor/plating,/area/maintenance/fore)
-"cwF" = (/obj/structure/table_frame,/obj/item/weapon/shard{icon_state = "small"},/turf/open/floor/plating,/area/maintenance/fore)
-"cwG" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/open/floor/plating,/area/maintenance/fore)
-"cwH" = (/obj/item/weapon/surgical_drapes,/turf/open/floor/plating,/area/maintenance/fore)
-"cwI" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"cwJ" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"cwK" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"cwL" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"cwM" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"cwN" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"cwO" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"cwP" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"cwQ" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"cwR" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"cwS" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"cwT" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"cwU" = (/obj/effect/decal/cleanable/cobweb,/turf/open/floor/wood{baseturf = /turf/open/floor/plating/asteroid},/area/maintenance/fore)
-"cwV" = (/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/wood{baseturf = /turf/open/floor/plating/asteroid},/area/maintenance/fore)
-"cwW" = (/obj/structure/rack,/obj/item/weapon/storage/pill_bottle/dice,/turf/open/floor/plating,/area/maintenance/fore)
-"cwX" = (/obj/item/weapon/dildo/flared/huge,/obj/effect/decal/cleanable/femcum,/turf/open/floor/plating,/area/maintenance/fore)
-"cwY" = (/obj/structure/rack,/obj/item/weapon/storage/backpack/clown,/turf/open/floor/plating,/area/maintenance/fore)
-"cwZ" = (/obj/item/weapon/storage/bag/trash,/turf/open/floor/plating,/area/maintenance/fore)
-"cxa" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/green/side{dir = 1},/area/construction/hallway{name = "Biodome Hallway"})
-"cxb" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/plating,/area/maintenance/starboard)
-"cxc" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/item/weapon/storage/backpack/botany,/turf/open/floor/plating,/area/maintenance/starboard)
-"cxd" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/maintenance/fore)
-"cxe" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/table,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"cxf" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"cxg" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"cxh" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"cxi" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"cxj" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"cxk" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"cxl" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"cxm" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"cxn" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"cxo" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"cxp" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"cxq" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/ruin/unpowered{name = "Asteroid"})
-"cxr" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/maintenance/fore)
-"cxs" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"cxt" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"cxu" = (/obj/machinery/camera/autoname,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"cxv" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/mint,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"cxw" = (/obj/structure/table,/obj/item/weapon/storage/bag/tray,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"cxx" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/masks,/turf/open/floor/plating,/area/maintenance/port)
-"cxy" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/gloves,/turf/open/floor/plating,/area/maintenance/port)
-"cxz" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel/brown{baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;dir = 4},/area/quartermaster/miningdock)
-"cxA" = (/obj/structure/disposalpipe/segment,/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard)
-"cxB" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/wheat,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"cxC" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel/brown{baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;dir = 4},/area/quartermaster/miningdock)
-"cxD" = (/obj/structure/closet/wardrobe/white,/turf/open/floor/plating,/area/maintenance/port)
-"cxE" = (/obj/structure/closet/wardrobe/genetics_white,/turf/open/floor/plating,/area/maintenance/port)
-"cxF" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/rack,/obj/item/weapon/pickaxe,/turf/open/floor/plating,/area/maintenance/port)
-"cxG" = (/obj/machinery/light{dir = 1},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"cxH" = (/obj/machinery/light{dir = 1},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"cxI" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/port)
-"cxJ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"cxK" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"cxL" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"cxM" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"cxN" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"cxO" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/rack,/obj/item/weapon/storage/box/lights/mixed,/turf/open/floor/plating,/area/maintenance/starboard)
-"cxP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel/blue/side{tag = "icon-blue (WEST)";icon_state = "blue";dir = 8},/area/hallway/primary/port)
-"cxQ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;name = "regular air scrubber";on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"cxR" = (/obj/structure/table,/obj/item/stack/wrapping_paper,/turf/open/floor/plasteel,/area/quartermaster/office)
-"cxS" = (/obj/structure/table,/obj/item/stack/packageWrap,/turf/open/floor/plasteel,/area/quartermaster/office)
-"cxT" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/quartermaster/office)
-"cxU" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/quartermaster/office)
-"cxV" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/rack,/obj/item/weapon/storage/box/mousetraps,/turf/open/floor/plating,/area/maintenance/asmaint2)
-"cxW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/blue/side{tag = "icon-blue (WEST)";icon_state = "blue";dir = 8},/area/hallway/primary/port)
-"cxX" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/port)
-"cxY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/blue/side{tag = "icon-blue (EAST)";icon_state = "blue";dir = 4},/area/hallway/primary/port)
-"cxZ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (WEST)";icon_state = "whitepurple";dir = 8},/area/medical/research{name = "Research Division"})
-"cya" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (EAST)";icon_state = "whitepurple";dir = 4},/area/medical/research{name = "Research Division"})
-"cyb" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;name = "regular air scrubber";on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"cyc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/toxins/mixing)
-"cyd" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"cye" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/device/radio,/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"cyf" = (/obj/structure/table,/obj/item/device/taperecorder,/obj/item/device/tape,/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"cyg" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel/whitepurple/side,/area/toxins/mixing)
-"cyh" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/toxins/mixing)
-"cyi" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/folder/red,/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"cyj" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (WEST)";icon_state = "whitepurple";dir = 8},/area/medical/research{name = "Research Division"})
-"cyk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (EAST)";icon_state = "whitepurple";dir = 4},/area/medical/research{name = "Research Division"})
-"cyl" = (/obj/structure/table,/obj/item/weapon/storage/briefcase,/obj/item/weapon/pen/red,/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"cym" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (WEST)";icon_state = "whitepurple";dir = 8},/area/medical/research{name = "Research Division"})
-"cyn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;name = "regular air scrubber";on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (EAST)";icon_state = "whitepurple";dir = 4},/area/medical/research{name = "Research Division"})
-"cyo" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plating,/area/maintenance/asmaint2)
-"cyp" = (/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/storage/box/disks,/turf/open/floor/plating,/area/maintenance/asmaint2)
-"cyq" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (WEST)";icon_state = "whitepurple";dir = 8},/area/medical/research{name = "Research Division"})
-"cyr" = (/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/storage/box/lights,/turf/open/floor/plating,/area/maintenance/asmaint2)
-"cys" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (WEST)";icon_state = "whitepurple";dir = 8},/area/medical/research{name = "Research Division"})
-"cyt" = (/obj/structure/table,/obj/item/device/plant_analyzer,/obj/item/device/gps/science,/obj/item/weapon/storage/belt,/turf/open/floor/plating,/area/maintenance/asmaint2)
-"cyu" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/purple/side{tag = "icon-purple (NORTH)";icon_state = "purple";dir = 1},/area/hallway/secondary/exit)
-"cyv" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/purple/side{tag = "icon-purple (NORTH)";icon_state = "purple";dir = 1},/area/hallway/secondary/exit)
-"cyw" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/hallway/secondary/exit)
-"cyx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"cyy" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"cyz" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"cyA" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cyB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cyC" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cyD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/yellow/side,/area/hallway/primary/aft)
-"cyE" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cyF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cyG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"cyH" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"cyI" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/yellow/side{dir = 8},/area/engine/break_room{name = "Engineering Hallway"})
-"cyJ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/engine/break_room{name = "Engineering Hallway"})
-"cyK" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)";icon_state = "yellow";dir = 4},/area/engine/break_room{name = "Engineering Hallway"})
-"cyL" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/yellow/side{dir = 8},/area/engine/break_room{name = "Engineering Hallway"})
-"cyM" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/engine/break_room{name = "Engineering Hallway"})
-"cyN" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)";icon_state = "yellow";dir = 4},/area/engine/break_room{name = "Engineering Hallway"})
-"cyO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"cyP" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"cyQ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/virology{autoclose = 0;frequency = 1449;icon_state = "door_locked";id_tag = "virology_airlock_interior";locked = 1;name = "Virology Interior Airlock";req_access_txt = "39"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cyR" = (/obj/effect/decal/remains/human,/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plating/asteroid/airless,/area/security/processing{name = "Prisoner Processing"})
-"cyS" = (/obj/item/clothing/mask/facehugger/dead,/obj/effect/decal/cleanable/xenoblood,/turf/open/floor/plating/asteroid/airless,/area/security/processing{name = "Prisoner Processing"})
-"cyT" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/doorButtons/access_button{idDoor = "virology_airlock_interior";idSelf = "virology_airlock_control";name = "Virology Access Button";pixel_x = 8;pixel_y = 28;req_access_txt = "39"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cyU" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/virology{autoclose = 0;frequency = 1449;icon_state = "door_locked";id_tag = "virology_airlock_exterior";locked = 1;name = "Virology Exterior Airlock";req_access_txt = "39"},/obj/machinery/doorButtons/access_button{idDoor = "virology_airlock_exterior";idSelf = "virology_airlock_control";name = "Virology Access Button";pixel_x = -24;pixel_y = 0;req_access_txt = "39"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cyV" = (/obj/machinery/light{dir = 1},/obj/structure/flora/grass/green,/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"cyW" = (/obj/machinery/power/apc{dir = 2;name = "Sleeping Room 4 APC";pixel_y = -24},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/grass,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"cyX" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"cyY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"cyZ" = (/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"cza" = (/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czb" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czc" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czd" = (/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"cze" = (/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czf" = (/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czg" = (/obj/structure/bed,/obj/item/weapon/bedsheet/patriot,/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czh" = (/obj/structure/dresser,/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czi" = (/obj/structure/chair/stool,/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czj" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;name = "regular air scrubber";on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/table/wood,/obj/item/device/radio/intercom{name = "Station Intercom";pixel_x = 0;pixel_y = 24},/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czl" = (/obj/structure/flora/grass/green,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/grass,/area/construction/hallway{name = "Biodome Hallway"})
-"czm" = (/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czn" = (/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czo" = (/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czp" = (/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czq" = (/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czr" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{id_tag = "cabin4";name = "Cabin 4"},/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czs" = (/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czt" = (/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czu" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/structure/table/wood,/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czv" = (/obj/machinery/light,/obj/machinery/firealarm{dir = 1;pixel_x = 0;pixel_y = -26},/obj/structure/table/wood,/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czw" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;name = "regular air vent";on = 1},/obj/machinery/button/door{id = "cabin4";name = "Cabin Bolt Control 4";normaldoorcontrol = 1;pixel_x = 25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"czz" = (/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czA" = (/obj/machinery/door/window/northright,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czB" = (/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czC" = (/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czD" = (/obj/item/weapon/storage/secure/safe{pixel_x = 32},/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czE" = (/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czF" = (/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czG" = (/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czH" = (/obj/structure/toilet,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czI" = (/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czJ" = (/turf/open/floor/carpet,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czK" = (/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czL" = (/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czM" = (/obj/machinery/light/small,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czN" = (/obj/machinery/shower{tag = "icon-shower (NORTH)";icon_state = "shower";dir = 1},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czO" = (/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czP" = (/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czQ" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/fore)
-"czR" = (/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czS" = (/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czT" = (/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czU" = (/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czV" = (/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czW" = (/turf/closed/wall,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 4"})
-"czX" = (/obj/machinery/power/apc{dir = 2;name = "Sleeping Room 2 APC";pixel_y = -24},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/grass,/area/crew_quarters/sleep{name = "\improper Dormitory Suite 2"})
-"czY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"czZ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"cAa" = (/obj/machinery/camera/autoname{dir = 1;network = list("SS13")},/turf/open/floor/plating/asteroid/airless{baseturf = /turf/open/floor/plating/asteroid/airless},/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"cAb" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"cAc" = (/obj/structure/sign/xeno_warning_mining{pixel_x = -30},/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"cAd" = (/obj/machinery/door/airlock/maintenance_hatch{locked = 1},/obj/structure/holosign/barrier,/turf/open/floor/plating,/area/maintenance/fore)
-"cAe" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"cAf" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"cAg" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"cAh" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"cAi" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"cAj" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"cAk" = (/obj/structure/sign/vacuum{pixel_y = 32},/turf/open/floor/noslip,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"cAl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"cAm" = (/obj/machinery/camera/autoname{dir = 4;network = list("SS13")},/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"cAn" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"cAo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/closet,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"cAp" = (/obj/structure/rack,/obj/item/weapon/pickaxe,/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"cAq" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"cAr" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"cAs" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"cAt" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"cAu" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"cAv" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"cAw" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"cAx" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"cAy" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"cAz" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"cAA" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"cAB" = (/turf/open/floor/plating/airless/astplate{baseturf = /turf/open/floor/plating/asteroid/airless},/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"cAC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"cAD" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"cAE" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/closed/wall,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"cAF" = (/obj/structure/flora/grass/green,/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"cAG" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"cAH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/obj/structure/table,/obj/item/weapon/shovel,/turf/open/floor/plating,/area/maintenance/fpmaint{name = "Secure Workstations Maintenance"})
-"cAI" = (/turf/closed/wall,/area/space)
-"cAJ" = (/turf/open/floor/plating,/area/space)
-"cAK" = (/obj/structure/grille,/turf/open/floor/plating,/area/space)
-"cAL" = (/turf/open/floor/plating,/area/space)
-"cAM" = (/turf/open/floor/plating,/area/space)
-"cAN" = (/turf/open/floor/plating,/area/space)
-"cAO" = (/turf/open/floor/plating,/area/space)
-"cAP" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/space)
-"cAQ" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/space)
-"cAR" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/space)
-"cAS" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/space)
-"cAT" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/space)
-"cAU" = (/turf/closed/wall,/area/space)
-"cAV" = (/turf/open/floor/grass,/area/space)
-"cAW" = (/turf/open/floor/grass,/area/space)
-"cAX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"cAY" = (/turf/closed/wall,/area/space)
-"cAZ" = (/turf/open/floor/plating,/area/space)
-"cBa" = (/turf/closed/wall,/area/space)
-"cBb" = (/turf/open/floor/plating,/area/space)
-"cBc" = (/obj/effect/decal/cleanable/robot_debris,/turf/open/floor/plating,/area/space)
-"cBd" = (/turf/open/floor/plating,/area/space)
-"cBe" = (/turf/open/floor/plating,/area/space)
-"cBf" = (/turf/open/floor/plating,/area/space)
-"cBg" = (/turf/open/floor/plating,/area/space)
-"cBh" = (/turf/open/floor/plating,/area/space)
-"cBi" = (/turf/open/floor/plating,/area/space)
-"cBj" = (/turf/open/floor/plating,/area/space)
-"cBk" = (/turf/closed/wall,/area/space)
-"cBl" = (/turf/open/floor/grass,/area/space)
-"cBm" = (/turf/open/floor/grass,/area/space)
-"cBn" = (/turf/closed/wall,/area/space)
-"cBo" = (/turf/open/floor/plating,/area/space)
-"cBp" = (/turf/closed/wall,/area/space)
-"cBq" = (/obj/machinery/recharge_station,/turf/open/floor/plating,/area/space)
-"cBr" = (/obj/item/robot_suit,/turf/open/floor/plating,/area/space)
-"cBs" = (/obj/item/bodypart/chest/robot,/turf/open/floor/plating,/area/space)
-"cBt" = (/turf/open/floor/plating,/area/space)
-"cBu" = (/turf/open/floor/plating,/area/space)
-"cBv" = (/obj/structure/table,/obj/machinery/juicer,/turf/open/floor/plating,/area/space)
-"cBw" = (/obj/structure/rack,/obj/item/bodypart/head/robot,/obj/item/bodypart/l_arm/robot,/turf/open/floor/plating,/area/space)
-"cBx" = (/obj/structure/rack,/obj/item/bodypart/l_leg/robot,/obj/item/bodypart/r_arm/robot,/turf/open/floor/plating,/area/space)
-"cBy" = (/obj/structure/rack,/obj/item/bodypart/r_leg/robot,/turf/open/floor/plating,/area/space)
-"cBz" = (/turf/closed/wall,/area/space)
-"cBA" = (/turf/open/floor/grass,/area/space)
-"cBB" = (/turf/open/floor/grass,/area/space)
-"cBC" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"cBD" = (/obj/structure/sign/securearea{pixel_x = -32},/obj/structure/closet/emcloset,/turf/open/floor/plasteel{icon_state = "delivery"},/area/construction/hallway{name = "Secure Workstations Hallway"})
-"cBE" = (/obj/machinery/door/airlock/glass{name = "Secure Workstations Access"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/securearea{pixel_x = -32},/turf/open/floor/plasteel,/area/construction/hallway{name = "Secure Workstations Hallway"})
-"cBF" = (/obj/machinery/door/airlock/glass{name = "Secure Workstations Access"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"cBG" = (/obj/structure/table/wood,/obj/machinery/chem_dispenser/drinks/beer{name = "dusty old booze dispenser"},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/wood{baseturf = /turf/open/floor/plating/asteroid},/area/maintenance/fore)
-"cBH" = (/obj/machinery/smartfridge/drinks{icon_state = "boozeomat";name = "dusty old drink showcase"},/turf/open/floor/wood{baseturf = /turf/open/floor/plating/asteroid},/area/maintenance/fore)
-"cBI" = (/obj/structure/table/wood,/obj/structure/reagent_dispensers/beerkeg,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/fore)
-"cBJ" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/fore)
-"cBK" = (/turf/open/floor/wood{icon_state = "wood-broken4"},/area/maintenance/fore)
-"cBL" = (/obj/structure/bed,/turf/open/floor/carpet,/area/maintenance/fore)
-"cBM" = (/obj/structure/table,/obj/item/weapon/storage/fancy/candle_box,/turf/open/floor/plating,/area/maintenance/fore)
-"cBN" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/fore)
-"cBO" = (/obj/structure/table/wood,/turf/open/floor/wood{baseturf = /turf/open/floor/plating/asteroid},/area/maintenance/fore)
-"cBP" = (/turf/open/floor/wood{icon_state = "wood-broken5"},/area/maintenance/fore)
-"cBQ" = (/obj/structure/closet,/turf/open/floor/wood{icon_state = "wood-broken7"},/area/maintenance/fore)
-"cBR" = (/obj/structure/table,/obj/item/device/laser_pointer/blue,/turf/open/floor/plating,/area/maintenance/fore)
-"cBS" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/fore)
-"cBT" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plating,/area/maintenance/fore)
-"cBU" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 0},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"cBV" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"cBW" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 0},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"cBX" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 0},/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/item/weapon/twohanded/required/kirbyplants{tag = "icon-plant-17";icon_state = "plant-17"},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"cBY" = (/obj/structure/table/wood,/obj/machinery/chem_dispenser/drinks{name = "dusty old soda dispenser"},/turf/open/floor/wood{icon_state = "wood-broken7"},/area/maintenance/fore)
-"cBZ" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,/turf/open/floor/wood{baseturf = /turf/open/floor/plating/asteroid},/area/maintenance/fore)
-"cCa" = (/obj/structure/chair/stool,/turf/open/floor/wood{icon_state = "wood-broken3"},/area/maintenance/fore)
-"cCb" = (/obj/structure/rack,/obj/item/weapon/storage/box/cups,/turf/open/floor/wood{baseturf = /turf/open/floor/plating/asteroid},/area/maintenance/fore)
-"cCc" = (/obj/structure/rack,/obj/item/weapon/storage/box/drinkingglasses,/turf/open/floor/wood{baseturf = /turf/open/floor/plating/asteroid},/area/maintenance/fore)
-"cCd" = (/obj/item/chair/stool,/obj/machinery/light/small{dir = 4},/turf/open/floor/wood{baseturf = /turf/open/floor/plating/asteroid},/area/maintenance/fore)
-"cCe" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"cCf" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/fore)
-"cCg" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/beaker/large,/turf/open/floor/plating,/area/maintenance/fore)
-"cCh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/chair/wood/normal{tag = "icon-wooden_chair (EAST)";icon_state = "wooden_chair";dir = 4},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"cCi" = (/obj/structure/table/wood,/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"cCj" = (/obj/structure/table/wood,/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"cCk" = (/obj/structure/chair/wood/normal{tag = "icon-wooden_chair (WEST)";icon_state = "wooden_chair";dir = 8},/turf/open/floor/wood,/area/crew_quarters/cafeteria{name = "Cafe"})
-"cCl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/closed/wall,/area/crew_quarters/cafeteria{name = "Cafe"})
-"cCm" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plating,/area/crew_quarters/cafeteria{name = "Cafe"})
-"cCn" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/obj/structure/table/wood,/turf/open/floor/plating,/area/maintenance/fore)
-"cCo" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/crew_quarters/cafeteria{name = "Cafe"})
-"cCp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera/autoname{tag = "icon-camera (EAST)";icon_state = "camera";dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"cCq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";tag = ""},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"cCr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/construction/hallway{name = "Biodome Hallway"})
-"cCs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/green/side{dir = 8},/area/construction/hallway{name = "Biodome Hallway"})
-"cCt" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/green/side{dir = 4},/area/construction/hallway{name = "Biodome Hallway"})
-"cCu" = (/turf/open/floor/plasteel/green/side{dir = 10},/area/hallway/primary/fore)
-"cCv" = (/turf/open/floor/plasteel/green/side{dir = 10},/area/construction/hallway{name = "Biodome Hallway"})
-"cCw" = (/turf/open/floor/plasteel/green/side{dir = 6},/area/construction/hallway{name = "Biodome Hallway"})
-"cCx" = (/turf/open/floor/plasteel/green/side{dir = 10},/area/hallway/primary/fore)
-"cCy" = (/turf/open/floor/plasteel/green/side{dir = 6},/area/hallway/primary/fore)
-"cCz" = (/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHEAST)";icon_state = "camera";dir = 6},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"cCA" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/starboard)
-"cCB" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "L1"},/area/hallway/primary/fore)
-"cCC" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "L3"},/area/hallway/primary/fore)
-"cCD" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "L5"},/area/hallway/primary/fore)
-"cCE" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "L7"},/area/hallway/primary/fore)
-"cCF" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "L9"},/area/hallway/primary/fore)
-"cCG" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{desc = "";icon_state = "L13";name = "floor"},/area/hallway/primary/fore)
-"cCH" = (/turf/open/floor/plasteel{icon_state = "L10"},/area/hallway/primary/fore)
-"cCI" = (/turf/open/floor/plasteel{desc = "";icon_state = "L14"},/area/hallway/primary/fore)
-"cCJ" = (/turf/closed/wall/r_wall,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"cCK" = (/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{id = "civ armory inner";name = "Civilian Armory Inner Shutters";pixel_y = 28;req_access_txt = "0";req_one_access_txt = "19; 3"},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"cCL" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"cCM" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/medipens{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/box/medipens/utility,/obj/machinery/button/door{id = "civ armory inner";name = "Civilian Armory Inner Shutters";pixel_y = 28;req_access_txt = "0";req_one_access_txt = "19; 3"},/turf/open/floor/plasteel/darkred,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"cCN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)";icon_state = "darkred";dir = 1},/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"cCO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)";icon_state = "darkred";dir = 1},/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"cCP" = (/obj/structure/rack,/obj/item/weapon/storage/box/zipties,/turf/open/floor/plasteel/black,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"cCQ" = (/obj/structure/rack,/obj/item/clothing/suit/armor/bulletproof{pixel_x = -3;pixel_y = 3},/obj/item/clothing/suit/armor/bulletproof{pixel_y = 0},/obj/item/clothing/suit/armor/bulletproof{pixel_x = 3;pixel_y = -3},/obj/item/clothing/head/helmet/alt{layer = 3.00001;pixel_x = -3;pixel_y = 3},/obj/item/clothing/head/helmet/alt{layer = 3.00001},/obj/item/clothing/head/helmet/alt{layer = 3.00001;pixel_x = 3;pixel_y = -3},/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"cCR" = (/obj/structure/rack,/obj/item/weapon/storage/box/flashbangs,/turf/open/floor/plasteel/black,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"cCS" = (/obj/structure/rack,/obj/item/weapon/storage/box/flashes,/turf/open/floor/plasteel/black,/area/ai_monitored/security/armory{name = "Emergency Storage"})
-"cCT" = (/obj/machinery/computer/gulag_teleporter_computer,/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"cCU" = (/obj/machinery/gulag_teleporter,/turf/open/floor/plasteel/darkred,/area/security/transfer)
-"cCV" = (/obj/structure/chair{dir = 4},/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor)
-"cCW" = (/obj/structure/rack,/obj/item/weapon/gun/ballistic/shotgun/riot{pixel_x = -3;pixel_y = 3},/obj/item/weapon/gun/ballistic/shotgun/riot,/obj/item/weapon/gun/ballistic/shotgun/riot{pixel_x = 3;pixel_y = -3},/turf/open/floor/plasteel{icon_state = "vault";dir = 4},/area/ai_monitored/security/armory)
-"cCX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/mob/living/simple_animal/pet/fox/Renault,/turf/open/floor/wood,/area/crew_quarters/captain)
-"cCY" = (/obj/structure/rack,/obj/item/weapon/gun/energy/plasma/light{pixel_x = 4;pixel_y = -4},/obj/item/weapon/gun/energy/plasma/light{pixel_x = 2;pixel_y = -2},/obj/item/weapon/gun/energy/plasma/light,/turf/open/floor/plasteel{icon_state = "vault";dir = 4},/area/ai_monitored/security/armory)
-"cCZ" = (/obj/structure/rack,/obj/item/weapon/gun/energy/laser/rifle{pixel_x = 4;pixel_y = -4},/obj/item/weapon/gun/energy/laser/rifle{pixel_x = 2;pixel_y = -2},/obj/item/weapon/gun/energy/laser/rifle,/turf/open/floor/plasteel{icon_state = "vault";dir = 4},/area/ai_monitored/security/armory)
-"cDa" = (/obj/structure/rack,/obj/item/weapon/gun/ballistic/automatic/wt550{pixel_x = 3;pixel_y = -3},/obj/item/weapon/gun/ballistic/automatic/wt550{pixel_x = -3;pixel_y = 3},/turf/open/floor/plasteel{icon_state = "vault";dir = 4},/area/ai_monitored/security/armory)
-"cDb" = (/obj/machinery/light{dir = 4},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cDc" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cDd" = (/obj/structure/chair{dir = 8},/obj/machinery/light{dir = 4},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cDe" = (/obj/machinery/suit_storage_unit/syndicate,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cDf" = (/obj/machinery/light{dir = 4},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cDg" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cDh" = (/obj/machinery/light{dir = 4},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cDi" = (/obj/machinery/recharge_station,/obj/machinery/light{dir = 4},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cDj" = (/obj/structure/toilet,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet)
-"cDk" = (/obj/machinery/light/small{brightness = 3;dir = 8},/turf/open/floor/plating,/area/maintenance/fore)
-"cDl" = (/obj/structure/table,/obj/machinery/light/small{dir = 1},/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor)
-"cDm" = (/obj/structure/closet/crate,/obj/machinery/light/small,/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor)
-"cDn" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/brown{dir = 8},/area/quartermaster/miningdock)
-"cDo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/starboard)
-"cDp" = (/obj/machinery/light{dir = 1},/turf/open/floor/mineral/titanium/blue,/area/shuttle/supply)
-"cDq" = (/obj/machinery/light{dir = 4},/turf/open/floor/mineral/titanium/blue,/area/shuttle/supply)
-"cDr" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"cDs" = (/obj/machinery/light/small{brightness = 3;dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat{name = "AI Maintenance"})
-"cDt" = (/obj/machinery/light{dir = 1},/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor)
-"cDu" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival)
-"cDv" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival)
-"cDw" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/arrival)
-"cDx" = (/obj/machinery/light/small{brightness = 3;dir = 8},/turf/open/floor/mineral/titanium/yellow,/area/shuttle/escape)
-"cDy" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"cDz" = (/obj/machinery/light,/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival)
-"cDA" = (/obj/machinery/light,/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival)
-"cDB" = (/obj/structure/table,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"cDC" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"cDD" = (/obj/machinery/light/small,/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"cDE" = (/obj/machinery/light,/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"cDF" = (/obj/structure/chair{name = "tactical chair"},/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/escape)
-"cDG" = (/obj/structure/chair,/obj/machinery/light{dir = 1},/turf/open/floor/pod/dark,/area/shuttle/transport)
-"cDH" = (/obj/structure/chair,/obj/machinery/light{dir = 1},/turf/open/floor/pod/dark,/area/shuttle/transport)
-"cDI" = (/obj/machinery/light/small{dir = 4},/obj/machinery/flasher{id = "shuttle_flasher";pixel_x = 24;pixel_y = 6},/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/escape)
-"cDJ" = (/obj/machinery/light/small{brightness = 3;dir = 8},/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"cDK" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/pod/light,/area/shuttle/transport)
-"cDL" = (/obj/structure/chair{dir = 1},/obj/machinery/light,/turf/open/floor/pod/dark,/area/shuttle/transport)
-"cDM" = (/obj/structure/chair{dir = 1},/obj/machinery/light,/turf/open/floor/pod/dark,/area/shuttle/transport)
-
-(1,1,1) = {"
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaacaacaacaacaacaacaacaacaacaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaacaadaaeaafaagaadaaeaahaacaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaacaaiaajaakaagaaiaajaakaacaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaacaapaajaaqaagaaraajaasaacaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalaamaanaanaanaanaanaamaaoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaazaaAaaBaagaazaaCaaBaacaacaacaacaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaataauaavaawaaxaayaayaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaFaaGaaHaaIaaJaaKaaLaaMaaNaajaaOaaPaaQaaRaacaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaDaauaauaaEaauaaucDbaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVaaVaaVaacaaWaaXaajaaYaajaajaaZabaabbabbabcabdabeabfaacaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaSaauaauaauaaTaauaaUaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVaaVaaVaacabjaajaajaaYaajaajaakabkaagaagaagaagablabmaacaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabgaamaamaamabhaamaamaamabiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVaaVaaVabqabrabsabtabuaajaajaakabkabvaajabwaagabxabyaacaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabnaamaboaauabpaamabiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVaaVaaVabAabtabsabBabCaajabDabEabFabGabHaaKabIabJabyaacaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAacAacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaauaauabzaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVaaVaaVabLabMaajabsabCabNaajaakabOaagabPaajaagabQabRaacaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAacAacAacAacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacAacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalaamaamaamaamaamcDcaaucDdabKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVaaVaaVabAabtabsabUabCaajabVabWabaabXabYabbabZacaacbaacaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccaaaaaaaaaaaaaaaacAacAacAacAacsacsacsacsacsacsacsacsacsacsacsadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacAacAacAacAacAacAacAacAacAacAacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadzaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamabSaauaauabTaamaauaauabzaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccaaaaaaaaaaaaaaVaaVaaVabAachabsabtaciabNaajaakabkabvaajacjaagackaclaacaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacAacAacAacAacAacAacAacAacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamabSaauacdaceaamaauaauabzaamaamacfacgaaoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVaaVaaVabLacpaajabsabCabNaajaakabkaagaagaagaagacqacraacaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAacAacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsacsacsacAacAacAacAacAacAacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamcDeaauaauacmaamacnacoacnaamaauaauaauaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVaaVaaVabAabUabsacvacwaajaajaaZabaabbabbacxaaPacyaczaacaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaacAacAacAacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsacsacsacsacAacAacAacAacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamabSaauaauaauactaauaauaauacuaauaaucDfaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVaaVaaVacDacEacFacGacHacIacJacKacLacMacNacOacPacQacRaacacSacSacSacSacSacSaaaaaaaaaacAacAacAacAacAacAacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsacsacsacsacsacAacAacAacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamabSaauaauaauacBaauaauaauacnaauaauaauaamacCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVaaVaaVaacaacaacaacaacaazacUaaBaagaazacVaaBaagacWacXaagacYacZadaadbadcacSacAacAacAacAacAacAacAacAacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAacAadxadxadxadxadxadxacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalaamaamaamaamaamaamacTaauaauaamaamaamaamaamaamaaoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVaaVaaVadnadnaaVaaVaacaapaajadoaagaapaajadpaagadqadraagadsadtaduaduadvacSadwacAacAacAacAacAacAacAacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaddadeadfadgadhaamcDgaaucDhaamadiadjadkadladmaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVaaVaaVaaaaaaaaaaaVaaVaaVadnadnaaVaaVaacaaiaajaakaagaaiaajaakaagadDadEadFadGadHaduaduadIacSadwadwacAacAacAacAacAacAacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamadAadeadeadeadeadBaauaauaauaamaauaauaauacdadCaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVaaVaaVaaaaaaaaaaaVaaVaaVadnadnaaVaaVaacadLadMadNaagadLadMadNaagadDadOaduadGadPaduaduadIacSadwadwadwadwadwacAacAacAacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAacAacAadxacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaddadeadeadeadeadJaauaauaauadKaauaauaauaauaauaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadTadTadTadUadTadTadTadVadnadnadnadnacSacSacSaacaacaagaagaagaagaagaagaagadWadXadYadZaeaaebadPadIacSadwadwadwadwadwadwacAacAacAacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAacAacAacAacAadxacAacAacAacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamadeadeadeadeadeadQaauaauaauadRaauaauaauaaucDiaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadTaekaelaekaemaekadTadTadUadTadUadTadTadaaenaeoaepaeqaeraesafXadPaetadPadDadOaduaeuaevaewaewaexacSadwadwadwadwadwadwadwacAacAacAacAacAacAadxadxadxadxadxadxadxacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAacAacAacAacAadxadxadxacAacAacAacAacAacAacAacAacAacAacAacAacAacAafdacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaecaedaeeaefaegaehaamaauaauaauaamaeiaejaauaauadSabKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadTaeCaeDaeEaeFaeCaeGaeHaeIaeJaeKaeLadTaeMaeNaeOaePaeQaeRaeSaeTaeUaeVaeWaeXaeYaduaeZafaafbafbafcacSadwadwadwadwadwadwadwadwadwacAacAacAacAacAacAadxadxadxacAacAacAacAadxadxadxacAacAacAacAacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxacAacAacAacAacAadxadxadxadxadxacAacAacAacAacAacAacAacAacAacAacAadxadxadxacAacAacAacAacAadxacAacAacAacAafdacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaeyadeaezaamaamaamacnaeAacnaamaeBaamaauaauaauaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadTaflafmafnafoaflaflafpafqafrafsaftadTafuafvafwacSafxafyafzafXadPafAadPadDafBafCadGafDafbafbafEacSadwadwadwadwadwadwadwadwadwadwacAacAacAacAacAacAacAacAacAadwadwacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAadxadxadxacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAadxadxadxacAacAacAadxadxadxacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamafeaffafgaamaaaaamafhafhafhaamaamaamafiafjafkaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVaaVadTafIafJafKafLafMafNafOafPafQafRafSafTafUafVafWacSafXafXafXafXafXafXafXafYafZaduadGagaafbafbafEacSadwadwadwadwadwadwadwadwadwadwadwadwacAacAacAacAacAacAadwadwadwaiGaiGacAacAacAaiGaiGaiGaiGacAacAacAacAacAacAacAacAacAacAacAacAacAaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGacAacAaiGaiGaiGaiGadxacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamafhafhafhaamaaaabgafFafGafHabiaaaaamafhafhafhaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVaaVadUagdageagfaggaghagiagjagkaglagmagnagoagpagqagracSagsagtaguagvagwagxagyaeXagzaduadGagAagBagBagCacSacSacSacSadwadwadwadwadwadwadwadwadwadwacAacAacAacAacAadwadwadwaiGaiGaiZcwycwyaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGadxacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxahAadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabgafFafGafHagbaaaaaaaaaaaaaaaaaaaaaagcafFafGafHabiaaaaaaaaaaaaaaaaaaaaaaaaaccaaaaaaaaaaaaaaaaaaaaaaaVaaVadTagDagEagFagGagHagIagJagKagLagMagNaflagOagPagQacSagRagSagTagUagVagUagWagXagYaduadGadPadPagZadPahaadPahbacSadwadwadwadwadwadwadwadwadwadwadwacAacAacAacAadwadwadwaiGaiGajvajwajvaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGadxacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadTahcahdaflaheahcahfahgahhahiahjahkaflahlahmahnacSahoahpahqahrahsahtahuaeXahvahwadGahxahyafXafXafXafXahzacSadwadwadwadwadwadwadwadwadwadwadwadwacAacAacAacAadwadwaiGaiGajvajLajvajvajvajvajMcwAajNajOajPajQajRajRajRajRajRajRajRajRajRajRajRajvajvajvajvajvcwBajRajRajRajRajSadwadwadwadwaaVaaVaaVaaVadwadwadwadwadwadwadwadwadwadwaiGaiGaiGadxacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadTahBahCaflahCahDahEaflaflahFaflaflaflaflcyQahHacSafXafXafXahIahJahIafXahKahLacSacSacSacSacScyRcySafXahOacSadwadwadwadwadwadwadwadwadwadwadwacAacAacAacAadwadwadwaiGaiGajvajwajvakkaklakmakmakmakmajvakmakmakmakmakmakmakmajvajvaknajvajvakmajvakoakoakmakmakmakmakmakmakmajvajvajvajvaaVaaVaaVaaVaaVaaVaaVadwadwadwadwadwadwadwadwaiGaiGaiGadxacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadTahPahQaflahRahSahEahTahUahVahWahXaflcyTahZaiaacSaibaibafXaicaidaieaifaigafZacSaihaiiaijaikaikaikaikailaikaikaikaikadwadwadwadwadwadwadwadwacAacAacAacAadwadwadwaiGaiGajvakFajvakmakmakmakmakmakmaknakmakmakmakmakmakmakmajvaxlakmakmajvakmajvakmakmakmakmakmakmakmakmakmaBJakGakHajvakIakJakJakJaaVaaVaaVadwadwadwadwadwadwadwadwaiGaiGaiGadxacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadTaimainaflainaimaioaipaiqairaisaitadUaiuaivaiwacSaduaduaixaduaduaduaiyaizagYacSaiAaiBaiCaikaiDaiEaiDaiDaiFaiEaiDaikadwadwadwadwadwadwadwadwadwacAacAacAadwadwadwaiGaiGajvaxlalfakmalgalgalgalgalhajvalgalgalgalgalgaliaGTajvalkallalmajvakmaknakmakmalnalmaloalgalgalgalgakmalpakmalpalqalralsaltaluaaVaaVadwadwadwadwadwadwadwadwaiGaiGaiGadxacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadTadTadUadTadUadTaiHaiIaiJaiKaiLaiMaflaiNaiOaiPacSaiQaduafXafXaiRaiSaiTaiUaiVacSaiWaiXaiYaikaiDaiDaiDaiDaiDaiDaiDaikadwadwadwadwadwadwadwadwadwacAacAadwadwadwadwaiGaiGajvakmakmakmalgalLalLalLalLalLalLalLalLalLalLalLalLalLalLalLalLalLalLalLalLalLalLalLalLalLalLalLajvakmakGalMajvakIakJakJakJaaVaaVaaVadwadwadwadwadwadwadwadwaiGaiGaiGadxacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajaajbajbajbajbajcajdajeajfajgajhajiadTadTcyUajkacSajladuajlafXajmajnajoajpajqacSajrajsajtaikaiDaiDajuaiDaiDaiDaiDaikadwadwadwadwadwadwadwadwacAacAacAacAadwadwadwaiGaiGajvakmalgalgalgalLamcamcamcamcamcamcamcamcamcamcamcamcamcalLamcamcamcamcamcamcamcamcamcamcamcamcajvaknajvajvajvamdamdamdamdamdajvajvadwadwadwadwadwadwadwadwaiGaiGaiGadxacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadnadnadnadnadnajxajyajyajyajyajyajyajyajzajAajzacSajladuajlafXajBajCajDajpajEacSajFajGajHaikaikajIaiDaiDajJajIaikaikadwadwadwadwadwadwadwadwacAacAacAadwadwadwadwaiGaiGamuakmakmakmakmalLamcamcamcamcamcamcamcamcamcamcamcamvamwalLamvamvansamcamcamcamcamwamcamcamcamcajvamxakmakmakmakmakmakmakmakmaknamyamyamyamyamyamzadwadwadwaiGaiGaiGadxacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadnadnaaVaaVaaVaaVajyajTajzajUajUajVajWajzajAajzacSacSacSacSacSajXajYajZakaakbakcajWakdajyaikakeakfakgakhakiakjakeaikadwadwadwadwadwadwadwacAacAacAacAadwadwadwadwaiGaiGajvaknajvajvaknalLamcamcamcamcamcamcamcamcamcamwamvamvamvcyVamTamUamVamvamvamvamvamvamWamvamcamcajvamXamYamZamZamZanaanaanaanaanaanaanaalgakmakmanbadwadwadwaiGaiGaiGadxadxacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajyajyajyajyajyajyajyajyajyajyajzajzajzajzajzajzajzajAajzakpajzajzajzajzakqakraksaktakuakvakvakwaikakxakyakzakAakBakCakDakEaikadwadwadwadwadwadwadwacAacAacAadwadwadwadwadwaiGaiGamuakmanrajvakmalLamcamcamcamcamcamcamcamcamcansansansansansaHsamvanvanvanvanwanwanvanvamvamcamcajvamXanxanyanzanAanaanBanCanDanEanFanaalgakmakmanGadwadwadwaiGaiGaiGadxadxacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakKakKakKakLajyakMakNajzakOakrakrakrakrakPakrakrakrakrakrakrakrakQakrakrakrakraksakrakRakSakTakUakVakWakXajzakYakZalaalbalbalcalbaldaleaikadwadwadwadwadwadwadwacAacAacAadwadwadwadwadwaiGaiGamuakmakmajvakmalLamcamcamcamcamcamcamcamvamvansamvansamvanTanUanVanWanXanYanZaoaaobanvamvamwamcajvamXanxatwakmakmanaanaanaaodanaanaanaaoeakmakmajvadwadwadwaiGaiGaiGadxadxacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalvalwalxalyalzalAaiBalAajzalBalCalDalEajzajzajzajzajzajzajzajzajzajAajzajzajzalFalBajzalGalHalIaikaikaikaikaikaikakZalJalKalKalKalKalKalKaikadwadwadwadwadwadwadwacAacAacAacAacAacAadwadwaiGaiGaosaotaouajvakmalLamcamcamcamcamcamcalLansansansansansamvaovaowaoxaoyaozaoAaozaozaozanvamvamcamcajvamXanxalmaoBakmanaaoCaoDanDaoEaoFanaaoGakmakmajvadwadwadwaiGaiGaiGadxadxacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakKakKakKakLajyalNajWajVajzajzajzalOalDalDalDalDalDalDalPalDalDalQalDalDalDalQalDalDalRalSalTaikalUalVakZakZakZakZalJalWalXalYalZamaambaikadwadwadwadwadwadwadwacAacAacAacAacAacAadwadwaiGaiGajvajvajvajvakmalLamcamcamcamcamvansamvaraamvamvamWcyWcyXcyYaoVaoWaoXaoYaozaoZapaaozanvamvamcamcajvamXapbapcakmapdanaanaanaanDanaanaanaalhakmakmajvadwadwadwaiGaiGaiGadxacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajyameajyajyajyajyamfajWajzajzajzajzajWamfajWamgamhamiamjamgajWamkamkamkalGamlammamnamoampampampamqampamramsamtakZakZakZakZaikadwadwadwadwadwadwadwacAacAacAacAacAadwadwadwaiGaiGamuakmakmakmakmalLamcamcamcamcamvamvcyZcyZczbczbcyZcyZansaovapsaptanvaozaozanvanvapuanvamvamcamcajvamXapvapwakmapwanaapxapyanDapzapAanaalgakmakmajvadwadwadwaiGaiGaiGadxacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVaaVaaVaaVadnamAamBamAamCamDakWamEamAamBamAamgamhamFamjamgamGamGamHamGalGamIamJamKamLamMamLamNamOakZamPakZamQakZamRakZakZaikadwadwadwadwadwadwadwacAacAacAacAacAadwadwadwaiGaiGamuakmajvajvajvalLamcamcamcamcamvanscyZczgczhcziczjczkczlarYapsapFanvaozapGanvapHapIanvamvamcamcajvamXakmakmakmakmanaanaanaaodanaanaanaalgakmakmajvadwadwadwaiGaiGaiGadxadxacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVancaaVaaVadnajyamfajyamAamAamAamAajyamfajyajyamAamAamAajyamGandaneaneanfanganhaikanianjankanjanlakZalJakZanmannanoanpanqaikadwadwadwadwadwadwacAacAacAacAacAafdadwadwadwaiGaiGapTakmaknakmaGTalLamcamcamwamvansanscyZczncznczncznczraoxasqapsamvanvapWaozanvapXapYanvapZamcamcajvamXakmaqaaqbalmanaaqcaqdanDaqeaqfanaalgakmakmajvadwadwadwaiGaiGaiGadxadxacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanHanHaaaaaVaaVaaVaaVaaVanHanIanHanHanHanHanHanHanJanHaaVadnadnaaVaaVanKanLanManNanfanOalTaikalKalKalKalKanPanQanRanSanPalKalKalKalKaikadwadwadwadwadwacAacAacAacAacAacAacAadwadwadwaiGaiGaqqakmajvakmaqralLamcamcamcamvansamvcyZcznczuczvczwczxaoWczyasTamvanvanvanvanvanvanvanvaqsalLalLajvaqtajvajvajvajvanaanaanaaquanaanaanacwCakmakmajvadwadwadwaiGaiGaiGaiGaiGacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaofanHanHaaVaaVaaVaaVanHanHaogaogaohaoiaogaogaogaoganHaaVaaVaaVadnadnanKanLanMaojanfanOalTaikaokaolaolaomaonakZaooaopaoqaoraiDaiDaiDaikadwadwadwadwacAacAacAacAacAacAaiGaiGaiGaiGaiGaiGaiGajvajvajvakmalmalLamcamcamcansansamvcyZczAcyZcyZczDcyZamvaovaqzauFauFauFauFauFauFauFauFaqBaqCaqDaqCaqEaqFanDanDanDaqGanDanDanDanDanDaqHakmakmakmajvadwadwadwaiGaiGaiGaiGaiGacAacAadxahAahAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoHaoIaoJanHaaVaaVanHanHanHaogaogaogaogaogaogaogaoKanHanHanHaaVaaVadnanKaoLanMaoMaoNaoOaoPaikaiDaoQaiDaoRaoSakZalJakZaoTaoUaiDaoQaiDaikadwadwadwadwacAacAacAacAacAacAaiGaiGaiGaqNaqOaqPajRcwDajvakmakmcwEalLamcamcamvansamvanscyZczGczHcyZczncyZamvaovapsansansamcamwamvansanaanaanaanaanaanaaqQanaanaanaanaanaanaanaaodanaanaanaajvajvaknajvadwadwadwaiGaiGaiGaiGadxacAacAacAahAahAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoHaoIapeaoJanHanHanHapfanHapgaogaogaogaogaogaogaogaphapiapjaaVaaVadnapkanLanManNanfaplalTaikaiDaiDaiDapmapnaopapoakZappapqaolaolapraikadwadwadwacAacAacAacAacAacAacAaiGaiGaiGamuakmakmakmaqZajvakmakmalgalLamcamcamvamvansamvcyZczMczNcyZarbcyZansaovapsansamvamcamcamvansanaarearfargarhariarjarharkarfarlanaarmarnanDaroarpanaarqakmakmarradwadwadwaiGaiGaiGaiGacAacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoHaoIapeapeanHanHapfaoganHapgaogaogaogaogaogapfanHanHanHanHanHaaVadnapkanLanManNanfapBalTaikalKalKalKalKapCapDalJapEapCalKalKalKalKaikacAadwadwacAacAacAacAacAacAacAaiGaiGaiGamucwFaryakmakmajvakmczQalgalLamcamcamvansamvamvcyZcyZcyZcyZcyZcyZamvaovapsansansamvamvamvarBanaarCarDarEarFarGarHarIarEarJarKanaanaanaanDanaanaanaakmakmakmarLadwadwadwaiGaiGaiGaiGadxacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapJanHaoJapeapKaogapLaoganHapfapMaogaogaogapfanHapfapNapNapfanHaaVadnapkanLanManNanfapOalTaikaokaolaolapPaonakZapQaopapRapSaiDaiDaiDaikacAacAacAacAacAacAacAacAacAacAaiGaiGaiGamuakmarRakmaqZajvakmalgalgalLamcamcamvamvamvamvamvamvamvamvansamvamvaovapsamvansansansansapFanaanaanaanaanaarZasaanaanaanaanaanaasbascanDasdaseanaakmajvajvasfadwadwadwaiGaiGaiGaiGadxacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanHanHanHanHaogaogaogapfanHanHanHanJanHanHapfaogaqgaqgaqhanHaaVadnapkaqiaqjaqkaqlaqmalTaikaiDaqnaiDaqoaoSakZalJakZaoTaqpaiDaqnaiDaikacAacAacAacAacAacAacAacAacAacAadwadwadwamucwGarRakmcwHajvakmakmakmalLamcamcansansapVamvaraamvansamWczXamUamUcyYczZansamvamvamvamvamvanaasrassarEastasuarHasvarEaswasxanaanaanaaodanaanaanaakmasyajvaszadwadwadwaiGaiGaiGaiGadxacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanHanHanHapfaoganHaogaogaogaogaogaogaogaogapfanHaogaogaogaogaogaqvaaVadnanKanLanManNanfanOalTaikaiDaiDaiDaqwaqxaopapoakZappaqyaolaolapraikacAacAacAacAacAacAacAacAanfanfanfanfanfasMakmarRakmasNajvakmakmakmalLamcamcansamvamvarzarzarAarAarzarzamvamvaovapsansanaasUasUasUasUanaareasVasWarhasXasYarharkasVasZanaataatbanDatcatdanaakmateajvatfadwadwadwaiGaiGaiGadxadxacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanHanHanHanHanHanHanHanHanHanHanHaaaanHanHapfaogaogaoganHaogaoganHanHanHaqIanHaogaoganHaogaogaogaogaogaqvaaVadnanKaqJanManNanfaqKalTaikalKalKalKalKapCaqLalJaqMapCalKalKalKalKaikatsacAacAacAacAacAcAaacAanfatNatWatNajvakmakmatuakmatvajvatwajvakmalLamcamcamvamvarSarzarTarUarVarWarXanVanVarYapsamvanaatzatAatBatCanaanaanaanaatDarZatEanaanaanaanaanaanaanaanDanaanaanaakmatFajvatGadwadwadwaiGaiGaiGadxadxacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanHapfaogaogaogaogaogaogaogapfanHanHanHapfaogaogaogaogaqvaogaoganHaqRaqSaoganHaogaogaqvaogaogaogaqTaqUaqvaaVadnapkanLanManNanfaqValTaikaokaolaolaqWaonakZapQaopaqXaqYaiDaiDaiDaikacAacAacAacAacAcAbanfanfanfcAcatWatNcAdakmakmakmatYakmajvajvajvakmalLamcamcamvamvansarzasoasoasoasoaspaoxaoxcAeaudanVaueaufaugaugaugaugauhauiaujaugaukaularharkarfarlanaaumaunanDauoaupanaakmajvajvatGadwadwadwaiGaiGaiGadxadxadxacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanJaogaogaogaogaogaogaogaogaoganJaoganJaogaogaogaogaogarsaogaoganHaogaogaoganHaogaogartaogaogaogaruarvaqvaaVadnapkanLanManNanfaqValTaikaiDaoQaiDarwaoSakZalJakZaoTarxaiDaoQaiDaikcAfasHcAfcAfcAfcAfatocAkatoatNajvajvajvakmakmakmakmakmatXakmauAakmalLamcamwamcamvansarzasoasOasPasQasRaoWaoWczyauEauFauGauHauHauIauJauKauLauMauNanDarZauOauPasVauQauRanaanaanaaodanaanaanaakmauSajvatGadwadwadwaiGaiGaiGadxadxadxacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxahAahAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanHapfaogaogaogaogaogaogarMapfanHanHanHapfaogaogaogaogaqvaogaoganHaogarNaoganHaogaogaqvaogaogaogaqTaqTaqvaaVadnapkanLanManNanfaqValTaikaiDaiDajuarOarPaopaleakZapparQaolaolapraikcAmanfanfanfanfanfanfanfanfanfajvaveajvavfavgavhaviakmajvakmauAakmalLamcamcamvamvansarzatxarzarzatyarzamvansaovapsamvavjanDavkavlavmavnavoavpavqavravsarHaueaueavtanaanaavuavvanDavwavxanaakmavyajvatGadwadwadwaiGaiGaiGacAacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxahAahAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanHanHanHanHanHanHanHanHanHanHanHaaaanHanHapfaogaogaoganHaogaoganHaogasgashanHaogaoganHaogaogaogaogaogaqvaaVadnapkanLanManNanfaqValTaikaikaikaikaikaikakZakZasiaikaikaikaikaikaikcAfanfcAoaslaslaslaslaslaslavMaknakmajvajvajvajvajvajvajvajvajvakmalLamcamcansamvansarzatZauaarzasoarzaubansavQavRavSavTavUavVavUavWavUavXavUavYavZavZawaawbawcawdaweawfawfawfawfawfawfawfawgawhajvatGadwadwadwaiGaiGaiGacAacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanHanHanHapfasAanHaogaoganHaqIanHanHanHaogaoganHaqTaogaogaogaogaqvaaVadnanKanLanManNanfaqValTaikasBasCasCasDasEakZakZasFaikcApcAfcAfcAfcAfcAfanfasIasJasKasKasKasKasLasIajvakmawkaGTaGTakmavealgakmaqZajvakmalLamcamcansamvansarzauBauCarzauDarzansansawpapsansanaawqawqawranaanDawsawtawuawvanDawwarharkasVarlawxawyawyawyawyawyawxawzawAajvatGadwadwadwaiGaiGaiGacAacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanHanHanHanHaogaogaogaogaogaogaogaogaoganHaqTaogaogaogaoganHaaVadnanKanLanMatganfangathaikatiatjatjatkatlatmatmatnaikawKcAfcAfcAbanfatoanfasIanOatpatpatqatqatrasIajvakmawkakmakmakmakmalhawQawRajvakmalLamcamcansamvamvarzarzarzarzarzarzansamvawYawZaxaaxaaxaaxaaxaaxaaxbaxaawxawxawxaxcaxdawxawxawxawxawxawyawyawyawyawyawxaxeaxfajvatGadwadwadwaiGaiGaiGacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaofanHaoJapeapKaogaogaogaogaogaogapLaogatHanHaqTaogatIaogapfanHaaVadnapkanLanMaojanfanOalTaikaikatJatJaikaikatJatKatJaikcAycAfcAfcAfanfatLanfcACatMatNatOatPatPatQatRajvaxlaxmaxnalmakmakmalgakmaxoajvakmalLamcamcansavNavOavOavOavOavOavOavOavOavPaxwcADaxxaxyaxzaxAaxxaxBaxCaxDaxEaxFaxGaxHaxIaxJaxKaxLaxMaxNawyawyawyawyawyawxaxOakmaknatGadwadwadwaiGaiGaiGacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoHaoIapeapeanHanHanHanHanJanHanHaqvaqvaqvanHanHapfauqapfanHanHaaVadnapkanLanManNanfanOalTatNaurausausautautautauuauvanfanfanfanfanfanfatoanfauwangauxanfanfanfauyauwajvakmapvapwaycakmakmalgalgalgajvaknalLamcamvansawmaptawnawnawoawnawnawnawnawnaovapsaxaaygayhayiaxbayjaykaylawxaymaynayoaypaxJaxJaxJayqaxNawyawyawyawyawyawxayrawxawxatGadwadwadwaiGaiGaiGacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoHaoIapeaoJanHanHanHanHaogaogaogauTaogaogaogaogapfanHanHanHaaaaaVadnapkanLanManNanfanOauUaslaslaslaslauVaslaslaslaslaslaslaslaslaoNauWaslauXcAEauYaslaslaslavcaslavdajvakmakmakmakmakmakmakmakmakmakmakmayvaoxaoxcAFawmansawnawSawTawUawVawWawXawnaovaqzayEayFayFayGaxaayjayHaylawxayIaxJayJayKayLaxJaxJayMayNawyawyawyawyawyayNayOayPawxatGadwadwadwaiGaiGaiGacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoHaoIaoJanHaaaaaaanHanHapfavzaogaogaogaogaogaogapNanHanHaaaaaaaaVadnapkanLanManNanfavAavBavCavCavCavCavDavCavCavCavCavEavCavCavCavFavDavCavEavGcAGavCavCavKavKavLcAHcAIcAJcAKcAJcAJcAJcAJcAPcAPcAPcAPcAPcAIcAVcAVamvawmansaxpaxqaxraxsaxtaxuaxvaxtcAXayWayXayXayXayYayXayXayXayXayZazaazbazcazdazeazfazgazhaxNawyawyawyawyawyaxNaziazjawxatGadwadwadwaiGaiGaiGacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapJanHanHaaaaaaaaaaaaanHanHanHapfaogawiaogaogapfanHanHaaaaaaaaaaaVadnanKanManManManfanfanfanfanfanfanfauwanfanfanfanfanganfanfanfalGauwauzangalGanfanfanfanfanfauyawjcAIcAJcAIcAJcBccAJcAJcAJcAJcAJcAJcAJcAIcAVcAVapVawmamvaxpaydayeayfawnawnawnawnaovazuaxacDjaxaazwaxaazvaxaazvawxazxaxJazyazzazAaxJaxJazBayNawyawyawyawyawyaxNazCazjawxatGadwadwadwaiGaiGaiGacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanHanHaaaaaaaaaaaaaaaaaaaaaanHanHanHanHanHanHanHaaaaaaaaaaaaaaaaaVadnanKanManManMawBanMawCawDawEawCawCawFawCawCawCawCawGawCawDawHamGawIanMawJamGaneanManMawMawNawOawPcAIcAJcAIcBqcBrcBscAJcAJcBvcBwcBxcBycAIcAVcAVamvawmapFawnayxayyayzayzayAayBayCazVcBCaxaazWaxaayjaxaazXaxaazYawxazZaxJaxJaxJaxJaxJaxJaAaaxNawyawyawyawyawyawxayraAbawxatGajvadwadwaiGaiGaiGacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxahAadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabanKaxganManMaxhanManManManManManManManManManManMaxianManManeamHanManMaxiamHaneanManManManMaxjaxkayUayVayUayUayUayUayUayUayUayUayUayUayUayUayUaubawmamvawnawnawnawnawnawnawnawnaovapsaxaayjayjayjayHayjayjayjawxaAraxJaAsaAtaAuaxJaxJaAvaxNawyawyawyawyawyawxaAwakmaBJakmajvadwadwaiGaiGaiGacAacAadxadxadxadxadxadxadxadxadxaAxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccaaaaaaaaaaaaaabanKanManManMaxhanMaxPaxPaxPaxPaxPaxPaxPaxPaxQaxPaxRaxPaxPaxTamGaxUanMaxVamGcBDanManMaxZaqjayaaybayUazkazkazkazlazmazkazkaznayUazoazpazqazrayUamvawmaywazsaywaywaywaztaywaywaywaovapsaxaaxaaxaaxaaxaaxaaxaaxaawxawxawxawxawxawxawxawxawxawxawyawyawyawyawyawxaANakmakmakmajvadwadwaiGaiGaiGacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabanKanKanKanKanKanKanKanKanKanKanKanKanKanKanKanKanKanKanKanKamGanKaAQanKamGanKanKanKanKanKcBEcBFayUazGazHazIazJazKazLazMazMazNazOazPazQazRazSansawmamvazTazTazUazUazUazUazTazTaovaBfaBgaBhaBgaBgaBgaBgaBiaqCaqDaqDaqDaqDaqDaqDaBjaBkaBlawxawxawxawxawxawxawxaBmajvajvaAbajvaiGaiGaiGaiGaiGacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxamdcBGcBHcBIcBJakmakmakmakmakmakmcBKakmaknaAyaAzaBpakmakmcBLajvcBMakmalmajvcBNakmakmaliajvaySayTayUazkaAdaAeaAfaAgaAhazkaAiayUaAjaAkaAlaAmayUansawmansazTaAnaAoaAoaAoaApaAqazTaBCaBDaNPaNPaNPaBEaBEaBFaBGajvaBHaqaaqaakmakmakmaBIaoBakmakmaBJakmakmakmakmakmawzakmakmakmajvaiGaiGaiGaiGaiGacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxamdaAyaAycBOaAPaAyaAycBPakmaAyaAyaAyaAyajvaAycBOajvcBQakmaBNajvcBRakmcBSajvcBTakmakmcwWajvaBPayTayUazkaABaACaACaADaAEaAFaAGayUaAHaAIaAJazRazSansawmansazUaApaAKaALaAoaAoaAMazUcBUcBVaAoaAoaAocBUcBXaovaCgaChaChaChaChaChaChaChaBIaCiaCiaCiaCiaCiaCiaCiaCiaCiaBmaAbajvajvajvaiGaiGaiGadxadxacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxaiGaiGamdcBYaAycBZcCaakmaAycCbcCccCdajvaCjaCkaClakmaCmajvajvajvajvajvcDkakmakmajvakmakmakmcwYajvaySayTayUaARaASazkazkazkaATaAUaAVaAWaAXaAYaAZaBaayUansawmansazUaApaBbaBcaAoaBdaAoaBeaAoaDeaEkaEkaAoaAocCeaovaBGaChaCKaCLaCMaCNaCOaCPaCQaCRaCSaCSaCSaCSaCSaCSaCSaCTaCUakmakmaCVadwaiGaiGaiGadxadxacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxaiGadwadwadwajvaxlaAzcBJakmajvajvamdamdajvajvaxlaCWaCXaCXakmakmakmajvaCocCgakmakmakmajvalgalgakmakmajvaySayTayUayUaBsayUaBtaBtayUaBuayUayUayUaBvayUayUayUamvawmarBazUaApaBwaBxaByaBzaBAaBBaBycChcCicCicCkaAoaDlasSaDmaDnaDoaDoaDpaDqaDraChaCQaDsacAacAacAacAacAacAacAaDtaCUcwZakmaDuadwaiGaiGaiGadxacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxaiGaiGaiGaiGaiGadwadwadwajvajvajvajvajvajvakmakmakmakmaknakmaCXaCWaCXaBlajvaknajvakmakmakmakmakmaknakmakmakmakmajvaDxayTayUaBQaBRaBSaAEaAEaBTaBUaBVaBWazRaBXazRaBYaBZaCaaCbansazUaApaAKaCcaAoaCdaCeazTazTaCfazUazUazUazTcClaovaDQaChaDRaDqaDSaDTaDUaChaDVaDsacAacAacAaDWacAacAacAaDtaCUaDXakmajvadwaiGaiGaiGadxacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGadwadwadwaDYczQakmakmakmajvakmalgaDvaDwajvaCWaCXaCWaCXaEbajvakmakmakmaEcaEcaEcaEcaEcakmakmakmakmajvaySayTayUazRaCpaCqaCraCraCraCsaCraCtaCraCuazRaCvayUansaCwaCaaCxaCyaCzaCAaCBaCCaCDaCxaCEaCFaCGaCHaCIaCJcCmaovaBGaChaEmaDqaDqaDqaEnaChatGaEoaEpaEpaEpaEpaEpaEpaEpaEqaCUajvaAbajvadwaiGaiGaiGadxacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGadwadwadwamuakmakmakmakmaknakmalgaDvaEraEsaEtaEucCnaEwaExaEsaEyaEzaEAaEBaECaEDaEEaEBaEFaEvaEGaEuaEHaEIayTayUaCYaCZaCYaAEaAEaAEaDaaAEaAEaAEaDbazRaDcayUansawmamvazUaDdaAoaDeaAoaDfaDgaDhaDiaDjaDiaDiaDkaDicCoaucaEWaEXaEYaEYaEZaDqaFaaFbaFcaFdaFdaFdaFdaFeaFdaFdaFdaFdaFfakmakmajvadwaiGaiGaiGadxacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxaiGaiGadxadxadxadxadxadxaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGadwadwadwamuakmaEcaEcaEcaEcaFgaEcaEcaEcaEcaEcaEcaEcaEcaEcaEcaEcaEcaEcaEcaFhaEcaFiaEcaEcaEcaEcaEcaEcaFjaFkayUazRaDyazPazPaDzazQaDaaDAaDBaDCaDDazRaDEayUansawmamvazTaDFaDGaDHaAoaDIaAoaDJaDKaDLaDMaDNaDOaDKaDPaFtaFuaChaFvaFwaFxaFyaFzaChajvajvajvajvajvajvajvajvajvajvaFAajvajvajvadwaiGaiGaiGadxacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxahAahAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxaiGadxaiGaiGaiGadxadxadxaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGadwadwadwamuakmaEcaFBaFCaFDaFEaFFaFGaFHaFIaFJaFKaFLaFMaEcaFNaFOaFPaFQaFRaFSaFPaFQaFRaFSaFPaFTaFUaEcaFVaFWayUaEdaEeaEdazRayUaEfaEgaEhayUaEiaAIazRaEjayUaubawmamvazUaDdaAoaEkaElaAoaAoaDJaDKaDKaDKaDKaDKaDKazUaGjaBGaChaChaChaChaChaChaChacsacsacsacsacsacsacsacsacsaGkaGlcxbadwadwadwaiGaiGaiGadxacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxahAahAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGadwadwadwamualiaEcaGnaGoaGpaGqaGraGraGraGraGraGraGqaGraGsaGtaGuaGvaGwaGxaGyaGzaGwaGxaGuaGAaGBaGCaEcaGDaHkayUazRaCpazRazRaEJantaEKaELaEJaEMaAIazRaENayUamvaCwaCaaCxaEOaApaAKaEPaALaEQazTaERaDKaESaETaEUaEVazUaGRaHuacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsaGkaGlcxcadwadwadwaiGaiGaiGadxacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxaiGaiGaiGadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwamuaGTaEcaGUaGVaGWaGXaGYaGZaFEaHaaFEaFEaGWaHbaEcaHcaHdaHeaHfaHgaHfaHgaHfaHgaHhaHiaHjaEcaEcaGDaHkayUaEJaFlaEJaEJayUaFmaEKaFnaFoaEJaFpaEJaEJayUamvawmamvaFqazTazUazTazTazUazTazTaFraBeazTazUaFsazTazTaQcaHuansacsacsaTSacsacsacsacsacsacsacsacsacsacsacsacsaGkaGlaGmadwadwadwaiGaiGaiGacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxaiGaiGaiGadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwamualgaEcaFBaGoaGWaFEaHvaHwaHxaHyaHxaHxaHzaHxaHAaHBaHCaHDaHEaHEaHEaHEaHEaHEaHEaHFaHEaHGaHHaHIaHJaFXaFYaFZaFYaFYaGaaGbaEKaGcaFYaFYaGdaFYcxaaFXaFYaGfaGgaGgaGhaFYaFYaFYaFYaFYaFYaFYaoxaFYaFYaGiaFYaFYaovaHuansansamvamvacsacsacsacsacsacsacsacsacsacsacsacsaGkaGlaGmadwadwadwaiGaiGaiGacAacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxaiGaiGaiGadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwamualgaEcaFBaGoaHTaHxaHUaFEaFEaHVaHWaFEaGWaFEaEcaHXaHdaHYaHfaHgaHfaHgaHfaHgaHZaHiaHfaEcaEcaGDaIaaGFaGFaGGaGFaGFaGFaGFaGHaGFaGIaGFaGJaGKaGLaGMaGKaGKaGKaGKaGNaGKaGOaGKaGKaGKaGKaGKaGPaGKaGKaGQaGKaGKcCpcCqamvamvaIsaItaItaItaItaItaItaItaItaItaItaItaItaItaGkaGlaGmadwadwadwaiGaiGaiGadxacAacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxaiGaiGaiGadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwamualgaIuaIuaIuaIvaIwaIxaIwaIuaIyaIuaIuaIzaEcaEcaHcaIAaIBaFQaICaFSaIDaFQaICaIEaIFaIGaIHaGsaIIaIJansansaHlansansaHmaHnaHoansansansaHmamvaHpaHqamvansansaHnaHramvaHsamvamvamvansamvaHtansamvansamvaTSaovaJpaGgaJqaJraJsaJtaJuaJvaJwaJvaJvaJxaJyaItaJzaJAaJAaGkaGlaGmadwadwadwaiGaiGaiGadxacAacAacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxaiGaiGaiGadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwamuakmaIuaJBaJCaJDaJCaJEaJCaJFaJGaJHaJIaJJaJKaJLaJMaJNaJOaJPaJQaJRaJSaJTaJQaJUaJVaJTaJWaJLaJXaJYaHKaHKaHLaHMaHMaHMaHMaHNaHKaHKaHKaHKaHKaHKaHqaHOamWaIlaHPaInamvaHsamvansamvamvansaHRaHSansamvansansaovaKCaKDaKEaKFaKGaKHaKIaKJaKJaKJaKJaKJaKKaItaKLaKMaKMaKNaGlaGmadwadwadwaiGaiGaiGadxacAacAacAacAacAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxahAadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxaiGaiGaiGadwadwadwadwadwadwadwadwadwadwadwadwaKOaKOaKOaKOaKOaKOaKOaKOaKOaKOaKOaKOaKOaKOadwadwacAadwadwadwamuakmaIuaKPaJCaKQaJCaKRaJCaKSaJCaKTaIuaKUaKVaKWaKWaKXaKYaKZaKWaKWaEcaEcaLaaLaaLbaLaaLcaLdaLeaLfaIbaIcaIdaIeaIeaIeaIeaIfaHKaIgaIhaIiaIjaHKaIkaIlaIlaIlaImaInaIoaIpaIoaIoaIoaIoaIoaIqaIoaIoaIoaIoaIoaIraLEaLFaLGaLHaLIaLJaLKaLLaLMaLKaLNaLOaLPaLQaLRaLSaLTaGkaGlaGmadwadwadwaiGaiGaiGadwadwacAacAacAadwadwadwadwadwadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxaiGaiGaiGadwadwadwadwadwadwadwadwadwadwadwadwaKOaLUaLVaLWaLVaLUaLVaLWaLVaLUaLVaLVaKOaLVacAacAacAcxdajvajvajvakmaIuaJBaJCaLYaJCaJEaJCaLZaJCaJCaMaaMbaMcaKWaMdaMeaMfaMgaMhaMiaMjaMjaCaaCaaMkaMlaMmaMnaMoaMpaIKaILaIMaINaIOaIPaIOaIQaIRaISaITaIUaILaIRaIVaIWaIXaIYaIZaJaaJbaJcaJdaJeaJfaJgaJhaJiaJjaJkaJlaJmaJnaMNcCraMOaFnaMPaMQaKJaMRaMSaMTaKJaMUaMVaJvaItaMWaMXaMYaGkaGlaGmadwadwadwaiGaiGaiGadwadwaMZacAacAadwadwadwadwadwadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxaiGaiGaiGadwadwadwadwadwadwadwadwadwadwadwadwaKOaLVaLVaLVaLVaLVaLVaLVaLVaLVaLVaLVaNaaLVcxocxocxocwyaNbakmaNbakmaNcaJCaJCaJBaJCaNdaJCaJBaJCaNeaIuaNfaNgaKWaNhaNiaMfaNjaNkaNlamvansansamvaHlaNmaNnansaNoaNpaJZaKaaKbaKcaKaaKdaKaaKeaKfaKgaKhaKiaKjaKfaKkaKlaKmaKnaKoaKpaKqaKraKsaKtaKtaKuaKvaKwaKxaKyaKzaKAaKBaucaNOaNPaNQaNRaNSaNTaNTaNTaNTaNTaNUaNVaNWaNXaNYaNZaItaGkaGlaGmadwadwadwaiGaiGaiGadwadwaOaaObaOcadwadwadwadwadwadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxaiGaiGaiGadwadwadwadwadwadwadwadwadwadwadwadwaKOaLWaLVaLUaLVaLWaLVaLUaLVaLWaLVaLVaKOaLVacAacAacAaOdajvajvajvakmaIuaOeaJCaJCaJCaJEaJCaJCaOfaOgaIuaOhaOhaKWaOiaOjaOkaOlaNkaNlamvansansamvaHlaOmaNnansaNoaNpaHKaLgaLhaLgaLgaLiaLjaLkaHKaLlaLmaLgaLnaHKaLoaLpaLqaLraIlaLsaLtaLuaLvaLwaLxaLyaLzaLAaLzaLzaLBaLBaLCavQaODaOEaOEaOFaOGaOGaOHaOIaOJaOJaOJaOGaOKaItaOLaOMaONaOOaGlaGmadwadwadwaiGaaVaiGadwadwaOPaOQaOPadwadwadwadwadwadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxahAadxadxadxadxadxadxadxadxaiGaiGaiGadwadwadwadwadwadwadwadwadwadwadwadwaKOaKOaKOaKOaKOaKOaKOaKOaKOaKOaKOaKOaKOaKOacAacAacAadwadwadwaORaOSaIuaKPaJCaOTaJCaKRaJCaOTaJCaOUaIuamvamvaKWaNkaNkaOVaOWaOXaKWamvansansaTSaOYaOZaPaamvaNoaNpaMqaMraMsaMtaMuaMvaMwaMxaMqaMqaMyaMzaMqaMqaMAaMBaMCaMDaMEaMFaMGcxeaPraPraMJaMKaIoaMLaIoaIoaIoaMMaIoaovaPwansansaIsaPxaPxaItaItaItaItaItaPyaItaItaItaItaItaGkaGlaGmadwadwaaVaaVaaVaaVaaVadwaOPaPzaOPadwadwadwadwadwadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxaiGaiGaiGadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwacAacAacAacAacAadwadwadwaORaOSaIuaJBaJCaJCaJCaPAaPBaPBaPBaPCaIuansansaKWaKWaNlaKWaNlaKWaKWamvamvansansaOYaOmaPaamvaNoaNpaHKaLgaNqaNraNraNsaNtaNuaNvaNwaNxaNyaNzaNAaNBaNCaNDaNEaNFaNGaMIaMHaMIcxscxtaNHaNIaNJaNKaNLcxuaMIaNMaovaPwamvansansamvamvansansacsacsaPPaPPaPQaPPacsacsacsaGkaGlaGmaGkaaVaaVaaVaaVaaVaaVaOPaOPaOQaOPaOPadwadwadwadwadwadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxaiGaiGaiGadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwacAacAacAacAacAacAacAacAacAacAadwadwadwadwaORaPSaIuaIuaIuaIuaIuaPTaIuaIuaIuaIuaPUamvansamSamvansansansamvamvamvamvamvamvaOYaNmaPaamvaNoaNpaHMaLgaOnaLgaLgaOoaLgaLgaOpaOqaOqaOqaOraOsaNDaNCaOtaNEaOuaIlaOvaMHaMIaOxaMIaOyaMIaOzaKtaOAaKtaKtaOBcCscCtamvamvansansansansacsacsacsaPPaPPaPPaPPacsacsacsaGkaGlaQdaQebBTbBTbBUbBTbBTaaVaQhaQiaQjaQkaOPadwadwadwadwadwadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsacsacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGacAacAacAacAacAacAacAacAacAacAacAadwadwadwaORaORaORaOScxxcxyaQlaQmaQnaQoaQpaQpaQqaQpaQraQsaywaQtaywaywaywaywaywaywaztaywaywaywaQuawmaQvaywaNoaNpaPbaLgaPcaLgaPdaPeaPfaLgaPgaPhaPiaPhaPjaPkaPlaPmaPnaPoaPpaPqaMIaMHaMIcxvaMIaPsaPtaMIaMIaPuaMIaPvaIoaFtaQJalLansamvamvamWaTSacsacsacsacsaQKaQKaQKacsacsacsaGkaGlaQdaQebBTaQLaQMcDlbBTaaVaQhaQNaQOaQPaOPadwadwadwadwadwadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacsacsacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGacAacAacAacAacAacAacAacAacAacAacAaiGadwadwadwadwadwaORaQQaORaQRaQSaQTaQUaQUaQVaQWaQXaQXaQXaQYaQZaQZaQZaQZaQZaQZaQZaQZaQZaQZaQZaRaaRaaRaaRbaRcaRdaRaaLeaLfaHMaLgaLgaLgaPDaPEaLgaPFaPEaPEaPEaPEaPEaNDaPGaPHaPGaPIaPJaIlaMIaMHaMIaPKaMIaMIaMIaPLcxwaPMaPNaPOaIoaovaPwalLaRsaRsaRsaRaaRaaRaaRaaRaacsacsacsacsacsacsacsaGkaGlaQdaQebBUbGBaRubGBbBUaRvaQhaRwaQOcxzaOPadwadwadwadwadwaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacAacAacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxaiGaiGaiGaiGaiGaiGaiGaiGacAacAacAacAacAacAacAacAacAacAaiGaiGaiGaiGaiGadwadwadwadwadwaORaORaORaRyaOSaRzaRAaRBaORaRCaQpaRDaREaRFaQZaRGaRHaRIaRJaRKaRLaRMaRNaROaRMaRPaRQaRRaRSaRTaRUaRVaoxaNpaHKaPVaPWaLjaLgaLgaLgaLgaLgaLgaLgaLgaLgaNDaNDaNCaNDaNEaPXaIlaPYaPZaPYaIoaMIaMIaQaaIoaQbaQbaQbaQbaIoaovaSdaSeaSfaSfaSgaRQaRQaRQaShaRaacsacsacsacsacsacsacsaGkcxAaQdaQebBTbGBbGBbGBaSiaSjaSkaSlaQOaRxaOPadwadwadwadwadwaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacsacsacAacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxaiGaiGaiGaiGaiGaiGaiGacAacAacAacAacAacAacAacAacAaiGaiGaiGaiGaiGaORaORaORaSmaSmaSmaSmaSmaOSaOSaRyaSnaSnaSnaSnaSnaSoaSnaSnaSnaSnaQZaSpaSqaSraSraSraSsaRMaRNaStaQZaSuaRQaRQaRSaRTaRUaRVaoxaNpaHMaLjaQwaLjaLgaQxaQxaLgaQyaQxaLgaLgaLgaNDaQzaNCaNDaQAaNFaQBaNDaQDaQEaIoaIoaNGaIoaIoaQFamvaQGaQHalLaovaoxaSCaRQaRQaSDaSEaSFaSGaSHaSGaSGaSGaSGaSGacsacsacsaGkaGlaQdaQebBUaRuaRuaRubBUaQhaQhaRwaQOaSIaOPadwadwadwadwadwaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacsacAacAacAacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAacAacAacAacAacAaiGaiGaiGaiGaiGaiGaiGaSJaSKaSLaORaOSaOSaORaORaORaORaORaRyaSnaSMaSNaSOaSPaSQaSRaSSaSTaSUaQZaSVaSWaSXaSYaSraSZaRMaRNaStaTaaSuaRQaRQaRSaRTaRUaRVaoxaNpaHMaReaPWaLjaRfaRgaRgaRhaRgaRgaRfaLgaRiaRjaMCaRkaMCaRlaRmaRnaNDaQDaNDaPqaRpamvaRqamSamvamvamvamvaRraThaNPaTiaTjaTkaTlaTmaTnaToaTpaTqaTraTsaTtaTuacsacsafdaGkaGlaQdaQebBTcDmaTwaTxbBTaaVaTyaTzaQOaRxaOPadwadwadwadwadwaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAacAacAacAacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAacAacAacAacAacAaiGaiGaiGaiGaiGaiGaiGaORaTAaTBaSLaORaOSaTCaORaTDaTEaTFaORaRyaSnaTGaTHaTIaQpaQpaQpaTJaTKaTLaQZaTMaSWaTNaTOaSraTPaRMaRNaStaQZaSuaRQaRQaRSaRTaTQaRaaFmaNpaHKaHKaHMaHMaRWaHMaHMaRWaHMaHMaHKaPbaHKaIlaRXaNCaNDaRYaRZaRnaNDaQDaNDaPqaSaamvaSbamvamvaScamvaSaamvaNoaTZalLaUaaRQaRUaUbaTnaUcaTpaTpaTpaTpaUdaUeafdafdafdaGkaGlaQdaQebBTbBTaUfbBTbBTaaVaQhaUgaQOcxzaOPadwadwadwadwadwaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAacAacAacAacAacAacAacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxahAadxacAacAacAacAacAacAacAacAaiGaiGaiGaiGaiGaiGadwadwaORaUhaUiaSLaORaOSaUjaORaUkaTEaUlaORaRyaSnaUmaUnaTIaQpaUoaUpaUqaQpaUraQZaUsaUtaUuaUvaUwaUxaRMaRNaUyaRMaSuaRQaUzaUAaRTaRUaRsaUBaNpalLamSapVaHmamvaHmaSwamSamvaHnaSxaoxaSyaPqaRZaSzaNDaNDaNDaNDaNDaQDaNDaPqaSAamvaSaamvamvaSaamvaSBamvaNoaUHaUIaUJaUKaULaUMaUNaUOaUPaUQaURaUSaUTaUeafdaUUafdaGkaGlaGmaGkaaVaaVaaVaaVaaVaaVaOPaUVaQOaRxaOPadwadwadwadwadwaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAacAacAacAacAacAacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxahAadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAacAacAacAacAacAacAacAaiGaiGaiGaiGaiGaiGaiGaiGadwadwaORaOSaOSaOSaORaOScxDaORaUWaUXaUYaORaRyaSnaSMaUZaTIaQpaUoaUqaQpaVaaVbaVcaVcaVdaVeaVcaVcaVfaVgaVgaRaaRaaVhaRQaRQaUJaViaULaVjaVkaNpamvamvamvamvansamvamvaTbamvamvaNoaoxaFnaPqaTcaTdaNDaNDaNDaNDaTeaTfaTeaPqaSaamvcxBamvamvaTgamvaSaamvaNoaVmaVnaUAaVoaRUaUbaTnaUcaVpaTpaVqaVraVsaUeafdafdafdaGkaGlaGmadwaaVaaVaaVaaVaaVaaVaOPaUVaQOaVtaOPadwadwadwadwadwacsacsacsacsaiGaiGaiGaiGaiGaiGaiGadxadxadxadxadxadxadxadxadxacAacAacAacAacAacAacAacAacAadxadxadxadxadxadxadxacAacAacAacAacAacAacAacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAacAacAacAacAacAacAadxaiGaiGaiGaiGaiGaiGaiGaiGadwadwaORaORaORaPSaORaOScxEaORaORaORaVuaORaRyaSnaSMaTHaTIaVvaVwaQpaVxaVyaVzaVAaVBaVCaVDaVEaVFaVGaVHaVIaVJaVKaVLaRQaRQaRSaVMaVNaVOaVPaNpamvamvaTbaSwamvaTRansamvaTSamcaNoaoxaFnaPqaRZaRnaTTaNDaNDaNDaTUaTVaRZaPqaTXamvamvamvaTYamvamvamvamcaNoaVWaVXaVYaSfaTlaUbaTnaUcaVZaTpaWaaWbaWcaUeafdafdafdaGkaGlaGmadwaaVaaVaaVaaVaaVadwaOPaWdaWeaWfaOPadwadwadwadwadwacsacsacsacsaiGaiGaiGaiGaiGaiGaiGaiGaiGacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAacAacAacAacAacAadxadxaiGaiGaiGaiGaiGaiGaiGaiGadwadwcxFaOSaOSaWhaWiaQSaQSaWjaWkaWlaWmaWlaWnaWoaWpaWqaWraWsaWtaWuaWvaWuaWwaWxaWyaWzaWAaWBaVFaWCaWDaWEaSuaRQaVoaRQaRQaRSaRTaRUaWFcCuaWGamcamcaTSamvamvamvamvamvamcamccCvaoxcCwaIlaUCaIlaUDaIlaIlaIlaIlaUEaIlaIlamcaHnamvaUFaUGamvaTSamcamccCucCyaRaaWJaWKaRUaUbaTnaUcaWLaWMaTpaWNaTpaUeaGkaGkaGkaGkaGlaGmadwadwaaVaaVadwadwaOPaOPaWOaOPaOPaOPadwadwadwadwadwacsacsacsacsaiGaiGaiGaiGacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAacAacAacAacAacAadxaiGaiGaiGaiGaiGaiGaiGaiGadwadwaORaOSaOSaWPaORaORaORaWQaORaORaORaORaORaWRaWRaWRaWRaWSaWTaWUaWVaWWaWXaWYaWZaXaaXbaXcaVFaWCaWDaVIaXdaXeaXfaXgaXhaXiaRTaRUcxLaRQaXjaRQaXkaRQaRQaRQaRQaRQaRQaRQcxGaRQaRQaRQaRQaXlaRQaRQaXkaXmaRQaRQaXnaRQcxGaRQaXoaRQaRQaRQaRQaRQaXkaRQaRQaRQcCzaRSaXpaXqaXraXsaXtaXuaXvaXwaSGaXxaUeaXyaXzcCAaQdaGlaGmadwadwadwadwadwadwaOPcDnaXAaXBaOPadwadwadwadwadwadwacsacsacsacsaiGacsacsacsacAacAacAacAacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAacAacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAacAacAacAadxaiGaiGaiGaiGaiGaiGaiGaiGadwadwaORcxIaOSaWPaORaXCaXDaXEaXFaXGaXHaXIaWRaXJaXKaXLaXMaXNaXOaXPaXQaXRaXSaWYaXTaXUaXVaXWaVFaWCaXXaXYaXYaXYaXYaXYaXYaXZaYaaYbcxJaYcaYdaYcaYcaYcaYcaYcaYcaYcaYcaYccxJaYcaYcaYccCBcCCcCDcCEcCFaYfcCGaYcaYdaYccxJaYcaYcaYcaYcaYcaYcaYcaYcaYcaYcaYccxJaYeaYgaYhaSEaSEaSGaSGaSGaSGaSGaYiaYjaYkaYkaYkaYkaYlaQdaYmaYmaYmaYmaYmaYmaYnaYoaYpaYqaYnaYmaYmaYraYraYraYsacsacsacsacsaiGacsacAacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAacAacAacAadxadxaiGaiGaiGaiGaiGaiGaiGadwadwaORaOSaOSaYtaORaYuaYvaYwaXIaXGaYxaXIaWRaYyaYzaYzaYzaXNaYAaYBaYCaYDaYEaWYaVcaYFaVeaVcaYGaWCaWDaYHaYIaYJaYKaYLaYHaXZaYMaRUcxLaRQaRQaRQaRQaRQaRQaRQaRQaRQaRQaRQcxLaRQaRQaRQaYOaYPaYNaYQcCHaYRcCIaRQaRQaRQcxLaRQaRQaRQaRQaRQaRQaRQaRQaRQaRQaRQcxLaRSaYSaYTaYUaYVaYVaYVaYWaYkcDoaYlaGkaYXaYXaYXaYXaYXaYXaYXaYXaYXaYXaYXaYXaYXaYXaYYaYXaYXaYXaYZaZaaZbaZcaZdacsacsacsacsacsacsaZeaZfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAacAacAacAadxadxaiGaiGaiGaiGaiGaiGaiGaiGadwadwaORaOSaOSaZiaORaZjaYvaZkaXIaZlaZmaXIaWRaWRaWRaWRaZnaZoaZpaZqaZraZsaZtaZuaZvaZwaZxaZyaZzaZAaWDaYHaZBaZCaZDaZEaZFaZGaZHaZIaZJaZKaZKaZLaZKaZKaZKaZKaZKaZKaZKaZKaZJaZMcCJaZNaZNaZPcCJaZOcCJaZSaZNaZNcCJaZMaZUaZVaZVaZVaZVaZVaZVaZVaZVaZWaZVaZVaZXaZYaZZbaababbabbabbabbabbabbabbabbacbadbaebafbagbahbahbahbaibajbakbalbambanbaobapbaqbarbasbatbauacAbawbaxaGkaGkaGkaGkaGkaGkbaybazaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAacAacAadxadxaiGaiGaiGaiGaiGaiGaiGaiGaiGadwadwaORaPSaORbaAaORbaBaYvaZkbaCaXGaZmbaDaWRbaEbaFbaGbaHbaIbaJbaKbaLbaMbaNbaObaPbaQbaRbaSbaSbaSbaTaXYbaUbaVbaWbaXbaYbaZbbabbbaZKbbcbbcbbcbcsbcsbbcbbcbbcbbcbbcbbcaZJbbfcCJbbgbbhbbibbjbbhcCKbblbbhbbncCJbbfaZUbbobbobbobbobbobbobbqbbqbbobbobboaZVbbrbbsbbtbbubbvbbwbbwbbxbbybbwbbzbbAbbBbbCbbDbbEbbFbbGbbGbbHbbIbbJbbKaYXbbLbbCbbMbbJbbNaYXbbObbPacAaDtaZdacsacsacsacsacsbbRbbRbbSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAacAacAacAadxaiGaiGaiGaiGaiGaiGaiGaiGaiGadwadwadwaWgaOSaOSaRyaORbbTbbUbbVbbWbbXaZmbbYbbZbcabcbbcabccaXNbcdbaKbceaZsbcfbcgaWCbchbcibcjbcjbcjbckbclbcmbcnbcobcobcpbcqbbabbbaZKbcsbcrbbcbcsbcsbcsbcsbcsbcsbbcbbcaZJbbfcCJbcubcvbcwbcxbcybcxbcAbcBbcCcCJbbfaZUbbobbqbbobbobcEbbqbbqbbqbbqbbqbboaZVbcFbcGbcHbcIbcIbcJbcKbcLbcMbcNbcObcPbcQbcRbcSbcTbcUbcTbcTbcSbcVbcWbcXbcYbcZbdabdbbdcbddaYXaYZbdeaEpaEqaZdacsacsacsacsacAacAacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAacAacAacAadxadxaiGaiGaiGaiGaiGaiGaiGaiGaiGaORaORaORaORaORaORaRyaORaXGbdhbdiaXGaXGbdjbdkaWRbdlbcabcabdmaXNbdnbdobdpbdqbdrbdsbdtbdubdvbdwbdxbdybdzaXYbdAbdBbdCbdDaXYbaZbbabbbaZKbcsbcsbbcbdEbcrbcsbcsbbcbbcbbcbbcaZJbbfcCJbdGbdHbdIbdJcCLcCMbdKbdLbdMcCJbbfaZUbbobbqbcEbbqbbqbbobbqbbobdNbbobboaZVbbrbdObdPbdQbdRbdRbdRbdSbdTbdUbdVbbAbdWbdXbdYbdYbdZbeabbDbbDbbDbbDbebbecbedbeebefbegbehaYXaQdbeibejbeiaYZacsacsacAacAacAacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxahAadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAacAacAacAadxadxaiGaiGaiGaiGaiGaiGaiGaiGaiGadwaORaTDaTEaTFaUWaORaRyaORaXCbekbelaXFaXGbemaXIaWRbenbcabeobepbeqberbesbetbesbeubevbewbexbeybezbeAbeBbeAaXYaXYaXYaXYaXYaXYbeCcxNbgBaZKbbcbeDbbcbbcbbcbeEbbcbeEbbcbeEbbcaZJbbfcCJbeFbeGcCNbeFbeFbeFcCObeHbeIcCJbbfaZUbbobeJbbobeJbbobeJbbqbbqbbobbobbqaZVbbrbdObeKbeLbeMbeNbeNbeObeNbePbeQbeRbeSbeTbeUbeVbeWbeXbeYbeZbeZbfbbfcaYXbfdbfdbfebffbfdbfdbfdbfdbfdbfdaYZacsacsacAaaaaaaaaaaaaaaaaccaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAacAacAacAadxadxadxaiGaiGaiGaiGaiGaiGaiGaiGaiGadwadwaORaUkaTEbfgbfhbfibfjaORaYuaYvbfkaXIaXGbflaXIaWRbfmbcabfnbfobfpbfqbfrbfsbfrbftbevaWCbexbfubeBbfvbfwbfxbfybfzbfAbfBbfCbeBbaZbbabbbaZKbbcbcsbcsbfDbeEbeEbfEbeEbeEbeEbfEaZJbbfcCJbfFbfGcCPbfHcCQcCRcCSbfIbfJcCJbbfaZUbfKbeJbeJbeJbfKbeJbeJbbqbbqbbobbqaZVbbrbdObdPbdQbdRbfLbdRbfMbfNbabbfObbAbfPbfQbfRbdQbfSbfSbfTbfTbfTbfTbfUbfSbfVbfWbfXbfYbfZbgabgbbfWbgcbfdaYZacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAacAacAadxadxaiGaiGaiGaiGaiGaiGaiGaiGaiGaiGadwadwadwaORaUWaUWaUXaUWaORbgdaORaZjaYvbgeaXIbgfaZmaXIbggbghbgibgjaWRbfpbgkbglbgmbgnbgobgpaWCbexbgqbeAbgrbgsbgtbgubgvbgvbgwbgxbgybgzbgAbgBaZKbbcbbcbbcbbcbbcbgCbgDbgEbgFbgGbgHbgCbbfbgIbgJbgKbgLbgLbgLbgLbgLbgMbgNbgIbbfbgCbgHbgObgFbgPbgDbgCbbobbobbqbbqbbqaZVbbrbdObdPbabbgQbdRbdRbgRbgSbabbgTbgUbgVbgWbgXbgYbfSbgZbhabhbbhcbhdbhebfSbhfbhgbhhbhibhjbhkbhkbhlbhmbfdaYZacsacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAacAadxadxadxaiGaiGaiGaiGaiGaiGaiGaiGaiGadwadwadwadwaORaORaORaORaORaORbhnaORbaBaYvaZkbaCaXGaZmaXIbhobhpbhpbhqbhpbhrbhsbhtbhubhvbgobhwbdtbdubhxbhybhzbhAbgvbgvbgvbhBbgubhCbeBbaZbbabbbaZKbbcbcsbcsbbcbeEbhDbhEbhFbhGbhHbhIbgCbbfbgIbhJbhKbhLbhMbhNbhObhPbhQbhRbgIbbfbgCbhSbhTbhGbhUbhVbhDbeJbbobbobbobboaZVbbrbdObdPbdQbhWbdRbdRbfLbdRbdRbdRbabbhXbhYbhZbiabibbicbidbiebifbigbihbibbiibijbikbilbimbimbimbimbinbfdcxOacsacAaaabiobiobiobiobiobiobioaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAadxadxadxadxaiGaiGaiGaiGaiGaiGaiGaiGadwadwadwadwadwadwadwadwadwadwadwbipaORbbTbbUbbVbbWbbXbiqbirbisbitbiubivbiwbixbiybizbiAbizbiBbiCbiDbiEbiFbeAbiGbiHbiIbiJbiKbiKbiKbiLbeBcxPcxQbbbaZKaZKaZKaZKaZKaZKbhDbiMbhDbiNbhDbiObhDaZMbgIbiPbiQbiRbiSbiTbiUbiVbiWbiXbgIaZMbhDbiYbhDbiNbhDbiZbjabjbbjbbjbbjbbjbbjcbbrbdObdPbdQbjdbjebdRbdRbdRbdRbdRbjfbjgbjhbjibjjbjkbjlbjmbjnbjobjobjpbfSbjqbjrbjsbjtbimbimbimbimbjubfdaGkbfdbjvbjvbiobjwbjwcDpbjwbjwbioaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAacAacAadxadxadxaiGaiGaiGaiGaiGaiGaiGadwadwadwadwadwadwadwadwadwadwadwadwbipaORaXGbdhbdiaXGaXGaZmaXIbjxbjxbjybjzbjAbjBbjCbjDbjEbjDbjDbjFbjGbexbjHbeAbeAbjIbeBbeBbjJbeBbjKbjLbezbaZbbabbbbjMbjNbjMbjObjObjObjPbjQbjObjObjRbjSbjObjObgIbjTbjUbjVbjVbjWbjVbjVbjXbjYbgIbjObjObjZbjRbjObjObkabjPbjObjObjObjMbjNbkbbkcbkdbdPbdQcxRcxSbkebkfbkgbdRbdRbabbkhbkibkjbkkbfTbklbkmbkmbknbknbkobfTbjqbimbkpbkqbimbkrbksbktbkubkvbkwbkwbkxbkvbkybjwbjwbjwbjwbjwbioaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAacAadxadxadxaiGaiGaiGaiGaiGaiGadwadwadwadwadwbkzbkzbkzbkzbkzadwadwadwbipaORaXCbkAbkBbkCbkDbkEbkFbkGbkHbkIbkJbkKbkLbkMbkNbkObkNbkPbkQbkRbkSbkTbkUbkVbkWbkXbkYbkYbkYbkZblablbblcbldbleblfblgblhbliblibljblgblkbliblibllblmblnbloblpblqblrblsbltblublvblwblxblyblzblAblBblCblDblEblFblGblHblIblFblFblJblHblKblLblMblNbabbdQbdQbabblObabbdQbdQbabbdQbabblPbabbfSbfSbfTbfTbfTbfTbfUbfSbjqbimblQbkqblRbimbimblSbjublTblUblVblUblWblXbjwbjwbjwbjwbjwbioaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAadxadxadxadxaiGaiGaiGaiGaiGaiGadwadwadwbkzbkzbkzblYblZblYbkzbkzbkzadwbipaORaYuaXIbmabmbbmcbmdbmbbmebmfbmgbmhbmibmjbmkbmlbmmbmlbmnbmobmpbmqbmrbmsbmtbmubmvbmwbmxbmxbmybmzbmAbmBbbabbbbmCbmCbmCbmCbgIbgIbgIbmDbgIbmEbgIbmFbgIbmGbgIbmHbmIbmJbmKbmLbmMbmNbmObmPbgIbmGbgIbgIbgIbmQbgIbmFbgIbgIbgIbmCbmCbmCbmCbbrbmRbbtcxTbmTbmUbmVbmWbmXbmYbmZbmSbnabmYbnbbncbndbnebnfbngbnhbnibnjbnkbjqbimblQbkqbnlbimbimbnmbnnbfdbfdbfdbfdbfdbiobnobjwbjwbjwcDqbioaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAadxadxadxadxaiGaiGaiGaiGaiGadwadwadwadwbkzbnpbnqblYbnrblYbnsbntbkzadwbipaORaZjaXIaZkaXIbnuaZmaXIbjxbnvbnwbnwbnxbjBbnybnzbnAbnBbnCbnDbnEbnFbnDbnGbnHbnDbnIbnJbmxbmxbmxbnKbmAbeCbbabbbaZKbbcbbcbbcbcsbnLbnMbnNbnObnPbnQbnRbnSbnTbgIbnUbnVbnWbnXbnYbnZboabobbocbgIbnTbodboebofbogbohboibojbodbbobbobbobboaZVbbrbdObokbolbombonbdRboobdRbdRbopboqborbdRbosbeNbotbeNbeNbeOboubdRbovbowbjqbimbkpbkqbimbkrbimboxboyblTblUbozblUblWboAbjwbjwbjwbjwbjwbioaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAadxadxadxadxaiGaiGaiGaiGadwadwadwadwadwbkzboBboCblYboDblYboEboBbkzadwbipaORbaBaXIaZkbaCaXGaZmaXIbjxboFbnwboGboHbjBboIboJboKboJboLboMboNboOboPboQboRbnHboSboTboUbmxbmxboVboWbaZbbabbbaZKbcsboXboYbeEboZbpabpbbpcbnPbnPbpdbnSbnTbpebpebpfbpebpebpgbpebpebpebpebpebnTbodbphbpibpjbpkbplbpmbodbeJbpnbpobboaZVbcFbppbpqbprbpsbptbptbptbptbpubpvbnkbpwbdRbpxbdRbdRbdRbdRbgRbfMbdRbovbabbpybimblQbkqbimbimbpzbktbpAbpBbpCbpCbpDbpBbpEbjwbjwbjwbjwbjwbioaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxadxacAacAacAadxadxadxaiGaiGaiGadwadwadwadwadwadwbkzbpFbpGbpHbpHbpHbpIbpJbkzadwbipaORbbTbpKbpLbbWbbXaZmaXIbjxbpMbpNbpObpPbjBbpQbpRbpSbpTbpUboMbpVbpWbpXbpYbpZbnHbqabqbbqcbqdbqebqfbqgbgzbqhbgBaZKbcsbbcbbcbbcboZbqibqjbqkbnPbqlbqmbnSbnTbqnbpebqobqpbqqbqrbqsbqpbqtbqubqvbqwbqxbqycCXbqzbqAbqBbqCbodbbobbqbbobboaZVbbrbdObdPcxUbqDbqEbqFbqGbqHbqIbqJbqKbqLbqMbqNbqMbqObqPbqQbqRbqSbqTbqUbabbqVbimblQbkqbqWbimbimbimbqXbfdbqYbfdbjvbjvbiobjwbjwbjwbjwbjwbioaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxadxacsacsacsacsacsacsacsacsacsadxadxadxadxadxadxadxacAacAacAadxadxaiGaiGadwadwadwadwadwadwadwbkzbqZbrabrabrbbrabrabrcbkzbrdbipaORaXGaXGaXGaXGaXGbreaXGbjxbjxbrfbjxbjxbjBbjFbjFbjFbjFbjFbnDbrgbrhbribrjbrkbnHbrlbmxbrmbnJbmxbrnbrobaZbbabbbaZLbcsbrpbrqbeEboZbrrbrsbqkbnPbrtbrubnSbnTbqnbpebrvbrwbrxbrybrxbrzbrAbpebqnbnTbodbrBbrCbrDbrEbrFbrGbrHbrIbrJbrKbrLbrMbrNbrObrPaZUbabbabbabbabbabbabbabbabbabbrQbrRbrSbrQbrQbrTbrUbrVbrUbrWbrUbrXbimblQbkqbimbimbimbimbrYbfdcxVadwacAbsabiobsbbjwbjwbjwbsbbioaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxadxacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacAacAacsacsadwadwadwadwadwadwadwadwadwbkzbscbsdbsebsfbsgbshbsibkzbsjbskaQSbslaQSaQSaQSaQSbsmaQSaQUaQUaQUaQUaQUaQUaQUbsnbsobspbsqbnDbnDbnDbnDbnDbnDbnDbsrbmxbssbstbrnbsuboWbaZbbabbbaZKbbcbcsbbcbbcbnLbsvbswbsxbnPbnSbnSbnSbmGbpebpebsybszbrxbsAbrxbsBbsCbpebpebmGbodbodbsDbsEbsDbsFbsDbsDbbobbobbqbboaZVbbrbsGbsHbsIbsJbsJbsJbsJbsJbsJbsJbsJbsKbrQbsLbsMbsNbsObsPbsQbsRbsSbsTbrTbjqbsUbsVbsWbsXbsXbsXbsYbsZbfdbrZadwacAbsabiobiobtabtabtabiobioaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadxadxadxadxacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacAacAacsacsadwadwadwbtbbkzbkzbkzbkzbkzbkzbtcbtcbtcbtdbtcbtcbtcbkzbkzbtebkzbkzbkzbkzbkzbkzbkzbkzbkzbkzbkzbkzbkzbkzbkzbtfaQUbtgbtgaQUaQUaQUaQUaQUbthbtibtjbtkbtlbtmbtnbsubtocxWcxXcxYaZJbbcboXbcsbeEboZbtpbtqbnPbnPbtrbtsbttbtubqnbpebrvbtvbtvbtwbtvbtvbtxbpebqnbtybtzbtAbsDbtBbtCbtDbtEbsDbeJbbobtFbboaZUbtGbtHbtIaZUbtJbtJbtJbtJbtJbtJbtJbtJbtKbrQbtLbtMbtNbtObtPbtQbtRbtSbtTbrTbtUbtVbtWbtVbtVbtXbtYbtZbuabfdbrZadwadwbsaaaabubbucbucbucbudaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacAacAacsacsadwadwadwbkzbuebufbugbtcbuhbuibujbukbukbulbukbumbukbunbukbuobupbukbuqbukbumbukburbusbukbujbukbutbuhbuubuvbuwbuxbuxbuybuxbuxbuxbuxbuxbuzbmAbmAbmAbmAbmAbmAbmAbmAbuAbbabuBaZKbcsbbcbcsbbcbuCbuCbuDbuEbuCbuCbuFbuGbuHbqnbpebuIbuJbrAbuKbuLbuMbuNbpebqnbuHbuHbnTbsDbuObuPbuQbuRbsDbbobbobbqbbqaZVbbrbdObuSbuTbuUbuVbuWbuXbuYbuZbvabvbbtKbrQbvcbvdbvebtObvfbvgbvhbvibvjbrUbvkbfdbfdbfdbfdbfdbfdbfdbfdbfdbrZadwadwacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacAacAacAacAacsadwadwadwbkzbvlbvmbvmbvnbuhbsfbuhbvobvpbvqbvrbvrbvsbvqbvrbvtbvrbvrbvubvrbvrbvrbvtbvrbvrbvrbvrbvqbvrbvvbvwbvxbuxbvybvybvzbvAbvBbvBbvCbvDbvEbvEbvEbvEbvEbvEbvEbvFbuAbbabuBbvGaZJaZKbfEaZJbuCbvHbvIbvJbvKbuCbnTbuHbvLbvMbvMbvNbvObvMbvPbvMbvObvQbvMbvMbvLbuHbnTbsDbvRbvRbvRbvSbsDbeJbbobbqbboaZVbvTbvUbvVbvWbvXbvYbvZbvYbwabwbbwcbtJbtKbrQbrQbrQbrQbrQbrUbrUbrUbrUbrUbrUbwdbwdbwdbwebwebwebwebwebwebwebwfadwadwacAacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsacsacsacsacsacsacsacsacsacsacsacsacsacsacsacAacAacAacAacAacAadwadwadwbkzbwgbwhbwibtcbuhbsfbuhbtcbwjbwkbwlbwmbwnbwobwpbwmbwmbwqbwrbwmbwsbwtbwubwvbwwbwxbwybwzbwAbwBbtebvxbuxbwCbwDbwEbwFbwGbwHbvCbwIbwJbwKbwLbwLbwLbwMbwMbwNbwObwPbuBbwQbwRbwSbwTbwUbuCbwVbwWbwXbwYbuCbnTcDrbvMbvMbvMbwZbxabxbbxcbxabxabxdbvMbvMbvMcDsbnTbsDbxebxfbxgbxhbsDbxibxibxibxibxibxjbdObxkbxlbuUbxmbxnbxobxpbwbbxqbtJbxrbxsbxsbxtbxsbxsbxubxsbxvbwebwebwebwdbwdbxwbxxbxxbxxbxxbxxbxxbxxbxxadwadwadwacAacAacAacAacAacAacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsacsacsacsacsacsacsacsacsacsacsacsacAacAacAacAacAacAacAacAadwadwbkzbkzbkzbkzbkzbkzbxybuhbtcbxzbxAbxBbtcbxzbxAbxBbtcbxCbvmbxDbtcbxEbuhbuhbxFbxGbuhbxHbxIbukbxJbtebvxbuxbxKbxLbwEbwFbwGbxMbuxbxNbxObxPbxQbxRbxRbxQbxRbxQbxSbxTbuBbwQbxUbxVbwSbxWbuCbxXbxYbxZbyabuCbnTbvMbvMbvMbxabybbycbycbydbyebyebyfbxabvMbvMbvMbnTbygbygbygbygbygbygbyhbyibyjbykbylbymbdObynbtJbtJbyobypbyqbxpbyrbysbtJbrZbytaZbaZbaZbaZbaZbaZbaZbaZbaZbaZcbyubyvbxwadwadwadwadwadwadwadwadwadwadwadwadwacAacAacAacAacAacAacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsacsacsacsacsacsacsacsacsacAacAacAacAacAacAacAacAacAacAacAadwadwadwacAacAbkzbsfbuhbtcbywbxAbyxbtcbywbxAbyxbtcbxCbyybyzbtcbxEbyAbyAbyBbyCbyDbyEbtcbyFbyGbtebvxbuxbvybyHbwEbwFbvBbvBbyIbyJbyKbyLbyMbyNbyObyPbyQbyRbySbyTbyUbwQbyVbyWbyXbyYbuCbyZbzabxZbzbbuCbnTbvMbvMbzcbxabzdbzebzfbzgbzhbzebyfbxabzcbvMbvMbuFbzibzjbzkbzlbzmbznbzobzpbzobzqbzrbzsbztbzubzvbzwbzxbzybzzbzAbzBbzCbtJbrZbzDaEpaEpaEpaEpaEpaEpaEpaEpaEpbzEbyubyvbxwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwacAacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsacsacsacsacsacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAbkzbzFbuhbtcbkzbzGbkzbkzbkzbzGbkzbkzbkzbkzbkzbkzbkzbkzbkzbkzbkzbkzbkzbkzbuhbzHbzIbzJbzKbzLbzMbzNbzObzPbzQbzRbzSbzTbzUbzVbzWbzXbzYbzZbAabAbbAcbAdbAebAfbAgbAhbAibAjbAkbAlbAmbAnbuCbnTbvMbvMbvMbxabzdbzebvMbvMbvMbzebyfbxabvMbvMbvMbnTbAobApbAqbArbAsbAtbAubAvbAwbAxbylbymbAybynbuUbAzbAAbABbACbADbAEbAFbtJbwdbAGbAGbAGbAGbAHbAGbAGbAGbAGbAGbAIbwebwebxwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsacsacAacAacAacAacAacAacAacAacAacAaaaaaaaaaaaaaaaaaaaaaacAbkzbAJbukbAKbALacAacAacAacAacAadwbAMbANbAObAObAObAObAObAObAObAObAObAPbAQbARbASbATbAUbuxbAVbAWbAXbAYbAZbBabBbbBcbBdbBebBfbBgbBhbBibBjbBkbBlbxTbyUbwQbBmbBnbBobBpbuCbBqbBrbBsbBtbuCbnTbvMbvMbBubyebBvbBwbvMbBxbvMbBybBzbyebBubvMbvMbnTbAobBAbBBbBCbBDbAtbBEbBFbBGbBHbxibymbAybuSbBIbBJbBKbBLbBMbBJbBJbBJbtJbBNbBObBObBPbBPbBPbBPbBPbBPbBPbrZbxxbxxbxxbBQadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBRbBRbBRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAacAacAacAacAacAacAacAacAacAaaaaaabBTbBUbBUbBUbBTaaaaaabkzbsfbuhbBVbkzacAacAacAacAacAadwbAMbBWbBXbBYbBYbBYbBYbBYbBYbBYbBYbBZbCabCbbCcbCdbCebuxbCfbCgbChbChbCgbCibCjbCkbClbCmbCnbCobyNbCpbCqbxQbCrbxTbyUbCsbCsbCtbCsbCsbuCbCubuCbCvbuCbuCbnTbvMbvMbvMbxabzdbzebCwbyebCxbzebyfbxabvMbvMbvMbnTbAobCybCzbCAbCBbCCbCDbCEbCFbCGbCHbCIbCJbCKbCLbCMbCNbCObCPbCQbCRbCSbCTbCQbCQbCUbCVbCWbCWbCXbCYbCZbBPbrZbxxbxxbxxbBQadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBRbBRbBRbBRbBRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBTbDabDbbDcbBTbDdbDebDebDfbuhbDgbkzacAacAacAacAacAadwbAMbBWbDhbDibDibDibDibDibDibDibDibDibCabCbbDjbCdbDkbDlbDmbDnbDnbDobDpbDqbDrbDsbClbDtbCnbDubDvbyNbDwbxQbCrbDxbDybDzbDAbDBbDCbDDbDEbDFbDGbDHbDIbDJbnTbvMbvMbzcbxabDKbycbDLbDMbyebyebyfbxabzcbvMbvMbnTbAobDNbDObDObDObDPbDQbDRbDSbDTbDUbDVbDWbDXbDYbDZbEabEbbEcbDRbEdbEebDRbDRbEfbEgbCVbEhbEibEjbEkbElbBPbwdbqYbqYbqYbxwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBRbBRbEmbEmbEmbBRbBRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBUbEnbEobEpbEqbErbEsbEtbsfbuhcCTbkzaaaacAacAacAacAadwbAMbBWbDhbDibEubEubEubEubEubEubEubEubCabEvbEwbCdbCabExbCjbCjbEybCjbCjbCjbCjbCjbEzbCjbCnbCnbCnbCnbCnbCnbEAbEBbECbEDbEEbEFbEGbEHbEIbEJbEKbELbEMbDJbnTbvMbvMbvMbxabENbxabxabEObxabxabEPbxabvMbvMbvMbnTbAobEQbERbESbETbEUbEVbEWbEXbEYbEZbFabFbbFcbFdbFebFfbFgbFhbFibFjbFibFibFibFkbFlbCVbFmbFnbFobFpbCZbBPbwdbqYbFqbqYbxwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBRbBRbEmbEmbEmbEmbEmbBRbBRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBTbFrbBTbFsbBTbDdbDebDebDfbuhcCUbkzaaaaaaacAacAacAadwbAMbBWbDhbDibEubFtbFubFvbFwbFxbFybEubFzbFAbFBbFCbFDbFEbFFbFGbFHbFHbFIbFJbFKbFLbFMbFNbFObFPbFQbFRbFSbFTbFUbFVbFWbFXbFYbFZbGabGbbGcbGdbGebGfbGgbGhbGibGjbvMbvMbvMbwZbGkbxabyebxabGkbxdbvMbvMbvMbGjbnTbGlbGlbGlbGlbGlbGlbGmbGlbGnbGobxibGpbAybGqbBObxibGrbGsbGtbGubGvbGwbGwbGucxZcyabCVbGybGzbGAbFpbCZbBPbwdbqYbqYbqYbxwbxxbxxbxxbxxadwadwadwadwadwadwadwadwadwadwadwadwadwadwacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBRbBRbEmbEmbEmbEmbEmbEmbEmbBRbBRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBTbGBcDtbGCbBTaaaaaabkzbGDbuhbGEbkzaaaaaaaaaacAacAadwbAMbBWbGFbGGbGHbGIbFubGJbGJbGJbGKbGHbGLbFAbGMbGNbFAbGObGPbGQbGQbGQbGRbGQbGQbGQbGQbGSbGTbGPbGUbGPbGPbGVbCrbxTbGWbGXbGYbGZbHabHbbHcbHcbHcbHdbHebDJbHfbHgbHhbvMbvMbvNbvMbvMbvMbvMbvMbvQbvMbvMbHgbHgbnTbGlbHibHjbHkbHlbHmbHnbGlbHobHpbylbGpbAybvWbBObHqbHrbBEbHsbGwbHtbHubHvbGwbGxbFlbCVbHwbHxbHybFpbCZbBPbwdbwdbwdbwdbwdbHzbHzbHAbxxadwadwadwadwadwadwadwadwadwadwadwadwadwadwacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBRbBRbEmbEmbEmbEmbEmbEmbEmbEmbEmbBRbBRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBUcCVbGBbHBbBTbDdbDebDebDfbuhbHCbkzaaaaaaaaaacAacAadwbAMbBWbDhbDibEucCWbFubHEbGJbGJbHFbHGbHHbHIbHJbHKbHIbHLbHMbHNbHNbHNbHObGQbGQbGQbHPbHQbHRbHRbHSbHTbHRbHUbEAcybbyUbDJbHVbHWbHXbHYbHZbIabIbbIcbIdbIebnTbHgbHgbIfbvMbvNbvMbvMbvMbvMbvMbvQbvMbIgbHgbHgbIhbGlbIibIjbIkbIlbImbInbGlbIobHobylbGpbAybvWbBObIpbIqbHobIrbIsbItbIubIvbIwbIxbFlbBPbBPbIybIzbIAbBPbBPbIBbIBbIBbIBbIBbwdbwdbrZbxxadwbICbICbICbICbICbICadwadwadwadwadwadwadwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBRbBRbEmbEmbEmbEmbEmbEmbEmbEmbEmbEmbEmbBRbBRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBTbIDbGBbGBbIEbErbEsbEtbsfbuhbIFbkzaaaaaaaaaacAacAbIGbAMbBWbDhbDibEubHDbFubIHbIIbIJbIKbILbIMbINbIObIPbIQbIRbISbITbIUbIVbIWbIXbIYbIXbIZbJabJbbJcbJdbJdbJebJfbJgbJhbJibDJbDJbJjbDJbDJbJkbJkbJlbJmbJkbJkbJnbJobJpbJpbJpbJqbJpbJpbJrbJsbJsbJtbuHbuHbuHbuHbnTbGlbJubJvbJwbJxbJybJzbGlbJAbJBbylbGpbAybvWbBObJCbJDbBEbBEbGwbJEbJFbJGbGwbGxbFlbIBbJHbJIbJJbJKbJLbJMbJNbJObJPbJObIBbIBcycbIBbIBbIBbIBbIBbIBbIBbIBbIBadwadwadwadwadwadwadwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBRbBRbEmbEmbEmbEmbEmbJSbJTbJUbEmbEmbEmbEmbEmbBRbBRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBTbJVbJVbJVbBTbDdbDebDebJWbuhbJXbkzaaaaaaaaaacAacAbIGbAMbBWbDhbDibEucCYbFubGJbGJbJYbJZbKabKbbKcbKdbKebKfbKgbKhbKibKjbKkbKlbKmbKnbKobKnbKpbKqbKrbKsbKtbKubKvbBlbxTbyUbKwbKxbKybKzbKAbKBbKCbKCbKDbKCbKBbmGbKEbKFbKFbKFbKGbKFbKFbKFbKFbKFbKEbKFbKFbKFbKFbmGbGlbGlbGlbGlbGlbGlbGlbGlbxibxibxibKHbAybKIbKJbKKbKLbKMbKMbGubKNbKObKPbGwbKQbKRbKSbKTbKUbKVbKWbKTbKTbKXbKYbKZbLabIBbLbbLbbLcbIBbLdbLebLfbLgbLhbLibIBadwadwadwadwadwadwadwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBRbBRbEmbEmbEmbEmbEmbEmbLjbLkbLlbEmbEmbEmbEmbEmbEmbBRbBRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBTbLmbLmbLmbBTaaaaaabkzbkzbkzbkzbkzaaaaaaaaaacAacAbIGbAMbBWbDhbDibEucCZbFubGJbLnbLobGJbLpbLqbFAbFAbLrbLsbLtbLubLvbLwbLxbLybLzbGQbGQbGQbLAbHUbHRbLBbLCbHRbLDbCrbxTbLEbLFbLGbLHbLIbLJbLKbLLbLMbLNbKCbLObLPbLQadnadnadnbLRadnadnadnadnadnbLSadnadnadnbLTbLUbLVbLVbLVbLVbLVbLVbLWbLVbLVbLXbLYbLZbMabMbbKJbMcbMdbMebMfbGubGubGubGubGubMgbMhbMibMjbMkbMlbMmbMlbMnbMobMpbMqbMrbMsbMtbMtbMtbMubMvbMvbMwbMxbMybMzbIBadwadwadwadwadwadwbtbaabaabaabaabaabaabaabaabaabbBRbBRbEmbEmbEmbEmbEmbEmbEmbLjbLkbLlbEmbEmbEmbEmbEmbEmbEmbBRbBRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAacAbIGbAMbBWbDhbDibEucDabFubGJbGJbGJbGJbMAbMBbMCbFAbFAbMDbMEbMFbMGbMHbLxbGPbGPbMIbMJbGPbGPbMKbMJbGPbGUbMLbMMbMNcydbJibMObMPbMQbMRbMSbKBbMTbMUbMVbMWbKBbLPbMXbMYbMYadnbMZbNabNbbNbbNbbNcbNdadnadnbMYbMYbNebNebNebNebNebNebNfbNgbNebNeaZUbNhbNibAybvWbNjbNkbNlbNmbNnbNobNpbNqbNrbNsbNtbNubNvbNwbLebLebNxbNybNzbNAbNBbMmbNCbMibNDbNEbNEbMibNFbNGbNGbMibNHbNIbIBbtbbtbbtbbtbbtbbtbbtbaabaabaabaabaabaabaabaabaabbBRbBRbJTbJTbJTbJTbJTbJTbJTbJTbJTbJTbJTbJTbJUbEmbEmbEmbEmbEmbBRbBRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAacAbIGbAMbBWbDhbDibEubNJbNKbNLbNMbNMbNNbEubNObFAbNPbNQbNRbLtbNSbMGbMHbNTbNUbNVbNWbNWbNUbNXbNWbNWbNUbNYbNWbNZbCrbxTbyUbKwbOabObbOcbOdbKBbKCbKCbKCbKCbKBbLPcyecyfbLTadnbMZbOfbOfbOgbOfbOfbNdadnadnbMYbNebNebNebNebNebNebNebOhbOibNebNeaZUbOjbNibAybvWbOkbOlbOmbOnbOnbOobOpbOqbOrbNjbGxbFlbNvbOsbOtbOucygbOvbOwbOxbOubOybOzbIBbIBcycbIBbIBbOAbOBbOCbODaaVaaVaaVaaVaaVaaVaaVaaVaaVaaVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVaaVaaVaaVaaVaaVaaVbLkbLkbOEbOFbOGbLkbLkbLlbEmbEmbEmbEmbEmbBRbBRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAacAbIGbAMbBWbDhbDibEubEubEubEubEubEubEubEubCabCabCabCabCabCabOHbOIbOJbJbbOKbJdbOLbJbbOKbJdbOLbJbbOKbJdbOLbOMbONbOObOPbKwbKwbOQbORbKwbKBbKBbKBbKBbKBbKBbOSbOTcyibLTadnbMZbOfbOUbOVbOWbOfbNdadnadnbOXbOYbOYbOYbOYbOYbOYbOYbOZbOZbOZbOZbOZbPabPbbAybvWbPcbPdbPebPfbPfbPgbPhbPibPjbPkcyjcyabIBbIBbIBbNIbIBbIBbIBbIBbPlbPmbPlbIBbPnbwdbPobIBbIBbIBbIBbIBbIBbIBbIBbtbbtbbtbbtbbtbbtbbtbaabaabaabaabaabaabaabaabaabbBRbBRbPpbPpbPpbPpbPpbPpbPpbPpbPpbPpbPpbPpbPqbEmbEmbEmbEmbEmbBRbBRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAacAbIGbAMbBWbDhbDibDibDibDibDibDibDibDibDibDibDibDibAMbPrbHUbPsbPtbPubKqbPvbKibPwbKqbPxbKibPybKqbPzbKibPAbPBbPCbPDbPEbPFbPFbPFbPFbPFbPGbPHbPIbPJbPKbMYbLPbOecylbLTadnbMZbOfbOVbOfbOVbOfbNdadnadnbOXbPLbPMbPNbPObPPbPQbPLbPRbPSbPTbPUbOZbOZbPVbAybvWbKJbPWbPebPXbPXbPYbOqbOqbPZbNjcymcynbNIbQabQbbQcbQdbQebQfbQebQgbQhbQibIBbPnbwdcyobxxadwadwadwadwadwadwadwadwadwadwadwadwadwbtbaabaabaabaabaabaabaabaabaabbBRbBRbEmbEmbEmbEmbEmbEmbEmbLjbLkbLlbEmbEmbEmbEmbEmbEmbEmbBRbBRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAacAbIGbAMbBWbQjbQkbQkbQkbQkbQkbQkbQkbQkbQkbQkbQkbQlbAMbAMbHUbHUbQmbHUbHUbHUbQmbHUbHUbHUbQmbHUbHUbHUbQmbHUbHUbQnbQobQpbQqbQrbQsbQtbQubQvbQvbQvbQvbQvbQwbQxbQybQzbMYadnbQAbQBbOWbQCbOUbQDbQEadnadnbOXbPLbQFbQGbQHbQIbQJbPLbQKbQLbQMbQNbQObOZbPVbAybvWbKJbQPbPebQQbQRbKKbQSbOqbQTbKKbGxbFlbNIbQabQbbQcbQUbQVbQWbQXbQYbQZbRabIBbwdbwdbrZbxxadwadwadwadwadwadwadwadwadwadwadwadwadwacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaabBRbBRbEmbEmbEmbEmbEmbEmbLjbLkbLlbEmbEmbEmbEmbEmbEmbBRbBRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAacAbIGbAMbRbbBWbBWbBWbBWbBWbBWbBWbBWbBWbBWbBWbBWbRcbRdbAMbRebRebRebRebRfbRebRebRebRfbRebRebRebRfbRebRebRebRebRgbRhbRibRjbRkbRlbRmbRnbRobRfbRfbRfbRfbRpbLTbLQbLTbMYadnbMZbRqbOfbOfbOfbRrbNdadnadnbOXbRsbRtbRubQHbRvbRsbRsbQKbRwbRxbRybRzbOZbPVbAybRAbKJbRBbRCbRDbREbKKbRFbRGbRHbKKbGxbFlbNIbQabQbbQcbRIbQebRJbQebRKbRLbQibIBbRMbwdcypbxxadwadwadwadwadwadwadwadwadwadwadwadwadwacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBRbBRbEmbEmbEmbEmbEmbRNbPpbPqbEmbEmbEmbEmbEmbBRbBRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAadwbRObRObRObRObRObRObRObRObRObRObRObRObRObRObAMbRcbRPbRQbRQbRQbRQbRRbRQbRQbRQbRRbRQbRQbRQbRRbRQbRQbRQbRQbRSbRTbRUbRfbRVbRWbRXbRYbRZbRfadnadnadnbLRadnbLSadnadnadnbMZbSabSbbScbSbbSdbNdadnadnbOXbRsbRsbSebSfbSgbRsbShbSibSjbSkbSlbSmbOZbPVbAybynbSnbSobSpbSpbSpbSpbSqbOqbOqbKKcyqbNubIBbIBbIBbNIbIBbIBbIBbIBbIBbIBbIBbIBbSrbwdcyrbxxadwadwadwadwadwadwadwadwadwadwadwadwadwacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBRbBRbEmbEmbEmbEmbEmbEmbEmbEmbEmbEmbEmbBRbBRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAadwadwadwadwadwadwadwadwadwadwadwadwadwadwadwbAMbAMbAMbSsbStbSubSubSubSvbSubSubSubSubSubSubSubSubSubSvbSwbSxbSybSubPFbSzbPFbPFbSAbSBbRfadnbSCbSCbSDbSCbSEbSCbSCadnbMZbSFbSGbSGbSGbSHbNdadnadnbOXbSIbSJbSKbSLbSMbSNbSObSPbSQbSRbSSbSTbSUbPVbAybSVbSnbSWbSXbSYbSZbSpbTabTbbTcbKKcysbTdbTebTfbTgbThbTibTjbTkbTkbTlbTmbTmbTnbTobwdbrZbxxadwadwadwadwadwadwadwadwadwadwadwadwacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBRbBRbEmbEmbEmbEmbEmbEmbEmbEmbEmbBRbBRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAacAadwadwadwadwadwadwadwadwadwadwadwacAacAacAacAacAbRfbRfbTpbTqbTpbTpbTpbTpbTpbTpbTqbTpbTpbTpbTpbTpbTpbRfbTrbSybSubTsbTtbTsbTsbTubTsbRfadnbSCbTvbTwbTxbTybTzbSCadnbMZbTAbTBbTBbTBbTCbNdadnadnbOXbTDbRsbPLbPLbPLbRsbTEbTFbTGbTHbTIbTJbSUbPVbAybTKbTLbTMbTNbTObTPbSpbSpbSpbSpbSpbTQbFlbTRbTSbTTbTUbTnbTnbTnbTmbTmbTmbTmbTncytbwdbrZbxxadwadwadwadwadwadwadwadwadwadwadwadwacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBRbBRbEmbEmbEmbEmbEmbEmbEmbBRbBRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAacAaaVaaVaaVbTpbTVbTpadnadnadnadnbTpbTVbTpadnadnadnadnadnbTpbSxbTWbTXbTsbTYbTZbTZbUabTsadnadnbSCbUbbUcbUdbUebUfbSCadnbUgbUhbUibUjbUkbUlbUmadnadnbOXbRsbUnbUobPLbUpbRsbRsbUqbUrbUsbUtbUubUvbUwbCJbUxbUybUzbUAbUBbUAbUCbUDbUEbUFbSpbKQbKRbUGbUHbUIbUJbUKbULbUKbULbUMbUNbUObTnbUPbwdbrZbxxadwadwadwadwadwadwadwadwadwadwadwadwacAacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBRbBRbEmbEmbEmbEmbEmbBRbBRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAacAacAacAacAacAaaaaaaaaaaaaaaaaaaaaVaaVaaVbTpbTqbTpaaVaaVaaVaaVbTpbTqbTpaaVaaVaaVaaVaaVbTpbSxbSybSubTsbUQbTZbTZbURbTsadnadnbSCbUSbUTbUTbUUbUVbSCadnadnbMZbUWbOfbUXbNdadnadnadnbOXbPLbUYbUZbPLbVabVbbPLbUqbVcbVdbVebVfbVgbVhbFbbVibVjbVkbVlbVmbVnbVobVpbVpbVqbVrbVsbVtbTRbVubVvbVwbTnbTnbTnbVxbTmbTmbTmbTnbVybwdbrZbxxadwadwadwadwadwadwadwadwadwadwadwadwacAaaaaaabVzbVAbVAbVAbVAbVAbVzaaaaaaaaaaaaaaaaaaaaaaaabBRbBRbEmbEmbEmbBRbBRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabVBbVBbVBbVCbVBbVDbVDbVDbVDbVBbVCbVBbVBbVBaaVaaVaaVbTpbSxbSybSubVEbVFbTZbTZbVGbVEadnadnbSCbVHbVIbVJbVKbVLbSCadnadnbMZbNbbVMbNbbNdadnadnadnbOXbPLbVNbVObVPbVQbVRbPLbVSbVTbVUbVVbVWbSUbPVbAybynbVXbVYbVZbVZbWabWbbWcbWdbWebWfbWgbWhbWibVubWjbWkbWlbWmbWnbTmbTmbTmbTmbTnbWobwdbWpbxxadwadwadwadwadwadwadwadwadwadwadwacAacAaaabVzbWqbWrbWsbWtbWsbWubWqbVzaaaaaaaaaaaaaaaaaaaaaaaabBRbBRbBRbBRbBRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabWvbWwbWxbWxcDubWybWzbWAbWBcDvbWxbWxbWCbVBbVBaaVaaVbTpbSxbSybSubVEbWDbTZbTZbWEbVEadnadnbSCbSCbWFbWGbWFbSCbSCadnadnbLRbWHbWIbWHbLSadnbMYbMYbOXbOYbOYbOYbOYbOYbOYbOYbSUbSUbSUbSUbSUbSUbWJbWKbWLbSnbSnbWMbWMbWMbSnbSnbSnbSnbSnbWNbWObTnbTnbWibWibTnbTnbTnbTnbWPbWPbTnbTnbqYbJRbqYbqYadwadwadwadwbROadwadwadwadwacAacAacAaaaaaabVzbWQbWRbWSbWSbWSbWTbWUbVzaaaaaaaaaaaaaaaaaaaaaaaaaaabBRbBRbBRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabWVbWwbWxbWWbWxbWWbWxbWWbWxbWWbWxbWxbWXbWYbVBbVBaaVbTpbSxbSybSubVEbWZbTZbTZbXabVEadnadnadnadnbXbbXcbXbadnadnadnadnbLRbWHbXdbWHbLSadnbMYbNebNebNebNebNebNebNebNebNebNebNebNebNebNebXebXfbXgbXhbXibXibXibXibXibXjbXibXkcyubXibXlbXmbXibXibXibXibXibXjbXnbXibXicyubXibXobXpbXqbXrbXsbXsbXscywbXsbXtbXsbXsbXsbXsbXsbXtadnaaVaaabVzbXubXvbXwbXxbWSbWTbXybVzaaaaaaaaaaaaaaaaaaaaaaccaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabWVbWwbWxbWWbWxbWWbWxbWWbWxbWWbWxbXzbWCbWYbXAbVDaaVbTpcyxcyycyzbXBbXCbXDbXDbTsbTsbWHbWHbWHbWHbWHbXEbWHbWHbWHbWHbWHbXFbWHbXdbWHbXGbWHbMYbXebXHbXHbXHbXHbXHbXHbXHbXHbXHbXHbXHbXHbXHbXIbXfbXgbXJbXKbXKbXKbXLbXqbXqbXqbXqcyAbXMbXNbXObXPbXPbXPbXPbXPbXPbXPbXPbXPcyBbXPbXQbXPbXPbXPbXPbXPbXPbXRbXSbXTbXUbXVbXUbXWbXXbXsadnaaVbVzbVzbVzbVzbVzbVzbXYbXZbVzbVzbVzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabWVbWwbWxbWWbWxbWWbYabWWbWxbWWbWxbWxbWCcDwbYbbVDaaVbTpbSxbYcbYdbYebYfbYgbYfbYfbYfbYfbYgbYfbYfbYfbYhbYfbYfbYfbYfbYfbYibYgbYfbYfbYjbYfbYkbYfbYfbYgbYfbYlbYfbYgbYfbYfbYfbYfbYfbYfbYfbYmbYnbYobYpbYqbYrbYsbYrbYsbYrbYsbYtbYubYvbYwbYxbXqbYybYzbYAbYzbYAbYzbYAbYBbYybYCbYDbXqbXqbXqbXqbYEbXqbYFbYGbXqbXqbXqbXqbYHbYIbXsadnaaVbVzcatcatbYKbVAbYLbWSbYMbYNbYObVAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabWVbWwbWxbWWbWxbWWbWxbWWbWxbWWbWxbWxbWXbWYbVBbVBaaVbTpbSxbYPbYQbYRbYSbYTbYUbYSbYSbYSbYVbYSbYWbYXbYYbYZbYXbZabYXbYXbZbbZcbZdbZecyCbZebZebZebZebZfbZebZebZebZgbZebZhbZebZibZebZebZebZjbZkbZlbZmbZnbZobZpbZqbZrbZsbZtbZtbZnbZubZvbZwbZxbYybZybZzbZAbZBbZCbZDbZEbYybXqbZFbZGbZGbZGbZGbZGbZGbZHbZIbXqbZJbZKbZLbYHbYIbXsbXsbXsbVzcDxbYKbYKbZMbWSbWSbWSbWScDybVzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZNbWwbWxbWxcDzbWxbWxbWxbWxcDAbWxbWxbVBbVBbVBaaVaaVbTpbQnbZObZPbZQbZRbZSbZTbZUbZUbZUbZUbZUbZVbZUbZUbZWbZUbZXbZRbZYbZZbZSbZWbZUcyDbZRbZUbZUbZUbZUbZUbZUbZUcaabZUbZXbZUcabbZUbZRcaccadcaebXqcafbYucagcahcaicahcaicahcaibYucajbYHbZwbXqbYycakcalcamcalcamcalcambYybXqcanbXqbXqbXqbXqbXqbXqbYFcaobXqbXqcapbXqbYHbYIcaqcarcaqcasbYKbYJbYJbVAcaucavcawbWSbYMbVAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabVBbVBbVBcaxbVBbVDbVDbVDbVDbVBbVCbVBbVBbVBaaVaaVaaVbTpbSxcaycazcaAcaBcaCcaDcaBcaBcaEcaFcaFcaGcaFcaHcaIcaJcaKcaJcaJcaLcaMcaNcaOcaFbWHbXHbXdbXdcaPcaPcaPcaPcaQcaPcaRcaPcaScaPcaPcaTbXtcaUbXqcaVbZGbZGbZGbZGbZGbZGbZGbZGcaWcaXcaYcaZcbacbbcbacbacbacbccbacbacbacyEcbacbdbXqbXqcbebXKbXKbXKcbfcbgbXKbXKcbhbXqbYHcbibXtbXsbXsbVzbVzbVzbVzcbjcDBcawcawbWSbYMbVzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVaaVaaVbTpbTqbTpaaVaaVaaVaaVbTpbTqbTpaaVaaVaaVaaVaaVbTpbSxbPEbSucaBcbkcblcbmcbkcaBcbncbocaFcbpaaVcbqcbrcbscbtcbscbucaLcbvcbwcbocaFadnbXHcbxcbxcaPcbycbzcbAcbBcbCcbDcbEcbFcbGcaPcbHbXtcbIbXqcbJcbKcbKcbKcbKcbLcbKcbKcbKcbMcbNcbOcbPcbQcbOcbRcbQcbQcbPcbScbQcbTcyFbXKcbUcbVcbVcbWbXtbXtcbXbXtcaocbYbXqcbZbXqccabYIcaqcarcaqccbcDCcccbWSbWSbWSbWSbWSbWSccdbVzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVaaVaaVbTpbTVbTpadnadnadnadnbTpbTVbTpadnadnadnadnadnbTpbSxbPEbSucaBcbkccecbmccfcaBccgcchccicbpaaVccjcckcbscclcbsccmcaLccnccoccpcaOadncaPcaPcaPcaPccqcbGcbGccrcbGccscctccuccvcaPcbHbXtccwbXKccxccyccyccyccyccyccyccyccycczccAccBccCccDccEccFccyccyccyccyccybXtbXtbXtbXtbXtbXtbXtbXtbXtcarbXtccGcbYbXqcbZbXqccabYIbXsbXsbXsbVzcavbWSccHccIbWSccHccIbWSccJbVzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabRfccKbRfbTpbTqbTpbTpbTpbTpbTpbTpbTqbTpbTpbTpbTpbTpbTpbTpbSxbPEbSucaBcbkccLcbmcbkcaBccgcchccicbpaaVccMccNccOccPcbsccQccRccSccTccUcciadnccVccWccXcaPccYccZcdacdbccZcdcccZcddcdecaPcbHbXtcdfbXqcdgccycdhcdicdjcdkcdlccycdmcdncdocdpcdqcdrcdscdtcducdvcdwcdxccyadnadnadnadnadnadnadnadnbXtcbXbXtbYGbXqbXqbZwbXqbYHcdybXsadnaaVbVAcavbWSccHccIbWSccHccIbWSccJbVAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacdzcdzcdzcdAbRfcdBbRfbSubSucdCbSubSubSubStbSubSubSubSubSubSubSubSucdDcdEcdFcdGcaBcbkccLcdHcbkcaBccgcdIccicbpaaVccjcdJcbscdKcdLcdMcaLccSccTccUcciadncdNcdOcbEcdPcddcbGcdQcdRcdScdTcbGcbGcbGcaPcbHbXtcdUbXKcdVcdWcdhcdXcdYcdZceacdqcdmcebceccedceecefcegcdZcehcdZceicejcekadncelcelcelcelceladnaaVaaVcembXtcenbXqcbYbZwceocepceqbXsadnaaVbVAcavbWSccHccIbWSccHccIbWSccJbVAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacercescetceucevcewcexcewbSubSubSubSubSubSubSubSubSubSubSubSubSubSubSubSubSxbPEbSucaBceycezceAceBcaBccgcchccicbpaaVccjceCceDcbsceEceFcaLccSccTccUcciadnceGceHccvcaPceIcbGceJcbGcbGceKceLceMccvcaPcbHbXtcdUbXKceNceOcdZcdZcePceQceRceSceTceUceVceWceXceYceZcfacfbcfccfdcfecffcfgcfhcficfjcfkceladnaaVaaVcembXtcflbXqcbYbZwcbYbYHceqbXsadnaaVbVAcavbWSccHccIbWSccHccIbWSccJbVAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacdzcdzcdzcdAbRfcfmcfnbSubSubSwbSubSubSubSubSubSubSubSvbSubSucfobSwbSubSxbPEbSucaBcfpcfqcfqcfqcaBccgcchccicbpaaVcfrcfscfscftcfucfvcfwcfxccTccUcciadncaPcaPcaPcaPcfycfzcfAcfBcbGcbGcbGcbGcbGcaPcbHbXtcfCcfDcfEcdWcfFcfGcfHcfIcfJcfKcfLcfMcfNcfOcdqcfPcfQcfRcfScfTcfUcfVcfWadncfXcfYcfkcfZceladnaaVaaVcembXtcgabXqbXqbZwbXqbYHbYIbXsbXsbXsbVzcavbWSccHccIbWSccHccIbWSccJbVzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabRfbRfbRfbRfbRfbRfbRfbRfbTpbTpbTpbTpbTpbTpbTpbTpbRfbRfbRfcgbcyGcyzcaBcgccgdcgecgfcaBcggcghcgicgjcgkcglcgkcgmaaVaaVaaVcgnccgccTccUcgnadnaaVaaVaaVcaPcaPcaPcaPcaPcaPcaPcaPcgocaPcaPcgpcgqcgrcgscgtcgucgvcdZcdZcdZcgwcdqcdmcgxcgycgycgzcgAcfacgBcgCcgDcgEcgFcgGcgHcfhcgIcfkcfkceladnaaVaaVcembXtcgJcgKcgKcgLcgKcgMcgNcaqcarcaqcgOcDDcgPbWSbWScDEbWSbWSbWSccdbVzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVaaVaaVaaVaaVaaVaaVaaVaaVaaVaaVaaVaaVaaVaaVaaVaaVbRfbSubSxbPEcgQcgRcgScgScgScgScgScgTcgUcgicgicgicgVcgicbpaaVaaVaaVcgncggccTccUcgnadnaaVaaVaaVaaVaaVaaVaaVaaVaaVccicgWcgXcgYccicgZbXtchabYHchbchcchdcfHcfHcfHcfHchcchechfcdwcdZcdqchgchhchichjchkchlchkchmadncelcelcelcelceladnadnadncembXtbXsbXsbXschnbXschobXsbXtbXsbXsbVzbVzbVzchpbVzbXZbVAchqbVAbVAbVzaaaaaaaaaaaaaaaaaaaaaaaaaccaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVaaVaaVaaVaaVaaVaaVchrchschrchrchtchrchrchschraZhbTpbSubSxbPEbSuchuchvchwchxchychzcgXchAchBchCchDchEcgichFcgkcgkcgmcgnccgccTccUcgnadnadnadnadnadnadnadnadnadnadncciccgchGchHccicgZbXtchIchJchKccCchLceQceQchMceQchNchOchPchQchRchRchSchTchUcfbchVchWchXcffcfgcfhchYchZchZceladnaaVaaVcembXtciaciaciacibciacicciacaqcarcaqcasciecDFciecifbVzbYNbYMbYMcigbVAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVaaVaaVaaVcihciichrchrcijcDGcikcikcikcDHcijchscilbTpbTpbSxbPEbSucimchvcinciocipciqcirciscitciucivciwcgicgncciccicixcgncyIcyJcyKcgncgncciccicciccicciccicciccicgncgnccgchGccUcgnciycizciAciBcizcizcizcizciCcizccyccyciDciEcdZcdZciFciGciHciIcdZciJciKciLcfWadncfXciMciNciOceladnaaVaaVcembXtciaciaciPciQciRciSciabXsbXsbXsbVzciTcieciecDIbVzcDJbYMbYMciUbVzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVaaVaaVcihciVcikcDKciWcikcikcikciXcikcikcikciYciZbTVciZbSxbPEbSucimchvcjacjbcjccjdcjecjfcjgcjhcjicjjcjkcjlcjlcjlcjmcjncjocjpcjqcjrcjscjtcjucjvcjucjucjucjucjwcjxcjycjzcjAcjBcjCcjDcjEcjFcjGcjHcjIcjJcjKcjLcjMccycdmcdmciEcjNcjOcjPcjQcjRcjScdZciJcjTcjUcgGcgHcfhcjVchZchZceladnaaVaaVcembXtcjWcjWcjWcjXcjWcjYcjWbXsadnaaVbVzcjZcjZcjZcjZbVzbYNbYMbYMcigbVAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVaaVaaVaaVcihckachrchrckbcDLcikcikcikcDMckbchsbTpbTpbTpbSxbPEbSuckcchvckdckeckfckgckhckickjckkcklcisckmcknckncknckockpckqckrckscknckncknckncktcknckncknckncknckucknckpcknckncknckvckwckxckyckzchAchAchAckAcjMckBcdmcdZckCckDckDckDckEckFciHcdZciJciKckGcfWadncelcelcelcelceladnaaVaaVcembXtbXtbXtbXtbXtbXtbXtbXtbXsadnaaVbVzbVzckHckHckHckHckHckHckHbVzbVzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVaaVaaVaaVaaVaaVaaVchrchschrchrckIchrchrchschraZhbTpckJbSxbPEbSuckcchvckKckLckMchzckNchAckOckPckQckRcgicgncciccicixcgncyIcyMcyKcgncgncciccicciccicciccicciccicgncgncgncgncgnckTciycizckUchAchAckVckWchAckAckXccycdmcdmckYckZckDclacjScdZcjQclbclcchWcldcffcfgcfhcleclfclgceladnaaVaaVcemadnadnadnadnadnadnadnadnadnadnaaVaaabVzclhclhclhclhclhclhclhbVzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVaaVaaVaaVaaVaaVaaVaaVaaVaaVaaVaaVaaVaaVaaVaaVaaVbRfbSubSxbPEbSubWHchvchvchvchvchvclicljclkcgncgncgncgnadnadnadncllclmclncloclpclmcgkcgkcgkcgkcgkcgkcgkcgkcgkcgkcgkcgkcgkcgkclqclrcizclschAchAckVckWchAcltcizccyccycluckYclvclwclaclxcdZcjQclbciJciKclycfWadncfXclzclAclBceladnadncemcemadnadnadnadnadnadnadnadnadnadnadnaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabRfbRfbRfbRfbRfbRfbRfbRfbTpbTpbTpbTpbTpbTpbTpbTpbRfbRfbRfclCbPEbSubWHadnadnadnadncaFclDcchclEadnadnadnadnadnaaVaaVcbpcciccgckSccUcciadnaaVaaVaaVaaVaaVaaVaaVaaVaaVaaVaaVaaVaaVckTcgZcizclGclHclHclHclIclJclKclLccyclMclNclOckZckDclaclPcdZclQclbciJclRclScgGcgHcfhclTclfclfceladnadncemclUclUclUclVclUclUclUclUclUclUclUclUclUclUaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaclWclWclWclXbRfcdBcfnbSucdCclYbSubSubSubSubSubStbSubSubSubSubSuclYcdDcdEcdFcdGbWHadnaaVaaVaaVcaFclDcchclEadnaaVaaVaaVadnaaVaaVcbpcciccgckSccUcciadnckTclZclZclZclZckTaaVaaVaaVaaVaaVaaVaaVckTcgZcizcmacmbcmccmccmdcmecmfcmgccycmhcmicmjckDckDckDcmkcdZcmlcmmciJciKcdZcfWadncelcelcelcelceladnaaVcemclUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalvcmncmocmpcmqcmrcexcmrbSubSubSubSubSubSubSubSubSubSubSubSubSubSubSubSubSxbPEbSubWHadnaaVaaVaaVcaFcmscchclEadnaaVaaVaaVadnaaVaaVcbpcciccgckSccUcciadnckTcmtcmucmvcmwckTclZclZclZclZclZclZclZckTcgZcmxcmycmxcmxcmxcmzcmAccyccyccycmBcdmcmCcmDcmEcmFcmGcmHcmIcmJclcchWcmKcffcfgcfhcmLcmMcmMceladnaaVcemclUaaaaaaaccaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaclWclWclWclXbRfcmNbRfbSubSubSubSubSubSubSubSubSubSubSubSvbSubSucmObSubSxbPEbSubWHadnadnadnadncaFcmPcmQclEadnaaVaaVaaVadnaaVaaVcbpccicgTcmRcmScciadnckTcmTcmUcmVcmWcmWcmWcmWcmWcmWcmWcmWcmWcmWcmXcmYcmZcnacnbcnccndcncccycnecnfcmBcdmcngcnhcgycnicnjcnkcnlchVcgBciKcnmcfWadncfXcnncnocnpceladnaaVcemclUaaaaaaaaaaaaaaaaaaaccaaaaaaaabaabaabcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabRfccKbRfbRfcnrcnrcnrcnrcnrcnrcnrcnrcnrcnrcnrbRfbTpbRfbRfcgbcyGcyzbWHbWHcnscnscnscnscntcnuclEadnadnadnadnadnadnadnchFcnvcnwcnxcnycgnadnckTcnzcnAcnBcnCckTcnDcnDcnDcnDckTckTclZckTcnEcnFcnGcnHcnIcnIcnJcnIcnKcnLcdmcnMcdmcdZcmCcnkcnNcnOcnPcnQcnRcdwcnScnTcgGcgHcfhcnUcmMcmMceladnaaVcemclUaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaabaaaaabaaaaaaaaaaabaaaaaaaaaaabaaaaaaaaaaabaaaaaaaaaaabaaaaaaaaaaabaaaaaacnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacnrcnVcnWcnWcnWcnWcnWcnWcnWcnXcnraaVaaVaaVbRfbSxbPEbSucnYbSucnscnZcoacobcoccodcoecaOcnscnscnscnscnscnscnscofcnscogcnscnscnscnscnscohcoicnscnscnscnscnscnscnsadnadnckTcojcokcolcmTcmTcmTcomconchccoocopcoqcegcdZcmCcorcoscdZcdZcorcorcorciKcotcouadncelcelcelcelceladnadncemclUaabaabaabaabaabaabaabaabaabaabaabaabcovcowcoxaaacovcowcoxaaacovcowcoxaaacovcowcoxaaacovcowcoxaaacovcowcoxaaacnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacnrcoycozcozcozcozcozcozcozcoAcnradnadnadnbRfbSxbPEbSubSucoBcnscoCcoDcoEcoFcoGcoHcoHcoIcoJcoKcoLcoMcoNcoOcoPcoQcoRcoScoTcoUcoVcoWcoXcoYcoZcnscpacpbcpccpdcnscnsadnckTcpecpfcpfcpfcpgcpgcpgcpgccCcphcpicpjcdZcfScpkcorcmGcplcdZceicpmcorciKcorccyadnadnadnadnadnadnadnaaVcemclUaaaaabaaaaaaaaaaaaaaaaabaaaaaaaaaaabcovcpncoxaaacovcpncoxaaacovcpncoxaaacovcpncoxaaacovcpncoxaaacovcpncoxaaacnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacnrcoycozcozcozcozcozcozcozcoAcnrcnrcpocnrcnrbSxbPEbSubSucppcpqcprcpscptcprcprcpucaFcaFcpvcpwcpxcpxccpcaOcpycpzcpAcpBcpCcaOcpDcpxcpEcpwccpcpFcpGcpGcpGcpGcpHcnsaabckTckTckTckTckTckTaaaaaaaaaccycpIcpJcdZcdZcpKcgDcpLcpMcpNcpOcpLcpPcpLcpQcorccyccyccyadnadnadnadnadnadncemclVaaaaabaaaaaaaaaaaaaaaaabaaaaaaaaaaabcovcpncoxaabcovcpncoxaabcovcpncoxaabcovcpncoxaabcovcpncoxaabcovcpncoxaaacnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacnrcoycozcozcozcpRcozcozcozcoAcpScpTcpUcpVcnrbSxbPEbSucpWcpXcpqcpYcpZcqacqbcqccpucqdcqecqfcpwcpxcqgcqhcqicqjcqkcqlcqmcqjcqicqncqocqpcpwccpcpFcpGcpGcpGcqqcqqcnsaabaaaaaaaaaaaaaaaaabaaaaaaaaaccycqrcqscdZcdZcqtcqucqvcqwcqxcqycqzcdZcqAcqBcqCcqDcqEcqDcemcemcemcemcemcemcemclUaabaabaabaabaabaabaabaabaabaabaabaabcovcpncoxaaacovcpncoxaaacovcpncoxaaacovcpncoxaaacovcpncoxaaacovcpncoxaaacnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacnrcoycozcozcqFcqGcqHcozcozcqIcqJcqKcqLcqMcnrbSxbPEbSucpWcpXcpqcqNcqOcqPcqQcqRcpucqScpxcpxcqTcqUcqUcqVcqWcqXcqYcqZcqUcracqWcrbcqUcrccrdcrecnscrfcpGcpGcqqcrgcnsaabaaaaaaaaaaaaaaaaabaaaaaaaaaccyccyccyccyccycrhcdqcricrjcrkcdqcricdqcrlcdqcrmccyccyccyadnaabaabaabaabaabcrnclUaabaabaabcrocrocrocrocrpaaaaaaaaaaabcovcpncoxaaacovcpncoxaaacovcpncoxaaacovcpncoxaaacovcpncoxaaacovcpncoxaabcnqaabcnqcnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacrqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacnrcoycozcozcozcrrcozcozcozcoAcpocrscqLcrtcnrbSxbPEbSucpWcpXcpqcrucrvcrwcrxcrucpucrycqUcqUcrzcrAcpxcrBcrCcrDcrEcrFcrGcrHcrCcrIcpxcrAcpwcrJcnscrKcrLcpGcpGcrMcnsaabaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaadncrNadncrOcrPcrNadncrOadncrQadncrQadnadnadnadnaabaabaabaaaaaacrRclUaabcrocrocrocrScrTcrUcrpcrpcrpaaaaabaaacrVaaaaaaaaacrVaaaaaaaaacrVaaaaaaaaacrVaaaaaaaaacrVaaaaaaaaacrWaaaaaaaabaaaaaacnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacnrcoycozcozcozcozcozcozcozcoAcpocrXcqLcrYcnrbSxbPEbSubSubSucprcrZcqOcqPcqQcpZcsacsbcpxcpxcsccpxcpxcsdcaFcaFcaFcsecaFcaFcaFcsfcpxcsgcshcsicnscsjcrLcpGcpGcpGcnsaabaabaabaabaabaabaabaabaabaabaabaabaabaabcelcskcfXcskcelcskcfXcskcelcslcfXcsmcelaaaaaaaaaaaaaaaaabaabaabcsncsocsocspcsqcsrcsscstcsucsvcsqcswcsxcsxcsycsycszcsAcsAcsAcsAcsAcsAcsAcsAcsAcsAcsAcsAcsAcsAcsAcsAcsAcsAcsBcsAcsCcsAcsDaabcnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacnrcoycozcozcozcozcozcozcozcoAcpocrXcsEcsFcnrbSxbPEbSubSucsGcsHcsIcrvcsJcrxcsIcprcsKcpxcpxcsLcpxcpxcsMcaFcsNcsOcsPcsNcsNcaFcsQcpxcsRcpxcsScnscsTcsTcsTcsTcsUcnsaabaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaacelcsVcsWcsXcelcsYcsZctacelctbctcctdcelaaaaaaaaaaaaaaaaabaaaaaacteclUaabcrocrocroctfctgcthcrpcrpcrpaaaaabaaactiaaaaaaaaactiaaaaaaaaactiaaaaaaaaactiaaaaaaaaactiaaaaaaaaacrWaaaaaaaabaaaaaacnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacnrctjctkctkctkctkctkctkctkctlcpoctmctnctocnrbSxbPEbSubWHbWHcpqcpqcpqcpqcpqcpucpuctpcpxcpxctqctrcpxctscaFcttctuctvcsNctwcaFctxcpxctycpxctzcnscnscnscnscnscnscnsaabaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaacelctActBctAcelctCctDctCcelctEctFctGcelaabaabaabaabaabaabaabaabcteclUaabaabaabcrocrocrocrocrpaaaaaaaaaaabcovctHcoxaaacovctHcoxaaacovctHcoxaaacovctHcoxaaacovctHcoxaaacovctHcoxaabcnqaabcnqcnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabTpbTpbRfcnrcnrcnrcnrcnrcnrcnrcnrctIctJcnrcnrclCbPEbSubTpcemadnadnadnadncnsctKcbnctLcpxcpxctMcpxcpxctNctOctPctQctRcsNcsNctOctScpxcpxcpxctTctUcnsaabaabaabaabaabaabaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaacelctActVctAcelctCctWctCcelctGctXctGcelaaaaaaaabaabaaaaabaaaaaacteclUaabaabaabaabaabaabaabaabaabaabaabaabcovctHcoxaaacovctHcoxaaacovctHcoxaaacovctHcoxaaacovctHcoxaaacovctHcoxaaacnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabTpckJbSucdCclYbSubSubSubSubSucdDctYctZcuabZPcubcdFcdGbTpcemadnaaVaaVadncnscuccbncudcuecuecuecuecuecufcaFctPcsNcugcsNcsNcaFcuhcuecuecuecuicujcnscnscnscnscnscnscrnaabaabaabaabaabaabaabaabaabaabaabaabaabcelcelcelcelcelcelcelcelcelcelcelcelcelaabaabaabaabaabaabaabaabcukclUaaaaabaaaaaaaaaaaaaaaaabaaaaaaaaaaabcovctHcoxaabcovctHcoxaabcovctHcoxaaacovctHcoxaabcovctHcoxaabcovctHcoxaaacnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabTpckJbSubSubSubSubSubStbSubSubSuculbYdbYdbYdbYdcumbSubTpcemadnaaVaaVadncnscbncuncuocbncbncbncupcuqcurcaFctPcuscutcuucsNcaFcuvcuwcuxcbncbncuycuzcuAcuBcuCcuDcuEcuFaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaabaaaaaaaaaaaaaaaaabaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaabcrnaabaaaaabaaaaaaaaaaaaaaaaabaaaaaaaaaaabcovctHcoxaaacovctHcoxaaacovctHcoxaaacovctHcoxaaacovctHcoxaaacovctHcoxaaacnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabTpbTpbRfbRfbRfbTpbTpbTpcuGbTpbTpbTpbRfbRfbRfbTpbTpbTpbTpcemadnaaVaaVadncnscuncuocuHcuHcuIcaFcuJcuJcuJcuKcuLcuMcuNcuOcuPcuKcuJcuJcuJcaFcuQcbncbncuRcuScnscnscnscteaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaabaaaaaaaaaaaaaaaaabaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaabcrnaabaabaabaabaabaabaabaabaabaabaabaabaabcovcuTcoxaaacovcuTcoxaaacovcuTcoxaaacovcuTcoxaaacovcuTcoxaaacovcuTcoxaaacnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcrnaabaaaaaaaabcnscuUcaFcaFcaFcaFcaFcaOcaOcaOcaOcaOcaOcuVcaOcaOcaOcaOcaOcaOcaFcaFcaFcaFcaFcuUcnsaabaabcteaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabcrnaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaabaaaaabaaaaaaaaaaabaaaaaaaaaaabaaaaaaaaaaabaaaaaaaaaaabaaaaaaaaaaabaaaaaacnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacrncrnaabaabaabaabaabaabaabaabaabaabaabcrnaabaaaaaaaabcnscuWcuXcuYcuZcvacvbcvccvbcvbcvccvbcvbcvdcvbcvbcvccvbcvbcvccvbcvecuZcuYcuZcvfcnsaabaabcvgcsocsocsocsocsocsocsocsocsocsocsocsocsocsocsocsocsocsocsocvhcsocsocsocsocsocsocsocsocsocsocsocvicrncrncrnaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqcnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacrncrncrncrncrncrncrncrncrncrncrncrncrncrnaabaaaaaaaabcnscnscnscnscvjcvkcvbcvbcvbcvbcvbcvbcvbcvdcvbcvbcvbcvbcvbcvbcvbcvkcnscnscnscnscnsaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabcvlcvmcvlaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacrncrnaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaabaabaabcvncvjcvecvocvbcvncvncvpcvncvncvpcvdcvqcvncvncvpcvncvncvbcvrcvacvjcvnaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaabaaacvlcvscvlaaaaabaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacvqcvjcvtcvpcvbcvncvucvvcvvcvwcvvcvxcvvcvwcvvcvvcvycvncvbcvpcvzcvjcvqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabcvlcvlcvAcvBcvlaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacvqcvjcvCcvDcvEcvEcvFcvGcvncvncvGcvpcvpcvncvncvGcvFcvEcvEcvHcvIcvjcvqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaabcvlcvJcvKcvLcvlaabaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacvqcvjcvMcvpcvbcvncvNcvncvqcvqcvqcvncvqcvqcvqcvncvNcvncvbcvpcvMcvjcvqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaabcvlcvOcvPcvQcvlaabaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacvqcvjcvMcvpcvbcvncvRcvncvqcvqcvqcvncvqcvqcvqcvncvRcvncvbcvpcvMcvjcvqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccaaaaaaaaaaaaaaaaaaaabaaaaabcvlcvScvTcvUcvlaabaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacvqcvjcvMcvpcvbcvpcvRcvpcvqcvqcvpcvpcvpcvqcvqcvGcvRcvpcvbcvpcvMcvjcvqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabcvVcvVcvWcvVcvVaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacvqcvjcvMcvpcvbcvbcvNcvpcvncvncvpcvXcvpcvncvncvpcvNcvbcvbcvpcvMcvjcvqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaabaaacvVcvYcvVaaaaabaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacvqcvjcvMcvpcvbcvpcvRcvGcvqcvqcvpcvpcvpcvqcvqcvpcvRcvpcvbcvpcvMcvjcvqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaabaaacvVcvZcvVaaaaabaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacvqcvjcvMcvpcvbcvncvRcvncvqcvqcvqcvncvqcvqcvqcvncvRcvncvbcvpcvMcvjcvqaaaaaaaaaaaaaccaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaabaaaaaacwaaaaaaaaabaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacvqcvjcwbcvpcvbcvncvNcvncvqcvqcvqcvncvqcvqcvqcvncvNcvncvbcvpcwbcvjcvqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaabaaaaaacwaaaaaaaaabaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacvqcvjcwccvDcvEcvEcvFcvGcvncvncvpcvpcvGcvncvncvGcvFcvEcvEcvHcwdcvjcvqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacnqaabclUcweaabaabaabaabcwaaabaabaabaabaabcweaabcnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacvqcvjcwfcvpcvbcvncwgcvvcvwcvvcvvcvwcvvcvvcvwcvvcwhcvncvbcvpcwicvjcvqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacnqaaaaaaaabaaaaabaaaaaacwjaaaaaaaabaaaaabaaaaaacnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacvqcvjcvpcvpcvbcvncvncvpcvncvncvqcvbcvqcvncvncvpcvncvncvbcvpcvpcvjcvqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacnqaaacwkcwkcwkcwkcwkaaacwlaaacwkcwkcwkcwkcwkaaacnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacvqcvjcvjcvpcvbcvbcvbcvbcvbcvbcvbcvbcvbcvbcvbcvbcvbcvbcvbcvpcvjcvjcvqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacnqaaacwmcwncwncwncwncwocwlcwpcwqcwqcwqcwqcwraaacnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacvqcvjcvjcvjcvjcvjcvjcvjcvpcvpcvpcvpcvpcvpcvpcvjcvjcvjcvjcvjcvjcvjcvqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacnqaaacwscwscwscwscwsaaacwlaaacwscwscwscwscwsaaacnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccaaaaaaaaaaaaaaaaaaaaaaaaaaacvqcvqcvqcvqcvqcvqcvjcvjcvjcvjcvjcvjcvjcvjcvjcvqcvqcvqcvqcvqcvqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacnqaaaaaaaaaaabaaaaaaaaacwlaaaaaaaaaaabaaaaaaaaacnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacvqcvqcvqcvqcvqcvqcvqcvqcvqcvqcvqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacnqaaacwkcwkcwkcwkcwkaaacwlaaacwkcwkcwkcwkcwkaaacnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacnqaaacwmcwncwncwncwncwocwlcwpcwqcwqcwqcwqcwraaacnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacnqaaacwscwscwscwscwsaaacwlaaacwscwscwscwscwsaaacnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccaaaaaaaaaaaaaaaaaacnqaaaaaaaaaaabaaaaaaaaacwtaaaaaaaaaaabaaaaaaaaacnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacnqaaacwkcwkcwkcwkcwkaaacwaaaacwkcwkcwkcwkcwkaaacnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacnqaaacwmcwncwncwncwncwucwvcwucwqcwqcwqcwqcwraaacnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacnqaaacwscwscwscwscwsaaacwaaaacwscwscwscwscwsaaacnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacnqaaaaaaaabaaaaabaaaaaacwaaaaaaaaabaaaaabaaaaaacnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacnqaabclUclUclUaabaabaaacwaaaaaabaabclUclUclUaabcnqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacwwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaclUaabcwxaabclUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-"}
diff --git a/_maps/map_files/CitadelStation/CitadelStation-1.2.2.dmm b/_maps/map_files/CitadelStation/CitadelStation-1.2.2.dmm
new file mode 100644
index 0000000000..0d57d5691c
--- /dev/null
+++ b/_maps/map_files/CitadelStation/CitadelStation-1.2.2.dmm
@@ -0,0 +1,128260 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aaa" = (
+/turf/open/space,
+/area/space)
+"aab" = (
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"aac" = (
+/turf/closed/wall/r_wall,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aad" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/obj/structure/closet,
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aae" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aaf" = (
+/obj/structure/bed,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ name = "regular air scrubber";
+ on = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Prison Cell 1";
+ network = list("SS13","Prison")
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aag" = (
+/turf/closed/wall,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aah" = (
+/obj/structure/bed,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ name = "regular air scrubber";
+ on = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Prison Cell 2";
+ network = list("SS13","Prison")
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aai" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aaj" = (
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aak" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aal" = (
+/obj/machinery/shower{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aam" = (
+/obj/structure/table,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/obj/machinery/button/door{
+ id = "permacell1";
+ normaldoorcontrol = 1;
+ pixel_y = -24;
+ specialfunctions = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aan" = (
+/obj/machinery/shower{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/button/door{
+ id = "permacell1";
+ normaldoorcontrol = 1;
+ pixel_y = -24;
+ specialfunctions = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aao" = (
+/obj/structure/table,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aap" = (
+/turf/open/space,
+/obj/machinery/porta_turret/syndicate{
+ dir = 9
+ },
+/turf/closed/wall/mineral/plastitanium{
+ dir = 8;
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/syndicate)
+"aaq" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate)
+"aar" = (
+/obj/structure/grille,
+/obj/machinery/door/poddoor/shutters{
+ id = "syndieshutters";
+ name = "blast shutters"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/shuttle/syndicate)
+"aas" = (
+/turf/open/space,
+/obj/machinery/porta_turret/syndicate{
+ dir = 5
+ },
+/turf/closed/wall/mineral/plastitanium{
+ dir = 1;
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/syndicate)
+"aat" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/closed/wall,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aau" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "permacell";
+ name = "cell blast door"
+ },
+/obj/machinery/door/airlock/glass{
+ id_tag = "permacell1";
+ name = "Cell 1"
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aav" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/turf/closed/wall,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aaw" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "permacell";
+ name = "cell blast door"
+ },
+/obj/machinery/door/airlock/glass{
+ id_tag = "permacell2";
+ name = "Cell 2"
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aax" = (
+/obj/structure/table,
+/obj/machinery/microwave,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"aay" = (
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"aaz" = (
+/obj/structure/table,
+/obj/item/device/flashlight/lamp{
+ pixel_x = 4;
+ pixel_y = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"aaA" = (
+/obj/machinery/computer/shuttle/syndicate,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"aaB" = (
+/obj/structure/table,
+/obj/machinery/button/door{
+ id = "syndieshutters";
+ name = "remote shutter control";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"aaC" = (
+/obj/structure/frame/computer,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"aaD" = (
+/obj/machinery/biogenerator,
+/turf/open/floor/plasteel/green/side{
+ dir = 9
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aaE" = (
+/obj/machinery/seed_extractor,
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aaF" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aaG" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/vending/cola/random,
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aaH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/closet/crate/bin,
+/obj/machinery/camera{
+ c_tag = "Prison Common Room North";
+ network = list("SS13","Prison")
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aaI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aaJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/obj/machinery/button/door{
+ id = "permacell1";
+ normaldoorcontrol = 1;
+ pixel_y = 24;
+ req_access_txt = "1";
+ specialfunctions = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aaK" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ tag = "icon-manifold-b-f (NORTH)";
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aaL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/machinery/button/door{
+ id = "permacell2";
+ normaldoorcontrol = 1;
+ pixel_y = 24;
+ req_access_txt = "1";
+ specialfunctions = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aaM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/obj/structure/bookcase,
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aaN" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile{
+ obj_integrity = 5000;
+ max_integrity = 5000;
+ name = "hardened window"
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "permalock"
+ },
+/turf/open/floor/plating,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aaO" = (
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aaP" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aaQ" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"aaR" = (
+/obj/structure/chair/comfy/beige{
+ dir = 1;
+ icon_state = "comfychair"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"aaS" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"aaT" = (
+/turf/open/space,
+/area/space/nearstation)
+"aaU" = (
+/obj/item/device/plant_analyzer,
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aaV" = (
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aaW" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aaX" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aaY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (WEST)";
+ icon_state = "intact";
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aaZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (WEST)";
+ icon_state = "intact";
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aba" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/structure/table,
+/obj/machinery/computer/libraryconsole/bookmanagement{
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abb" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile{
+ obj_integrity = 5000;
+ max_integrity = 5000;
+ name = "hardened window"
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "permalock"
+ },
+/turf/open/floor/plating,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abc" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abd" = (
+/obj/structure/table,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/pen,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abe" = (
+/obj/structure/table,
+/obj/item/stack/sheet/glass{
+ amount = 10
+ },
+/obj/item/device/multitool,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"abf" = (
+/obj/item/device/radio/intercom{
+ desc = "Talk through this. Evilly";
+ freerange = 1;
+ frequency = 1213;
+ name = "Syndicate Intercom";
+ pixel_y = -32;
+ subspace_transmission = 1;
+ syndie = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"abg" = (
+/obj/structure/closet/syndicate/personal,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"abh" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/sign/electricshock{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abi" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/sign/electricshock{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abk" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ name = "regular air vent";
+ on = 1
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abl" = (
+/turf/closed/mineral,
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"abm" = (
+/turf/open/space,
+/turf/closed/wall/mineral/plastitanium{
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/syndicate)
+"abn" = (
+/obj/machinery/door/window{
+ name = "Cockpit";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"abo" = (
+/turf/open/space,
+/turf/closed/wall/mineral/plastitanium{
+ dir = 4;
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/syndicate)
+"abp" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/turf/open/floor/plating,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abq" = (
+/obj/machinery/hydroponics/soil,
+/obj/item/seeds/potato,
+/turf/open/floor/grass,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abr" = (
+/turf/open/floor/plasteel/green,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abs" = (
+/obj/machinery/hydroponics/soil,
+/turf/open/floor/grass,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abt" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/vending/sustenance,
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abu" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "holding blast"
+ },
+/obj/machinery/door/airlock/glass,
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abv" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/table,
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching Prison Wing holding areas.";
+ dir = 4;
+ name = "Prison Monitor";
+ network = list("Prison");
+ pixel_x = -30;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abx" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aby" = (
+/turf/open/space,
+/area/shuttle/syndicate)
+"abz" = (
+/obj/structure/table,
+/obj/item/stack/cable_coil,
+/obj/item/weapon/crowbar/red,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"abA" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/zipties{
+ pixel_x = 1;
+ pixel_y = 2
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"abB" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abC" = (
+/obj/machinery/hydroponics/soil,
+/obj/item/seeds/cherry,
+/turf/open/floor/grass,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abD" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table,
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abE" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abG" = (
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/flasher{
+ id = "holding";
+ pixel_x = -30
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abJ" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Holding Area";
+ req_access_txt = "2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abK" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abL" = (
+/turf/open/floor/plating/asteroid/airless{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"abM" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"abN" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/closed/wall/r_wall,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abO" = (
+/obj/structure/sign/electricshock{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/green,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abP" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abR" = (
+/obj/structure/closet/wardrobe/orange,
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/button/flasher{
+ id = "holding";
+ pixel_x = -24;
+ pixel_y = 5;
+ req_access_txt = "1"
+ },
+/obj/machinery/button/door{
+ id = "holding blast";
+ name = "Holding Cell Lock";
+ pixel_x = -24;
+ pixel_y = -5;
+ req_access_txt = "1"
+ },
+/obj/machinery/button/door{
+ id = "permacell";
+ pixel_x = -38;
+ pixel_y = -5;
+ req_access_txt = "1"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abT" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (WEST)";
+ icon_state = "camera";
+ dir = 8
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abU" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"abV" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"abW" = (
+/obj/machinery/porta_turret/syndicate{
+ dir = 4
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate)
+"abX" = (
+/obj/machinery/hydroponics/soil,
+/obj/item/weapon/cultivator,
+/turf/open/floor/grass,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abY" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"abZ" = (
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aca" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (WEST)";
+ icon_state = "intact";
+ dir = 8
+ },
+/turf/closed/wall,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"acb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (WEST)";
+ icon_state = "intact";
+ dir = 8
+ },
+/obj/machinery/flasher{
+ id = "holding";
+ pixel_x = -30
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"acc" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Holding Area";
+ req_access_txt = "2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (WEST)";
+ icon_state = "intact";
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"acd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (WEST)";
+ icon_state = "intact";
+ dir = 8
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"ace" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"acf" = (
+/obj/effect/landmark{
+ name = "carpspawn"
+ },
+/turf/open/space,
+/area/space)
+"acg" = (
+/turf/closed/mineral/random,
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"ach" = (
+/obj/docking_port/stationary{
+ dheight = 9;
+ dir = 2;
+ dwidth = 5;
+ height = 24;
+ id = "syndicate_ne";
+ name = "northeast of station";
+ turf_type = /turf/open/space;
+ width = 18
+ },
+/turf/open/space,
+/area/space)
+"aci" = (
+/obj/machinery/suit_storage_unit/syndicate,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"acj" = (
+/obj/structure/closet/syndicate/nuclear,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"ack" = (
+/obj/machinery/hydroponics/soil,
+/obj/item/seeds/carrot,
+/turf/open/floor/grass,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"acl" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table,
+/obj/effect/holodeck_effect/cards,
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"acm" = (
+/obj/machinery/light/small,
+/obj/structure/table,
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"acn" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching Prison Wing holding areas.";
+ dir = 4;
+ name = "Prison Monitor";
+ network = list("Prison");
+ pixel_x = -30;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"aco" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"acp" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"acq" = (
+/obj/structure/table,
+/obj/item/device/aicard,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"acr" = (
+/obj/machinery/door/poddoor{
+ id = "smindicate";
+ name = "outer blast door"
+ },
+/obj/machinery/button/door{
+ id = "smindicate";
+ name = "external door control";
+ pixel_x = -26;
+ pixel_y = 0;
+ req_access_txt = "150"
+ },
+/obj/docking_port/mobile{
+ dheight = 9;
+ dir = 2;
+ dwidth = 5;
+ height = 24;
+ id = "syndicate";
+ name = "syndicate infiltrator";
+ port_angle = 0;
+ roundstart_move = "syndicate_away";
+ width = 18
+ },
+/obj/docking_port/stationary{
+ dheight = 9;
+ dir = 2;
+ dwidth = 5;
+ height = 24;
+ id = "syndicate_nw";
+ name = "northwest of station";
+ turf_type = /turf/open/space;
+ width = 18
+ },
+/turf/open/floor/plating,
+/area/shuttle/syndicate)
+"acs" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate)
+"act" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/sign/electricshock{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/green,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"acu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/sign/electricshock{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"acv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"acw" = (
+/obj/machinery/suit_storage_unit/syndicate,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"acx" = (
+/obj/structure/table,
+/obj/item/weapon/grenade/plastic/c4{
+ pixel_x = 2;
+ pixel_y = -5
+ },
+/obj/item/weapon/grenade/plastic/c4{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/grenade/plastic/c4{
+ pixel_x = 2;
+ pixel_y = -3
+ },
+/obj/item/weapon/grenade/plastic/c4{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/weapon/grenade/plastic/c4{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"acy" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/shuttle/syndicate)
+"acz" = (
+/obj/machinery/door/window{
+ name = "Ready Room";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"acA" = (
+/obj/machinery/hydroponics/soil,
+/obj/item/seeds/apple,
+/turf/open/floor/grass,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"acB" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"acC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"acD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"acE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"acF" = (
+/obj/machinery/door/window{
+ dir = 4;
+ name = "EVA Storage";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"acG" = (
+/obj/machinery/door/airlock/external{
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"acH" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/sign/electricshock{
+ pixel_y = -32
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plating,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"acI" = (
+/obj/machinery/hydroponics/soil,
+/obj/item/seeds/watermelon,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/grass,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"acJ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/green,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"acK" = (
+/obj/machinery/hydroponics/soil,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/grass,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"acL" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"acM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/camera{
+ c_tag = "Prison Common Room South";
+ dir = 1;
+ network = list("SS13","Prison")
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"acN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"acO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/button/door{
+ id = "permacell3";
+ normaldoorcontrol = 1;
+ pixel_y = -24;
+ req_access_txt = "1";
+ specialfunctions = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"acP" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/machinery/light,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"acQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"acR" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"acS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/button/door{
+ id = "permacell4";
+ normaldoorcontrol = 1;
+ pixel_y = -24;
+ req_access_txt = "1";
+ specialfunctions = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"acT" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile{
+ obj_integrity = 5000;
+ max_integrity = 5000;
+ name = "hardened window"
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/cable{
+ tag = "icon-0-8";
+ icon_state = "0-8"
+ },
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "permalock"
+ },
+/turf/open/floor/plating,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"acU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"acV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"acW" = (
+/turf/closed/wall/r_wall,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"acX" = (
+/obj/machinery/door/window{
+ base_state = "right";
+ dir = 4;
+ icon_state = "right";
+ name = "EVA Storage";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"acY" = (
+/turf/open/space,
+/turf/closed/wall/mineral/plastitanium{
+ dir = 1;
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/syndicate)
+"acZ" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "permacell";
+ name = "cell blast door"
+ },
+/obj/machinery/door/airlock/glass{
+ id_tag = "permacell3";
+ name = "Cell 3"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"ada" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "permacell";
+ name = "cell blast door"
+ },
+/obj/machinery/door/airlock/glass{
+ id_tag = "permacell4";
+ name = "Cell 4"
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"adb" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Prison Wing";
+ req_access_txt = "1"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"adc" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Prison Wing";
+ req_access_txt = "1"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"add" = (
+/obj/structure/closet/crate/bin,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ade" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/filingcabinet,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"adf" = (
+/obj/machinery/camera/autoname,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"adg" = (
+/obj/structure/table,
+/obj/item/clothing/under/rank/prisoner,
+/obj/item/clothing/under/rank/prisoner,
+/obj/item/clothing/under/rank/prisoner,
+/obj/item/clothing/under/rank/prisoner,
+/obj/item/clothing/under/rank/prisoner,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"adh" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/prisoner,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"adi" = (
+/obj/item/device/radio/intercom{
+ desc = "Talk through this. Evilly";
+ freerange = 1;
+ frequency = 1213;
+ name = "Syndicate Intercom";
+ pixel_x = -32;
+ subspace_transmission = 1;
+ syndie = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"adj" = (
+/obj/structure/lattice,
+/turf/open/space,
+/area/space/nearstation)
+"adk" = (
+/obj/structure/table,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/obj/machinery/button/door{
+ id = "permacell3";
+ normaldoorcontrol = 1;
+ pixel_y = 24;
+ specialfunctions = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Prison Cell 3";
+ network = list("SS13","Prison")
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"adl" = (
+/obj/structure/table,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/obj/machinery/button/door{
+ id = "permacell4";
+ normaldoorcontrol = 1;
+ pixel_y = 24;
+ specialfunctions = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Prison Cell 4";
+ network = list("SS13","Prison")
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"adm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/poddoor/preopen{
+ id = "permalock"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"adn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/poddoor/preopen{
+ id = "permalock"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/processing{
+ name = "Permabrig"
+ })
+"ado" = (
+/turf/open/floor/plasteel/red/side{
+ dir = 5
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"adp" = (
+/obj/structure/table,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/weapon/storage/box/zipties,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"adq" = (
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"adr" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ads" = (
+/turf/closed/mineral/random/labormineral,
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"adt" = (
+/obj/machinery/sleeper/syndie{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"adu" = (
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"adv" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"adw" = (
+/obj/structure/tank_dispenser/oxygen,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"adx" = (
+/obj/structure/table,
+/obj/item/stack/medical/ointment,
+/obj/item/stack/medical/bruise_pack,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -5;
+ pixel_y = 30
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"ady" = (
+/obj/structure/table,
+/obj/item/weapon/stock_parts/cell/high{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/stock_parts/cell/high,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"adz" = (
+/obj/structure/table,
+/obj/item/weapon/screwdriver{
+ pixel_y = 9
+ },
+/obj/item/device/assembly/voice{
+ pixel_y = 3
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"adA" = (
+/obj/structure/table,
+/obj/item/weapon/wrench,
+/obj/item/device/assembly/infra,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"adB" = (
+/obj/structure/table,
+/obj/item/device/assembly/signaler,
+/obj/item/device/assembly/signaler,
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"adC" = (
+/obj/structure/table,
+/obj/item/weapon/weldingtool/largetank{
+ pixel_y = 3
+ },
+/obj/item/device/multitool,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"adD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"adE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"adF" = (
+/obj/machinery/power/apc{
+ cell_type = 10000;
+ dir = 1;
+ name = "Permabrig APC";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ tag = "icon-0-8";
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"adG" = (
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"adH" = (
+/obj/structure/table,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/weapon/restraints/handcuffs,
+/obj/item/weapon/restraints/handcuffs,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"adI" = (
+/obj/structure/closet/secure_closet/brig,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"adJ" = (
+/obj/structure/bed/roller,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"adK" = (
+/obj/structure/sign/bluecross_2,
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate)
+"adL" = (
+/obj/structure/table,
+/obj/item/weapon/storage/toolbox/syndicate,
+/obj/item/weapon/crowbar/red,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"adM" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/obj/structure/closet,
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"adN" = (
+/obj/machinery/light/small,
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"adO" = (
+/obj/structure/bed,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Permabrig"
+ })
+"adP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"adQ" = (
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"adR" = (
+/obj/machinery/door/window{
+ dir = 4;
+ name = "Infirmary";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"adS" = (
+/obj/machinery/door/window/westright{
+ name = "Tool Storage";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"adT" = (
+/turf/closed/wall/r_wall,
+/area/medical/virology)
+"adU" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/medical/virology)
+"adV" = (
+/obj/structure/lattice,
+/turf/open/space,
+/area/medical/virology)
+"adW" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"adX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"adY" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"adZ" = (
+/obj/structure/table,
+/obj/item/weapon/storage/fancy/donut_box,
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aea" = (
+/obj/machinery/computer/prisoner,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aeb" = (
+/obj/machinery/computer/secure_data,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aec" = (
+/obj/machinery/door/window{
+ base_state = "right";
+ dir = 4;
+ icon_state = "right";
+ name = "Infirmary";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"aed" = (
+/obj/machinery/door/window{
+ dir = 8;
+ name = "Tool Storage";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"aee" = (
+/obj/machinery/recharge_station,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"aef" = (
+/mob/living/carbon/monkey,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"aeg" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"aeh" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"aei" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aej" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aek" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ael" = (
+/obj/structure/sign/biohazard{
+ pixel_y = 32
+ },
+/obj/machinery/shower{
+ icon_state = "shower";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aem" = (
+/obj/structure/sink{
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aen" = (
+/obj/structure/sign/securearea{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/machinery/shower{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aeo" = (
+/turf/closed/wall,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aep" = (
+/obj/machinery/camera/autoname,
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aeq" = (
+/obj/structure/table,
+/obj/item/weapon/paper,
+/obj/item/weapon/reagent_containers/food/snacks/donut/jelly,
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aer" = (
+/obj/item/clothing/gloves/color/latex,
+/obj/item/clothing/mask/surgical,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/structure/table/glass,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/plasteel/whitered/side{
+ dir = 9
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aes" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/red,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/plasteel/whitered/side{
+ tag = "icon-whitered (NORTH)";
+ icon_state = "whitered";
+ dir = 1
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aet" = (
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/firstaid/regular,
+/obj/structure/table/glass,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/plasteel/whitered/side{
+ dir = 1
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aeu" = (
+/turf/open/floor/plating/asteroid/airless,
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"aev" = (
+/obj/machinery/porta_turret/syndicate{
+ dir = 5
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate)
+"aew" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/item/bodypart/r_arm/robot,
+/obj/item/bodypart/l_arm/robot,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"aex" = (
+/obj/machinery/door/window{
+ dir = 1;
+ name = "Surgery";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"aey" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"aez" = (
+/obj/structure/table,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/firstaid/brute,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"aeA" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/firstaid/fire,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"aeB" = (
+/obj/structure/table,
+/obj/item/device/sbeacondrop/bomb{
+ pixel_y = 5
+ },
+/obj/item/device/sbeacondrop/bomb,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"aeC" = (
+/obj/structure/table,
+/obj/item/weapon/grenade/syndieminibomb{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/obj/item/weapon/grenade/syndieminibomb{
+ pixel_x = -1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"aeD" = (
+/obj/machinery/recharge_station,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"aeE" = (
+/obj/structure/bed/roller,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"aeF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/mob/living/carbon/monkey,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"aeG" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"aeH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/mob/living/carbon/monkey,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"aeI" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/medical/virology)
+"aeJ" = (
+/obj/item/weapon/storage/box/beakers{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/box/syringes,
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 1;
+ name = "Virology APC";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 9
+ },
+/area/medical/virology)
+"aeK" = (
+/obj/item/weapon/book/manual/wiki/infections{
+ pixel_y = 7
+ },
+/obj/item/weapon/reagent_containers/syringe/antiviral,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 5
+ },
+/area/medical/virology)
+"aeL" = (
+/obj/machinery/smartfridge/chemistry/virology/preloaded,
+/obj/machinery/airalarm{
+ frequency = 1439;
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/whitegreen,
+/area/medical/virology)
+"aeM" = (
+/obj/machinery/reagentgrinder{
+ pixel_y = 8
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 9
+ },
+/area/medical/virology)
+"aeN" = (
+/obj/item/clothing/gloves/color/latex,
+/obj/item/device/healthanalyzer,
+/obj/item/clothing/glasses/hud/health,
+/obj/structure/reagent_dispensers/virusfood{
+ density = 0;
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 5
+ },
+/area/medical/virology)
+"aeO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aeP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aeQ" = (
+/obj/machinery/doorButtons/access_button{
+ idDoor = "virology_airlock_interior2";
+ idSelf = "virology_airlock_control2";
+ name = "Virology Access Button";
+ pixel_x = 26;
+ pixel_y = 28;
+ req_access_txt = "3"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aeR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/virology{
+ autoclose = 0;
+ frequency = 1449;
+ icon_state = "door_locked";
+ id_tag = "virology_airlock_interior2";
+ locked = 1;
+ name = "Virology Interior Airlock";
+ req_access_txt = "39"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aeS" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/doorButtons/access_button{
+ idDoor = "virology_airlock_interior2";
+ idSelf = "virology_airlock_control2";
+ name = "Virology Access Button";
+ pixel_x = -26;
+ pixel_y = 28;
+ req_access_txt = "3"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aeT" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aeU" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aeV" = (
+/obj/machinery/doorButtons/access_button{
+ idDoor = "virology_airlock_exterior2";
+ idSelf = "virology_airlock_control2";
+ name = "Virology Access Button";
+ pixel_x = 0;
+ pixel_y = 24;
+ req_access_txt = "3"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/virology{
+ autoclose = 0;
+ frequency = 1449;
+ icon_state = "door_locked";
+ id_tag = "virology_airlock_exterior2";
+ locked = 1;
+ name = "Virology Exterior Airlock";
+ req_access_txt = "39"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aeW" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aeX" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/mob/living/simple_animal/bot/secbot/pingsky,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aeY" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aeZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"afa" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"afb" = (
+/obj/structure/table,
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"afc" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plasteel/whitered/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"afd" = (
+/turf/open/floor/plasteel/white,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"afe" = (
+/obj/machinery/iv_drip,
+/obj/item/weapon/reagent_containers/blood/empty,
+/turf/open/floor/plasteel/whitered/side{
+ dir = 4
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aff" = (
+/obj/structure/table,
+/obj/item/weapon/surgicaldrill,
+/obj/item/weapon/circular_saw,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"afg" = (
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/obj/structure/mirror{
+ pixel_x = 30
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"afh" = (
+/obj/machinery/nuclearbomb/syndicate,
+/obj/machinery/door/window{
+ dir = 1;
+ name = "Secure Storage";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"afi" = (
+/obj/machinery/telecomms/allinone{
+ intercept = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"afj" = (
+/turf/closed/wall,
+/area/medical/virology)
+"afk" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/medical/virology)
+"afl" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_virology{
+ name = "Test Subject Cell";
+ req_access_txt = "39"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"afm" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/medical/virology)
+"afn" = (
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 9
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/table/glass,
+/obj/structure/sign/deathsposal{
+ pixel_x = -30;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 8
+ },
+/area/medical/virology)
+"afo" = (
+/obj/structure/chair/office/light{
+ dir = 1;
+ pixel_y = 3
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/whitegreen/corner{
+ dir = 4
+ },
+/area/medical/virology)
+"afp" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 1
+ },
+/area/medical/virology)
+"afq" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Virologist"
+ },
+/turf/open/floor/plasteel/whitegreen/corner{
+ dir = 1
+ },
+/area/medical/virology)
+"afr" = (
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/pen/red,
+/obj/machinery/requests_console{
+ department = "Virology";
+ name = "Virology Requests Console";
+ pixel_x = 29;
+ pixel_y = 0
+ },
+/obj/item/stack/sheet/mineral/plasma{
+ layer = 2.9
+ },
+/obj/item/stack/sheet/mineral/plasma{
+ layer = 2.9
+ },
+/obj/item/stack/sheet/mineral/plasma{
+ layer = 2.9
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 4
+ },
+/area/medical/virology)
+"afs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aft" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"afu" = (
+/obj/machinery/doorButtons/airlock_controller{
+ idExterior = "virology_airlock_exterior2";
+ idInterior = "virology_airlock_interior2";
+ idSelf = "virology_airlock_control2";
+ name = "Virology Access Console";
+ pixel_x = 22;
+ pixel_y = 8;
+ req_access_txt = "3"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"afv" = (
+/obj/structure/closet/emcloset,
+/obj/item/device/radio/intercom{
+ pixel_x = -28;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"afw" = (
+/obj/machinery/camera{
+ c_tag = "Virology - Airlock";
+ dir = 1;
+ network = list("SS13","Medbay")
+ },
+/obj/machinery/light,
+/obj/structure/closet/l3closet,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel/white,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"afx" = (
+/obj/structure/closet/l3closet,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"afy" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/red/side,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"afz" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"afA" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"afB" = (
+/obj/machinery/door/window/westleft{
+ base_state = "left";
+ dir = 8;
+ icon_state = "left";
+ name = "Brig Infirmary";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/whitered/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"afC" = (
+/obj/structure/bed/roller,
+/obj/item/clothing/suit/straight_jacket,
+/turf/open/floor/plasteel/whitered/side{
+ dir = 4
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"afD" = (
+/obj/structure/table,
+/obj/item/weapon/cautery,
+/obj/item/weapon/scalpel,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"afE" = (
+/obj/structure/table/optable,
+/obj/item/weapon/surgical_drapes,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"afF" = (
+/obj/structure/table,
+/obj/item/weapon/retractor,
+/obj/item/weapon/hemostat,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"afG" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/shuttle/syndicate)
+"afH" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"afI" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/obj/item/stack/rods{
+ amount = 50
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"afJ" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/space/syndicate/black/red,
+/obj/item/clothing/head/helmet/space/syndicate/black/red,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"afK" = (
+/obj/item/device/radio/intercom{
+ pixel_x = -28;
+ pixel_y = 0
+ },
+/obj/machinery/airalarm{
+ frequency = 1439;
+ pixel_y = 23
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/machinery/camera{
+ c_tag = "Virology - Cells";
+ dir = 4;
+ network = list("SS13","Medbay")
+ },
+/obj/machinery/chem_dispenser,
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 9
+ },
+/area/medical/virology)
+"afL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/iv_drip,
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 1
+ },
+/area/medical/virology)
+"afM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 1
+ },
+/area/medical/virology)
+"afN" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 1
+ },
+/area/medical/virology)
+"afO" = (
+/obj/structure/rack,
+/obj/item/weapon/crowbar/red,
+/obj/machinery/light_switch{
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/obj/item/weapon/wrench,
+/obj/item/weapon/restraints/handcuffs,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 5
+ },
+/area/medical/virology)
+"afP" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/medical/virology)
+"afQ" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 8
+ },
+/area/medical/virology)
+"afR" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"afS" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"afT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"afU" = (
+/obj/machinery/computer/pandemic{
+ layer = 2.5;
+ pixel_x = -4
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 4
+ },
+/area/medical/virology)
+"afV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/medical/virology)
+"afW" = (
+/obj/structure/sign/biohazard,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"afX" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Virology Transfer";
+ req_access_txt = "3"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"afY" = (
+/obj/structure/sign/biohazard,
+/turf/closed/wall/r_wall,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"afZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/sign/electricshock{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aga" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"agb" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/bodycontainer/morgue,
+/turf/open/floor/plasteel/whitered/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"agc" = (
+/turf/closed/mineral/random/low_chance,
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"agd" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "propulsion_l"
+ },
+/turf/open/floor/plating,
+/area/shuttle/syndicate)
+"age" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/open/floor/plating,
+/area/shuttle/syndicate)
+"agf" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "propulsion_r"
+ },
+/turf/open/floor/plating,
+/area/shuttle/syndicate)
+"agg" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/beakers,
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 8
+ },
+/area/medical/virology)
+"agh" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"agi" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"agj" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"agk" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 4
+ },
+/area/medical/virology)
+"agl" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_virology{
+ name = "Containment Cells";
+ req_access_txt = "39"
+ },
+/turf/open/floor/plasteel/whitegreen,
+/area/medical/virology)
+"agm" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 8
+ },
+/area/medical/virology)
+"agn" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"ago" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"agp" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"agq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 4
+ },
+/area/medical/virology)
+"agr" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/virology{
+ name = "Virology Access";
+ req_access_txt = "39"
+ },
+/turf/open/floor/plasteel/whitegreen,
+/area/medical/virology)
+"ags" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 6
+ },
+/area/medical/virology)
+"agt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 1
+ },
+/area/medical/virology)
+"agu" = (
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 10
+ },
+/area/medical/virology)
+"agv" = (
+/obj/structure/closet/secure_closet/warden,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"agw" = (
+/obj/structure/closet/secure_closet/armory3,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"agx" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"agy" = (
+/obj/structure/table,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/pen,
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching Prison Wing holding areas.";
+ name = "Prison Monitor";
+ network = list("Prison");
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"agz" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"agA" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/prisoner,
+/obj/item/weapon/card/id/prisoner,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"agB" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plating,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"agC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"agD" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/bodycontainer/morgue,
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/whitered/side{
+ dir = 10
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"agE" = (
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/whitered/side,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"agF" = (
+/obj/machinery/sleeper{
+ icon_state = "sleeper-open";
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/whitered/side{
+ dir = 6
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"agG" = (
+/obj/machinery/light/small,
+/turf/open/floor/plating/airless/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/fore)
+"agH" = (
+/turf/open/floor/plating/airless/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/fore)
+"agI" = (
+/turf/closed/mineral/random/high_chance,
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"agJ" = (
+/turf/open/space,
+/obj/machinery/porta_turret/syndicate{
+ dir = 6
+ },
+/turf/closed/wall/mineral/plastitanium{
+ dir = 4;
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/syndicate)
+"agK" = (
+/turf/open/space,
+/obj/machinery/porta_turret/syndicate{
+ dir = 10
+ },
+/turf/closed/wall/mineral/plastitanium{
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/syndicate)
+"agL" = (
+/obj/structure/table/glass,
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 9
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -25;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 10
+ },
+/area/medical/virology)
+"agM" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/whitegreen/side,
+/area/medical/virology)
+"agN" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitegreen/side,
+/area/medical/virology)
+"agO" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whitegreen/side,
+/area/medical/virology)
+"agP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 6
+ },
+/area/medical/virology)
+"agQ" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/open/floor/plating,
+/area/medical/virology)
+"agR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 10
+ },
+/area/medical/virology)
+"agS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitegreen/side,
+/area/medical/virology)
+"agT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whitegreen/side,
+/area/medical/virology)
+"agU" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/whitegreen/side,
+/area/medical/virology)
+"agV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/machinery/camera{
+ c_tag = "Virology - Lab";
+ dir = 8;
+ network = list("SS13","Medbay")
+ },
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/obj/machinery/light_switch{
+ pixel_x = 26;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 6
+ },
+/area/medical/virology)
+"agW" = (
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 8
+ },
+/area/medical/virology)
+"agX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"agY" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 4
+ },
+/area/medical/virology)
+"agZ" = (
+/obj/machinery/button/door{
+ id = "permalock";
+ name = "Perma Lockdown";
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aha" = (
+/obj/structure/chair/office/light,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ahb" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ahc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (WEST)";
+ icon_state = "intact";
+ dir = 8
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ahd" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (WEST)";
+ icon_state = "intact";
+ dir = 8
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ahe" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Brig Desk";
+ req_access_txt = "3"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (WEST)";
+ icon_state = "intact";
+ dir = 8
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ahf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (WEST)";
+ icon_state = "intact";
+ dir = 8
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ahg" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ahh" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (SOUTHWEST)";
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ahi" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Xenobio Transfer";
+ req_access_txt = "3"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ahj" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/button/door{
+ id = "misclab";
+ name = "Test Chamber Blast Doors";
+ pixel_x = 0;
+ pixel_y = 24;
+ req_access_txt = "0";
+ req_one_access_txt = "55; 3"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ahk" = (
+/turf/closed/wall,
+/area/maintenance/fore)
+"ahl" = (
+/obj/machinery/door/airlock/external{
+ name = "Mining Airlock";
+ req_access = null;
+ req_access_txt = "48"
+ },
+/turf/open/floor/noslip,
+/area/maintenance/fore)
+"ahm" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/structure/cable/yellow,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/medical/virology)
+"ahn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_virology{
+ name = "Isolation B";
+ req_access_txt = "39"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"aho" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_virology{
+ name = "Isolation A";
+ req_access_txt = "39"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"ahp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/closed/wall,
+/area/medical/virology)
+"ahq" = (
+/obj/structure/closet/wardrobe/virology_white,
+/obj/item/weapon/storage/backpack/satchel/vir,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/vault,
+/area/medical/virology)
+"ahr" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/weapon/reagent_containers/blood/empty,
+/obj/item/weapon/reagent_containers/blood/empty{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/weapon/reagent_containers/blood/AMinus,
+/obj/item/weapon/reagent_containers/blood/BMinus{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/weapon/reagent_containers/blood/BPlus{
+ pixel_x = 1;
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OPlus{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/weapon/reagent_containers/blood/random,
+/obj/item/weapon/reagent_containers/blood/random,
+/obj/item/weapon/reagent_containers/blood/random,
+/turf/open/floor/plasteel/vault,
+/area/medical/virology)
+"ahs" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/vault,
+/area/medical/virology)
+"aht" = (
+/obj/structure/closet/secure_closet/medical1,
+/turf/open/floor/plasteel/vault,
+/area/medical/virology)
+"ahu" = (
+/obj/structure/closet/l3closet/virology,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/vault,
+/area/medical/virology)
+"ahv" = (
+/obj/machinery/doorButtons/airlock_controller{
+ idExterior = "virology_airlock_exterior";
+ idInterior = "virology_airlock_interior";
+ idSelf = "virology_airlock_control";
+ name = "Virology Access Console";
+ pixel_x = 8;
+ pixel_y = -22;
+ req_access_txt = "39"
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ tag = "icon-whitegreen (NORTHEAST)";
+ icon_state = "whitegreen";
+ dir = 5
+ },
+/area/medical/virology)
+"ahw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/turf/open/floor/plasteel/whitegreen/side,
+/area/medical/virology)
+"ahx" = (
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 9
+ },
+/area/medical/virology)
+"ahy" = (
+/obj/machinery/computer/prisoner,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ahz" = (
+/obj/machinery/computer/security,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ahA" = (
+/obj/machinery/computer/secure_data,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ahB" = (
+/obj/structure/rack,
+/obj/item/weapon/storage/box/zipties,
+/obj/item/weapon/melee/baton,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ahC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ahD" = (
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ahE" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/sign/electricshock{
+ pixel_y = -32
+ },
+/turf/open/floor/plating,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ahF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ahG" = (
+/obj/machinery/power/apc{
+ cell_type = 10000;
+ dir = 2;
+ name = "Prisoner Processing APC";
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ahH" = (
+/obj/machinery/light,
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ahI" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ahJ" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/window/southleft{
+ dir = 1;
+ name = "Test Chamber";
+ req_access_txt = "3"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ahK" = (
+/obj/structure/sign/xeno_warning_mining{
+ pixel_x = -30
+ },
+/obj/structure/sign/vacuum{
+ pixel_x = 30
+ },
+/turf/open/floor/noslip,
+/area/maintenance/fore)
+"ahL" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/structure/closet/crate,
+/obj/item/weapon/storage/backpack/satchel/leather/withwallet,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ahM" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/obj/item/weapon/hatchet,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ahN" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ahO" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/closed/wall,
+/area/maintenance/fore)
+"ahP" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ahQ" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/structure/table,
+/obj/item/weapon/storage/belt,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ahR" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ahS" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/item/device/radio,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ahT" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/closet,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ahU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/weapon/bedsheet/medical,
+/obj/structure/bed,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"ahV" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"ahW" = (
+/obj/structure/bed,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/weapon/bedsheet/medical,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"ahX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/medical/virology)
+"ahY" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/virology{
+ name = "Break Room";
+ req_access_txt = "39"
+ },
+/turf/open/floor/plasteel/whitegreen,
+/area/medical/virology)
+"ahZ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/airlock/virology{
+ autoclose = 0;
+ frequency = 1449;
+ icon_state = "door_locked";
+ id_tag = "virology_airlock_interior";
+ locked = 1;
+ name = "Virology Interior Airlock";
+ req_access_txt = "39"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"aia" = (
+/obj/structure/sign/biohazard,
+/turf/closed/wall,
+/area/medical/virology)
+"aib" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aic" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plating,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aid" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Prisoner Processing";
+ req_access_txt = "2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aie" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Prisoner Processing";
+ req_access_txt = "2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aif" = (
+/obj/effect/decal/remains/human,
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/plating/asteroid/airless,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aig" = (
+/obj/item/clothing/mask/facehugger/dead,
+/obj/effect/decal/cleanable/xenoblood,
+/turf/open/floor/plating/asteroid/airless,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aih" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/airlock/glass_security{
+ name = "Xenobio Transfer";
+ req_access_txt = "3"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aii" = (
+/obj/item/stack/sheet/cardboard,
+/obj/item/weapon/pickaxe,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aij" = (
+/obj/structure/closet/cardboard,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aik" = (
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ail" = (
+/obj/machinery/door/airlock/maintenance_hatch,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aim" = (
+/obj/item/weapon/caution,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ain" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"aio" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"aip" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"aiq" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"air" = (
+/obj/structure/table/glass,
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/paper,
+/obj/item/weapon/pen/red,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 9
+ },
+/area/medical/virology)
+"ais" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 0;
+ pixel_y = 29
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 1
+ },
+/area/medical/virology)
+"ait" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 1
+ },
+/area/medical/virology)
+"aiu" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/machinery/light_switch{
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/obj/machinery/camera{
+ c_tag = "Virology - Break Room";
+ dir = 2;
+ network = list("SS13","Medbay")
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 1
+ },
+/area/medical/virology)
+"aiv" = (
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 29
+ },
+/obj/structure/table/glass,
+/obj/machinery/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 5
+ },
+/area/medical/virology)
+"aiw" = (
+/obj/structure/sink{
+ icon_state = "sink";
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/doorButtons/access_button{
+ idDoor = "virology_airlock_interior";
+ idSelf = "virology_airlock_control";
+ name = "Virology Access Button";
+ pixel_x = 8;
+ pixel_y = 28;
+ req_access_txt = "39"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"aix" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"aiy" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/camera{
+ c_tag = "Virology Airlock";
+ dir = 2;
+ network = list("SS13")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"aiz" = (
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aiA" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aiB" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aiC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aiD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ name = "regular air scrubber";
+ on = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aiE" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aiF" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/plating,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"aiG" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"aiH" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"aiI" = (
+/turf/closed/wall/r_wall,
+/area/toxins/xenobiology)
+"aiJ" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "misclab";
+ name = "test chamber blast door"
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"aiK" = (
+/obj/structure/sign/xeno_warning_mining{
+ pixel_x = -30
+ },
+/obj/structure/sign/vacuum{
+ pixel_x = 30
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aiL" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aiM" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aiN" = (
+/obj/structure/sign/pods,
+/turf/closed/wall,
+/area/maintenance/fore)
+"aiO" = (
+/obj/machinery/camera{
+ c_tag = "Security Escape Pod";
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aiP" = (
+/obj/structure/shuttle/engine/propulsion/burst{
+ dir = 8
+ },
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/pod_4)
+"aiQ" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/pod_4)
+"aiR" = (
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/item/weapon/reagent_containers/syringe,
+/obj/item/weapon/reagent_containers/glass/beaker,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"aiS" = (
+/obj/structure/table/glass,
+/obj/item/weapon/folder/white{
+ pixel_y = 4
+ },
+/obj/item/weapon/pen/red,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"aiT" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/closed/wall,
+/area/medical/virology)
+"aiU" = (
+/obj/structure/table/glass,
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 8
+ },
+/area/medical/virology)
+"aiV" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"aiW" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"aiX" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"aiY" = (
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 4
+ },
+/area/medical/virology)
+"aiZ" = (
+/obj/machinery/shower{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (EAST)";
+ icon_state = "camera";
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"aja" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"ajb" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/structure/closet/l3closet,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"ajc" = (
+/obj/machinery/door/airlock/glass_security{
+ id_tag = null;
+ name = "Prisoner Storage";
+ req_access_txt = "63"
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ajd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aje" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (WEST)";
+ icon_state = "intact";
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ajf" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/plating,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"ajg" = (
+/turf/open/floor/plating,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"ajh" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"aji" = (
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"ajj" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"ajk" = (
+/obj/machinery/camera{
+ c_tag = "Xenobiology Test Chamber";
+ dir = 2;
+ network = list("Xeno","RD");
+ pixel_x = 0
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"ajl" = (
+/obj/structure/statue/sandstone/assistant,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ajm" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ajn" = (
+/obj/structure/grille{
+ density = 0;
+ icon_state = "brokengrille"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ajo" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ajp" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ajq" = (
+/obj/structure/closet/crate/internals,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ajr" = (
+/obj/structure/closet/firecloset/full,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ajs" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ajt" = (
+/obj/structure/mopbucket,
+/obj/item/weapon/mop,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aju" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ajv" = (
+/obj/machinery/door/airlock/external{
+ name = "Escape Pod Four";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ajw" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Escape Pod Airlock"
+ },
+/obj/docking_port/mobile/pod{
+ dir = 4;
+ id = "pod4";
+ name = "escape pod 4";
+ port_angle = 180;
+ preferred_direction = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/pod_4)
+"ajx" = (
+/obj/item/device/radio/intercom{
+ pixel_y = 25
+ },
+/obj/item/weapon/storage/pod{
+ pixel_x = 6;
+ pixel_y = -32
+ },
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/pod_4)
+"ajy" = (
+/obj/machinery/computer/shuttle/pod{
+ pixel_y = -32;
+ possible_destinations = "pod_asteroid3";
+ shuttleId = "pod3"
+ },
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 3;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/pod_4)
+"ajz" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/pod_4)
+"ajA" = (
+/obj/docking_port/stationary/random{
+ dir = 4;
+ id = "pod_asteroid4";
+ name = "asteroid"
+ },
+/turf/open/space,
+/area/space/nearstation)
+"ajB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall/r_wall,
+/area/medical/virology)
+"ajC" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 10
+ },
+/area/medical/virology)
+"ajD" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whitegreen/side,
+/area/medical/virology)
+"ajE" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/whitegreen/side,
+/area/medical/virology)
+"ajF" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/whitegreen/side,
+/area/medical/virology)
+"ajG" = (
+/obj/structure/chair/stool,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 6
+ },
+/area/medical/virology)
+"ajH" = (
+/obj/structure/sink{
+ icon_state = "sink";
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"ajI" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"ajJ" = (
+/obj/structure/closet/l3closet,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"ajK" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ajL" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Brig Desk";
+ req_access_txt = "1"
+ },
+/obj/structure/cable{
+ icon_state = "2-4";
+ tag = "icon-2-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ajM" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ajN" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/closed/wall,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ajO" = (
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "innerbrig";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 9
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ajP" = (
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "innerbrig";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 5
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"ajQ" = (
+/obj/machinery/power/smes,
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/turf/open/floor/plating,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"ajR" = (
+/obj/machinery/power/terminal{
+ tag = "icon-term (WEST)";
+ icon_state = "term";
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/plating,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"ajS" = (
+/obj/item/weapon/storage/box/lights,
+/turf/open/floor/plating,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"ajT" = (
+/turf/closed/wall,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"ajU" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ajV" = (
+/obj/structure/disposaloutlet{
+ tag = "icon-outlet (WEST)";
+ icon_state = "outlet";
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"ajW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"ajX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"ajY" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/medical/virology)
+"ajZ" = (
+/obj/machinery/atmospherics/components/unary/tank/air{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault,
+/area/medical/virology)
+"aka" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1;
+ name = "virology air connector port"
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/plasteel/vault,
+/area/medical/virology)
+"akb" = (
+/obj/item/trash/popcorn,
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/vault,
+/area/medical/virology)
+"akc" = (
+/obj/item/weapon/reagent_containers/food/snacks/sosjerky,
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/vault,
+/area/medical/virology)
+"akd" = (
+/obj/item/trash/cheesie{
+ pixel_y = 4
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/vault,
+/area/medical/virology)
+"ake" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/virology{
+ autoclose = 0;
+ frequency = 1449;
+ icon_state = "door_locked";
+ id_tag = "virology_airlock_exterior";
+ locked = 1;
+ name = "Virology Exterior Airlock";
+ req_access_txt = "39"
+ },
+/obj/machinery/doorButtons/access_button{
+ idDoor = "virology_airlock_exterior";
+ idSelf = "virology_airlock_control";
+ name = "Virology Access Button";
+ pixel_x = -24;
+ pixel_y = 0;
+ req_access_txt = "39"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"akf" = (
+/obj/structure/sign/biohazard,
+/turf/closed/wall/r_wall,
+/area/medical/virology)
+"akg" = (
+/obj/structure/closet/secure_closet/brig,
+/turf/open/floor/plasteel,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"akh" = (
+/obj/machinery/button/door{
+ id = "briggate";
+ name = "Desk Shutters";
+ pixel_x = -26;
+ pixel_y = 6;
+ req_access_txt = "0"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/button/flasher{
+ id = "brigentry";
+ pixel_x = -28;
+ pixel_y = -8
+ },
+/turf/open/floor/plasteel/black,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aki" = (
+/obj/machinery/computer/secure_data,
+/turf/open/floor/plasteel/black,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"akj" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "briggate";
+ name = "security shutters"
+ },
+/obj/machinery/door/window/eastleft{
+ name = "Brig Desk";
+ req_access_txt = "1"
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/turf/open/floor/plasteel/black,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"akk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 9
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"akl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 5
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"akm" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"akn" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/open/floor/plating,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"ako" = (
+/obj/item/weapon/extinguisher,
+/turf/open/floor/plating,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"akp" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"akq" = (
+/turf/closed/mineral,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"akr" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aks" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"akt" = (
+/turf/closed/wall/r_wall,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"aku" = (
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"akv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"akw" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/button/door{
+ desc = "A remote control switch for the medbay foyer.";
+ id = "outerbrig";
+ name = "Brig Exterior Doors Control";
+ normaldoorcontrol = 1;
+ pixel_x = -26;
+ pixel_y = -5;
+ req_access_txt = "63"
+ },
+/obj/machinery/button/door{
+ desc = "A remote control switch for the medbay foyer.";
+ id = "innerbrig";
+ name = "Brig Interior Doors Control";
+ normaldoorcontrol = 1;
+ pixel_x = -26;
+ pixel_y = 5;
+ req_access_txt = "63"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"akx" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"aky" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "briggate";
+ name = "security shutters"
+ },
+/obj/machinery/door/window/eastright{
+ name = "Brig Desk";
+ req_access_txt = "2"
+ },
+/obj/item/weapon/restraints/handcuffs,
+/obj/item/device/radio/off,
+/turf/open/floor/plasteel/black,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"akz" = (
+/obj/machinery/flasher{
+ id = "brigentry";
+ pixel_x = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 5
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"akA" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"akB" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"akC" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/turf/open/floor/plating,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"akD" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE"
+ },
+/turf/closed/wall/r_wall,
+/area/toxins/xenobiology)
+"akE" = (
+/obj/structure/disposaloutlet{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"akF" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"akG" = (
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"akH" = (
+/obj/structure/flora/rock/pile,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"akI" = (
+/obj/structure/flora/grass/green,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"akJ" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Fore Maintenance APC";
+ pixel_x = -25;
+ pixel_y = 3
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"akK" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"akL" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"akM" = (
+/obj/structure/closet/crate/bin,
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"akN" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"akO" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"akP" = (
+/turf/closed/wall,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"akQ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "briggate";
+ name = "security shutters"
+ },
+/obj/machinery/door/window/southleft{
+ name = "Brig Desk";
+ req_access_txt = "1"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = ""
+ },
+/obj/structure/sign/electricshock{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/black,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"akR" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "briggate";
+ name = "security shutters"
+ },
+/obj/machinery/door/window/southleft{
+ base_state = "right";
+ icon_state = "right";
+ name = "Brig Desk";
+ req_access_txt = "1"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"akS" = (
+/obj/structure/grille,
+/obj/machinery/door/poddoor/preopen{
+ id = "briggate";
+ name = "security blast door"
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"akT" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "outerbrig";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 9
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"akU" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "outerbrig";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 5
+ },
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"akV" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE"
+ },
+/turf/closed/wall/r_wall,
+/area/security/processing{
+ name = "Prisoner Processing"
+ })
+"akW" = (
+/obj/machinery/door/airlock/maintenance_hatch,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"akX" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/shieldwallgen{
+ req_access = list(55)
+ },
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"akY" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "misclab";
+ name = "test chamber blast door"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"akZ" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "misclab";
+ name = "test chamber blast door"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"ala" = (
+/obj/machinery/door/window/southleft{
+ dir = 1;
+ name = "Test Chamber";
+ req_access_txt = "55"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "misclab";
+ name = "test chamber blast door"
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"alb" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "misclab";
+ name = "test chamber blast door"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"alc" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "misclab";
+ name = "test chamber blast door"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"ald" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/flora/grass/green,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"ale" = (
+/obj/structure/cable{
+ icon_state = "2-4";
+ tag = "icon-2-8"
+ },
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"alf" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"alg" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Sleeping Room 3 APC";
+ pixel_y = -24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/grass,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 3"
+ })
+"alh" = (
+/obj/machinery/light,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"ali" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"alj" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"alk" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"all" = (
+/turf/closed/wall,
+/area/crew_quarters/sleep)
+"alm" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/closet/lasertag/blue,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aln" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"alo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"alp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (WEST)";
+ icon_state = "intact";
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"alq" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"alr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"als" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"alt" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"alu" = (
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"alv" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"alw" = (
+/obj/item/weapon/wrench,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"alx" = (
+/obj/machinery/computer/security/telescreen{
+ name = "Test Chamber Moniter";
+ network = list("Xeno");
+ pixel_x = 0;
+ pixel_y = 2
+ },
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"aly" = (
+/obj/machinery/button/door{
+ id = "misclab";
+ name = "Test Chamber Blast Doors";
+ pixel_x = 0;
+ pixel_y = -2;
+ req_access_txt = "55"
+ },
+/obj/structure/table/reinforced,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"alz" = (
+/obj/machinery/door/window/southleft{
+ name = "Test Chamber";
+ req_access_txt = "55"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"alA" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"alB" = (
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/glasses/science,
+/obj/item/clothing/glasses/science,
+/obj/structure/table,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"alC" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"alD" = (
+/obj/structure/rack,
+/obj/item/device/paicard,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"alE" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"alF" = (
+/turf/closed/wall,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 3"
+ })
+"alG" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/tinted/fulltile,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 3"
+ })
+"alH" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"alI" = (
+/obj/structure/table,
+/obj/item/weapon/coin/iron,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"alJ" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"alK" = (
+/obj/structure/closet/wardrobe/mixed,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"alL" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/button/door{
+ id = "bunk1";
+ name = "Bunk Bolt Control 1";
+ normaldoorcontrol = 1;
+ pixel_x = -25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"alM" = (
+/obj/machinery/door/airlock{
+ id_tag = "bunk1";
+ name = "Bunk 1"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"alN" = (
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"alO" = (
+/obj/machinery/door/airlock{
+ id_tag = "bunk2";
+ name = "Bunk 2"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"alP" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/button/door{
+ id = "bunk2";
+ name = "Bunk Bolt Control 2";
+ normaldoorcontrol = 1;
+ pixel_x = 25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"alQ" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/closet/lasertag/red,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"alR" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/pod_3)
+"alS" = (
+/obj/structure/shuttle/engine/propulsion/burst{
+ dir = 4;
+ icon_state = "propulsion";
+ tag = "icon-propulsion (WEST)"
+ },
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/pod_3)
+"alT" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"alU" = (
+/obj/structure/sign/pods,
+/turf/closed/wall,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"alV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"alW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (WEST)";
+ icon_state = "intact";
+ dir = 8
+ },
+/obj/machinery/camera/autoname,
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"alX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (WEST)";
+ icon_state = "intact";
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"alY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"alZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"ama" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"amb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"amc" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"amd" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (SOUTHWEST)";
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"ame" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"amf" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Xenobiology Lab";
+ req_access_txt = "55"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"amg" = (
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"amh" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"ami" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"amj" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"amk" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (SOUTHWEST)";
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"aml" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"amm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 9
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"amn" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 5
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"amo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"amp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 3"
+ })
+"amq" = (
+/obj/structure/dresser,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 3"
+ })
+"amr" = (
+/obj/item/device/radio/intercom{
+ name = "Station Intercom";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 3"
+ })
+"ams" = (
+/obj/structure/chair/stool,
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 3"
+ })
+"amt" = (
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 3"
+ })
+"amu" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/orange,
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 3"
+ })
+"amv" = (
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"amw" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"amx" = (
+/obj/machinery/portable_atmospherics/pump,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"amy" = (
+/obj/docking_port/stationary/random{
+ dir = 8;
+ id = "pod_asteroid2";
+ name = "asteroid"
+ },
+/turf/open/space,
+/area/space)
+"amz" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/pod_3)
+"amA" = (
+/obj/machinery/computer/shuttle/pod{
+ pixel_x = 0;
+ pixel_y = -32;
+ possible_destinations = "pod_asteroid2";
+ shuttleId = "pod2"
+ },
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 3;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/pod_3)
+"amB" = (
+/obj/item/weapon/storage/pod{
+ pixel_x = 6;
+ pixel_y = -28
+ },
+/obj/item/device/radio/intercom{
+ pixel_x = 0;
+ pixel_y = 25
+ },
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/pod_3)
+"amC" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Escape Pod Airlock"
+ },
+/obj/docking_port/mobile/pod{
+ dir = 8;
+ id = "pod3";
+ name = "escape pod 3";
+ port_angle = 180
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/pod_3)
+"amD" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 1;
+ name = "Escape Pod Three"
+ },
+/turf/open/floor/plating,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"amE" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"amF" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"amG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"amH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"amI" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"amJ" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"amK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"amL" = (
+/obj/machinery/door/airlock/highsecurity{
+ name = "Secure Workstations";
+ req_access_txt = "0";
+ req_one_access_txt = "39; 63; 55; 19"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"amM" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"amN" = (
+/turf/closed/wall,
+/area/toxins/xenobiology)
+"amO" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/droneDispenser,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"amP" = (
+/obj/structure/rack,
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"amQ" = (
+/obj/structure/table,
+/obj/item/drone_shell,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"amR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"amS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"amT" = (
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"amU" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ id_tag = "cabin3";
+ name = "Cabin 3"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 3"
+ })
+"amV" = (
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 3"
+ })
+"amW" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 3"
+ })
+"amX" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"amY" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/button/door{
+ id = "bunk3";
+ name = "Bunk Bolt Control 3";
+ normaldoorcontrol = 1;
+ pixel_x = -25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"amZ" = (
+/obj/machinery/door/airlock{
+ id_tag = "bunk3";
+ name = "Bunk 3"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"ana" = (
+/obj/machinery/door/airlock{
+ id_tag = "bunk4";
+ name = "Bunk 4"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"anb" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/button/door{
+ id = "bunk4";
+ name = "Bunk Bolt Control 4";
+ normaldoorcontrol = 1;
+ pixel_x = 25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"anc" = (
+/obj/structure/closet/crate/engineering,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"and" = (
+/obj/machinery/camera{
+ c_tag = "Arrivals Escape Pod 3";
+ dir = 8
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"ane" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"anf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"ang" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"anh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"ani" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/medical1,
+/obj/structure/sign/securearea{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"anj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"ank" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Xenobiology APC";
+ pixel_x = -25
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"anl" = (
+/obj/machinery/camera{
+ c_tag = "Custodial Closet"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"anm" = (
+/obj/machinery/monkey_recycler,
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"ann" = (
+/obj/machinery/processor{
+ desc = "A machine used to process slimes and retrieve their extract.";
+ name = "Slime Processor"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"ano" = (
+/obj/machinery/smartfridge/extract/preloaded,
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"anp" = (
+/obj/structure/table,
+/obj/machinery/reagentgrinder,
+/obj/machinery/airalarm{
+ frequency = 1439;
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"anq" = (
+/obj/structure/closet/l3closet/scientist,
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"anr" = (
+/obj/structure/closet/l3closet/scientist,
+/obj/machinery/light_switch{
+ pixel_x = 0;
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"ans" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTH)";
+ icon_state = "camera";
+ dir = 1
+ },
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"ant" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Sleeping Room 4 APC";
+ pixel_y = -24
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/grass,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 4"
+ })
+"anu" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"anv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"anw" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"anx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"any" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 3"
+ })
+"anz" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ name = "regular air vent";
+ on = 1
+ },
+/obj/machinery/button/door{
+ id = "cabin3";
+ name = "Cabin Bolt Control 3";
+ normaldoorcontrol = 1;
+ pixel_x = -25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 3"
+ })
+"anA" = (
+/obj/machinery/light,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 3"
+ })
+"anB" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 3"
+ })
+"anC" = (
+/obj/structure/grille{
+ density = 0;
+ icon_state = "brokengrille"
+ },
+/obj/item/weapon/shard,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"anD" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"anE" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"anF" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
+ name = "KEEP CLEAR: DOCKING AREA";
+ pixel_y = 0
+ },
+/turf/closed/wall/r_wall,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"anG" = (
+/obj/machinery/door/airlock/external,
+/turf/open/floor/noslip,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"anH" = (
+/turf/open/floor/carpet,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"anI" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"anJ" = (
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"anK" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"anL" = (
+/turf/open/floor/plasteel{
+ icon_state = "delivery"
+ },
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"anM" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ tag = "icon-manifold (WEST)";
+ icon_state = "manifold";
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet/chemical,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"anN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"anO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Xenobiology Maintenance";
+ req_access_txt = "55"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"anP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"anQ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"anR" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"anS" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"anT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"anU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"anV" = (
+/turf/closed/wall,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 4"
+ })
+"anW" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/tinted/fulltile,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 4"
+ })
+"anX" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"anY" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"anZ" = (
+/obj/machinery/door/window/northright,
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 3"
+ })
+"aoa" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aob" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aoc" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/button/door{
+ id = "bunk5";
+ name = "Bunk Bolt Control 5";
+ normaldoorcontrol = 1;
+ pixel_x = -25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"aod" = (
+/obj/machinery/door/airlock{
+ id_tag = "bunk5";
+ name = "Bunk 5"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"aoe" = (
+/obj/machinery/door/airlock{
+ id_tag = "bunk6";
+ name = "Bunk 6"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"aof" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/button/door{
+ id = "bunk6";
+ name = "Bunk Bolt Control 6";
+ normaldoorcontrol = 1;
+ pixel_x = 25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"aog" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"aoh" = (
+/turf/open/floor/noslip,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"aoi" = (
+/obj/machinery/vending/cola,
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"aoj" = (
+/obj/machinery/vending/snack,
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"aok" = (
+/obj/machinery/vending/coffee,
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"aol" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp/green,
+/turf/open/floor/carpet,
+/area/construction/hallway{
+ name = "Secure Workstations Common Area"
+ })
+"aom" = (
+/turf/closed/wall/r_wall,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"aon" = (
+/obj/machinery/door/airlock/highsecurity{
+ name = "Secure Workstations";
+ req_access_txt = "0";
+ req_one_access_txt = "39; 63; 55; 19"
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"aoo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/closet/crate/freezer/surplus_limbs,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"aop" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"aoq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/toxins/xenobiology)
+"aor" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"aos" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/chair/comfy/black,
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"aot" = (
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/chair/comfy/black,
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"aou" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"aov" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"aow" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"aox" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"aoy" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/patriot,
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 4"
+ })
+"aoz" = (
+/obj/structure/dresser,
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 4"
+ })
+"aoA" = (
+/obj/structure/chair/stool,
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 4"
+ })
+"aoB" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/table/wood,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 4"
+ })
+"aoC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 4"
+ })
+"aoD" = (
+/obj/structure/flora/grass/green,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aoE" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aoF" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aoG" = (
+/obj/item/weapon/storage/secure/safe{
+ pixel_x = 32
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 3"
+ })
+"aoH" = (
+/obj/structure/toilet,
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 3"
+ })
+"aoI" = (
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 3"
+ })
+"aoJ" = (
+/obj/effect/landmark{
+ name = "carpspawn"
+ },
+/turf/open/space,
+/area/space/nearstation)
+"aoK" = (
+/obj/structure/sign/securearea{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel{
+ icon_state = "delivery"
+ },
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"aoL" = (
+/turf/open/floor/plasteel{
+ icon_state = "delivery"
+ },
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"aoM" = (
+/turf/closed/wall,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"aoN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/closed/wall,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"aoO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance_hatch,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"aoP" = (
+/obj/structure/closet/crate/bin,
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"aoQ" = (
+/obj/machinery/computer/camera_advanced/xenobio,
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"aoR" = (
+/obj/machinery/light,
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/monkeycubes,
+/obj/item/weapon/storage/box/monkeycubes,
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"aoS" = (
+/obj/structure/table/glass,
+/obj/item/weapon/folder/white,
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"aoT" = (
+/obj/structure/table,
+/obj/item/weapon/extinguisher{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/weapon/extinguisher,
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"aoU" = (
+/obj/structure/table,
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science Requests Console";
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"aoV" = (
+/obj/structure/table,
+/obj/item/stack/sheet/mineral/plasma{
+ layer = 2.9
+ },
+/obj/item/stack/sheet/mineral/plasma{
+ layer = 2.9
+ },
+/obj/item/stack/sheet/mineral/plasma{
+ layer = 2.9
+ },
+/obj/machinery/light,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -29
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"aoW" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/beakers{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/box/syringes,
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"aoX" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"aoY" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/closet,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aoZ" = (
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 4"
+ })
+"apa" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ id_tag = "cabin4";
+ name = "Cabin 4"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 4"
+ })
+"apb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"apc" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 3"
+ })
+"apd" = (
+/obj/machinery/shower{
+ tag = "icon-shower (NORTH)";
+ icon_state = "shower";
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 3"
+ })
+"ape" = (
+/obj/machinery/light/small,
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 3"
+ })
+"apf" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"apg" = (
+/obj/effect/spawner/lootdrop/crate_spawner,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aph" = (
+/obj/structure/closet/crate,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"api" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/button/door{
+ id = "bunk7";
+ name = "Bunk Bolt Control 7";
+ normaldoorcontrol = 1;
+ pixel_x = -25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"apj" = (
+/obj/machinery/door/airlock{
+ id_tag = "bunk7";
+ name = "Bunk 7"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"apk" = (
+/obj/machinery/door/airlock{
+ id_tag = "bunk8";
+ name = "Bunk 8"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"apl" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/button/door{
+ id = "bunk8";
+ name = "Bunk Bolt Control 8";
+ normaldoorcontrol = 1;
+ pixel_x = 25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"apm" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/abandoned)
+"apn" = (
+/obj/machinery/door/airlock/titanium,
+/obj/docking_port/mobile{
+ dheight = 0;
+ dir = 2;
+ dwidth = 11;
+ height = 22;
+ id = "whiteship";
+ launch_status = 0;
+ name = "NT Medical Ship";
+ port_angle = -90;
+ preferred_direction = 4;
+ roundstart_move = "whiteship_away";
+ timid = null;
+ width = 35
+ },
+/obj/docking_port/stationary{
+ dir = 2;
+ dwidth = 11;
+ height = 22;
+ id = "whiteship_home";
+ name = "SS13 Arrival Docking";
+ turf_type = /turf/open/space;
+ width = 35
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"apo" = (
+/obj/machinery/door/airlock/titanium,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"app" = (
+/turf/closed/wall,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"apq" = (
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"apr" = (
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"aps" = (
+/turf/open/floor/plasteel/red/corner,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"apt" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"apu" = (
+/obj/structure/sign/biohazard,
+/turf/closed/wall,
+/area/toxins/xenobiology)
+"apv" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"apw" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"apx" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Xenobiology North";
+ dir = 8;
+ network = list("SS13","RD")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"apy" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"apz" = (
+/obj/structure/rack,
+/obj/item/device/flashlight/lantern,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"apA" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 4"
+ })
+"apB" = (
+/obj/machinery/light,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 4"
+ })
+"apC" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/obj/machinery/button/door{
+ id = "cabin4";
+ name = "Cabin Bolt Control 4";
+ normaldoorcontrol = 1;
+ pixel_x = 25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 4"
+ })
+"apD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 4"
+ })
+"apE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"apF" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"apG" = (
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 4;
+ name = "Biodome APC";
+ pixel_x = 24;
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"apH" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/door/airlock/maintenance_hatch,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"apI" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"apJ" = (
+/obj/item/weapon/storage/box/emptysandbags,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"apK" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion_l"
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/abandoned)
+"apL" = (
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"apM" = (
+/obj/structure/table,
+/obj/item/device/radio/off,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"apN" = (
+/obj/structure/table,
+/obj/item/weapon/screwdriver,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"apO" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/open/floor/plasteel/red/corner,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"apP" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/disposaloutlet,
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"apQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"apR" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio3";
+ name = "containment blast door"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"apS" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"apT" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"apU" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"apV" = (
+/obj/structure/window/reinforced,
+/obj/structure/table/reinforced,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/button/door{
+ id = "xenobio8";
+ name = "Containment Blast Doors";
+ pixel_x = 0;
+ pixel_y = 4;
+ req_access_txt = "55"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"apW" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio8";
+ name = "containment blast door"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"apX" = (
+/obj/machinery/door/window/northright,
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 4"
+ })
+"apY" = (
+/obj/item/weapon/storage/secure/safe{
+ pixel_x = 32
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 4"
+ })
+"apZ" = (
+/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/supply/hidden,
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aqa" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aqb" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aqc" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aqd" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aqe" = (
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"aqf" = (
+/obj/machinery/door/airlock{
+ name = "Privacy Bunks";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"aqg" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"aqh" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"aqi" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion"
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/abandoned)
+"aqj" = (
+/obj/structure/shuttle/engine/heater{
+ icon_state = "heater";
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/abandoned)
+"aqk" = (
+/turf/open/floor/plating,
+/turf/closed/wall/mineral/titanium/interior,
+/area/shuttle/abandoned)
+"aql" = (
+/obj/machinery/computer/pod{
+ id = "oldship_gun"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"aqm" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHEAST)";
+ icon_state = "camera";
+ dir = 5
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"aqn" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/red/corner,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"aqo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"aqp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"aqq" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"aqr" = (
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"aqs" = (
+/obj/machinery/door/window/northleft{
+ base_state = "right";
+ dir = 8;
+ icon_state = "right";
+ name = "Containment Pen";
+ req_access_txt = "55"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio3";
+ name = "containment blast door"
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"aqt" = (
+/obj/machinery/door/window/northleft{
+ dir = 4;
+ name = "Containment Pen";
+ req_access_txt = "55"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"aqu" = (
+/obj/machinery/door/window/northleft{
+ base_state = "right";
+ dir = 8;
+ icon_state = "right";
+ name = "Containment Pen";
+ req_access_txt = "55"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"aqv" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/door/window/northleft{
+ dir = 4;
+ name = "Containment Pen";
+ req_access_txt = "55"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio8";
+ name = "containment blast door"
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"aqw" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/structure/closet/crate/freezer,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aqx" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/structure/closet/crate/freezer,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aqy" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/structure/closet,
+/obj/item/bodypart/head,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aqz" = (
+/obj/machinery/iv_drip,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aqA" = (
+/obj/structure/rack,
+/obj/item/weapon/storage/fancy/candle_box,
+/obj/item/weapon/lighter,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aqB" = (
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 4"
+ })
+"aqC" = (
+/obj/structure/toilet,
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 4"
+ })
+"aqD" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHEAST)";
+ icon_state = "camera";
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"aqE" = (
+/turf/open/floor/plating,
+/area/shuttle/abandoned)
+"aqF" = (
+/turf/open/floor/mineral/titanium,
+/turf/closed/wall/mineral/titanium/interior,
+/area/shuttle/abandoned)
+"aqG" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/space/hardsuit/medical,
+/obj/item/clothing/mask/breath,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"aqH" = (
+/obj/machinery/door/airlock/glass,
+/turf/open/floor/plating,
+/area/shuttle/abandoned)
+"aqI" = (
+/obj/machinery/mass_driver{
+ dir = 4;
+ icon_state = "mass_driver";
+ id = "oldship_gun"
+ },
+/turf/open/floor/plating,
+/area/shuttle/abandoned)
+"aqJ" = (
+/obj/machinery/door/poddoor{
+ id = "oldship_gun";
+ name = "pod bay door"
+ },
+/turf/open/floor/plating,
+/area/shuttle/abandoned)
+"aqK" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"aqL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/rack,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"aqM" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio3";
+ name = "containment blast door"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"aqN" = (
+/obj/structure/table/reinforced,
+/obj/machinery/button/door{
+ id = "xenobio3";
+ name = "Containment Blast Doors";
+ pixel_x = 0;
+ pixel_y = 4;
+ req_access_txt = "55"
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"aqO" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"aqP" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"aqQ" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio8";
+ name = "containment blast door"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"aqR" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/disposaloutlet{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"aqS" = (
+/obj/structure/bed,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aqT" = (
+/obj/machinery/light/small,
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 4"
+ })
+"aqU" = (
+/obj/machinery/shower{
+ tag = "icon-shower (NORTH)";
+ icon_state = "shower";
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 4"
+ })
+"aqV" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 4"
+ })
+"aqW" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"aqX" = (
+/obj/item/device/radio/intercom{
+ name = "Station Intercom";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"aqY" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/green,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"aqZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/sleep)
+"ara" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"arb" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"arc" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ name = "regular air vent";
+ on = 1
+ },
+/obj/structure/closet/secure_closet/personal/cabinet,
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"ard" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"are" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/button/door{
+ id = "bunk9";
+ name = "Bunk Bolt Control 9";
+ normaldoorcontrol = 1;
+ pixel_x = -25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"arf" = (
+/obj/machinery/door/airlock{
+ id_tag = "bunk9";
+ name = "Bunk 9"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"arg" = (
+/obj/machinery/door/airlock{
+ id_tag = "bunk10";
+ name = "Bunk 10"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"arh" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/button/door{
+ id = "bunk10";
+ name = "Bunk Bolt Control 10";
+ normaldoorcontrol = 1;
+ pixel_x = 25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"ari" = (
+/obj/item/weapon/paint/green,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"arj" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/weapon/paint/yellow,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ark" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"arl" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE"
+ },
+/turf/closed/wall,
+/area/toxins/xenobiology)
+"arm" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"arn" = (
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"aro" = (
+/obj/structure/table_frame,
+/obj/item/weapon/shard{
+ icon_state = "small"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"arp" = (
+/obj/structure/showcase/horrific_experiment,
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"arq" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"arr" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/flora/grass/green,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"ars" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/button/door{
+ id = "Dorm5";
+ name = "Dorm Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = -25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"art" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"aru" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"arv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ id_tag = "Dorm5";
+ name = "Dorm 5"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"arw" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"arx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"ary" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ id_tag = "Dorm4";
+ name = "Dorm 4"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"arz" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"arA" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/brown,
+/obj/machinery/button/door{
+ id = "Dorm4";
+ name = "Dorm Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = 25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"arB" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/weapon/paint/violet,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"arC" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion_r"
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/abandoned)
+"arD" = (
+/obj/machinery/door/airlock/titanium,
+/turf/open/floor/plating,
+/area/shuttle/abandoned)
+"arE" = (
+/obj/item/weapon/stock_parts/cell{
+ charge = 100;
+ maxcharge = 15000
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"arF" = (
+/obj/structure/rack,
+/obj/item/weapon/tank/internals/emergency_oxygen,
+/obj/item/weapon/tank/internals/emergency_oxygen,
+/obj/item/weapon/tank/internals/emergency_oxygen,
+/obj/item/weapon/tank/internals/emergency_oxygen,
+/obj/item/weapon/storage/toolbox/mechanical,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"arG" = (
+/obj/structure/frame/computer{
+ anchored = 1
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"arH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/closet,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"arI" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio2";
+ name = "containment blast door"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"arJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"arK" = (
+/obj/structure/window/reinforced,
+/obj/structure/table/reinforced,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/button/door{
+ id = "xenobio7";
+ name = "Containment Blast Doors";
+ pixel_x = 0;
+ pixel_y = 4;
+ req_access_txt = "55"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"arL" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio7";
+ name = "containment blast door"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"arM" = (
+/obj/effect/decal/cleanable/blood/tracks,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"arN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"arO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"arP" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/button/door{
+ id = "bunk11";
+ name = "Bunk Bolt Control 11";
+ normaldoorcontrol = 1;
+ pixel_x = -25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"arQ" = (
+/obj/machinery/door/airlock{
+ id_tag = "bunk11";
+ name = "Bunk 11"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"arR" = (
+/obj/machinery/door/airlock{
+ id_tag = "bunk12";
+ name = "Bunk 12"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"arS" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/button/door{
+ id = "bunk12";
+ name = "Bunk Bolt Control 12";
+ normaldoorcontrol = 1;
+ pixel_x = 25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"arT" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/tinted/fulltile,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"arU" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"arV" = (
+/obj/item/weapon/shard{
+ icon_state = "medium"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"arW" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"arX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"arY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/corner,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"arZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"asa" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"asb" = (
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/mob/living/simple_animal/slime,
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"asc" = (
+/obj/machinery/door/window/northleft{
+ base_state = "right";
+ dir = 8;
+ icon_state = "right";
+ name = "Containment Pen";
+ req_access_txt = "55"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio2";
+ name = "containment blast door"
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"asd" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/door/window/northleft{
+ dir = 4;
+ name = "Containment Pen";
+ req_access_txt = "55"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio7";
+ name = "containment blast door"
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"ase" = (
+/obj/item/weapon/shard{
+ icon_state = "medium"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"asf" = (
+/obj/item/weapon/surgical_drapes,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"asg" = (
+/obj/structure/flora/bush,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"ash" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Sleeping Room 2 APC";
+ pixel_y = -24
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/grass,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 2"
+ })
+"asi" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"asj" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/button/door{
+ id = "Dorm6";
+ name = "Dorm Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = -25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"ask" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"asl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ id_tag = "Dorm6";
+ name = "Dorm 6"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"asm" = (
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"asn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ id_tag = "Dorm3";
+ name = "Dorm 3"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"aso" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_Toxins = 0
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"asp" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/blue,
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"asq" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin/construction,
+/obj/item/weapon/storage/crayons,
+/obj/item/weapon/paint/red,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"asr" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/weapon/paint/green,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ass" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/abandoned)
+"ast" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio2";
+ name = "containment blast door"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"asu" = (
+/obj/structure/table/reinforced,
+/obj/machinery/button/door{
+ id = "xenobio2";
+ name = "Containment Blast Doors";
+ pixel_x = 0;
+ pixel_y = 4;
+ req_access_txt = "55"
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"asv" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio7";
+ name = "containment blast door"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"asw" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/closet/wardrobe/white/medical,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"asx" = (
+/obj/structure/bed,
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"asy" = (
+/turf/closed/wall,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 2"
+ })
+"asz" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/tinted/fulltile,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 2"
+ })
+"asA" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/crew_quarters/sleep)
+"asB" = (
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"asC" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/yellow,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"asD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"asE" = (
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"asF" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/button/door{
+ id = "Dorm3";
+ name = "Dorm Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = 25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"asG" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/button/door{
+ id = "bunk13";
+ name = "Bunk Bolt Control 13";
+ normaldoorcontrol = 1;
+ pixel_x = -25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"asH" = (
+/obj/machinery/door/airlock{
+ id_tag = "bunk13";
+ name = "Bunk 13"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"asI" = (
+/obj/machinery/door/airlock{
+ id_tag = "bunk14";
+ name = "Bunk 14"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"asJ" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/button/door{
+ id = "bunk14";
+ name = "Bunk Bolt Control 14";
+ normaldoorcontrol = 1;
+ pixel_x = 25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"asK" = (
+/obj/item/device/camera,
+/obj/item/device/camera_film,
+/obj/item/device/camera_film,
+/obj/structure/closet/crate,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"asL" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/weapon/paint/white,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"asM" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"asN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/grille{
+ density = 0;
+ icon_state = "brokengrille"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"asO" = (
+/obj/structure/sink{
+ icon_state = "sink";
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/machinery/camera{
+ c_tag = "Xenobiology South";
+ dir = 4;
+ network = list("SS13","RD")
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"asP" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"asQ" = (
+/obj/structure/sign/xeno_warning_mining{
+ pixel_x = -30
+ },
+/turf/open/floor/plating/asteroid/airless{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"asR" = (
+/obj/machinery/camera/autoname{
+ dir = 1;
+ network = list("SS13")
+ },
+/turf/open/floor/plating/asteroid/airless{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"asS" = (
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"asT" = (
+/obj/structure/barricade/wooden,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"asU" = (
+/obj/effect/decal/cleanable/blood/gibs,
+/obj/effect/decal/cleanable/blood/innards,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"asV" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"asW" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/obj/structure/flora/grass/green,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"asX" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/red,
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 2"
+ })
+"asY" = (
+/obj/structure/dresser,
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 2"
+ })
+"asZ" = (
+/obj/structure/chair/stool,
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 2"
+ })
+"ata" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/table/wood,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 2"
+ })
+"atb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 2"
+ })
+"atc" = (
+/obj/structure/table/wood,
+/obj/item/device/paicard,
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"atd" = (
+/obj/structure/table/wood,
+/obj/item/device/analyzer,
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"ate" = (
+/obj/machinery/vending/clothing,
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"atf" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin,
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"atg" = (
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/sleep)
+"ath" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"ati" = (
+/obj/structure/closet/crate,
+/obj/item/seeds/cocoapod,
+/obj/item/seeds/chili,
+/obj/item/seeds/coffee,
+/obj/item/seeds/eggplant,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"atj" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"atk" = (
+/obj/machinery/door/window,
+/turf/open/floor/mineral/titanium/purple,
+/area/shuttle/abandoned)
+"atl" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/purple,
+/area/shuttle/abandoned)
+"atm" = (
+/obj/structure/table,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"atn" = (
+/obj/structure/table,
+/obj/item/weapon/gun/energy/laser/retro,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"ato" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"atp" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio1";
+ name = "containment blast door"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"atq" = (
+/obj/structure/window/reinforced,
+/obj/structure/table/reinforced,
+/obj/machinery/button/door{
+ id = "xenobio6";
+ name = "Containment Blast Doors";
+ pixel_x = 0;
+ pixel_y = 4;
+ req_access_txt = "55"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"atr" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio6";
+ name = "containment blast door"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"ats" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating/airless/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"att" = (
+/obj/structure/sign/xeno_warning_mining{
+ pixel_x = -30
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"atu" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ locked = 1
+ },
+/obj/structure/holosign/barrier,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"atv" = (
+/obj/item/weapon/cigbutt,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"atw" = (
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 2"
+ })
+"atx" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ id_tag = "cabin2";
+ name = "Cabin 2"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 2"
+ })
+"aty" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"atz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"atA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/sleep)
+"atB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"atC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"atD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (SOUTHEAST)";
+ icon_state = "camera";
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"atE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"atF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"atG" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"atH" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"atI" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/button/door{
+ id = "bunk15";
+ name = "Bunk Bolt Control 15";
+ normaldoorcontrol = 1;
+ pixel_x = -25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"atJ" = (
+/obj/machinery/door/airlock{
+ id_tag = "bunk15";
+ name = "Bunk 15"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"atK" = (
+/obj/machinery/door/airlock{
+ id_tag = "bunk16";
+ name = "Bunk 16"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"atL" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/button/door{
+ id = "bunk16";
+ name = "Bunk Bolt Control 16";
+ normaldoorcontrol = 1;
+ pixel_x = 25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"atM" = (
+/obj/machinery/door/airlock/glass,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"atN" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/decal/remains/human,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"atO" = (
+/obj/machinery/computer/shuttle/white_ship,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"atP" = (
+/obj/machinery/door/window/northleft{
+ base_state = "right";
+ dir = 8;
+ icon_state = "right";
+ name = "Containment Pen";
+ req_access_txt = "55"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio1";
+ name = "containment blast door"
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"atQ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/door/window/northleft{
+ dir = 4;
+ name = "Containment Pen";
+ req_access_txt = "55"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio6";
+ name = "containment blast door"
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"atR" = (
+/turf/open/floor/plating/airless/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"atS" = (
+/obj/machinery/light/small,
+/turf/open/floor/plating/airless/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"atT" = (
+/obj/machinery/door/airlock/external{
+ name = "Mining Airlock";
+ req_access = null;
+ req_access_txt = "48"
+ },
+/turf/open/floor/noslip,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"atU" = (
+/obj/structure/sign/vacuum{
+ pixel_y = 32
+ },
+/turf/open/floor/noslip,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"atV" = (
+/obj/structure/door_assembly/door_assembly_mai,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"atW" = (
+/obj/structure/barricade/wooden,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"atX" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 2"
+ })
+"atY" = (
+/obj/machinery/light,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 2"
+ })
+"atZ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/obj/machinery/button/door{
+ id = "cabin2";
+ name = "Cabin Bolt Control 2";
+ normaldoorcontrol = 1;
+ pixel_x = 25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 2"
+ })
+"aua" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 2"
+ })
+"aub" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ tag = "icon-1-4";
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"auc" = (
+/obj/machinery/door/airlock{
+ name = "Dormitories";
+ req_access_txt = "0"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"aud" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"aue" = (
+/obj/structure/chair/stool,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/start{
+ name = "Assistant"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"auf" = (
+/obj/structure/table/wood,
+/obj/item/weapon/storage/wallet,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"aug" = (
+/obj/structure/table/wood,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"auh" = (
+/obj/structure/table/wood,
+/obj/item/weapon/storage/box/hug/medical,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"aui" = (
+/obj/structure/chair/stool,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"auj" = (
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"auk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"aul" = (
+/obj/machinery/door/airlock{
+ id_tag = "Dorm2";
+ name = "Dorm 2"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"aum" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"aun" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/button/door{
+ id = "Dorm2";
+ name = "Dorm Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = 25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"auo" = (
+/obj/structure/kitchenspike_frame,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aup" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"auq" = (
+/obj/structure/table,
+/obj/item/weapon/tank/internals/oxygen,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"aur" = (
+/obj/structure/grille,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio1";
+ name = "containment blast door"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"aus" = (
+/obj/structure/table/reinforced,
+/obj/machinery/button/door{
+ id = "xenobio1";
+ name = "Containment Blast Doors";
+ pixel_x = 0;
+ pixel_y = 4;
+ req_access_txt = "55"
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/light,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"aut" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio6";
+ name = "containment blast door"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"auu" = (
+/obj/machinery/camera/autoname{
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/plating/airless/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"auv" = (
+/obj/structure/closet,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"auw" = (
+/obj/structure/table,
+/obj/structure/bedsheetbin,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aux" = (
+/obj/structure/table,
+/obj/item/weapon/lighter/greyscale,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"auy" = (
+/obj/structure/table,
+/obj/item/weapon/hatchet/cutterblade,
+/obj/item/weapon/retractor,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"auz" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"auA" = (
+/obj/machinery/door/window/northright,
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 2"
+ })
+"auB" = (
+/obj/item/weapon/storage/secure/safe{
+ pixel_x = 32
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 2"
+ })
+"auC" = (
+/obj/machinery/status_display,
+/turf/closed/wall,
+/area/crew_quarters/sleep)
+"auD" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"auE" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"auF" = (
+/obj/structure/table/wood,
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"auG" = (
+/obj/structure/table/wood,
+/obj/item/weapon/storage/briefcase,
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"auH" = (
+/obj/structure/table/wood,
+/obj/item/weapon/storage/crayons,
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"auI" = (
+/obj/structure/chair/stool,
+/obj/effect/landmark/start{
+ name = "Assistant"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"auJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"auK" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"auL" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"auM" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/sleep)
+"auN" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/button/door{
+ id = "bunk17";
+ name = "Bunk Bolt Control 17";
+ normaldoorcontrol = 1;
+ pixel_x = -25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"auO" = (
+/obj/machinery/door/airlock{
+ id_tag = "bunk17";
+ name = "Bunk 17"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"auP" = (
+/obj/machinery/door/airlock{
+ id_tag = "bunk18";
+ name = "Bunk 18"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"auQ" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/button/door{
+ id = "bunk18";
+ name = "Bunk Bolt Control 18";
+ normaldoorcontrol = 1;
+ pixel_x = 25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"auR" = (
+/obj/structure/easel,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"auS" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/purple,
+/area/shuttle/abandoned)
+"auT" = (
+/obj/machinery/door/window/northright,
+/obj/effect/decal/remains/human,
+/turf/open/floor/mineral/titanium/purple,
+/area/shuttle/abandoned)
+"auU" = (
+/obj/structure/rack,
+/obj/item/clothing/shoes/winterboots,
+/obj/item/clothing/suit/hooded/wintercoat,
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"auV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/structure/closet,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"auW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"auX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"auY" = (
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 2"
+ })
+"auZ" = (
+/obj/structure/toilet,
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 2"
+ })
+"ava" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"avb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"avc" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"avd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/flora/grass/green,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"ave" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/sleep)
+"avf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"avg" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"avh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"avi" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j1";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"avj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ tag = "icon-1-4";
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"avk" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"avl" = (
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"avm" = (
+/obj/machinery/door/airlock{
+ id_tag = "Dorm1";
+ name = "Dorm 1"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"avn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"avo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"avp" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/ian,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/button/door{
+ id = "Dorm1";
+ name = "Dorm Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = 25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"avq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/fitness)
+"avr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"avs" = (
+/obj/item/weapon/paint/black,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"avt" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"avu" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ external_pressure_bound = 140;
+ on = 1;
+ pressure_checks = 0
+ },
+/obj/machinery/camera{
+ c_tag = "Xenobiology Kill Room";
+ dir = 4;
+ network = list("SS13","RD")
+ },
+/turf/open/floor/circuit{
+ name = "Killroom Floor";
+ initial_gas_mix = "n2=500;TEMP=80"
+ },
+/area/toxins/xenobiology)
+"avv" = (
+/turf/open/floor/circuit{
+ name = "Killroom Floor";
+ initial_gas_mix = "n2=500;TEMP=80"
+ },
+/area/toxins/xenobiology)
+"avw" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ external_pressure_bound = 120;
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
+ },
+/turf/open/floor/circuit{
+ name = "Killroom Floor";
+ initial_gas_mix = "n2=500;TEMP=80"
+ },
+/area/toxins/xenobiology)
+"avx" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/sign/biohazard,
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"avy" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ target_temperature = 80;
+ dir = 2;
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"avz" = (
+/obj/structure/rack,
+/obj/item/weapon/pickaxe,
+/turf/open/floor/plating/airless/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"avA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"avB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"avC" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"avD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"avE" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"avF" = (
+/obj/machinery/light/small,
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 2"
+ })
+"avG" = (
+/obj/machinery/shower{
+ tag = "icon-shower (NORTH)";
+ icon_state = "shower";
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 2"
+ })
+"avH" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suite 2"
+ })
+"avI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHEAST)";
+ icon_state = "camera";
+ dir = 5
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"avJ" = (
+/obj/machinery/washing_machine,
+/turf/open/floor/plasteel/barber,
+/area/crew_quarters/sleep)
+"avK" = (
+/obj/structure/table/wood,
+/obj/structure/bedsheetbin,
+/turf/open/floor/plasteel/barber,
+/area/crew_quarters/sleep)
+"avL" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/bin,
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"avM" = (
+/obj/machinery/light,
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"avN" = (
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Dormitory APC";
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"avO" = (
+/obj/structure/table,
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"avP" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"avQ" = (
+/turf/closed/wall,
+/area/crew_quarters/fitness)
+"avR" = (
+/turf/open/floor/engine{
+ name = "Holodeck Projector Floor"
+ },
+/area/holodeck/rec_center)
+"avS" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"avT" = (
+/obj/item/weapon/paint/paint_remover,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"avU" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel/red/corner,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"avV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/airlock/maintenance_hatch,
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"avW" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
+ },
+/turf/open/floor/circuit{
+ name = "Killroom Floor";
+ initial_gas_mix = "n2=500;TEMP=80"
+ },
+/area/toxins/xenobiology)
+"avX" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/turf/open/floor/circuit{
+ name = "Killroom Floor";
+ initial_gas_mix = "n2=500;TEMP=80"
+ },
+/area/toxins/xenobiology)
+"avY" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/turf/open/floor/circuit{
+ name = "Killroom Floor";
+ initial_gas_mix = "n2=500;TEMP=80"
+ },
+/area/toxins/xenobiology)
+"avZ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Kill Chamber";
+ req_access_txt = "55"
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"awa" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"awb" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
+ },
+/obj/structure/table,
+/obj/item/weapon/folder/white,
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"awc" = (
+/obj/structure/rack,
+/obj/item/weapon/tank/internals/oxygen,
+/turf/open/floor/plating/airless/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"awd" = (
+/obj/machinery/atmospherics/components/unary/portables_connector{
+ tag = "icon-connector_map (NORTH)";
+ icon_state = "connector_map";
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"awe" = (
+/obj/machinery/atmospherics/components/binary/valve,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"awf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"awg" = (
+/obj/effect/decal/cleanable/blood/old,
+/obj/item/weapon/shovel,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"awh" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"awi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"awj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/device/radio/intercom{
+ desc = "Talk smack through this.";
+ dir = 4;
+ pixel_x = 28;
+ syndie = 1
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"awk" = (
+/turf/closed/wall,
+/area/crew_quarters/toilet)
+"awl" = (
+/obj/machinery/door/airlock{
+ id_tag = "AuxShower";
+ name = "Shower"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/toilet)
+"awm" = (
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/fitness)
+"awn" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Fitness"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"awo" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/closet/firecloset/full,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"awp" = (
+/obj/item/weapon/paint/blue,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"awq" = (
+/obj/item/device/multitool,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"awr" = (
+/obj/structure/chair,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"aws" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"awt" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"awu" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/plating/airless/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"awv" = (
+/obj/structure/sign/xeno_warning_mining{
+ pixel_x = -30
+ },
+/turf/open/floor/noslip,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"aww" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/closet,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"awx" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 0;
+ name = "Air Out";
+ on = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"awy" = (
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"awz" = (
+/obj/machinery/atmospherics/components/unary/tank/air,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"awA" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Air In";
+ on = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"awB" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 2;
+ name = "Waste Out";
+ on = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"awC" = (
+/obj/structure/grille,
+/obj/item/weapon/shard,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"awD" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"awE" = (
+/obj/item/weapon/storage/firstaid,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"awF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/green,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"awG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"awH" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Sleeping Room 1 APC";
+ pixel_y = -24
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suites"
+ })
+"awI" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"awJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"awK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/toilet)
+"awL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/sink{
+ icon_state = "sink";
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/structure/mirror{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/toilet)
+"awM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/camera/autoname,
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/toilet)
+"awN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/toilet)
+"awO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/toilet)
+"awP" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/toilet)
+"awQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/shower{
+ dir = 8
+ },
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/toilet)
+"awR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/fitness)
+"awS" = (
+/obj/structure/closet/boxinggloves,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"awT" = (
+/obj/structure/closet/athletic_mixed,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"awU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"awV" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"awW" = (
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"awX" = (
+/obj/item/device/radio/intercom{
+ name = "Station Intercom";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"awY" = (
+/obj/machinery/computer/arcade,
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"awZ" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"axa" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/crew_quarters/fitness)
+"axb" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"axc" = (
+/obj/structure/closet/secure_closet/bar,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"axd" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"axe" = (
+/obj/structure/chair,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"axf" = (
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"axg" = (
+/obj/structure/table,
+/obj/item/chair,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"axh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"axi" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Secure Workstations Distro"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"axj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"axk" = (
+/obj/structure/grille,
+/obj/item/weapon/shard{
+ icon_state = "medium"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"axl" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/green,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"axm" = (
+/turf/closed/wall,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suites"
+ })
+"axn" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ id_tag = "cabin1";
+ name = "Cabin 1"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suites"
+ })
+"axo" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/sink{
+ icon_state = "sink";
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/structure/mirror{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/toilet)
+"axp" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/toilet)
+"axq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/toilet)
+"axr" = (
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/toilet)
+"axs" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/obj/item/weapon/bikehorn/rubberducky,
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/toilet)
+"axt" = (
+/obj/machinery/shower{
+ dir = 8
+ },
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/toilet)
+"axu" = (
+/obj/structure/cable{
+ icon_state = "2-4";
+ tag = "icon-2-8"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"axv" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"axw" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"axx" = (
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"axy" = (
+/obj/structure/chair/stool,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/open/floor/plasteel/green/corner,
+/area/crew_quarters/fitness)
+"axz" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/crew_quarters/fitness)
+"axA" = (
+/obj/item/weapon/scalpel,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"axB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"axC" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"axD" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"axE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/closet/emcloset,
+/obj/structure/sign/vacuum{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"axF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/closed/wall,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"axG" = (
+/obj/structure/closet/firecloset,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"axH" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"axI" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"axJ" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"axK" = (
+/obj/structure/flora/grass/green,
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"axL" = (
+/obj/structure/dresser,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suites"
+ })
+"axM" = (
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suites"
+ })
+"axN" = (
+/obj/machinery/button/door{
+ id = "cabin1";
+ name = "Cabin Bolt Control 1";
+ normaldoorcontrol = 1;
+ pixel_x = 0;
+ pixel_y = 25;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suites"
+ })
+"axO" = (
+/obj/machinery/door/window/westleft,
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suites"
+ })
+"axP" = (
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suites"
+ })
+"axQ" = (
+/obj/machinery/shower{
+ dir = 8
+ },
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suites"
+ })
+"axR" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock{
+ name = "Unisex Restrooms";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/toilet)
+"axS" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/toilet)
+"axT" = (
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/toilet)
+"axU" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/toilet)
+"axV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"axW" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/fitness)
+"axX" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/fitness)
+"axY" = (
+/obj/machinery/door/window/eastright{
+ base_state = "left";
+ icon_state = "left";
+ name = "Fitness Ring"
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/fitness)
+"axZ" = (
+/turf/open/floor/plasteel/green/side{
+ tag = "icon-green (EAST)";
+ icon_state = "green";
+ dir = 4
+ },
+/area/crew_quarters/fitness)
+"aya" = (
+/obj/machinery/door/airlock/glass{
+ name = "Holodeck Door"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/fitness)
+"ayb" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/fitness)
+"ayc" = (
+/obj/machinery/camera/autoname,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/fitness)
+"ayd" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 6;
+ pixel_y = -5
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"aye" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"ayf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"ayg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"ayh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"ayi" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"ayj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance_hatch,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"ayk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"ayl" = (
+/obj/machinery/door/airlock/maintenance_hatch,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"aym" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"ayn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/table,
+/obj/item/weapon/shovel,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"ayo" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ayp" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/tinted/fulltile,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suites"
+ })
+"ayq" = (
+/obj/structure/chair/stool,
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suites"
+ })
+"ayr" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suites"
+ })
+"ays" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/structure/table/wood,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suites"
+ })
+"ayt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suites"
+ })
+"ayu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/toilet{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suites"
+ })
+"ayv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suites"
+ })
+"ayw" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"ayx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"ayy" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/toilet)
+"ayz" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Dormitory Bathrooms APC";
+ pixel_x = 26;
+ pixel_y = 0
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/toilet)
+"ayA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/fitness)
+"ayB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"ayC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/beacon,
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"ayD" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/fitness)
+"ayE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/fitness)
+"ayF" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/fitness)
+"ayG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"ayH" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"ayI" = (
+/obj/structure/table,
+/obj/item/stack/medical/ointment{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/stack/medical/gauze,
+/obj/item/stack/medical/bruise_pack,
+/turf/open/floor/plasteel/redgreen/side{
+ tag = "icon-redgreen (EAST)";
+ icon_state = "redgreen";
+ dir = 4
+ },
+/area/crew_quarters/fitness)
+"ayJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/computer/holodeck,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/fitness)
+"ayK" = (
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/fitness)
+"ayL" = (
+/obj/machinery/sleeper{
+ icon_state = "sleeper-open";
+ dir = 8
+ },
+/obj/effect/decal/remains/human,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"ayM" = (
+/obj/machinery/door/airlock/maintenance_hatch,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint{
+ name = "Secure Workstations Maintenance"
+ })
+"ayN" = (
+/obj/effect/decal/cleanable/robot_debris,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ayO" = (
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suites"
+ })
+"ayP" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suites"
+ })
+"ayQ" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/obj/structure/table/wood,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suites"
+ })
+"ayR" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (WEST)";
+ icon_state = "camera";
+ dir = 8
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"ayS" = (
+/obj/structure/toilet,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/toilet)
+"ayT" = (
+/obj/machinery/door/airlock{
+ name = "Unisex Restrooms";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/toilet)
+"ayU" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/toilet,
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/toilet)
+"ayV" = (
+/obj/structure/closet/lasertag/red,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"ayW" = (
+/obj/structure/window/reinforced,
+/obj/machinery/door/window/eastright{
+ base_state = "left";
+ dir = 8;
+ icon_state = "left";
+ name = "Fitness Ring"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/fitness)
+"ayX" = (
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/fitness)
+"ayY" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/fitness)
+"ayZ" = (
+/turf/open/floor/plasteel/red/side{
+ tag = "icon-red (EAST)";
+ icon_state = "red";
+ dir = 4
+ },
+/area/crew_quarters/fitness)
+"aza" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/chair/stool,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/fitness)
+"azb" = (
+/obj/machinery/door/airlock/glass{
+ name = "Secure Workstations Access"
+ },
+/obj/structure/sign/securearea{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"azc" = (
+/turf/open/floor/plasteel/red/corner{
+ tag = "icon-redcorner (EAST)";
+ icon_state = "redcorner";
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"azd" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/red/corner{
+ tag = "icon-redcorner (EAST)";
+ icon_state = "redcorner";
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"aze" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (SOUTHEAST)";
+ icon_state = "camera";
+ dir = 6
+ },
+/turf/open/floor/plasteel/red/corner{
+ tag = "icon-redcorner (EAST)";
+ icon_state = "redcorner";
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"azf" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel/red/corner{
+ tag = "icon-redcorner (EAST)";
+ icon_state = "redcorner";
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"azg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/red/corner{
+ tag = "icon-redcorner (EAST)";
+ icon_state = "redcorner";
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"azh" = (
+/obj/structure/sign/securearea{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel{
+ icon_state = "delivery"
+ },
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"azi" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/obj/machinery/camera/autoname,
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"azj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"azk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/sign/securearea{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"azl" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"azm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"azn" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"azo" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"azp" = (
+/obj/machinery/recharge_station,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"azq" = (
+/obj/item/robot_suit,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"azr" = (
+/obj/item/bodypart/chest/robot,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"azs" = (
+/obj/structure/table,
+/obj/machinery/juicer,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"azt" = (
+/obj/structure/rack,
+/obj/item/bodypart/head/robot,
+/obj/item/bodypart/l_arm/robot,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"azu" = (
+/obj/structure/rack,
+/obj/item/bodypart/l_leg/robot,
+/obj/item/bodypart/r_arm/robot,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"azv" = (
+/obj/structure/rack,
+/obj/item/bodypart/r_leg/robot,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"azw" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/purple,
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suites"
+ })
+"azx" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suites"
+ })
+"azy" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suites"
+ })
+"azz" = (
+/obj/item/weapon/storage/secure/safe{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suites"
+ })
+"azA" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suites"
+ })
+"azB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/sleep{
+ name = "\improper Dormitory Suites"
+ })
+"azC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"azD" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"azE" = (
+/obj/machinery/door/airlock{
+ id_tag = "Toilet1";
+ name = "Unit 1"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/toilet)
+"azF" = (
+/obj/machinery/door/airlock{
+ name = "Unit 2"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/toilet)
+"azG" = (
+/obj/machinery/door/airlock{
+ id_tag = "AuxToilet3";
+ name = "Unit 3"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/toilet)
+"azH" = (
+/obj/structure/closet/lasertag/blue,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"azI" = (
+/obj/structure/chair/stool,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/open/floor/plasteel/red/corner{
+ tag = "icon-redcorner (EAST)";
+ icon_state = "redcorner";
+ dir = 4
+ },
+/area/crew_quarters/fitness)
+"azJ" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Fitness room maintenance hatch"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"azK" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"azL" = (
+/obj/machinery/door/airlock/glass{
+ name = "Secure Workstations Access"
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"azM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"azN" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"azO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"azP" = (
+/obj/machinery/door/airlock/highsecurity{
+ name = "Secure Workstations";
+ req_access_txt = "0";
+ req_one_access_txt = "39; 63; 55; 19"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"azQ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel{
+ icon_state = "delivery"
+ },
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"azR" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"azS" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/mob/living/simple_animal/bot/secbot/beepsky{
+ name = "Officer Beepsky"
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"azT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=EVA";
+ location = "Security"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"azU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"azV" = (
+/turf/closed/wall,
+/area/library)
+"azW" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Game Room Maintenance"
+ },
+/turf/open/floor/plating,
+/area/library)
+"azX" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Fitness Room APC";
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/obj/structure/cable,
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"azY" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/regular,
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"azZ" = (
+/obj/structure/table,
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"aAa" = (
+/obj/machinery/light,
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"aAb" = (
+/obj/structure/chair/stool,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTH)";
+ icon_state = "camera";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"aAc" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/closet/wardrobe/yellow,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aAd" = (
+/turf/closed/mineral/diamond,
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"aAe" = (
+/turf/open/floor/plasteel/red/corner{
+ tag = "icon-redcorner (WEST)";
+ icon_state = "redcorner";
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"aAf" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/red/corner{
+ tag = "icon-redcorner (WEST)";
+ icon_state = "redcorner";
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"aAg" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/red/corner{
+ tag = "icon-redcorner (WEST)";
+ icon_state = "redcorner";
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"aAh" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel{
+ icon_state = "delivery"
+ },
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"aAi" = (
+/obj/machinery/light/small,
+/obj/structure/sign/securearea{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"aAj" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/obj/structure/sign/vacuum{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"aAk" = (
+/obj/structure/sign/securearea{
+ pixel_x = -32
+ },
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel{
+ icon_state = "delivery"
+ },
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"aAl" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"aAm" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ tag = "icon-manifold-b-f (EAST)";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"aAn" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=Security";
+ location = "EVA2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"aAo" = (
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid
+ },
+/area/library)
+"aAp" = (
+/obj/structure/noticeboard{
+ desc = "A board for pinning important game notes on..";
+ name = "Game Board";
+ pixel_y = 32
+ },
+/obj/machinery/holopad,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid
+ },
+/area/library)
+"aAq" = (
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 32;
+ pixel_y = 32
+ },
+/obj/machinery/camera/autoname,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid
+ },
+/area/library)
+"aAr" = (
+/obj/machinery/photocopier,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid
+ },
+/area/library)
+"aAs" = (
+/obj/structure/bookcase/random/adult,
+/turf/open/floor/wood,
+/area/library)
+"aAt" = (
+/obj/structure/table/wood,
+/obj/item/device/camera_film,
+/obj/item/device/camera_film,
+/obj/item/device/camera,
+/turf/open/floor/wood,
+/area/library)
+"aAu" = (
+/obj/structure/bookcase{
+ name = "Forbidden Knowledge"
+ },
+/turf/open/floor/wood,
+/area/library)
+"aAv" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/wood,
+/area/library)
+"aAw" = (
+/turf/open/floor/plasteel/green,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aAx" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/green,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aAy" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/green,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aAz" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/closet/wardrobe/green,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aAA" = (
+/obj/machinery/door/airlock/maintenance_hatch,
+/turf/open/floor/noslip,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"aAB" = (
+/obj/machinery/door/airlock/glass{
+ name = "Secure Workstations Access"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/sign/securearea{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Secure Workstations Hallway"
+ })
+"aAC" = (
+/obj/machinery/door/airlock/glass{
+ name = "Secure Workstations Access"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aAD" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid
+ },
+/area/library)
+"aAE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/library)
+"aAF" = (
+/obj/structure/table/wood,
+/obj/item/device/paicard,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/carpet,
+/area/library)
+"aAG" = (
+/obj/structure/chair/office/dark,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/library)
+"aAH" = (
+/obj/structure/table/wood,
+/obj/item/device/laser_pointer/blue,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/library)
+"aAI" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/library)
+"aAJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid
+ },
+/area/library)
+"aAK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/library)
+"aAL" = (
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/library)
+"aAM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/library)
+"aAN" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/wood,
+/area/library)
+"aAO" = (
+/turf/open/floor/wood,
+/area/library)
+"aAP" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/tinted/fulltile,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/library)
+"aAQ" = (
+/turf/closed/wall,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aAR" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aAS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/green/corner{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aAT" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aAU" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aAV" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 5
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aAW" = (
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/obj/structure/closet/wardrobe/grey,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aAX" = (
+/obj/structure/closet/wardrobe/yellow,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aAY" = (
+/obj/structure/closet/wardrobe/pink,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aAZ" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/maintenance/fore)
+"aBa" = (
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/drinks/beer{
+ name = "dusty old booze dispenser"
+ },
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid
+ },
+/area/maintenance/fore)
+"aBb" = (
+/obj/machinery/smartfridge/drinks{
+ icon_state = "boozeomat";
+ name = "dusty old drink showcase"
+ },
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid
+ },
+/area/maintenance/fore)
+"aBc" = (
+/obj/structure/table/wood,
+/obj/structure/reagent_dispensers/beerkeg,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aBd" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aBe" = (
+/turf/open/floor/wood{
+ icon_state = "wood-broken4"
+ },
+/area/maintenance/fore)
+"aBf" = (
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid
+ },
+/area/maintenance/fore)
+"aBg" = (
+/turf/open/floor/wood{
+ icon_state = "wood-broken6"
+ },
+/area/maintenance/fore)
+"aBh" = (
+/obj/machinery/door/airlock/maintenance_hatch,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid
+ },
+/area/maintenance/fore)
+"aBi" = (
+/obj/structure/bed,
+/turf/open/floor/carpet,
+/area/maintenance/fore)
+"aBj" = (
+/obj/structure/table,
+/obj/item/weapon/storage/fancy/candle_box,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aBk" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aBl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aBm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/red/corner,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aBn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/library)
+"aBo" = (
+/obj/structure/table/wood,
+/obj/item/toy/cards/deck,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/carpet,
+/area/library)
+"aBp" = (
+/obj/structure/table/wood,
+/obj/item/weapon/storage/pill_bottle/dice,
+/turf/open/floor/carpet,
+/area/library)
+"aBq" = (
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/library)
+"aBr" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/library)
+"aBs" = (
+/obj/structure/table/wood,
+/obj/item/weapon/folder,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid
+ },
+/area/library)
+"aBt" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Library APC";
+ pixel_x = -25
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/wood,
+/area/library)
+"aBu" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/wood,
+/area/library)
+"aBv" = (
+/obj/effect/landmark/start{
+ name = "Curator"
+ },
+/turf/open/floor/wood,
+/area/library)
+"aBw" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/library)
+"aBx" = (
+/obj/machinery/light/small/built{
+ tag = "icon-bulb1 (WEST)";
+ icon_state = "bulb1";
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aBy" = (
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aBz" = (
+/obj/structure/chair/wood/normal{
+ icon_state = "wooden_chair";
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aBA" = (
+/obj/structure/table/wood/fancy,
+/obj/item/candle,
+/obj/machinery/light/small/built{
+ tag = "icon-bulb1 (EAST)";
+ icon_state = "bulb1";
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aBB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 10
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aBC" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/green/side,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aBD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aBE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/side,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aBF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/green/corner{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aBG" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aBH" = (
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aBI" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aBJ" = (
+/obj/structure/table/wood,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid
+ },
+/area/maintenance/fore)
+"aBK" = (
+/obj/structure/chair/stool,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid
+ },
+/area/maintenance/fore)
+"aBL" = (
+/turf/open/floor/wood{
+ icon_state = "wood-broken5"
+ },
+/area/maintenance/fore)
+"aBM" = (
+/obj/structure/table/wood,
+/obj/item/stack/tile/wood{
+ amount = 50
+ },
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid
+ },
+/area/maintenance/fore)
+"aBN" = (
+/obj/structure/closet,
+/turf/open/floor/wood{
+ icon_state = "wood-broken7"
+ },
+/area/maintenance/fore)
+"aBO" = (
+/turf/open/floor/wood{
+ icon_state = "wood-broken"
+ },
+/area/maintenance/fore)
+"aBP" = (
+/obj/structure/table,
+/obj/item/device/laser_pointer/blue,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aBQ" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aBR" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aBS" = (
+/obj/structure/rack,
+/obj/item/weapon/storage/pill_bottle/dice,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aBT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHEAST)";
+ icon_state = "camera";
+ dir = 5
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aBU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/carpet,
+/area/library)
+"aBV" = (
+/obj/structure/chair/comfy/brown{
+ dir = 1
+ },
+/turf/open/floor/carpet,
+/area/library)
+"aBW" = (
+/obj/structure/chair/comfy/brown{
+ dir = 1
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/carpet,
+/area/library)
+"aBX" = (
+/turf/open/floor/carpet,
+/area/library)
+"aBY" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid
+ },
+/area/library)
+"aBZ" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid
+ },
+/area/library)
+"aCa" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (EAST)";
+ icon_state = "camera";
+ dir = 4
+ },
+/obj/item/weapon/storage/bag/books,
+/turf/open/floor/wood,
+/area/library)
+"aCb" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/wood,
+/area/library)
+"aCc" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/wood,
+/area/library)
+"aCd" = (
+/obj/structure/table/wood/fancy,
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aCe" = (
+/obj/structure/chair/wood/normal{
+ icon_state = "wooden_chair";
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aCf" = (
+/obj/structure/chair/wood/normal{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aCg" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aCh" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aCi" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/item/weapon/twohanded/required/kirbyplants{
+ tag = "icon-plant-17";
+ icon_state = "plant-17"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aCj" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aCk" = (
+/turf/closed/wall,
+/area/janitor)
+"aCl" = (
+/obj/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aCm" = (
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/drinks{
+ name = "dusty old soda dispenser"
+ },
+/turf/open/floor/wood{
+ icon_state = "wood-broken7"
+ },
+/area/maintenance/fore)
+"aCn" = (
+/obj/structure/table/wood,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid
+ },
+/area/maintenance/fore)
+"aCo" = (
+/obj/structure/chair/stool,
+/turf/open/floor/wood{
+ icon_state = "wood-broken3"
+ },
+/area/maintenance/fore)
+"aCp" = (
+/obj/structure/rack,
+/obj/item/weapon/storage/box/cups,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid
+ },
+/area/maintenance/fore)
+"aCq" = (
+/obj/structure/rack,
+/obj/item/weapon/storage/box/drinkingglasses,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid
+ },
+/area/maintenance/fore)
+"aCr" = (
+/obj/item/chair/stool,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid
+ },
+/area/maintenance/fore)
+"aCs" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/rack,
+/obj/item/weapon/restraints/handcuffs/fake/kinky,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aCt" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/rack,
+/obj/item/stack/tile/carpet{
+ amount = 40
+ },
+/turf/open/floor/carpet,
+/area/maintenance/fore)
+"aCu" = (
+/obj/machinery/vending/kink,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aCv" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/filingcabinet/chestdrawer/wheeled,
+/obj/effect/decal/cleanable/cobweb{
+ icon_state = "cobweb2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aCw" = (
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aCx" = (
+/obj/structure/rack,
+/obj/item/weapon/storage/backpack/clown,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aCy" = (
+/obj/structure/closet/cabinet,
+/obj/item/toy/figure/assistant,
+/obj/item/toy/figure/atmos,
+/obj/item/toy/figure/bartender,
+/obj/item/toy/figure/borg,
+/obj/item/toy/figure/botanist,
+/obj/item/toy/figure/captain,
+/obj/item/toy/figure/cargotech,
+/obj/item/toy/figure/ce,
+/obj/item/toy/figure/chaplain,
+/obj/item/toy/figure/chef,
+/obj/item/toy/figure/chemist,
+/obj/item/toy/figure/clown,
+/obj/item/toy/figure/cmo,
+/obj/item/toy/figure/detective,
+/obj/item/toy/figure/dsquad,
+/obj/item/toy/figure/engineer,
+/obj/item/toy/figure/geneticist,
+/obj/item/toy/figure/hop,
+/obj/item/toy/figure/hos,
+/obj/item/toy/figure/ian,
+/obj/item/toy/figure/janitor,
+/obj/item/toy/figure/lawyer,
+/obj/item/toy/figure/curator,
+/obj/item/toy/figure/md,
+/obj/item/toy/figure/mime,
+/obj/item/toy/figure/miner,
+/obj/item/toy/figure/ninja,
+/obj/item/toy/figure/qm,
+/obj/item/toy/figure/rd,
+/obj/item/toy/figure/roboticist,
+/obj/item/toy/figure/scientist,
+/obj/item/toy/figure/secofficer,
+/obj/item/toy/figure/syndie,
+/obj/item/toy/figure/virologist,
+/obj/item/toy/figure/warden,
+/obj/item/toy/figure/wizard,
+/obj/item/toy/minimeteor,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid
+ },
+/area/library)
+"aCz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid
+ },
+/area/library)
+"aCA" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -27
+ },
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid
+ },
+/area/library)
+"aCB" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid
+ },
+/area/library)
+"aCC" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid
+ },
+/area/library)
+"aCD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/library)
+"aCE" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp/green,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/library)
+"aCF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/wood,
+/area/library)
+"aCG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/structure/table/wood,
+/obj/item/weapon/folder,
+/obj/item/clothing/glasses/monocle,
+/turf/open/floor/wood,
+/area/library)
+"aCH" = (
+/obj/structure/chair/wood/normal{
+ tag = "icon-wooden_chair (WEST)";
+ icon_state = "wooden_chair";
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/library)
+"aCI" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-15";
+ pixel_x = 0;
+ pixel_y = 12;
+ tag = "icon-plant-15"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aCJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/structure/chair/wood/normal{
+ icon_state = "wooden_chair";
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aCK" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aCL" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Cafe"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aCM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aCN" = (
+/obj/structure/chair/wood/normal,
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aCO" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aCP" = (
+/obj/structure/closet/l3closet,
+/obj/item/clothing/shoes/galoshes,
+/turf/open/floor/plasteel,
+/area/janitor)
+"aCQ" = (
+/obj/structure/closet/jcloset,
+/turf/open/floor/plasteel,
+/area/janitor)
+"aCR" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/washing_machine,
+/turf/open/floor/plasteel,
+/area/janitor)
+"aCS" = (
+/obj/item/device/radio/intercom{
+ name = "Station Intercom";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"aCT" = (
+/obj/machinery/door/window/westleft{
+ name = "Janitoral Delivery";
+ req_access_txt = "26"
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel{
+ icon_state = "delivery"
+ },
+/area/janitor)
+"aCU" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=8";
+ freq = 1400;
+ location = "Janitor"
+ },
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "bot"
+ },
+/area/janitor)
+"aCV" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aCW" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plating/asteroid/airless{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"aCX" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plating/asteroid/airless{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"aCY" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plating/asteroid/airless{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"aCZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aDa" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/closet/jcloset,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aDb" = (
+/turf/open/floor/carpet,
+/area/maintenance/fore)
+"aDc" = (
+/obj/item/stack/tile/carpet,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aDd" = (
+/obj/structure/table,
+/obj/item/device/flashlight/lantern,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aDe" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aDf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/library)
+"aDg" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Game Room"
+ },
+/turf/open/floor/wood,
+/area/library)
+"aDh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/library)
+"aDi" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/morgue{
+ name = "Private Study";
+ req_access_txt = "37"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/wood,
+/area/library)
+"aDj" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-15";
+ pixel_x = 0;
+ pixel_y = 12;
+ tag = "icon-plant-15"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aDk" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/structure/chair/wood/normal{
+ icon_state = "wooden_chair";
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aDl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aDm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aDn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/chair/wood/normal,
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aDo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aDp" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/chair/wood/normal{
+ tag = "icon-wooden_chair (EAST)";
+ icon_state = "wooden_chair";
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aDq" = (
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aDr" = (
+/obj/structure/chair/wood/normal{
+ tag = "icon-wooden_chair (WEST)";
+ icon_state = "wooden_chair";
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aDs" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21";
+ layer = 4.1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aDt" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aDu" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aDv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ name = "Custodial Closet";
+ req_access_txt = "26"
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"aDw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"aDx" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"aDy" = (
+/turf/open/floor/plasteel,
+/area/janitor)
+"aDz" = (
+/obj/structure/sink/kitchen{
+ dir = 8;
+ icon_state = "sink_alt";
+ pixel_x = 13;
+ tag = "icon-sink_alt (WEST)"
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"aDA" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/airless{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"aDB" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/airless{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"aDC" = (
+/obj/item/weapon/storage/bag/trash,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aDD" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/weapon/caution,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aDE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aDF" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/structure/bookcase/random/reference,
+/turf/open/floor/wood,
+/area/library)
+"aDG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/bookcase/random/reference,
+/turf/open/floor/wood,
+/area/library)
+"aDH" = (
+/obj/structure/bookcase/random/reference,
+/turf/open/floor/wood,
+/area/library)
+"aDI" = (
+/obj/structure/bookcase/manuals/research_and_development,
+/turf/open/floor/wood,
+/area/library)
+"aDJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/bookcase/manuals/medical,
+/turf/open/floor/wood,
+/area/library)
+"aDK" = (
+/obj/structure/bookcase/manuals/engineering,
+/turf/open/floor/wood,
+/area/library)
+"aDL" = (
+/obj/structure/noticeboard{
+ desc = "A memorial wall for pinning up momentos";
+ name = "memorial board";
+ pixel_y = 32
+ },
+/turf/open/floor/wood,
+/area/library)
+"aDM" = (
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = -29;
+ pixel_y = 23
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/wood,
+/area/library)
+"aDN" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/bin,
+/turf/open/floor/wood,
+/area/library)
+"aDO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/library)
+"aDP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aDQ" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2";
+ tag = "icon-pipe-j1 (WEST)"
+ },
+/turf/open/floor/plasteel/green,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aDR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/chair/wood/normal{
+ icon_state = "wooden_chair";
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aDS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aDT" = (
+/obj/structure/table/wood/fancy,
+/obj/item/candle,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aDU" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aDV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/closed/wall,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aDW" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (WEST)";
+ icon_state = "camera";
+ dir = 8
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aDX" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plasteel,
+/area/janitor)
+"aDY" = (
+/obj/effect/landmark/start{
+ name = "Janitor"
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"aDZ" = (
+/obj/effect/landmark/event_spawn,
+/mob/living/simple_animal/hostile/lizard{
+ name = "Wags-His-Tail";
+ real_name = "Wags-His-Tail"
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"aEa" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"aEb" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Custodial Closet APC";
+ pixel_x = -24
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/janitor)
+"aEc" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating/asteroid/airless{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"aEd" = (
+/obj/structure/closet/crate/trashcart,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aEe" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aEf" = (
+/obj/machinery/portable_atmospherics/canister,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aEg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aEh" = (
+/obj/structure/closet/wardrobe/pjs,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aEi" = (
+/turf/closed/wall,
+/area/chapel/main)
+"aEj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood,
+/area/library)
+"aEk" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/wood,
+/area/library)
+"aEl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/library)
+"aEm" = (
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/carpet,
+/area/library)
+"aEn" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/carpet,
+/area/library)
+"aEo" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp/green,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ name = "regular air vent";
+ on = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/wood,
+/area/library)
+"aEp" = (
+/obj/item/device/radio/intercom{
+ desc = "Talk smack through this.";
+ dir = 4;
+ pixel_x = 28;
+ syndie = 1
+ },
+/turf/open/floor/wood,
+/area/library)
+"aEq" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j1";
+ tag = "icon-pipe-j1 (EAST)"
+ },
+/turf/open/floor/plasteel/green,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aEr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aEs" = (
+/obj/machinery/light/small/built{
+ tag = "icon-bulb1 (WEST)";
+ icon_state = "bulb1";
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aEt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aEu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aEv" = (
+/obj/machinery/holopad,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aEw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aEx" = (
+/obj/structure/chair/wood/normal{
+ dir = 1
+ },
+/obj/machinery/light/small/built{
+ tag = "icon-bulb1 (EAST)";
+ icon_state = "bulb1";
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aEy" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal/bin,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aEz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/cups,
+/obj/item/weapon/storage/box/cups,
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = -29;
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aEA" = (
+/obj/structure/table/reinforced,
+/obj/machinery/chem_dispenser/drinks,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aEB" = (
+/obj/structure/table/reinforced,
+/obj/machinery/microwave,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aEC" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/donkpockets,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aED" = (
+/obj/structure/table,
+/obj/item/weapon/storage/fancy/donut_box,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aEE" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aEF" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -24
+ },
+/obj/machinery/portable_atmospherics/canister/water_vapor,
+/turf/open/floor/plasteel,
+/area/janitor)
+"aEG" = (
+/obj/structure/table,
+/obj/structure/bedsheetbin,
+/turf/open/floor/plasteel,
+/area/janitor)
+"aEH" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plating/asteroid/airless{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"aEI" = (
+/obj/structure/window/reinforced,
+/turf/open/floor/plating/asteroid/airless{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"aEJ" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plating/asteroid/airless{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"aEK" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aEL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ tag = "icon-intact (EAST)";
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/fore)
+"aEM" = (
+/obj/structure/bed,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ tag = "icon-intact (EAST)";
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aEN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ tag = "icon-intact (EAST)";
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aEO" = (
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ tag = "icon-intact (EAST)";
+ icon_state = "intact";
+ dir = 4
+ },
+/obj/structure/table/wood,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aEP" = (
+/obj/structure/frame/computer,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ tag = "icon-intact (EAST)";
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aEQ" = (
+/obj/structure/frame,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ tag = "icon-intact (EAST)";
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aER" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ tag = "icon-intact (EAST)";
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aES" = (
+/obj/structure/closet/firecloset,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ tag = "icon-intact (EAST)";
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aET" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ tag = "icon-intact (EAST)";
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aEU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ tag = "icon-intact (EAST)";
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/closed/wall,
+/area/chapel/main)
+"aEV" = (
+/obj/structure/chair/stool,
+/obj/item/device/radio/intercom{
+ broadcasting = 1;
+ dir = 8;
+ frequency = 1480;
+ name = "Confessional Intercom";
+ pixel_x = -25
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ tag = "icon-intact (EAST)";
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/chapel/main)
+"aEW" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/tinted/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ tag = "icon-intact (EAST)";
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/chapel/main)
+"aEX" = (
+/obj/structure/chair/stool,
+/obj/item/device/radio/intercom{
+ broadcasting = 1;
+ frequency = 1480;
+ name = "Confessional Intercom";
+ pixel_x = 25
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ tag = "icon-intact (EAST)";
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/chapel/main)
+"aEY" = (
+/obj/structure/closet/radiation,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ tag = "icon-intact (EAST)";
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aEZ" = (
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ tag = "icon-intact (EAST)";
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aFa" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ on = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aFb" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ tag = "icon-intact (EAST)";
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aFc" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aFd" = (
+/obj/structure/bookcase/random/nonfiction,
+/turf/open/floor/wood,
+/area/library)
+"aFe" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/bookcase/random/nonfiction,
+/turf/open/floor/wood,
+/area/library)
+"aFf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/carpet,
+/area/library)
+"aFg" = (
+/obj/structure/table/wood,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/wood,
+/area/library)
+"aFh" = (
+/obj/machinery/photocopier,
+/turf/open/floor/wood,
+/area/library)
+"aFi" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21";
+ layer = 4.1;
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aFj" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aFk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aFl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Cafe"
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 31
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aFm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aFn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aFo" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aFp" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aFq" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aFr" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aFs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ name = "Custodial Closet";
+ req_access_txt = "26"
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"aFt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"aFu" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"aFv" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/bin,
+/turf/open/floor/plasteel,
+/area/janitor)
+"aFw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/janitor)
+"aFx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aFy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aFz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light/small,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aFA" = (
+/obj/structure/disposalpipe/junction,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aFB" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Chapel Maintenance";
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/chapel/main)
+"aFC" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/morgue{
+ name = "Confession Booth"
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aFD" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/morgue{
+ name = "Confession Booth (Chaplain)";
+ req_access_txt = "22"
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aFE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/sign/securearea{
+ pixel_x = -32
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aFF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/sign/securearea{
+ pixel_x = 32
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/red/corner,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aFG" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/wood,
+/area/library)
+"aFH" = (
+/obj/machinery/light,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/library)
+"aFI" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTH)";
+ icon_state = "camera";
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/library)
+"aFJ" = (
+/obj/machinery/light,
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/library)
+"aFK" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin,
+/turf/open/floor/wood,
+/area/library)
+"aFL" = (
+/obj/structure/table/wood,
+/obj/item/weapon/folder,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/wood,
+/area/library)
+"aFM" = (
+/obj/machinery/bookbinder{
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/library)
+"aFN" = (
+/obj/structure/piano,
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aFO" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aFP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aFQ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aFR" = (
+/obj/machinery/door/airlock/glass{
+ name = "Cafe"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aFS" = (
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aFT" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aFU" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aFV" = (
+/obj/structure/table,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aFW" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aFX" = (
+/obj/machinery/status_display,
+/turf/closed/wall,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aFY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aFZ" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aGa" = (
+/obj/structure/janitorialcart,
+/obj/item/weapon/mop,
+/turf/open/floor/plasteel,
+/area/janitor)
+"aGb" = (
+/obj/item/weapon/caution,
+/obj/item/weapon/caution,
+/obj/item/weapon/caution,
+/obj/item/weapon/caution,
+/obj/item/weapon/caution,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/open/floor/plasteel,
+/area/janitor)
+"aGc" = (
+/obj/machinery/light,
+/obj/vehicle/janicart,
+/turf/open/floor/plasteel,
+/area/janitor)
+"aGd" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/key/janitor,
+/turf/open/floor/plasteel,
+/area/janitor)
+"aGe" = (
+/obj/structure/table,
+/obj/item/weapon/grenade/chem_grenade/cleaner,
+/obj/item/weapon/grenade/chem_grenade/cleaner,
+/obj/item/weapon/grenade/chem_grenade/cleaner,
+/obj/machinery/requests_console{
+ department = "Janitorial";
+ departmentType = 1;
+ pixel_y = -29
+ },
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/turf/open/floor/plasteel,
+/area/janitor)
+"aGf" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance_hatch,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aGg" = (
+/obj/structure/closet/coffin,
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aGh" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/closet/coffin,
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aGi" = (
+/obj/structure/filingcabinet/chestdrawer,
+/turf/open/floor/wood,
+/area/chapel/main)
+"aGj" = (
+/turf/open/floor/wood,
+/area/chapel/main)
+"aGk" = (
+/obj/item/device/radio/intercom{
+ name = "Station Intercom";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/open/floor/wood,
+/area/chapel/main)
+"aGl" = (
+/obj/structure/noticeboard{
+ desc = "A memorial wall for pinning up momentos";
+ name = "memorial board";
+ pixel_y = 32
+ },
+/turf/open/floor/wood,
+/area/chapel/main)
+"aGm" = (
+/obj/structure/spirit_board,
+/turf/open/floor/wood,
+/area/chapel/main)
+"aGn" = (
+/obj/structure/bookcase{
+ name = "Holy Bookcase"
+ },
+/turf/open/floor/wood,
+/area/chapel/main)
+"aGo" = (
+/obj/structure/table/wood,
+/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,
+/turf/open/floor/wood,
+/area/chapel/main)
+"aGp" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lantern,
+/turf/open/floor/wood,
+/area/chapel/main)
+"aGq" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/closet/wardrobe/black,
+/turf/open/floor/wood,
+/area/chapel/main)
+"aGr" = (
+/obj/structure/closet/wardrobe/black,
+/turf/open/floor/wood,
+/area/chapel/main)
+"aGs" = (
+/obj/effect/landmark/xmastree,
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aGt" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/chapel{
+ tag = "icon-chapel (NORTHWEST)";
+ icon_state = "chapel";
+ dir = 9
+ },
+/area/chapel/main)
+"aGu" = (
+/turf/open/floor/plasteel/chapel{
+ tag = "icon-chapel (NORTHEAST)";
+ icon_state = "chapel";
+ dir = 5
+ },
+/area/chapel/main)
+"aGv" = (
+/turf/open/floor/plasteel/chapel{
+ tag = "icon-chapel (NORTH)";
+ icon_state = "chapel";
+ dir = 1
+ },
+/area/chapel/main)
+"aGw" = (
+/turf/open/floor/plasteel/chapel{
+ tag = "icon-chapel (EAST)";
+ icon_state = "chapel";
+ dir = 4
+ },
+/area/chapel/main)
+"aGx" = (
+/turf/open/floor/plasteel/chapel{
+ tag = "icon-chapel (NORTHWEST)";
+ icon_state = "chapel";
+ dir = 9
+ },
+/area/chapel/main)
+"aGy" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/chapel{
+ tag = "icon-chapel (NORTH)";
+ icon_state = "chapel";
+ dir = 1
+ },
+/area/chapel/main)
+"aGz" = (
+/obj/structure/table/wood,
+/obj/item/weapon/reagent_containers/food/snacks/poppypretzel,
+/obj/item/weapon/reagent_containers/food/snacks/poppypretzel,
+/obj/item/weapon/reagent_containers/food/snacks/poppypretzel,
+/obj/item/weapon/reagent_containers/food/snacks/poppypretzel,
+/turf/open/floor/plasteel/chapel{
+ tag = "icon-chapel (EAST)";
+ icon_state = "chapel";
+ dir = 4
+ },
+/area/chapel/main)
+"aGA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/green/side{
+ dir = 9
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aGB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 5
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aGC" = (
+/obj/structure/bookcase/random/fiction,
+/turf/open/floor/wood,
+/area/library)
+"aGD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/bookcase/random/fiction,
+/turf/open/floor/wood,
+/area/library)
+"aGE" = (
+/obj/machinery/newscaster,
+/turf/closed/wall,
+/area/library)
+"aGF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Library"
+ },
+/turf/open/floor/wood,
+/area/library)
+"aGG" = (
+/obj/machinery/newscaster/security_unit,
+/turf/closed/wall,
+/area/library)
+"aGH" = (
+/obj/structure/filingcabinet/chestdrawer,
+/turf/open/floor/wood,
+/area/library)
+"aGI" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/libraryconsole/bookmanagement{
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/library)
+"aGJ" = (
+/obj/structure/chair/wood/normal,
+/obj/effect/landmark/start{
+ name = "Assistant"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aGK" = (
+/turf/closed/wall,
+/area/maintenance/starboard)
+"aGL" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aGM" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aGN" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/structure/closet/coffin,
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aGO" = (
+/obj/structure/closet/coffin,
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aGP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/wood,
+/area/chapel/main)
+"aGQ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/chapel/main)
+"aGR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/chapel/main)
+"aGS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/chapel/main)
+"aGT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aGU" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/chapel{
+ tag = "icon-chapel (SOUTHWEST)";
+ icon_state = "chapel";
+ dir = 10
+ },
+/area/chapel/main)
+"aGV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/chapel{
+ tag = "icon-chapel (SOUTHEAST)";
+ icon_state = "chapel";
+ dir = 6
+ },
+/area/chapel/main)
+"aGW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/chapel{
+ tag = "icon-chapel (WEST)";
+ icon_state = "chapel";
+ dir = 8
+ },
+/area/chapel/main)
+"aGX" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/chapel,
+/area/chapel/main)
+"aGY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/chapel{
+ tag = "icon-chapel (SOUTHWEST)";
+ icon_state = "chapel";
+ dir = 10
+ },
+/area/chapel/main)
+"aGZ" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/chapel{
+ tag = "icon-chapel (SOUTHEAST)";
+ icon_state = "chapel";
+ dir = 6
+ },
+/area/chapel/main)
+"aHa" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/chapel{
+ tag = "icon-chapel (SOUTHEAST)";
+ icon_state = "chapel";
+ dir = 6
+ },
+/area/chapel/main)
+"aHb" = (
+/turf/open/floor/plasteel/chapel{
+ tag = "icon-chapel (WEST)";
+ icon_state = "chapel";
+ dir = 8
+ },
+/area/chapel/main)
+"aHc" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/structure/table/wood,
+/obj/item/weapon/reagent_containers/food/snacks/grown/poppy,
+/turf/open/floor/plasteel/chapel,
+/area/chapel/main)
+"aHd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aHe" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aHf" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/library)
+"aHg" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 9
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aHh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aHi" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 5
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aHj" = (
+/obj/machinery/libraryscanner,
+/turf/open/floor/wood,
+/area/library)
+"aHk" = (
+/obj/structure/chair/wood/normal{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/library)
+"aHl" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal/bin,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -24
+ },
+/obj/machinery/light/small/built{
+ tag = "icon-bulb1 (WEST)";
+ icon_state = "bulb1";
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aHm" = (
+/obj/structure/table/wood/fancy,
+/obj/machinery/newscaster{
+ dir = 1;
+ pixel_y = -30
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aHn" = (
+/obj/machinery/light/small/built{
+ tag = "icon-bulb1 (EAST)";
+ icon_state = "bulb1";
+ dir = 4
+ },
+/obj/item/weapon/twohanded/required/kirbyplants{
+ tag = "icon-plant-18";
+ icon_state = "plant-18"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aHo" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTH)";
+ icon_state = "camera";
+ dir = 1
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aHp" = (
+/obj/machinery/vending/coffee,
+/obj/machinery/light,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aHq" = (
+/obj/machinery/vending/cola/red,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aHr" = (
+/obj/structure/table,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aHs" = (
+/obj/structure/table,
+/obj/item/weapon/storage/fancy/candle_box,
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Cafateria APC";
+ pixel_y = -24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aHt" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aHu" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/item/weapon/storage/backpack/botany,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aHv" = (
+/obj/structure/closet/coffin,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHEAST)";
+ icon_state = "camera";
+ dir = 5
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aHw" = (
+/obj/machinery/door/window/eastleft{
+ dir = 4;
+ name = "Coffin Storage";
+ req_access_txt = "22"
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aHx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood,
+/area/chapel/main)
+"aHy" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/wood,
+/area/chapel/main)
+"aHz" = (
+/obj/structure/chair/wood/normal{
+ tag = "icon-wooden_chair (EAST)";
+ icon_state = "wooden_chair";
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/chapel/main)
+"aHA" = (
+/obj/structure/table/wood,
+/obj/item/weapon/folder,
+/obj/item/weapon/pen,
+/turf/open/floor/wood,
+/area/chapel/main)
+"aHB" = (
+/obj/item/device/radio/beacon,
+/turf/open/floor/wood,
+/area/chapel/main)
+"aHC" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/wood,
+/area/chapel/main)
+"aHD" = (
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aHE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/carpet,
+/area/chapel/main)
+"aHF" = (
+/obj/structure/table/wood,
+/obj/item/candle,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/carpet,
+/area/chapel/main)
+"aHG" = (
+/turf/open/floor/carpet,
+/area/chapel/main)
+"aHH" = (
+/obj/structure/chair/stool,
+/turf/open/floor/carpet,
+/area/chapel/main)
+"aHI" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/carpet,
+/area/chapel/main)
+"aHJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/chair/stool,
+/turf/open/floor/carpet,
+/area/chapel/main)
+"aHK" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/carpet,
+/area/chapel/main)
+"aHL" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/library)
+"aHM" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aHN" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aHO" = (
+/obj/machinery/status_display,
+/turf/closed/wall,
+/area/library)
+"aHP" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/plating,
+/area/library)
+"aHQ" = (
+/obj/structure/sign/directions/medical{
+ tag = "icon-direction_med (WEST)";
+ icon_state = "direction_med";
+ dir = 8
+ },
+/obj/structure/sign/directions/evac{
+ pixel_y = -10
+ },
+/obj/structure/sign/directions/security{
+ dir = 8;
+ icon_state = "direction_sec";
+ pixel_y = 10;
+ tag = "icon-direction_sec (WEST)"
+ },
+/turf/closed/wall,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aHR" = (
+/obj/machinery/newscaster,
+/turf/closed/wall,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aHS" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/cafeteria{
+ name = "Cafe"
+ })
+"aHT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aHU" = (
+/obj/structure/flora/rock,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aHV" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aHW" = (
+/obj/structure/table/wood,
+/obj/item/weapon/storage/book/bible,
+/obj/structure/cable{
+ icon_state = "2-4";
+ tag = "icon-2-8"
+ },
+/turf/open/floor/wood,
+/area/chapel/main)
+"aHX" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/wood,
+/area/chapel/main)
+"aHY" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/wood,
+/area/chapel/main)
+"aHZ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/wood,
+/area/chapel/main)
+"aIa" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/wood,
+/area/chapel/main)
+"aIb" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "Funeral Parlour";
+ opacity = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/wood,
+/area/chapel/main)
+"aIc" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aId" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/carpet,
+/area/chapel/main)
+"aIe" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/table/wood,
+/obj/item/weapon/storage/book/bible,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/carpet,
+/area/chapel/main)
+"aIf" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/carpet,
+/area/chapel/main)
+"aIg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/carpet,
+/area/chapel/main)
+"aIh" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "Chapel";
+ opacity = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aIi" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aIj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aIk" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=EVA2";
+ location = "Dorm"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/green/corner{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aIl" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aIm" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aIn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aIo" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (SOUTHEAST)";
+ icon_state = "camera";
+ dir = 6
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aIp" = (
+/turf/open/floor/plasteel/green/corner{
+ dir = 1
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aIq" = (
+/turf/open/floor/plasteel/green/corner{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aIr" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/space)
+"aIs" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=Dorm";
+ location = "HOP2"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aIt" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aIu" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aIv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aIw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aIx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aIy" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aIz" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=HOP2";
+ location = "Stbd"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aIA" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Chapel APC";
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/wood,
+/area/chapel/main)
+"aIB" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/turf/open/floor/wood,
+/area/chapel/main)
+"aIC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/table/wood,
+/obj/item/weapon/storage/fancy/candle_box,
+/obj/item/weapon/storage/fancy/candle_box,
+/turf/open/floor/wood,
+/area/chapel/main)
+"aID" = (
+/obj/structure/table/wood,
+/obj/item/device/camera/spooky,
+/turf/open/floor/wood,
+/area/chapel/main)
+"aIE" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHEAST)";
+ icon_state = "camera";
+ dir = 5
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aIF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/table/wood,
+/obj/item/candle,
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/carpet,
+/area/chapel/main)
+"aIG" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/carpet,
+/area/chapel/main)
+"aIH" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=Lockers";
+ location = "EVA"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aII" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/green/corner,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aIJ" = (
+/turf/open/floor/plasteel/green/side,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aIK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/green/side,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aIL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/green/side,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aIM" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/green/side,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aIN" = (
+/obj/structure/cable{
+ tag = "icon-1-4";
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/green/side,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aIO" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/green/side,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aIP" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/green/corner{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aIQ" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aIR" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/green/side,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aIS" = (
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/green/side,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aIT" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aIU" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/turf/open/floor/plasteel/green/side,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aIV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/green/corner{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aIW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aIX" = (
+/obj/structure/sign/botany,
+/turf/closed/wall,
+/area/hydroponics)
+"aIY" = (
+/turf/closed/wall,
+/area/hydroponics)
+"aIZ" = (
+/turf/closed/wall,
+/area/medical/morgue)
+"aJa" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/medical/morgue)
+"aJb" = (
+/obj/structure/sign/biohazard,
+/turf/closed/wall,
+/area/medical/morgue)
+"aJc" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical{
+ name = "Morgue";
+ req_access_txt = "6;5;27"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"aJd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/medical/morgue)
+"aJe" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ layer = 2.7;
+ name = "Crematorium";
+ opacity = 1;
+ req_access_txt = "27"
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aJf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/chapel{
+ tag = "icon-chapel (NORTHWEST)";
+ icon_state = "chapel";
+ dir = 9
+ },
+/area/chapel/main)
+"aJg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/chapel{
+ tag = "icon-chapel (NORTHEAST)";
+ icon_state = "chapel";
+ dir = 5
+ },
+/area/chapel/main)
+"aJh" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/chapel{
+ tag = "icon-chapel (EAST)";
+ icon_state = "chapel";
+ dir = 4
+ },
+/area/chapel/main)
+"aJi" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/chapel{
+ tag = "icon-chapel (NORTHEAST)";
+ icon_state = "chapel";
+ dir = 5
+ },
+/area/chapel/main)
+"aJj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/chapel{
+ tag = "icon-chapel (NORTHWEST)";
+ icon_state = "chapel";
+ dir = 9
+ },
+/area/chapel/main)
+"aJk" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/chapel{
+ tag = "icon-chapel (NORTHEAST)";
+ icon_state = "chapel";
+ dir = 5
+ },
+/area/chapel/main)
+"aJl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/chapel{
+ tag = "icon-chapel (NORTH)";
+ icon_state = "chapel";
+ dir = 1
+ },
+/area/chapel/main)
+"aJm" = (
+/obj/structure/table/wood,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/wine,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/chapel{
+ tag = "icon-chapel (EAST)";
+ icon_state = "chapel";
+ dir = 4
+ },
+/area/chapel/main)
+"aJn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aJo" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aJp" = (
+/obj/structure/flora/grass/green,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aJq" = (
+/obj/structure/flora/ausbushes/grassybush,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aJr" = (
+/obj/structure/flora/ausbushes/pointybush,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aJs" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/light,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aJt" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/green/side{
+ dir = 10
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aJu" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aJv" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTH)";
+ icon_state = "camera";
+ dir = 1
+ },
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aJw" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aJx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/green/corner{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aJy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 5
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aJz" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/hydroponics)
+"aJA" = (
+/obj/machinery/disposal/deliveryChute{
+ name = "food delivery chute"
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aJB" = (
+/obj/machinery/smartfridge,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aJC" = (
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aJD" = (
+/obj/machinery/hydroponics/constructable,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aJE" = (
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/camera/autoname,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aJF" = (
+/obj/structure/sink/kitchen{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aJG" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aJH" = (
+/obj/machinery/chem_master/condimaster{
+ name = "CondiMaster Neo"
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aJI" = (
+/obj/structure/closet/secure_closet/hydroponics,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aJJ" = (
+/obj/structure/bodycontainer/morgue,
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"aJK" = (
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"aJL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"aJM" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"aJN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"aJO" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"aJP" = (
+/obj/structure/filingcabinet/medical,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"aJQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/medical/morgue)
+"aJR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aJS" = (
+/obj/structure/bodycontainer/crematorium,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aJT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/chapel/main)
+"aJU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/xmastree,
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aJV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/chapel{
+ tag = "icon-chapel (SOUTHWEST)";
+ icon_state = "chapel";
+ dir = 10
+ },
+/area/chapel/main)
+"aJW" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/chapel{
+ tag = "icon-chapel (SOUTHEAST)";
+ icon_state = "chapel";
+ dir = 6
+ },
+/area/chapel/main)
+"aJX" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/chapel{
+ tag = "icon-chapel (WEST)";
+ icon_state = "chapel";
+ dir = 8
+ },
+/area/chapel/main)
+"aJY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/chapel,
+/area/chapel/main)
+"aJZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/chapel{
+ tag = "icon-chapel (SOUTHWEST)";
+ icon_state = "chapel";
+ dir = 10
+ },
+/area/chapel/main)
+"aKa" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/chapel{
+ tag = "icon-chapel (SOUTHEAST)";
+ icon_state = "chapel";
+ dir = 6
+ },
+/area/chapel/main)
+"aKb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/chapel{
+ tag = "icon-chapel (WEST)";
+ icon_state = "chapel";
+ dir = 8
+ },
+/area/chapel/main)
+"aKc" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/chapel{
+ tag = "icon-chapel (SOUTHWEST)";
+ icon_state = "chapel";
+ dir = 10
+ },
+/area/chapel/main)
+"aKd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/chapel{
+ tag = "icon-chapel (SOUTHEAST)";
+ icon_state = "chapel";
+ dir = 6
+ },
+/area/chapel/main)
+"aKe" = (
+/obj/structure/table/wood,
+/obj/item/weapon/reagent_containers/food/snacks/bun,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/chapel,
+/area/chapel/main)
+"aKf" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aKg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aKh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/theatre)
+"aKi" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/closed/wall,
+/area/crew_quarters/theatre)
+"aKj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/crew_quarters/theatre)
+"aKk" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/crew_quarters/theatre)
+"aKl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/crew_quarters/theatre)
+"aKm" = (
+/turf/closed/wall,
+/area/crew_quarters/theatre)
+"aKn" = (
+/obj/structure/flora/ausbushes/pointybush,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (SOUTHWEST)";
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aKo" = (
+/turf/closed/wall,
+/area/crew_quarters/bar)
+"aKp" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=2";
+ freq = 1400;
+ location = "Bar"
+ },
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plasteel{
+ dir = 2;
+ icon_state = "bot"
+ },
+/area/crew_quarters/bar)
+"aKq" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/crew_quarters/bar)
+"aKr" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aKs" = (
+/obj/machinery/light,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Kitchen APC";
+ pixel_y = -24
+ },
+/turf/open/floor/grass,
+/area/crew_quarters/kitchen)
+"aKt" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aKu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aKv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aKw" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/northleft{
+ dir = 8;
+ name = "Hydroponics Desk";
+ req_access_txt = "35"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aKx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aKy" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aKz" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aKA" = (
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aKB" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aKC" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aKD" = (
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aKE" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Hydroponics Maintenance";
+ req_access_txt = "35";
+ req_one_access_txt = "0"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aKF" = (
+/turf/closed/wall/mineral/iron{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/medical/morgue{
+ name = "Crypt"
+ })
+"aKG" = (
+/obj/structure/bodycontainer/morgue,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"aKH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/bodycontainer/morgue,
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"aKI" = (
+/obj/structure/bodycontainer/morgue,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"aKJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/bodycontainer/morgue,
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"aKK" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"aKL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aKM" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aKN" = (
+/turf/closed/wall,
+/area/chapel/office)
+"aKO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/chapel/office)
+"aKP" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "Chapel Office";
+ opacity = 1;
+ req_access_txt = "27"
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"aKQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/chapel/office)
+"aKR" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/chapel/main)
+"aKS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/chapel/main)
+"aKT" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/chapel/main)
+"aKU" = (
+/obj/structure/sign/directions/medical,
+/turf/closed/wall,
+/area/chapel/main)
+"aKV" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aKW" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ tag = "icon-1-4";
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aKX" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/theatre)
+"aKY" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/computer/arcade,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aKZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 31
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aLa" = (
+/obj/machinery/computer/slot_machine,
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"aLb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/table/wood,
+/obj/item/weapon/gun/ballistic/revolver/russian,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aLc" = (
+/obj/machinery/vending/clothing,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aLd" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Theatre APC";
+ pixel_x = 0;
+ pixel_y = 25
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aLe" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/dresser,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aLf" = (
+/obj/machinery/vending/autodrobe,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aLg" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Bar Storage Maintenance";
+ req_access_txt = "25"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/bar)
+"aLh" = (
+/obj/machinery/door/window/southleft{
+ base_state = "left";
+ dir = 2;
+ icon_state = "left";
+ name = "Bar Delivery";
+ req_access_txt = "25"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "delivery"
+ },
+/area/crew_quarters/bar)
+"aLi" = (
+/turf/closed/wall,
+/area/crew_quarters/kitchen)
+"aLj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/closed/wall,
+/area/crew_quarters/kitchen)
+"aLk" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Kitchen Maintenance";
+ req_access_txt = "28"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/kitchen)
+"aLl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (EAST)";
+ icon_state = "camera";
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aLm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aLn" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aLo" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aLp" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/northleft{
+ dir = 8;
+ name = "Hydroponics Desk";
+ req_access_txt = "35"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aLq" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aLr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aLs" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aLt" = (
+/obj/machinery/biogenerator,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aLu" = (
+/obj/machinery/seed_extractor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aLv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/effect/landmark/start{
+ name = "Botanist"
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aLw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aLx" = (
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aLy" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/hydroponics)
+"aLz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/machinery/juicer,
+/obj/item/weapon/book/manual/hydroponics_pod_people,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (EAST)";
+ icon_state = "camera";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aLA" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ name = "regular air vent";
+ on = 1
+ },
+/obj/effect/landmark/start{
+ name = "Botanist"
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aLB" = (
+/obj/structure/closet/wardrobe/botanist,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aLC" = (
+/obj/structure/bodycontainer/morgue,
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/turf/open/floor/plating/airless/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/medical/morgue{
+ name = "Crypt"
+ })
+"aLD" = (
+/turf/open/floor/plating/airless/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/medical/morgue{
+ name = "Crypt"
+ })
+"aLE" = (
+/obj/structure/bodycontainer/morgue,
+/turf/open/floor/plating/airless/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/medical/morgue{
+ name = "Crypt"
+ })
+"aLF" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating/airless/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/fore)
+"aLG" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"aLH" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"aLI" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ layer = 2.7;
+ name = "Crematorium";
+ opacity = 1;
+ req_access_txt = "27"
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"aLJ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aLK" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aLL" = (
+/obj/structure/closet/wardrobe/chaplain_black,
+/obj/item/weapon/storage/book/bible/booze,
+/obj/item/weapon/nullrod,
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"aLM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/bookcase{
+ name = "Holy Bookcase"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"aLN" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"aLO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/filingcabinet/chestdrawer,
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"aLP" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/bin,
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"aLQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/chapel/office)
+"aLR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/flora/grass/green,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aLS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aLT" = (
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j1";
+ dir = 4
+ },
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aLU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aLV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (SOUTHEAST)";
+ icon_state = "camera";
+ dir = 6
+ },
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aLW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aLX" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aLY" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/crew_quarters/theatre)
+"aLZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aMa" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aMb" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/obj/structure/chair/stool,
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"aMc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/chair/stool,
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"aMd" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/chair/stool,
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"aMe" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aMf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/theatre)
+"aMg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -28
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aMh" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aMi" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aMj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aMk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"aMl" = (
+/obj/structure/closet/secure_closet/bar,
+/obj/item/weapon/vending_refill/boozeomat,
+/obj/item/weapon/vending_refill/cigarette,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"aMm" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/item/clothing/head/that,
+/obj/structure/table/wood,
+/obj/item/weapon/wrench,
+/obj/item/clothing/glasses/sunglasses/reagent,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"aMn" = (
+/obj/item/weapon/storage/secure/safe{
+ pixel_y = 32
+ },
+/obj/structure/reagent_dispensers/beerkeg,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"aMo" = (
+/obj/structure/closet/gmcloset,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"aMp" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/bar)
+"aMq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/freezer/kitchen,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aMr" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/freezer/fridge,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aMs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/deepfryer,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aMt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/machinery/microwave,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aMu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/machinery/microwave,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aMv" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/closed/wall,
+/area/crew_quarters/kitchen)
+"aMw" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/obj/machinery/icecream_vat,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/kitchen)
+"aMx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/kitchen)
+"aMy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/gibber,
+/obj/machinery/camera/autoname,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/kitchen)
+"aMz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/kitchenspike,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/kitchen)
+"aMA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/structure/kitchenspike,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/kitchen)
+"aMB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposaloutlet{
+ dir = 2;
+ name = "food delivery outlet"
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/kitchen)
+"aMC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/kitchen)
+"aMD" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aME" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aMF" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aMG" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/hydroponics)
+"aMH" = (
+/obj/structure/reagent_dispensers/watertank/high,
+/obj/item/weapon/watertank,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aMI" = (
+/obj/effect/landmark/start{
+ name = "Botanist"
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aMJ" = (
+/obj/machinery/vending/hydroseeds,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aMK" = (
+/obj/machinery/vending/hydronutrients,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aML" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aMM" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aMN" = (
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -28
+ },
+/obj/machinery/plantgenes,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aMO" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aMP" = (
+/obj/structure/closet/crate/hydroponics,
+/obj/item/weapon/shovel/spade,
+/obj/item/weapon/wrench,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/open/floor/plasteel{
+ icon_state = "hydrofloor"
+ },
+/area/hydroponics)
+"aMQ" = (
+/obj/structure/ore_box,
+/turf/open/floor/plating/asteroid/airless{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"aMR" = (
+/obj/structure/mineral_door/iron,
+/turf/open/floor/plating/airless/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/medical/morgue{
+ name = "Crypt"
+ })
+"aMS" = (
+/turf/open/floor/plating/airless/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"aMT" = (
+/obj/machinery/door/airlock/external,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aMU" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Morgue Maintenance";
+ req_access_txt = "6"
+ },
+/turf/open/floor/plating,
+/area/medical/morgue)
+"aMV" = (
+/obj/structure/bodycontainer/morgue,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"aMW" = (
+/obj/structure/table/wood,
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/weapon/pen,
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"aMX" = (
+/obj/structure/bodycontainer/morgue,
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aMY" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aMZ" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"aNa" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"aNb" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"aNc" = (
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"aNd" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/chapel/office)
+"aNe" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/flora/grass/green,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aNf" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/flora/grass/green,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aNg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aNh" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aNi" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aNj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aNk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aNl" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aNm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aNn" = (
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aNo" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aNp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHEAST)";
+ icon_state = "camera";
+ dir = 5
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aNq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aNr" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/structure/chair/stool,
+/obj/effect/landmark/start{
+ name = "Mime"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aNs" = (
+/obj/structure/table/wood,
+/obj/structure/mirror{
+ pixel_x = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aNt" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"aNu" = (
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"aNv" = (
+/obj/effect/landmark/start{
+ name = "Bartender"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"aNw" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Bar APC";
+ pixel_y = -24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"aNx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/mob/living/simple_animal/bot/cleanbot{
+ name = "C.L.E.A.N."
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"aNy" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/bar)
+"aNz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aNA" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aNB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Cook"
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aNC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aND" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/kitchen)
+"aNE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/kitchen)
+"aNF" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/kitchen)
+"aNG" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (WEST)";
+ icon_state = "vent_map";
+ dir = 8
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/kitchen)
+"aNH" = (
+/mob/living/simple_animal/hostile/retaliate/goat{
+ name = "Pete"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/kitchen)
+"aNI" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/kitchen)
+"aNJ" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/window/northleft{
+ dir = 2
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/kitchen)
+"aNK" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=2";
+ freq = 1400;
+ location = "Kitchen"
+ },
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 2;
+ icon_state = "bot"
+ },
+/area/crew_quarters/kitchen)
+"aNL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aNM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aNN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/hydroponics)
+"aNO" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aNP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aNQ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aNR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aNS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aNT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Hydroponics Storage"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aNU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aNV" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aNW" = (
+/obj/structure/ore_box,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTH)";
+ icon_state = "camera";
+ dir = 1
+ },
+/turf/open/floor/plating/airless/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/quartermaster/miningdock)
+"aNX" = (
+/turf/open/floor/plating/airless/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/quartermaster/miningdock)
+"aNY" = (
+/obj/structure/ore_box,
+/turf/open/floor/plating/airless/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/quartermaster/miningdock)
+"aNZ" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plating/airless/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/fore)
+"aOa" = (
+/obj/structure/bodycontainer/morgue,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHEAST)";
+ icon_state = "camera";
+ dir = 5
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"aOb" = (
+/obj/structure/chair/wood/normal{
+ tag = "icon-wooden_chair (EAST)";
+ icon_state = "wooden_chair";
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"aOc" = (
+/obj/structure/table/wood,
+/obj/item/weapon/folder/white,
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"aOd" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/tinted/fulltile,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/chapel/main)
+"aOe" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHEAST)";
+ icon_state = "camera";
+ dir = 5
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"aOf" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp,
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"aOg" = (
+/obj/structure/table/wood,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater,
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"aOh" = (
+/obj/structure/table/wood,
+/obj/item/weapon/storage/fancy/candle_box,
+/obj/item/weapon/storage/fancy/candle_box,
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"aOi" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aOj" = (
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aOk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/chair/stool,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aOl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/chair/stool,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aOm" = (
+/obj/structure/chair/stool,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aOn" = (
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal/bin,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aOo" = (
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aOp" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aOq" = (
+/obj/structure/table/wood,
+/obj/item/weapon/lipstick,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aOr" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Bar Storage";
+ req_access_txt = "25"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"aOs" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/crew_quarters/bar)
+"aOt" = (
+/obj/machinery/vending/boozeomat,
+/turf/closed/wall,
+/area/crew_quarters/bar)
+"aOu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/crew_quarters/bar)
+"aOv" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j1";
+ tag = "icon-pipe-j1 (EAST)"
+ },
+/turf/closed/wall,
+/area/crew_quarters/bar)
+"aOw" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aOx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/item/weapon/kitchen/rollingpin,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aOy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/food/condiment/enzyme,
+/obj/item/weapon/reagent_containers/food/condiment/saltshaker{
+ pixel_x = 9
+ },
+/obj/item/weapon/reagent_containers/food/condiment/peppermill,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aOz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/table,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aOA" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/table,
+/obj/item/weapon/storage/fancy/donut_box,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aOB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/kitchen)
+"aOC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/freezer/meat,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/kitchen)
+"aOD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/kitchen)
+"aOE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/kitchen)
+"aOF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/kitchen)
+"aOG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aOH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aOI" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Hydroponics"
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aOJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aOK" = (
+/obj/machinery/hydroponics/constructable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aOL" = (
+/obj/machinery/hydroponics/constructable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aOM" = (
+/obj/machinery/hydroponics/constructable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aON" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aOO" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aOP" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Hydroponics APC";
+ pixel_y = -24
+ },
+/obj/structure/cable,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aOQ" = (
+/obj/machinery/door/window/eastright{
+ dir = 8;
+ name = "Hydroponics Delivery";
+ req_access_txt = "35"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "delivery"
+ },
+/area/hydroponics)
+"aOR" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=2";
+ freq = 1400;
+ location = "Hydroponics"
+ },
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plasteel{
+ dir = 2;
+ icon_state = "bot"
+ },
+/area/hydroponics)
+"aOS" = (
+/turf/closed/wall,
+/area/quartermaster/miningdock)
+"aOT" = (
+/obj/machinery/door/airlock/external{
+ name = "Mining Airlock";
+ req_access = null;
+ req_access_txt = "48"
+ },
+/turf/open/floor/noslip,
+/area/quartermaster/miningdock)
+"aOU" = (
+/turf/closed/wall,
+/area/maintenance/port)
+"aOV" = (
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aOW" = (
+/obj/structure/bodycontainer/morgue,
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"aOX" = (
+/obj/structure/table/wood,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"aOY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/obj/structure/chair/wood/wings{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Chaplain"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"aOZ" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"aPa" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ lighting = 3;
+ name = "Chapel Office APC";
+ pixel_x = 0;
+ pixel_y = -25
+ },
+/obj/structure/cable{
+ tag = "icon-0-8";
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"aPb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aPc" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aPd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/flora/grass/green,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aPe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/theatre)
+"aPf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/chair/stool,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aPg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/table/wood/poker,
+/obj/effect/holodeck_effect/cards,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aPh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/chair/stool,
+/obj/effect/landmark/start{
+ name = "Assistant"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aPi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aPj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/structure/table/wood/bar,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aPk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/table/wood/bar,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aPl" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2";
+ tag = "icon-pipe-j1 (WEST)"
+ },
+/obj/machinery/vending/cola/random,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aPm" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/clown,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aPn" = (
+/obj/structure/sign/barsign,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/theatre)
+"aPo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aPp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/machinery/chem_dispenser/drinks,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aPq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aPr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/table,
+/obj/machinery/chem_dispenser/drinks/beer,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aPs" = (
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j1";
+ dir = 4
+ },
+/obj/machinery/chem_master/condimaster{
+ desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments.";
+ name = "HoochMaster Deluxe";
+ pixel_x = -4
+ },
+/obj/item/weapon/book/manual/barman_recipes,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aPt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/closed/wall,
+/area/crew_quarters/bar)
+"aPu" = (
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHEAST)";
+ icon_state = "camera";
+ dir = 5
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aPv" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/table,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aPw" = (
+/obj/structure/table,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aPx" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/donkpockets,
+/obj/item/weapon/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aPy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/crew_quarters/kitchen)
+"aPz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/freezer,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/kitchen)
+"aPA" = (
+/obj/machinery/smartfridge,
+/turf/closed/wall,
+/area/crew_quarters/kitchen)
+"aPB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aPC" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/hydroponics)
+"aPD" = (
+/obj/machinery/door/airlock/glass{
+ name = "Hydroponics"
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aPE" = (
+/obj/structure/sign/xeno_warning_mining{
+ pixel_x = -30
+ },
+/obj/structure/sign/vacuum{
+ pixel_x = 30
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/noslip,
+/area/quartermaster/miningdock)
+"aPF" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/cable{
+ icon_state = "2-4";
+ tag = "icon-2-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"aPG" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"aPH" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Morgue APC";
+ pixel_x = 26;
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"aPI" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/chair/stool,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aPJ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aPK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/chair/stool,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aPL" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/chair/stool,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aPM" = (
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 32;
+ pixel_y = 32
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aPN" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = 0
+ },
+/obj/structure/piano,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/theatre)
+"aPO" = (
+/obj/structure/chair/stool,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"aPP" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/landmark/start{
+ name = "Clown"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"aPQ" = (
+/obj/structure/table/wood,
+/obj/item/device/instrument/violin,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"aPR" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/structure/table/wood,
+/obj/item/device/instrument/guitar,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/theatre)
+"aPS" = (
+/obj/structure/table/reinforced,
+/obj/machinery/juicer,
+/obj/structure/sign/securearea{
+ desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'";
+ icon_state = "monkey_painting";
+ name = "Mr. Deempisi portrait";
+ pixel_x = 0;
+ pixel_y = 28
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aPT" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aPU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aPV" = (
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aPW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aPX" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aPY" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Kitchen";
+ req_access_txt = "28"
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aPZ" = (
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aQa" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aQb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aQc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aQd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/sink/kitchen{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aQe" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aQf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aQg" = (
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aQh" = (
+/obj/machinery/vending/dinnerware,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aQi" = (
+/obj/machinery/camera/autoname,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aQj" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/window/northleft{
+ dir = 4;
+ name = "Kitchen Desk";
+ req_access_txt = "28"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/kitchen)
+"aQk" = (
+/turf/open/floor/plasteel{
+ icon_plating = "asteroid";
+ icon_state = "asteroid";
+ name = "Asteroid"
+ },
+/area/hydroponics)
+"aQl" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ icon_plating = "asteroid";
+ icon_state = "asteroid";
+ name = "Asteroid"
+ },
+/area/hydroponics)
+"aQm" = (
+/obj/machinery/door/airlock/maintenance_hatch,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aQn" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/medical{
+ name = "Morgue";
+ req_access_txt = "5"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"aQo" = (
+/obj/structure/sign/bluecross,
+/turf/closed/wall,
+/area/medical/morgue)
+"aQp" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aQq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aQr" = (
+/obj/machinery/door/window{
+ base_state = "right";
+ dir = 8;
+ icon_state = "right";
+ name = "Theatre Stage";
+ req_access_txt = "0"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"aQs" = (
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"aQt" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"aQu" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/glass/rag,
+/obj/item/weapon/reagent_containers/food/drinks/shaker,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aQv" = (
+/obj/effect/landmark/start{
+ name = "Bartender"
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aQw" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aQx" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aQy" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aQz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aQA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aQB" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aQC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/window/northleft{
+ dir = 4;
+ name = "Kitchen Desk";
+ req_access_txt = "28"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/kitchen)
+"aQD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aQE" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aQF" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aQG" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aQH" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/labor)
+"aQI" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/labor)
+"aQJ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/quartermaster/miningdock)
+"aQK" = (
+/obj/structure/table,
+/obj/item/weapon/storage/bag/ore,
+/obj/item/weapon/shovel,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTHWEST)";
+ dir = 9;
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+ },
+/area/quartermaster/miningdock)
+"aQL" = (
+/turf/open/floor/plasteel/brown{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
+ dir = 1
+ },
+/area/quartermaster/miningdock)
+"aQM" = (
+/obj/structure/ore_box,
+/turf/open/floor/plasteel/brown{
+ dir = 5
+ },
+/area/quartermaster/miningdock)
+"aQN" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/masks,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aQO" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/gloves,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aQP" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aQQ" = (
+/obj/structure/closet,
+/obj/item/weapon/storage/backpack/chemistry,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aQR" = (
+/obj/structure/sign/biohazard,
+/turf/closed/wall,
+/area/maintenance/port)
+"aQS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHEAST)";
+ icon_state = "camera";
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"aQT" = (
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"aQU" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"aQV" = (
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = "GeneticsDoor";
+ name = "Genetics Access";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"aQW" = (
+/obj/structure/sign/biohazard{
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aQX" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTH)";
+ icon_state = "camera";
+ dir = 1
+ },
+/turf/open/floor/plasteel/green,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aQY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/green,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aQZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/green,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aRa" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Bar"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aRb" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aRc" = (
+/obj/structure/chair/wood{
+ tag = "icon-wooden_chair (EAST)";
+ icon_state = "wooden_chair";
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aRd" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aRe" = (
+/obj/structure/chair/wood{
+ tag = "icon-wooden_chair (WEST)";
+ icon_state = "wooden_chair";
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aRf" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = 0
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/firedoor/border_only,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/theatre)
+"aRg" = (
+/obj/structure/window/reinforced,
+/obj/machinery/door/firedoor/border_only,
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"aRh" = (
+/obj/structure/window/reinforced,
+/obj/machinery/door/firedoor/border_only,
+/mob/living/carbon/monkey/punpun,
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"aRi" = (
+/obj/structure/window/reinforced,
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/theatre)
+"aRj" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/smartfridge/drinks,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aRk" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/border_only,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aRl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/border_only,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aRm" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/border_only,
+/obj/item/clothing/head/bowler,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aRn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/border_only,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aRo" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/window/southright{
+ name = "Bar Door";
+ req_access_txt = "0";
+ req_one_access_txt = "25;28"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aRp" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/crew_quarters/bar)
+"aRq" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/food/snacks/mint,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aRr" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/obj/effect/landmark/start{
+ name = "Cook"
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aRs" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aRt" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aRu" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aRv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aRw" = (
+/obj/machinery/hydroponics/soil,
+/turf/open/floor/plasteel{
+ icon_plating = "asteroid";
+ icon_state = "asteroid";
+ name = "Asteroid"
+ },
+/area/hydroponics)
+"aRx" = (
+/obj/structure/table,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"aRy" = (
+/obj/machinery/computer/shuttle/mining,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"aRz" = (
+/obj/structure/table,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"aRA" = (
+/obj/structure/table,
+/obj/item/weapon/pickaxe,
+/turf/open/floor/plasteel/brown{
+ dir = 8
+ },
+/area/quartermaster/miningdock)
+"aRB" = (
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"aRC" = (
+/obj/structure/ore_box,
+/turf/open/floor/plasteel/brown{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
+ dir = 4
+ },
+/area/quartermaster/miningdock)
+"aRD" = (
+/obj/item/clothing/shoes/sneakers/blue,
+/obj/item/clothing/head/soft/blue,
+/obj/item/clothing/glasses/sunglasses/reagent,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aRE" = (
+/obj/structure/cable{
+ icon_state = "2-4";
+ tag = "icon-2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aRF" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aRG" = (
+/obj/structure/cable{
+ icon_state = "2-4";
+ tag = "icon-2-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aRH" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aRI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance_hatch,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aRJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4";
+ tag = "icon-2-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"aRK" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"aRL" = (
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"aRM" = (
+/turf/closed/wall,
+/area/medical/surgery)
+"aRN" = (
+/turf/closed/wall,
+/area/hallway/primary/fore)
+"aRO" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/hallway/primary/fore)
+"aRP" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/hallway/primary/fore)
+"aRQ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/hallway/primary/fore)
+"aRR" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aRS" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aRT" = (
+/obj/structure/chair/wood{
+ tag = "icon-wooden_chair (NORTH)";
+ icon_state = "wooden_chair";
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aRU" = (
+/obj/machinery/holopad,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aRV" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aRW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aRX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aRY" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aRZ" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/bin,
+/obj/machinery/button/door{
+ dir = 1;
+ id = "bar-kit";
+ name = "Bar Kitchen Shutters";
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aSa" = (
+/obj/machinery/light,
+/obj/machinery/food_cart,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aSb" = (
+/obj/structure/table,
+/obj/item/weapon/storage/bag/tray,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aSc" = (
+/obj/structure/table,
+/obj/machinery/juicer,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aSd" = (
+/obj/structure/table,
+/obj/machinery/reagentgrinder,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aSe" = (
+/obj/machinery/processor,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aSf" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/hallway/primary/fore)
+"aSg" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"aSh" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"aSi" = (
+/obj/structure/grille,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/quartermaster/miningdock)
+"aSj" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"aSk" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/open/floor/plasteel/brown{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
+ dir = 4
+ },
+/area/quartermaster/miningdock)
+"aSl" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aSm" = (
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 2;
+ name = "Port Maintenance APC";
+ pixel_y = -24
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aSn" = (
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aSo" = (
+/obj/structure/frame/computer,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aSp" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"aSq" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/gloves,
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"aSr" = (
+/obj/machinery/light/small,
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/masks,
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"aSs" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Surgery APC";
+ pixel_x = 26;
+ pixel_y = 0
+ },
+/obj/structure/cable,
+/obj/structure/table/glass,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/folder/white,
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"aSt" = (
+/obj/machinery/computer/med_data,
+/turf/open/floor/plasteel/white/corner,
+/area/medical/surgery)
+"aSu" = (
+/obj/machinery/vending/wallmed{
+ pixel_y = 28
+ },
+/obj/structure/table,
+/obj/item/weapon/surgicaldrill,
+/obj/item/weapon/circular_saw,
+/turf/open/floor/plasteel/white/side,
+/area/medical/surgery)
+"aSv" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/item/weapon/scalpel,
+/obj/item/weapon/retractor,
+/turf/open/floor/plasteel/white/side,
+/area/medical/surgery)
+"aSw" = (
+/obj/structure/table,
+/obj/item/weapon/hemostat,
+/obj/item/weapon/cautery,
+/turf/open/floor/plasteel/white/side,
+/area/medical/surgery)
+"aSx" = (
+/obj/structure/table,
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/item/weapon/storage/firstaid/brute,
+/turf/open/floor/plasteel/white/side,
+/area/medical/surgery)
+"aSy" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/regular,
+/turf/open/floor/plasteel/white/corner{
+ tag = "icon-whitecorner (WEST)";
+ icon_state = "whitecorner";
+ dir = 8
+ },
+/area/medical/surgery)
+"aSz" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/medical/surgery)
+"aSA" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/surgery)
+"aSB" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/surgery)
+"aSC" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (WEST)";
+ icon_state = "blue";
+ dir = 8
+ },
+/area/hallway/primary/fore)
+"aSD" = (
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aSE" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/computer/arcade,
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aSF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aSG" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aSH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aSI" = (
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aSJ" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aSK" = (
+/obj/structure/table/wood/poker,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aSL" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aSM" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor/shutters{
+ id = "bar-kit";
+ name = "Bar-Kitchen Shutters"
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/kitchen)
+"aSN" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor/shutters{
+ id = "bar-kit";
+ name = "Bar-Kitchen Shutters"
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/kitchen)
+"aSO" = (
+/obj/structure/closet/chefcloset,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aSP" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/crew_quarters/kitchen)
+"aSQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aSR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aSS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aST" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aSU" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aSV" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aSW" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Mining Shuttle Airlock";
+ req_access_txt = "0"
+ },
+/obj/docking_port/mobile{
+ dir = 8;
+ dwidth = 3;
+ height = 5;
+ id = "mining";
+ name = "mining shuttle";
+ port_angle = 90;
+ width = 7
+ },
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 3;
+ height = 5;
+ id = "mining_home";
+ name = "mining shuttle bay";
+ width = 7
+ },
+/turf/open/floor/plating,
+/area/shuttle/labor)
+"aSX" = (
+/obj/machinery/door/airlock/external{
+ name = "Port Docking Bay 1"
+ },
+/turf/open/floor/noslip,
+/area/quartermaster/miningdock)
+"aSY" = (
+/turf/open/floor/noslip,
+/area/quartermaster/miningdock)
+"aSZ" = (
+/obj/machinery/door/airlock/external{
+ name = "Port Docking Bay 1"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"aTa" = (
+/turf/open/floor/plasteel/brown{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
+ dir = 4
+ },
+/area/quartermaster/miningdock)
+"aTb" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aTc" = (
+/turf/closed/wall,
+/area/medical/genetics)
+"aTd" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = "GeneticsDoor";
+ name = "Genetics";
+ req_access_txt = "5; 9"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"aTe" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/white/side{
+ tag = "icon-whitehall (EAST)";
+ icon_state = "whitehall";
+ dir = 4
+ },
+/area/medical/surgery)
+"aTf" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"aTg" = (
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"aTh" = (
+/obj/structure/table,
+/obj/item/weapon/surgical_drapes,
+/turf/open/floor/plasteel/white/side{
+ tag = "icon-whitehall (WEST)";
+ icon_state = "whitehall";
+ dir = 8
+ },
+/area/medical/surgery)
+"aTi" = (
+/turf/open/floor/plasteel/black,
+/area/medical/surgery)
+"aTj" = (
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (WEST)";
+ icon_state = "blue";
+ dir = 8
+ },
+/area/hallway/primary/fore)
+"aTk" = (
+/obj/structure/table/wood/poker,
+/obj/effect/holodeck_effect/cards,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aTl" = (
+/obj/structure/chair/wood,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aTm" = (
+/obj/structure/chair/wood,
+/obj/effect/landmark/start{
+ name = "Assistant"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aTn" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aTo" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aTp" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aTq" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aTr" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aTs" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aTt" = (
+/obj/structure/sink/puddle,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aTu" = (
+/obj/structure/flora/ausbushes/pointybush,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aTv" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=HOP2";
+ location = "Stbd"
+ },
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aTw" = (
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aTx" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=Stbd";
+ location = "HOP"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aTy" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aTz" = (
+/turf/closed/wall,
+/area/crew_quarters/heads)
+"aTA" = (
+/obj/machinery/newscaster/security_unit,
+/turf/closed/wall,
+/area/crew_quarters/heads)
+"aTB" = (
+/turf/closed/wall/r_wall,
+/area/crew_quarters/heads)
+"aTC" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/command{
+ name = "Head of Personnel";
+ req_access = null;
+ req_access_txt = "57"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"aTD" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel/brown{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
+ dir = 4
+ },
+/area/quartermaster/miningdock)
+"aTE" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aTF" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/table,
+/obj/item/weapon/pen,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aTG" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aTH" = (
+/mob/living/carbon/monkey,
+/turf/open/floor/plasteel/neutral,
+/area/medical/genetics)
+"aTI" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel/neutral,
+/area/medical/genetics)
+"aTJ" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (NORTHWEST)";
+ icon_state = "whitepurple";
+ dir = 9
+ },
+/area/medical/genetics)
+"aTK" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (NORTH)";
+ icon_state = "whitepurple";
+ dir = 1
+ },
+/area/medical/genetics)
+"aTL" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (NORTH)";
+ icon_state = "whitepurple";
+ dir = 1
+ },
+/area/medical/genetics)
+"aTM" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Genetics Lab APC";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ tag = "icon-0-8";
+ icon_state = "0-8"
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/disks,
+/obj/item/weapon/storage/pill_bottle/mutadone,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (NORTH)";
+ icon_state = "whitepurple";
+ dir = 1
+ },
+/area/medical/genetics)
+"aTN" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/injectors,
+/obj/item/weapon/storage/pill_bottle/mannitol,
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (NORTH)";
+ icon_state = "whitepurple";
+ dir = 1
+ },
+/area/medical/genetics)
+"aTO" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/dna_scannernew,
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (NORTH)";
+ icon_state = "whitepurple";
+ dir = 1
+ },
+/area/medical/genetics)
+"aTP" = (
+/obj/machinery/computer/scan_consolenew,
+/obj/machinery/requests_console{
+ department = "Genetics";
+ departmentType = 0;
+ name = "Genetics Requests Console";
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (NORTHEAST)";
+ icon_state = "whitepurple";
+ dir = 5
+ },
+/area/medical/genetics)
+"aTQ" = (
+/turf/open/floor/plasteel/white/side{
+ tag = "icon-whitehall (EAST)";
+ icon_state = "whitehall";
+ dir = 4
+ },
+/area/medical/surgery)
+"aTR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"aTS" = (
+/obj/machinery/computer/operating,
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"aTT" = (
+/obj/structure/table/optable,
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"aTU" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel/white/side{
+ tag = "icon-whitehall (WEST)";
+ icon_state = "whitehall";
+ dir = 8
+ },
+/area/medical/surgery)
+"aTV" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = "";
+ name = "Surgery Observation";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/surgery)
+"aTW" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ tag = "icon-plant-17";
+ icon_state = "plant-17"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aTX" = (
+/obj/machinery/light,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aTY" = (
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aTZ" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (SOUTHWEST)";
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aUa" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aUb" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aUc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aUd" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aUe" = (
+/obj/structure/table,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aUf" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aUg" = (
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 31
+ },
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aUh" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 28
+ },
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aUi" = (
+/obj/machinery/camera/autoname,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aUj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aUk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plasteel,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aUl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aUm" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aUn" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aUo" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "hopqueue";
+ name = "HoP Queue Shutters"
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plasteel/loadingarea{
+ tag = "icon-loadingarea (EAST)";
+ icon_state = "loadingarea";
+ dir = 4
+ },
+/area/crew_quarters/heads)
+"aUp" = (
+/turf/open/floor/plasteel/bot,
+/area/crew_quarters/heads)
+"aUq" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "hop";
+ layer = 2.9;
+ name = "Privacy Shutters"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/structure/sign/electricshock{
+ pixel_y = 30
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads)
+"aUr" = (
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"aUs" = (
+/obj/structure/filingcabinet,
+/obj/machinery/light_switch{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"aUt" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/closet/secure_closet{
+ name = "Spares";
+ req_access_txt = "57"
+ },
+/obj/item/weapon/storage/box/ids,
+/obj/item/weapon/storage/box/ids,
+/obj/item/weapon/storage/box/PDAs,
+/obj/item/weapon/storage/box/PDAs,
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"aUu" = (
+/obj/structure/closet/secure_closet/hop,
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"aUv" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/bin,
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 31
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"aUw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/closed/wall/r_wall,
+/area/crew_quarters/heads)
+"aUx" = (
+/obj/structure/closet/crate,
+/obj/machinery/light/small,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"aUy" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = 0
+ },
+/turf/open/floor/plating,
+/area/shuttle/labor)
+"aUz" = (
+/obj/structure/ore_box,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"aUA" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"aUB" = (
+/obj/machinery/computer/shuttle/mining{
+ req_access = "0"
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 8
+ },
+/area/quartermaster/miningdock)
+"aUC" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aUD" = (
+/obj/structure/table,
+/obj/item/device/flashlight/lamp,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aUE" = (
+/obj/structure/rack,
+/obj/item/weapon/tank/internals/air,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aUF" = (
+/obj/machinery/atmospherics/components/unary/tank/air{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "bot"
+ },
+/area/maintenance/port)
+"aUG" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/maintenance/port)
+"aUH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/maintenance/port)
+"aUI" = (
+/turf/open/floor/plasteel/neutral,
+/area/medical/genetics)
+"aUJ" = (
+/obj/machinery/door/window/eastright{
+ name = "Monkey Pen";
+ req_access_txt = "5; 9"
+ },
+/turf/open/floor/plasteel/neutral,
+/area/medical/genetics)
+"aUK" = (
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (WEST)";
+ icon_state = "whitepurple";
+ dir = 8
+ },
+/area/medical/genetics)
+"aUL" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"aUM" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"aUN" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (EAST)";
+ icon_state = "whitepurple";
+ dir = 4
+ },
+/area/medical/genetics)
+"aUO" = (
+/obj/structure/closet/secure_closet/medical2,
+/turf/open/floor/plasteel/white/side{
+ tag = "icon-whitehall (EAST)";
+ icon_state = "whitehall";
+ dir = 4
+ },
+/area/medical/surgery)
+"aUP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"aUQ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"aUR" = (
+/turf/open/floor/plasteel/white/side{
+ tag = "icon-whitehall (WEST)";
+ icon_state = "whitehall";
+ dir = 8
+ },
+/area/medical/surgery)
+"aUS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aUT" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -24
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aUU" = (
+/obj/machinery/status_display,
+/turf/closed/wall,
+/area/crew_quarters/theatre)
+"aUV" = (
+/obj/structure/chair,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aUW" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aUX" = (
+/obj/structure/table,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aUY" = (
+/obj/machinery/hydroponics/soil,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aUZ" = (
+/obj/machinery/hydroponics/soil,
+/obj/item/seeds/lime,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aVa" = (
+/obj/machinery/hydroponics/soil,
+/obj/item/seeds/watermelon,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aVb" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 24
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aVc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aVd" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "hopqueue";
+ name = "HoP Queue Shutters"
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/crew_quarters/heads)
+"aVe" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "hop";
+ layer = 2.9;
+ name = "Privacy Shutters"
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/crew_quarters/heads)
+"aVf" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"aVg" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall/r_wall,
+/area/crew_quarters/heads)
+"aVh" = (
+/obj/structure/shuttle/engine/propulsion/burst,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/labor)
+"aVi" = (
+/obj/machinery/computer/security/mining{
+ network = list("MINE","AuxBase")
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 8
+ },
+/area/quartermaster/miningdock)
+"aVj" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aVk" = (
+/obj/structure/table,
+/obj/item/weapon/paper,
+/obj/item/weapon/poster/random_contraband,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aVl" = (
+/obj/structure/rack,
+/obj/item/weapon/razor,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aVm" = (
+/obj/machinery/atmospherics/components/unary/portables_connector{
+ tag = "icon-connector_map (EAST)";
+ icon_state = "connector_map";
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "bot"
+ },
+/area/maintenance/port)
+"aVn" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/maintenance/port)
+"aVo" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (EAST)";
+ icon_state = "camera";
+ dir = 4
+ },
+/mob/living/carbon/monkey,
+/turf/open/floor/plasteel/neutral,
+/area/medical/genetics)
+"aVp" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/mob/living/carbon/monkey,
+/turf/open/floor/plasteel/neutral,
+/area/medical/genetics)
+"aVq" = (
+/obj/structure/bed/roller,
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"aVr" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"aVs" = (
+/obj/effect/landmark/start{
+ name = "Geneticist"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"aVt" = (
+/obj/machinery/vending/wallmed{
+ pixel_x = 24
+ },
+/obj/structure/chair/office/dark,
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (EAST)";
+ icon_state = "whitepurple";
+ dir = 4
+ },
+/area/medical/genetics)
+"aVu" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/turf/open/floor/plasteel/white/corner{
+ tag = "icon-whitecorner (EAST)";
+ icon_state = "whitecorner";
+ dir = 4
+ },
+/area/medical/surgery)
+"aVv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white/side{
+ tag = "icon-whitehall (NORTH)";
+ icon_state = "whitehall";
+ dir = 1
+ },
+/area/medical/surgery)
+"aVw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light,
+/obj/machinery/iv_drip,
+/turf/open/floor/plasteel/white/side{
+ tag = "icon-whitehall (NORTH)";
+ icon_state = "whitehall";
+ dir = 1
+ },
+/area/medical/surgery)
+"aVx" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/masks{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/gloves,
+/turf/open/floor/plasteel/white/side{
+ tag = "icon-whitehall (NORTH)";
+ icon_state = "whitehall";
+ dir = 1
+ },
+/area/medical/surgery)
+"aVy" = (
+/obj/item/device/radio/intercom{
+ pixel_y = -28
+ },
+/turf/open/floor/plasteel/white/side{
+ tag = "icon-whitehall (NORTH)";
+ icon_state = "whitehall";
+ dir = 1
+ },
+/area/medical/surgery)
+"aVz" = (
+/turf/open/floor/plasteel/white/corner{
+ tag = "icon-whitecorner (NORTH)";
+ icon_state = "whitecorner";
+ dir = 1
+ },
+/area/medical/surgery)
+"aVA" = (
+/obj/machinery/light/small,
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/surgery)
+"aVB" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aVC" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aVD" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel/delivery,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aVE" = (
+/obj/structure/flora/grass/both,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aVF" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 9
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aVG" = (
+/obj/machinery/vending/cigarette,
+/turf/open/floor/plasteel/green/side{
+ dir = 5
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aVH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aVI" = (
+/obj/machinery/hydroponics/soil,
+/obj/item/seeds/apple,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aVJ" = (
+/obj/machinery/hydroponics/soil,
+/obj/item/seeds/orange,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aVK" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aVL" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aVM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aVN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aVO" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "hopqueue";
+ name = "HoP Queue Shutters"
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/crew_quarters/heads)
+"aVP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/bot,
+/area/crew_quarters/heads)
+"aVQ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "hop";
+ layer = 2.9;
+ name = "Privacy Shutters"
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/crew_quarters/heads)
+"aVR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/photocopier,
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"aVS" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"aVT" = (
+/obj/effect/landmark/start{
+ name = "Head of Personnel"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"aVU" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"aVV" = (
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching Prison Wing holding areas.";
+ dir = 4;
+ name = "Prison Monitor";
+ network = list("Prison");
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"aVW" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/plating/asteroid/airless,
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"aVX" = (
+/turf/open/floor/plasteel/brown{
+ dir = 8
+ },
+/area/quartermaster/miningdock)
+"aVY" = (
+/obj/structure/closet/wardrobe/white,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aVZ" = (
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/maintenance/port)
+"aWa" = (
+/obj/machinery/light/small,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/maintenance/port)
+"aWb" = (
+/obj/machinery/atmospherics/components/binary/valve,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/maintenance/port)
+"aWc" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel/neutral,
+/area/medical/genetics)
+"aWd" = (
+/obj/machinery/dna_scannernew,
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"aWe" = (
+/obj/machinery/computer/scan_consolenew,
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (EAST)";
+ icon_state = "whitepurple";
+ dir = 4
+ },
+/area/medical/genetics)
+"aWf" = (
+/turf/closed/wall,
+/area/medical/genetics_cloning)
+"aWg" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical{
+ name = "Operating Theatre";
+ req_access_txt = "45"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whitepurple,
+/area/medical/genetics_cloning)
+"aWh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/medical/genetics_cloning)
+"aWi" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical{
+ name = "Operating Theatre";
+ req_access_txt = "45"
+ },
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"aWj" = (
+/turf/closed/wall,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"aWk" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (WEST)";
+ icon_state = "blue";
+ dir = 8
+ },
+/area/hallway/primary/fore)
+"aWl" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aWm" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/hallway/primary/fore)
+"aWn" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ icon_state = "connector_map";
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/scrubber/huge/movable,
+/turf/open/floor/plasteel/delivery,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aWo" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aWp" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/food/condiment/saltshaker{
+ pixel_x = 9
+ },
+/obj/item/weapon/reagent_containers/food/condiment/peppermill,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aWq" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aWr" = (
+/obj/structure/chair,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aWs" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/chair,
+/obj/effect/landmark/start{
+ name = "Assistant"
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aWt" = (
+/obj/machinery/hydroponics/soil,
+/obj/item/seeds/wheat,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aWu" = (
+/obj/machinery/hydroponics/soil,
+/obj/item/seeds/tea,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aWv" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/scrubber/huge/movable,
+/turf/open/floor/plasteel/delivery,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aWw" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aWx" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aWy" = (
+/obj/machinery/pdapainter,
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"aWz" = (
+/obj/machinery/holopad,
+/mob/living/simple_animal/pet/dog/corgi/Ian,
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"aWA" = (
+/obj/structure/table,
+/obj/item/weapon/folder/blue,
+/obj/item/weapon/stamp/hop,
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"aWB" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (WEST)";
+ icon_state = "camera";
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ desc = "Talk smack through this.";
+ dir = 4;
+ pixel_x = 28;
+ syndie = 1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"aWC" = (
+/obj/structure/closet/secure_closet/miner,
+/turf/open/floor/plasteel/brown{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
+ dir = 4
+ },
+/area/quartermaster/miningdock)
+"aWD" = (
+/obj/structure/closet/wardrobe/genetics_white,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aWE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Medbay Atmos Closet";
+ req_access_txt = "32"
+ },
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "delivery"
+ },
+/area/maintenance/port)
+"aWF" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"aWG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"aWH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"aWI" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"aWJ" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (EAST)";
+ icon_state = "whitepurple";
+ dir = 4
+ },
+/area/medical/genetics)
+"aWK" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = "CloningDoor";
+ name = "Cloning Lab";
+ req_access_txt = "0";
+ req_one_access_txt = "5"
+ },
+/turf/open/floor/plasteel/whitepurple,
+/area/medical/genetics_cloning)
+"aWL" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (SOUTHEAST)";
+ icon_state = "camera";
+ dir = 6
+ },
+/turf/open/floor/plasteel/whitepurple,
+/area/medical/genetics_cloning)
+"aWM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whitepurple,
+/area/medical/genetics_cloning)
+"aWN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whitepurple,
+/area/medical/genetics_cloning)
+"aWO" = (
+/obj/machinery/vending/clothing,
+/turf/open/floor/plasteel/whitepurple,
+/area/medical/genetics_cloning)
+"aWP" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/medical/genetics_cloning)
+"aWQ" = (
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (NORTHWEST)";
+ icon_state = "whiteblue";
+ dir = 9
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"aWR" = (
+/obj/machinery/button/door{
+ desc = "A remote control switch for the medbay foyer.";
+ id = "MedbayFoyer";
+ name = "Medbay Exit Button";
+ normaldoorcontrol = 1;
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (NORTHEAST)";
+ icon_state = "whiteblue";
+ dir = 5
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"aWS" = (
+/obj/structure/sign/bluecross,
+/turf/closed/wall,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"aWT" = (
+/obj/machinery/vending/snack,
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (NORTHWEST)";
+ icon_state = "blue";
+ dir = 9
+ },
+/area/hallway/primary/fore)
+"aWU" = (
+/obj/machinery/vending/cola,
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (NORTH)";
+ icon_state = "blue";
+ dir = 1
+ },
+/area/hallway/primary/fore)
+"aWV" = (
+/turf/open/floor/plasteel/blue/corner{
+ tag = "icon-bluecorner (NORTH)";
+ icon_state = "bluecorner";
+ dir = 1
+ },
+/area/hallway/primary/fore)
+"aWW" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aWX" = (
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aWY" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/hallway/primary/fore)
+"aWZ" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ icon_state = "connector_map";
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/pump,
+/turf/open/floor/plasteel/delivery,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aXa" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aXb" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aXc" = (
+/obj/machinery/newscaster{
+ dir = 1;
+ pixel_y = -30
+ },
+/obj/structure/table,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aXd" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/table,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aXe" = (
+/obj/structure/flora/ausbushes/grassybush,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aXf" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/grass,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aXg" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/pump,
+/turf/open/floor/plasteel/delivery,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aXh" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aXi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aXj" = (
+/obj/structure/table,
+/obj/machinery/recharger,
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"aXk" = (
+/obj/structure/bed/dogbed{
+ anchored = 1;
+ desc = "Ian's bed! Looks comfy.";
+ name = "Ian's bed"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"aXl" = (
+/obj/structure/table,
+/obj/item/weapon/book/manual/wiki/security_space_law,
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"aXm" = (
+/obj/machinery/computer/cargo,
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"aXn" = (
+/turf/open/floor/plasteel/brown{
+ dir = 10
+ },
+/area/quartermaster/miningdock)
+"aXo" = (
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/miningdock)
+"aXp" = (
+/obj/structure/closet/secure_closet/miner,
+/turf/open/floor/plasteel/brown{
+ dir = 6
+ },
+/area/quartermaster/miningdock)
+"aXq" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/rack,
+/obj/item/weapon/pickaxe,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aXr" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aXs" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/door/airlock/maintenance_hatch,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aXt" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aXu" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ tag = "icon-intact (EAST)";
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aXv" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aXw" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aXx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aXy" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/medical/genetics)
+"aXz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral,
+/area/medical/genetics)
+"aXA" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/mob/living/carbon/monkey,
+/turf/open/floor/plasteel/neutral,
+/area/medical/genetics)
+"aXB" = (
+/obj/structure/closet/wardrobe/genetics_white,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (SOUTHWEST)";
+ icon_state = "whitepurple";
+ dir = 10
+ },
+/area/medical/genetics)
+"aXC" = (
+/obj/machinery/light,
+/obj/structure/closet/wardrobe/white,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/side,
+/area/medical/genetics)
+"aXD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/rxglasses,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/side,
+/area/medical/genetics)
+"aXE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/side,
+/area/medical/genetics)
+"aXF" = (
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/plasteel/whitepurple/side,
+/area/medical/genetics)
+"aXG" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (SOUTHEAST)";
+ icon_state = "whitepurple";
+ dir = 6
+ },
+/area/medical/genetics)
+"aXH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/closed/wall,
+/area/medical/genetics_cloning)
+"aXI" = (
+/obj/structure/closet/wardrobe/white,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple,
+/area/medical/genetics_cloning)
+"aXJ" = (
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/plasteel/whitepurple,
+/area/medical/genetics_cloning)
+"aXK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel/whitepurple,
+/area/medical/genetics_cloning)
+"aXL" = (
+/obj/machinery/dna_scannernew,
+/turf/open/floor/plasteel/whitepurple,
+/area/medical/genetics_cloning)
+"aXM" = (
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (WEST)";
+ icon_state = "whiteblue";
+ dir = 8
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"aXN" = (
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (EAST)";
+ icon_state = "whiteblue";
+ dir = 4
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"aXO" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = "MedbayFoyer";
+ name = "Medbay";
+ req_access_txt = "5"
+ },
+/turf/open/floor/plasteel/blue,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"aXP" = (
+/obj/structure/sign/directions/medical{
+ tag = "icon-direction_med (WEST)";
+ icon_state = "direction_med";
+ dir = 8
+ },
+/obj/structure/sign/directions/evac{
+ dir = 4;
+ icon_state = "direction_evac";
+ pixel_y = -10;
+ tag = "icon-direction_evac (EAST)"
+ },
+/obj/structure/sign/directions/security{
+ pixel_y = 10
+ },
+/turf/closed/wall,
+/area/hallway/primary/fore)
+"aXQ" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 10
+ },
+/area/hallway/primary/fore)
+"aXR" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 6
+ },
+/area/hallway/primary/fore)
+"aXS" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 10
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aXT" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 6
+ },
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aXU" = (
+/obj/structure/sign/barsign,
+/turf/closed/wall,
+/area/crew_quarters/bar)
+"aXV" = (
+/obj/machinery/status_display,
+/turf/closed/wall,
+/area/crew_quarters/bar)
+"aXW" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/closed/wall,
+/area/crew_quarters/bar)
+"aXX" = (
+/obj/machinery/biogenerator,
+/turf/open/floor/sepia,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aXY" = (
+/obj/machinery/seed_extractor,
+/turf/open/floor/sepia,
+/area/construction/hallway{
+ name = "Biodome Hallway"
+ })
+"aXZ" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 10
+ },
+/area/hallway/primary/fore)
+"aYa" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 6
+ },
+/area/hallway/primary/fore)
+"aYb" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aYc" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aYd" = (
+/obj/machinery/computer/card,
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"aYe" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"aYf" = (
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Head of Personnel's Desk";
+ departmentType = 5;
+ name = "Head of Personnel RC";
+ pixel_y = -30
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"aYg" = (
+/obj/machinery/door/airlock/mining{
+ req_access_txt = "48"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"aYh" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/structure/rack,
+/obj/item/weapon/poster/random_official,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aYi" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/maintenance/port)
+"aYj" = (
+/turf/closed/wall,
+/area/medical/medbay3)
+"aYk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/closed/wall,
+/area/medical/genetics)
+"aYl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/closed/wall,
+/area/medical/genetics)
+"aYm" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plating,
+/area/medical/genetics)
+"aYn" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = "GeneticsDoor";
+ name = "Genetics";
+ req_access_txt = "5; 9"
+ },
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/genetics)
+"aYo" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ tag = "icon-0-8";
+ icon_state = "0-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plating,
+/area/medical/genetics)
+"aYp" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/turf/closed/wall,
+/area/medical/genetics)
+"aYq" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/medical/genetics_cloning)
+"aYr" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/turf/open/floor/plasteel/whitepurple,
+/area/medical/genetics_cloning)
+"aYs" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/whitepurple,
+/area/medical/genetics_cloning)
+"aYt" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Geneticist"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple,
+/area/medical/genetics_cloning)
+"aYu" = (
+/obj/machinery/computer/cloning,
+/obj/item/weapon/book/manual/medical_cloning,
+/turf/open/floor/plasteel/whitepurple,
+/area/medical/genetics_cloning)
+"aYv" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (SOUTHWEST)";
+ icon_state = "blue";
+ dir = 10
+ },
+/area/hallway/primary/fore)
+"aYw" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plasteel/blue/side,
+/area/hallway/primary/fore)
+"aYx" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/blue/side,
+/area/hallway/primary/fore)
+"aYy" = (
+/turf/open/floor/plasteel/blue/side,
+/area/hallway/primary/fore)
+"aYz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/blue/corner{
+ tag = "icon-bluecorner (WEST)";
+ icon_state = "bluecorner";
+ dir = 8
+ },
+/area/hallway/primary/fore)
+"aYA" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aYB" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=CHW";
+ location = "Lockers"
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aYC" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aYD" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aYE" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aYF" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aYG" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aYH" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (SOUTHEAST)";
+ icon_state = "camera";
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aYI" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (SOUTHEAST)";
+ icon_state = "camera";
+ dir = 6
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aYJ" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aYK" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aYL" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "hopqueue";
+ name = "HoP Queue Shutters"
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plasteel/loadingarea{
+ dir = 8
+ },
+/area/crew_quarters/heads)
+"aYM" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ dir = 1;
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/delivery,
+/area/crew_quarters/heads)
+"aYN" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor{
+ base_state = "rightsecure";
+ dir = 4;
+ icon_state = "rightsecure";
+ name = "Head of Personnel's Desk";
+ req_access = null;
+ req_access_txt = "57"
+ },
+/obj/machinery/door/window/northleft{
+ dir = 8;
+ icon_state = "left";
+ name = "Reception Window";
+ req_access_txt = "0"
+ },
+/obj/machinery/flasher{
+ dir = 1;
+ id = "hopflash";
+ pixel_x = 0;
+ pixel_y = -28
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "hop";
+ layer = 2.9;
+ name = "Privacy Shutters"
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads)
+"aYO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/machinery/button/door{
+ id = "hopqueue";
+ name = "Queue Shutters Control";
+ pixel_x = -4;
+ pixel_y = -25;
+ req_access_txt = "28"
+ },
+/obj/machinery/button/door{
+ id = "hop";
+ name = "Privacy Shutters Control";
+ pixel_x = 6;
+ pixel_y = -25;
+ req_access_txt = "28"
+ },
+/obj/machinery/button/flasher{
+ id = "hopflash";
+ pixel_x = 6;
+ pixel_y = -36
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"aYP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/machinery/light,
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"aYQ" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/machinery/computer/secure_data,
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"aYR" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/maintenance{
+ name = "HoP Maintenance";
+ req_access_txt = "57"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aYS" = (
+/obj/machinery/portable_atmospherics/pump,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aYT" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aYU" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aYV" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 8
+ },
+/area/quartermaster/miningdock)
+"aYW" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"aYX" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Mining Dock APC";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/brown{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
+ dir = 4
+ },
+/area/quartermaster/miningdock)
+"aYY" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aYZ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/closet/secure_closet/personal/patient,
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"aZa" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"aZb" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/syringe,
+/obj/item/weapon/reagent_containers/glass/bottle/salglu_solution,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"aZc" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/medical,
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"aZd" = (
+/turf/closed/wall,
+/area/medical/patients_rooms)
+"aZe" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Patient Room B APC";
+ pixel_x = -26;
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"aZf" = (
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"aZg" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/cmo,
+/turf/open/floor/carpet,
+/area/medical/medbay3)
+"aZh" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp/green,
+/turf/open/floor/carpet,
+/area/medical/medbay3)
+"aZi" = (
+/obj/structure/dresser,
+/turf/open/floor/carpet,
+/area/medical/medbay3)
+"aZj" = (
+/obj/structure/closet/wardrobe/white/medical,
+/obj/item/clothing/suit/hooded/wintercoat/medical,
+/turf/open/floor/carpet,
+/area/medical/medbay3)
+"aZk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/medical/cryo)
+"aZl" = (
+/obj/machinery/atmospherics/components/unary/cryo_cell,
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (WEST)";
+ icon_state = "whiteblue";
+ dir = 8
+ },
+/area/medical/cryo)
+"aZm" = (
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,
+/turf/open/floor/plasteel/whitepurple/corner{
+ tag = "icon-whitepurplecorner (EAST)";
+ icon_state = "whitepurplecorner";
+ dir = 4
+ },
+/area/medical/cryo)
+"aZn" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (NORTH)";
+ icon_state = "whitepurple";
+ dir = 1
+ },
+/area/medical/cryo)
+"aZo" = (
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,
+/turf/open/floor/plasteel/whitepurple/corner{
+ tag = "icon-whitepurplecorner (NORTH)";
+ icon_state = "whitepurplecorner";
+ dir = 1
+ },
+/area/medical/cryo)
+"aZp" = (
+/obj/machinery/atmospherics/components/unary/cryo_cell,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (EAST)";
+ icon_state = "whiteblue";
+ dir = 4
+ },
+/area/medical/cryo)
+"aZq" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Cloning Lab APC";
+ pixel_y = -24
+ },
+/obj/structure/table,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/weapon/pen,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plasteel/whitepurple,
+/area/medical/genetics_cloning)
+"aZr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/whitepurple,
+/area/medical/genetics_cloning)
+"aZs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light,
+/obj/machinery/button/door{
+ desc = "A remote control switch for the genetics doors.";
+ id = "GeneticsDoor";
+ name = "Genetics Exit Button";
+ normaldoorcontrol = 1;
+ pixel_x = -8;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/whitepurple,
+/area/medical/genetics_cloning)
+"aZt" = (
+/obj/machinery/clonepod,
+/turf/open/floor/plasteel/whitepurple,
+/area/medical/genetics_cloning)
+"aZu" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (EAST)";
+ icon_state = "whiteblue";
+ dir = 4
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"aZv" = (
+/turf/closed/wall,
+/area/medical/cmo)
+"aZw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (WEST)";
+ icon_state = "blue";
+ dir = 8
+ },
+/area/hallway/primary/fore)
+"aZx" = (
+/obj/structure/cable{
+ icon_state = "2-4";
+ tag = "icon-2-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aZy" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aZz" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aZA" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aZB" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aZC" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "L1"
+ },
+/area/hallway/primary/fore)
+"aZD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel{
+ icon_state = "L3"
+ },
+/area/hallway/primary/fore)
+"aZE" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "L5"
+ },
+/area/hallway/primary/fore)
+"aZF" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "L7"
+ },
+/area/hallway/primary/fore)
+"aZG" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "L9"
+ },
+/area/hallway/primary/fore)
+"aZH" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel{
+ icon_state = "L11"
+ },
+/area/hallway/primary/fore)
+"aZI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel{
+ desc = "";
+ icon_state = "L13";
+ name = "floor"
+ },
+/area/hallway/primary/fore)
+"aZJ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aZK" = (
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aZL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/device/radio/intercom{
+ desc = "Talk smack through this.";
+ dir = 4;
+ pixel_x = 28;
+ syndie = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aZM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aZN" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j1";
+ tag = "icon-pipe-j1 (EAST)"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aZO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aZP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aZQ" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aZR" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aZS" = (
+/turf/open/floor/plasteel/brown{
+ dir = 8
+ },
+/area/maintenance/starboard)
+"aZT" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/starboard)
+"aZU" = (
+/turf/open/floor/plasteel/brown{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
+ dir = 4
+ },
+/area/maintenance/starboard)
+"aZV" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aZW" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aZX" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/item/weapon/rack_parts,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aZY" = (
+/obj/structure/closet/wardrobe/white,
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"aZZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"baa" = (
+/obj/machinery/iv_drip,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"bab" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"bac" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/open/floor/carpet,
+/area/medical/medbay3)
+"bad" = (
+/turf/open/floor/carpet,
+/area/medical/medbay3)
+"bae" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ tag = "icon-intact (NORTHEAST)";
+ icon_state = "intact";
+ dir = 5
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (WEST)";
+ icon_state = "whiteblue";
+ dir = 8
+ },
+/area/medical/cryo)
+"baf" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/cryo)
+"bag" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/cryo)
+"bah" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/cryo)
+"bai" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 9
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (EAST)";
+ icon_state = "whiteblue";
+ dir = 4
+ },
+/area/medical/cryo)
+"baj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = "CloningDoor";
+ name = "Cloning Lab";
+ req_access_txt = "0";
+ req_one_access_txt = "5"
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/whitepurple,
+/area/medical/genetics_cloning)
+"bak" = (
+/obj/structure/sign/nosmoking_2,
+/turf/closed/wall,
+/area/medical/genetics_cloning)
+"bal" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "cmo";
+ name = "CMO Privacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/medical/cmo)
+"bam" = (
+/obj/structure/bookcase/manuals/medical,
+/obj/item/weapon/book/manual/wiki/chemistry,
+/obj/item/weapon/book/manual/medical_cloning,
+/turf/open/floor/plasteel/cmo,
+/area/medical/cmo)
+"ban" = (
+/obj/structure/filingcabinet/medical,
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/cmo,
+/area/medical/cmo)
+"bao" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/suit_storage_unit/cmo,
+/turf/open/floor/plasteel/cmo,
+/area/medical/cmo)
+"bap" = (
+/obj/structure/closet/secure_closet/CMO,
+/turf/open/floor/plasteel/cmo,
+/area/medical/cmo)
+"baq" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=QM";
+ location = "CHW"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (WEST)";
+ icon_state = "blue";
+ dir = 8
+ },
+/area/hallway/primary/fore)
+"bar" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"bas" = (
+/turf/open/floor/plasteel{
+ icon_state = "L2"
+ },
+/area/hallway/primary/fore)
+"bat" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel{
+ icon_state = "L4"
+ },
+/area/hallway/primary/fore)
+"bau" = (
+/turf/open/floor/plasteel{
+ icon_state = "L6"
+ },
+/area/hallway/primary/fore)
+"bav" = (
+/turf/open/floor/plasteel{
+ icon_state = "L8"
+ },
+/area/hallway/primary/fore)
+"baw" = (
+/turf/open/floor/plasteel{
+ icon_state = "L10"
+ },
+/area/hallway/primary/fore)
+"bax" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel{
+ icon_state = "L12"
+ },
+/area/hallway/primary/fore)
+"bay" = (
+/turf/open/floor/plasteel{
+ desc = "";
+ icon_state = "L14"
+ },
+/area/hallway/primary/fore)
+"baz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"baA" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"baB" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"baC" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"baD" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Head of Personnel APC";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ tag = "icon-0-8";
+ icon_state = "0-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads)
+"baE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"baF" = (
+/turf/closed/wall,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"baG" = (
+/obj/machinery/door/airlock/mining{
+ req_access_txt = "48"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"baH" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"baI" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = 0
+ },
+/turf/open/floor/plating/asteroid/airless{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"baJ" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/airless{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"baK" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/airless{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"baL" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"baM" = (
+/obj/effect/turf_decal/stripes{
+ tag = "icon-warningline (NORTH)";
+ icon_state = "warningline";
+ dir = 1
+ },
+/turf/open/floor/plating/airless/astplate,
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"baN" = (
+/obj/effect/turf_decal/stripes{
+ tag = "icon-warningline (NORTHEAST)";
+ icon_state = "warningline";
+ dir = 5
+ },
+/turf/open/floor/plating/airless/astplate,
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"baO" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/structure/table,
+/obj/item/weapon/phone,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"baP" = (
+/obj/structure/table,
+/obj/structure/bedsheetbin,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"baQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"baR" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical{
+ name = "Patient Room 1";
+ req_access_txt = "5"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"baS" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"baT" = (
+/obj/machinery/door/airlock/medical{
+ name = "Medbay Break Room";
+ req_access_txt = "5"
+ },
+/turf/open/floor/plasteel/barber,
+/area/medical/medbay3)
+"baU" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/closed/wall,
+/area/medical/cryo)
+"baV" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (WEST)";
+ icon_state = "whiteblue";
+ dir = 8
+ },
+/area/medical/cryo)
+"baW" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/turf/open/floor/plasteel/white,
+/area/medical/cryo)
+"baX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/cryo)
+"baY" = (
+/turf/open/floor/plasteel/white,
+/area/medical/cryo)
+"baZ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (EAST)";
+ icon_state = "whiteblue";
+ dir = 4
+ },
+/area/medical/cryo)
+"bba" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/border_only{
+ tag = "icon-door_open (EAST)";
+ icon_state = "door_open";
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (WEST)";
+ icon_state = "whiteblue";
+ dir = 8
+ },
+/area/medical/cryo)
+"bbb" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/whitepurple/corner{
+ tag = "icon-whitepurplecorner (EAST)";
+ icon_state = "whitepurplecorner";
+ dir = 4
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bbc" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (NORTH)";
+ icon_state = "whitepurple";
+ dir = 1
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bbd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whitepurple/corner{
+ tag = "icon-whitepurplecorner (NORTH)";
+ icon_state = "whitepurplecorner";
+ dir = 1
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bbe" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Medbay Central APC";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ tag = "icon-0-8";
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ tag = "icon-whitebluecorner (EAST)";
+ icon_state = "whitebluecorner";
+ dir = 4
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bbf" = (
+/obj/machinery/camera/autoname,
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (NORTH)";
+ icon_state = "whiteblue";
+ dir = 1
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bbg" = (
+/turf/open/floor/plasteel/whiteblue/corner{
+ tag = "icon-whitebluecorner (NORTH)";
+ icon_state = "whitebluecorner";
+ dir = 1
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bbh" = (
+/obj/structure/chair/comfy/black,
+/obj/effect/landmark/start{
+ name = "Chief Medical Officer"
+ },
+/turf/open/floor/plasteel/cmo,
+/area/medical/cmo)
+"bbi" = (
+/turf/open/floor/plasteel/cmo,
+/area/medical/cmo)
+"bbj" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel/cmo,
+/area/medical/cmo)
+"bbk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel/cmo,
+/area/medical/cmo)
+"bbl" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "cmo";
+ name = "CMO Privacy Shutters"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/medical/cmo)
+"bbm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (WEST)";
+ icon_state = "blue";
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bbn" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bbo" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (EAST)";
+ icon_state = "blue";
+ dir = 4
+ },
+/area/hallway/primary/port)
+"bbp" = (
+/turf/closed/wall,
+/area/hallway/primary/port)
+"bbq" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/hallway/primary/port)
+"bbr" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/glass{
+ name = "Grass Enclosure";
+ req_access_txt = "12"
+ },
+/turf/open/floor/plasteel/green,
+/area/hallway/primary/port)
+"bbs" = (
+/obj/machinery/door/airlock/hatch{
+ name = "Bridge Maintenance Access";
+ req_access_txt = "0";
+ req_one_access_txt = "19; 1"
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"bbt" = (
+/turf/closed/wall/r_wall,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bbu" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor/shutters{
+ id = "civ armory outer";
+ name = "Emergency Storage"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bbv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/sign/securearea,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bbw" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/security{
+ name = "Emergency Storage";
+ req_access = null;
+ req_access_txt = "0";
+ req_one_access_txt = "19; 3"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bbx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/sign/securearea,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bby" = (
+/turf/closed/wall,
+/area/hallway/primary/starboard)
+"bbz" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/hallway/primary/starboard)
+"bbA" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/glass{
+ name = "Grass Enclosure";
+ req_access_txt = "12"
+ },
+/turf/open/floor/plasteel/green,
+/area/hallway/primary/starboard)
+"bbB" = (
+/obj/structure/sign/directions/medical{
+ tag = "icon-direction_med (WEST)";
+ icon_state = "direction_med";
+ dir = 8
+ },
+/obj/structure/sign/directions/evac{
+ pixel_y = -10
+ },
+/obj/structure/sign/directions/security{
+ dir = 8;
+ icon_state = "direction_sec";
+ pixel_y = 10;
+ tag = "icon-direction_sec (WEST)"
+ },
+/turf/closed/wall,
+/area/hallway/primary/starboard)
+"bbC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bbD" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bbE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bbF" = (
+/turf/closed/wall,
+/area/quartermaster/office)
+"bbG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/closed/wall,
+/area/quartermaster/office)
+"bbH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/miner,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTHWEST)";
+ icon_state = "brown";
+ dir = 9
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bbI" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/miner,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTH)";
+ icon_state = "brown";
+ dir = 1
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bbJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/miner,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTH)";
+ icon_state = "brown";
+ dir = 1
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bbK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/miner,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTH)";
+ icon_state = "brown";
+ dir = 1
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bbL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/suit_storage_unit/mining/eva,
+/turf/open/floor/plasteel/darkyellow,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bbM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/ore_box,
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTH)";
+ icon_state = "brown";
+ dir = 1
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bbN" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Mining APC";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTH)";
+ icon_state = "brown";
+ dir = 1
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bbO" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/ore_box,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTH)";
+ icon_state = "brown";
+ dir = 1
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bbP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/ore_box,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTHEAST)";
+ icon_state = "brown";
+ dir = 5
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bbQ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bbR" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/miner,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTHWEST)";
+ icon_state = "brown";
+ dir = 9
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bbS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/mining{
+ pixel_y = 30
+ },
+/obj/structure/closet/secure_closet/miner,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTH)";
+ icon_state = "brown";
+ dir = 1
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bbT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTH)";
+ icon_state = "brown";
+ dir = 1
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bbU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/closet/wardrobe/miner,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTH)";
+ icon_state = "brown";
+ dir = 1
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bbV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/closet/wardrobe/miner,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTHEAST)";
+ icon_state = "brown";
+ dir = 5
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bbW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bbX" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bbY" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = 0
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/airless{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"bbZ" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/deliveryChute{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/airless{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"bca" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/deathsposal{
+ pixel_x = 30
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bcb" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/turf/open/floor/plating/airless/astplate,
+/area/maintenance/starboard)
+"bcc" = (
+/obj/effect/turf_decal/stripes{
+ tag = "icon-warningline (EAST)";
+ icon_state = "warningline";
+ dir = 4
+ },
+/turf/open/floor/plating/airless/astplate,
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"bcd" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/closed/wall,
+/area/maintenance/port)
+"bce" = (
+/obj/machinery/vending/wallmed{
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"bcf" = (
+/obj/structure/table,
+/obj/machinery/computer/med_data/laptop,
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"bcg" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"bch" = (
+/obj/machinery/vending/snack,
+/turf/open/floor/plasteel/barber,
+/area/medical/medbay3)
+"bci" = (
+/obj/machinery/vending/coffee,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/barber,
+/area/medical/medbay3)
+"bcj" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/barber,
+/area/medical/medbay3)
+"bck" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/barber,
+/area/medical/medbay3)
+"bcl" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/closed/wall,
+/area/medical/cryo)
+"bcm" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ tag = "icon-freezer (EAST)";
+ icon_state = "freezer";
+ dir = 4
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHEAST)";
+ icon_state = "camera";
+ dir = 5
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (WEST)";
+ icon_state = "whiteblue";
+ dir = 8
+ },
+/area/medical/cryo)
+"bcn" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/cryo)
+"bco" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/cryo)
+"bcp" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/cryo)
+"bcq" = (
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Cryogenics APC";
+ pixel_x = 24;
+ pixel_y = 0
+ },
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/weapon/wrench,
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (EAST)";
+ icon_state = "whiteblue";
+ dir = 4
+ },
+/area/medical/cryo)
+"bcr" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/medical/cryo)
+"bcs" = (
+/turf/open/floor/plasteel/whiteblue/corner{
+ tag = "icon-whitebluecorner (WEST)";
+ icon_state = "whitebluecorner";
+ dir = 8
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bct" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bcu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ name = "regular air vent";
+ on = 1
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bcv" = (
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bcw" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (EAST)";
+ icon_state = "whiteblue";
+ dir = 4
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bcx" = (
+/obj/machinery/computer/crew,
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/cmo,
+/area/medical/cmo)
+"bcy" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/med_data/laptop,
+/obj/structure/window/reinforced,
+/obj/item/weapon/folder/white{
+ pixel_x = 9
+ },
+/obj/item/weapon/pen/red,
+/turf/open/floor/plasteel/cmo,
+/area/medical/cmo)
+"bcz" = (
+/obj/machinery/door/window/southleft{
+ name = "CMO Desk";
+ req_access_txt = "40"
+ },
+/mob/living/simple_animal/pet/cat/Runtime,
+/turf/open/floor/plasteel/cmo,
+/area/medical/cmo)
+"bcA" = (
+/obj/structure/table/wood,
+/obj/structure/window/reinforced,
+/obj/machinery/keycard_auth,
+/obj/item/weapon/stamp/cmo{
+ pixel_x = 9
+ },
+/turf/open/floor/plasteel/cmo,
+/area/medical/cmo)
+"bcB" = (
+/obj/machinery/status_display,
+/turf/closed/wall,
+/area/medical/cmo)
+"bcC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (WEST)";
+ icon_state = "blue";
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bcD" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bcE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (EAST)";
+ icon_state = "blue";
+ dir = 4
+ },
+/area/hallway/primary/port)
+"bcF" = (
+/turf/open/floor/grass,
+/area/hallway/primary/port)
+"bcG" = (
+/obj/structure/flora/grass/green,
+/turf/open/floor/grass,
+/area/hallway/primary/port)
+"bcH" = (
+/turf/open/floor/plating,
+/area/bridge)
+"bcI" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bcJ" = (
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bcK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/window/brigdoor{
+ dir = 4;
+ name = "Security Desk";
+ req_access_txt = "1"
+ },
+/obj/machinery/door/window/westleft{
+ base_state = "right";
+ dir = 8;
+ icon_state = "right";
+ name = "Outer Window";
+ req_access_txt = "0"
+ },
+/obj/machinery/door/poddoor/shutters{
+ id = "civ armory inner";
+ name = "Emergency Storage Interior Shutters"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bcL" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/button/door{
+ id = "civ armory outer";
+ name = "Civilian Armory Outer Shutters";
+ pixel_y = 28;
+ req_one_access_txt = "19; 3"
+ },
+/obj/machinery/camera/motion{
+ c_tag = "Civ Armory Entrance";
+ dir = 1;
+ network = null
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bcM" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/button/door{
+ id = "civ armory inner";
+ name = "Civilian Armory Inner Shutters";
+ pixel_y = 28;
+ req_access_txt = "0";
+ req_one_access_txt = "19; 3"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bcN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/window/brigdoor{
+ dir = 8;
+ name = "Security Desk";
+ req_access_txt = "1"
+ },
+/obj/machinery/door/window/westleft{
+ base_state = "right";
+ dir = 4;
+ icon_state = "right";
+ name = "Outer Window";
+ req_access_txt = "0"
+ },
+/obj/machinery/door/poddoor/shutters{
+ id = "civ armory inner";
+ name = "Emergency Storage Interior Shutters"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bcO" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bcP" = (
+/turf/open/floor/grass,
+/area/hallway/primary/starboard)
+"bcQ" = (
+/obj/structure/flora/grass/green,
+/turf/open/floor/grass,
+/area/hallway/primary/starboard)
+"bcR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bcS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction{
+ tag = "icon-pipe-y (EAST)";
+ icon_state = "pipe-y";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bcT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bcU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/quartermaster/office)
+"bcV" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/quartermaster/office)
+"bcW" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "garbage"
+ },
+/turf/open/floor/plasteel/black,
+/area/quartermaster/office)
+"bcX" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "garbage"
+ },
+/turf/open/floor/plasteel/black,
+/area/quartermaster/office)
+"bcY" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "garbage"
+ },
+/obj/machinery/recycler,
+/turf/open/floor/plasteel/black,
+/area/quartermaster/office)
+"bcZ" = (
+/obj/machinery/conveyor{
+ tag = "icon-conveyor0 (SOUTHEAST)";
+ icon_state = "conveyor0";
+ dir = 6;
+ id = "garbage"
+ },
+/turf/open/floor/plasteel/black,
+/area/quartermaster/office)
+"bda" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/quartermaster/office)
+"bdb" = (
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (WEST)";
+ icon_state = "brown";
+ dir = 8
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bdc" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bdd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bde" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bdf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/darkyellow,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bdg" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/darkyellow,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bdh" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bdi" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bdj" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bdk" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (EAST)";
+ icon_state = "brown";
+ dir = 4
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bdl" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (WEST)";
+ icon_state = "brown";
+ dir = 8
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bdm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bdn" = (
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (EAST)";
+ icon_state = "brown";
+ dir = 4
+ },
+/area/space)
+"bdo" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bdp" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = 0
+ },
+/turf/open/floor/plating/asteroid/airless{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"bdq" = (
+/obj/effect/turf_decal/stripes,
+/turf/open/floor/plating/airless/astplate,
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"bdr" = (
+/obj/effect/turf_decal/stripes{
+ tag = "icon-warningline (SOUTHEAST)";
+ icon_state = "warningline";
+ dir = 6
+ },
+/turf/open/floor/plating/airless/astplate,
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"bds" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bdt" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/obj/structure/bed/roller,
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"bdu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (SOUTHWEST)";
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"bdv" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"bdw" = (
+/obj/structure/table,
+/obj/item/weapon/folder/white,
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"bdx" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/medical/patients_rooms)
+"bdy" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"bdz" = (
+/obj/machinery/status_display,
+/turf/closed/wall,
+/area/medical/medbay3)
+"bdA" = (
+/turf/open/floor/plasteel/barber,
+/area/medical/medbay3)
+"bdB" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel/barber,
+/area/medical/medbay3)
+"bdC" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel/barber,
+/area/medical/medbay3)
+"bdD" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector{
+ tag = "icon-connector_map (EAST)";
+ icon_state = "connector_map";
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/structure/sign/fire{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (WEST)";
+ icon_state = "whiteblue";
+ dir = 8
+ },
+/area/medical/cryo)
+"bdE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/cryo)
+"bdF" = (
+/obj/structure/bed/roller,
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (EAST)";
+ icon_state = "whiteblue";
+ dir = 4
+ },
+/area/medical/cryo)
+"bdG" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/status_display,
+/turf/closed/wall,
+/area/medical/cryo)
+"bdH" = (
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bdI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ tag = "icon-1-4";
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bdJ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bdK" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (EAST)";
+ icon_state = "whiteblue";
+ dir = 4
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bdL" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "cmo";
+ name = "CMO Privacy Shutters"
+ },
+/obj/machinery/door/airlock/glass_command{
+ name = "Chief Medical Officer";
+ req_access_txt = "40"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/cmo,
+/area/medical/cmo)
+"bdM" = (
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/cmo,
+/area/medical/cmo)
+"bdN" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/cmo,
+/area/medical/cmo)
+"bdO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cmo,
+/area/medical/cmo)
+"bdP" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "cmo";
+ name = "CMO Privacy Shutters"
+ },
+/obj/machinery/door/airlock/glass_command{
+ name = "Chief Medical Officer";
+ req_access_txt = "40"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cmo,
+/area/medical/cmo)
+"bdQ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (WEST)";
+ icon_state = "blue";
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bdR" = (
+/mob/living/carbon/monkey,
+/turf/open/floor/grass,
+/area/hallway/primary/port)
+"bdS" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bdT" = (
+/obj/machinery/camera/motion{
+ c_tag = "Civ Armory West";
+ dir = 8
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bdU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bdV" = (
+/turf/closed/wall,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bdW" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor/shutters{
+ id = "civ armory inner";
+ name = "Emergency Storage Interior Shutters"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bdX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/closed/wall,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bdY" = (
+/obj/machinery/camera/motion{
+ c_tag = "Civ Armory East";
+ dir = 4;
+ network = list("MiniSat")
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bdZ" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bea" = (
+/obj/structure/flora/grass/green,
+/mob/living/simple_animal/cow,
+/turf/open/floor/grass,
+/area/hallway/primary/starboard)
+"beb" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bec" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bed" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bee" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/quartermaster/office)
+"bef" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/conveyor_switch/oneway{
+ convdir = -1;
+ id = "garbage";
+ name = "disposal coveyor"
+ },
+/obj/effect/turf_decal/stripes,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"beg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"beh" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/effect/turf_decal/stripes,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bei" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/effect/turf_decal/stripes,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bej" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bek" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/conveyor{
+ tag = "icon-conveyor0 (NORTH)";
+ icon_state = "conveyor0";
+ dir = 1;
+ id = "garbage"
+ },
+/turf/open/floor/plasteel/black,
+/area/quartermaster/office)
+"bel" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/quartermaster/office)
+"bem" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (WEST)";
+ icon_state = "brown";
+ dir = 8
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"ben" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"beo" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Shaft Miner"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bep" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"beq" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"ber" = (
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bes" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bet" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (EAST)";
+ icon_state = "brown";
+ dir = 4
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"beu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/mining{
+ name = "Mining Office";
+ req_access_txt = "48"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/delivery,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bev" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (WEST)";
+ icon_state = "brown";
+ dir = 8
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bew" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bex" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/effect/landmark/start{
+ name = "Shaft Miner"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bey" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bez" = (
+/obj/structure/ore_box,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (EAST)";
+ icon_state = "brown";
+ dir = 4
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"beA" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = 0
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plating/asteroid/airless{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"beB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/medical/patients_rooms)
+"beC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/medical/patients_rooms)
+"beD" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/vending/wallmed{
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"beE" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"beF" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/britcup,
+/turf/open/floor/plasteel/barber,
+/area/medical/medbay3)
+"beG" = (
+/obj/machinery/requests_console{
+ announcementConsole = 0;
+ department = "Medbay";
+ departmentType = 1;
+ name = "Medbay RC";
+ pixel_x = 30;
+ pixel_y = 0;
+ pixel_z = 0
+ },
+/obj/structure/chair/comfy/black{
+ dir = 8
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/turf/open/floor/plasteel/barber,
+/area/medical/medbay3)
+"beH" = (
+/obj/machinery/atmospherics/components/unary/tank/oxygen{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (SOUTHWEST)";
+ icon_state = "whiteblue";
+ dir = 10
+ },
+/area/medical/cryo)
+"beI" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 9
+ },
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/cryo)
+"beJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/cryo)
+"beK" = (
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/cryo)
+"beL" = (
+/obj/structure/bed/roller,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (SOUTHEAST)";
+ icon_state = "whiteblue";
+ dir = 6
+ },
+/area/medical/cryo)
+"beM" = (
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j2";
+ dir = 2
+ },
+/turf/closed/wall,
+/area/medical/cryo)
+"beN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (WEST)";
+ icon_state = "whiteblue";
+ dir = 8
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"beO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"beP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/whiteblue/corner,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"beQ" = (
+/obj/structure/table/glass,
+/obj/item/weapon/soap/nanotrasen,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"beR" = (
+/obj/machinery/vending/medical,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"beS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"beT" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal/bin,
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (SOUTHEAST)";
+ icon_state = "whiteblue";
+ dir = 6
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"beU" = (
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "CMO's Office APC";
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/cmo,
+/area/medical/cmo)
+"beV" = (
+/obj/machinery/light,
+/obj/machinery/button/door{
+ id = "cmo";
+ name = "CMO Privacy Shutters";
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/cmo,
+/area/medical/cmo)
+"beW" = (
+/obj/machinery/computer/card/minor/cmo,
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Chief Medical Officer's Desk";
+ departmentType = 5;
+ name = "Chief Medical Officer RC";
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/cmo,
+/area/medical/cmo)
+"beX" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/item/weapon/twohanded/required/kirbyplants,
+/turf/open/floor/plasteel/cmo,
+/area/medical/cmo)
+"beY" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/grass,
+/area/hallway/primary/port)
+"beZ" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ locked = 0;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bfa" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bfb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/firstaid/brute{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/firstaid/fire,
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bfc" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/firstaid/o2{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/firstaid/toxin,
+/obj/machinery/button/door{
+ id = "civ armory outer";
+ name = "Civilian Armory Outer Shutters";
+ pixel_y = 28;
+ req_access_txt = "19"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bfd" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bfe" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/medipens{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/medipens/utility,
+/obj/machinery/button/door{
+ id = "civ armory inner";
+ name = "Civilian Armory Inner Shutters";
+ pixel_y = 28;
+ req_access_txt = "0";
+ req_one_access_txt = "19; 3"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bff" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/backpack/dufflebag/sec{
+ contents = newlist(/obj/item/weapon/scalpel,/obj/item/weapon/hemostat,/obj/item/weapon/retractor,/obj/item/weapon/cautery,/obj/item/weapon/circular_saw,/obj/item/weapon/surgical_drapes,/obj/item/clothing/mask/surgical);
+ desc = "A large dufflebag for holding extra supplies - this one has a material inlay with space for various sharp-looking tools.";
+ name = "dufflebag";
+ pixel_y = 5
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bfg" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bfh" = (
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 4;
+ name = "Emergency Storage APC";
+ pixel_x = 24;
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bfi" = (
+/mob/living/simple_animal/cow,
+/turf/open/floor/grass,
+/area/hallway/primary/starboard)
+"bfj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bfk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bfl" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"bfm" = (
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bfn" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bfo" = (
+/turf/open/floor/plasteel/loadingarea{
+ dir = 8
+ },
+/area/quartermaster/office)
+"bfp" = (
+/obj/machinery/mineral/stacking_machine{
+ input_dir = 4;
+ stack_amt = 10
+ },
+/obj/effect/turf_decal/stripes{
+ tag = "icon-warningline (WEST)";
+ icon_state = "warningline";
+ dir = 8
+ },
+/turf/open/floor/plasteel/delivery,
+/area/quartermaster/office)
+"bfq" = (
+/obj/machinery/conveyor{
+ tag = "icon-conveyor0 (NORTH)";
+ icon_state = "conveyor0";
+ dir = 1;
+ id = "garbage"
+ },
+/turf/open/floor/plasteel/black,
+/area/quartermaster/office)
+"bfr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (WEST)";
+ icon_state = "brown";
+ dir = 8
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bfs" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/start{
+ name = "Shaft Miner"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bft" = (
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bfu" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bfv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Shaft Miner"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bfw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (EAST)";
+ icon_state = "brown";
+ dir = 4
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bfx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bfy" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/item/device/gps/mining,
+/obj/item/device/gps/mining,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (SOUTHWEST)";
+ icon_state = "brown";
+ dir = 10
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bfz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/structure/table,
+/obj/item/weapon/pickaxe,
+/obj/item/weapon/storage/bag/ore,
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bfA" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bfB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bfC" = (
+/obj/machinery/light,
+/obj/machinery/mineral/equipment_vendor,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (SOUTHEAST)";
+ icon_state = "brown";
+ dir = 6
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bfD" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bfE" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTH)";
+ icon_state = "camera";
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bfF" = (
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"bfG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/syringe,
+/obj/item/weapon/reagent_containers/glass/bottle/salglu_solution,
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"bfH" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"bfI" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/structure/table,
+/obj/machinery/juicer,
+/obj/item/weapon/reagent_containers/food/snacks/grown/apple,
+/obj/item/weapon/reagent_containers/food/snacks/grown/apple,
+/obj/item/weapon/reagent_containers/food/snacks/grown/apple,
+/obj/item/weapon/reagent_containers/food/snacks/grown/apple,
+/obj/item/weapon/reagent_containers/food/snacks/grown/apple,
+/turf/open/floor/plasteel/barber,
+/area/medical/medbay3)
+"bfJ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/plasteel/barber,
+/area/medical/medbay3)
+"bfK" = (
+/obj/structure/chair/comfy/black{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/barber,
+/area/medical/medbay3)
+"bfL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/closed/wall,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"bfM" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"bfN" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"bfO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"bfP" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"bfQ" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"bfR" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (WEST)";
+ icon_state = "whiteblue";
+ dir = 8
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bfS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bfT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (EAST)";
+ icon_state = "whiteblue";
+ dir = 4
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bfU" = (
+/obj/structure/sign/chemistry,
+/turf/closed/wall,
+/area/medical/chemistry)
+"bfV" = (
+/turf/closed/wall,
+/area/medical/chemistry)
+"bfW" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/medical/chemistry)
+"bfX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (WEST)";
+ icon_state = "blue";
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bfY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bfZ" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (EAST)";
+ icon_state = "blue";
+ dir = 4
+ },
+/area/hallway/primary/port)
+"bga" = (
+/obj/structure/flora/grass/green,
+/mob/living/carbon/monkey,
+/turf/open/floor/grass,
+/area/hallway/primary/port)
+"bgb" = (
+/turf/closed/wall/r_wall,
+/area/hallway/primary/port)
+"bgc" = (
+/turf/open/floor/plasteel/darkred/side{
+ tag = "icon-darkred (NORTH)";
+ icon_state = "darkred";
+ dir = 1
+ },
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bgd" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/darkred/side{
+ tag = "icon-darkred (NORTH)";
+ icon_state = "darkred";
+ dir = 1
+ },
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bge" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/darkred/side{
+ tag = "icon-darkred (NORTH)";
+ icon_state = "darkred";
+ dir = 1
+ },
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bgf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/darkred/side{
+ tag = "icon-darkred (NORTH)";
+ icon_state = "darkred";
+ dir = 1
+ },
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bgg" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/darkred/side{
+ tag = "icon-darkred (NORTH)";
+ icon_state = "darkred";
+ dir = 1
+ },
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bgh" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/darkred/side{
+ tag = "icon-darkred (NORTH)";
+ icon_state = "darkred";
+ dir = 1
+ },
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bgi" = (
+/turf/closed/wall/r_wall,
+/area/hallway/primary/starboard)
+"bgj" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bgk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/quartermaster/office)
+"bgl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bgm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bgn" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bgo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/mineral/stacking_unit_console{
+ dir = 1;
+ machinedir = 1;
+ pixel_y = -30
+ },
+/obj/effect/turf_decal/stripes{
+ tag = "icon-warningline (WEST)";
+ icon_state = "warningline";
+ dir = 8
+ },
+/turf/open/floor/plasteel/delivery,
+/area/quartermaster/office)
+"bgp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/conveyor{
+ tag = "icon-conveyor0 (NORTH)";
+ icon_state = "conveyor0";
+ dir = 1;
+ id = "garbage"
+ },
+/obj/structure/sign/deathsposal{
+ pixel_x = 30
+ },
+/turf/open/floor/plasteel/black,
+/area/quartermaster/office)
+"bgq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/quartermaster/office)
+"bgr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/ore_box,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (SOUTHWEST)";
+ icon_state = "brown";
+ dir = 10
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bgs" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bgt" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTH)";
+ icon_state = "camera";
+ dir = 1
+ },
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bgu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bgv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bgw" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bgx" = (
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bgy" = (
+/obj/structure/table,
+/obj/item/weapon/pickaxe,
+/obj/item/weapon/shovel,
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bgz" = (
+/obj/structure/table,
+/obj/item/weapon/storage/bag/ore,
+/obj/item/weapon/storage/bag/ore,
+/obj/item/weapon/storage/bag/ore,
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bgA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/table,
+/obj/item/device/gps/mining,
+/obj/item/device/gps/mining,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (SOUTHEAST)";
+ icon_state = "brown";
+ dir = 6
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"bgB" = (
+/turf/closed/wall,
+/area/quartermaster/storage)
+"bgC" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"bgD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/quartermaster/storage)
+"bgE" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/maintenance/port)
+"bgF" = (
+/obj/machinery/atmospherics/components/binary/valve{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/maintenance/port)
+"bgG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Security Atmos Closet";
+ req_access_txt = "32"
+ },
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "delivery"
+ },
+/area/maintenance/port)
+"bgH" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bgI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/iv_drip,
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"bgJ" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"bgK" = (
+/obj/structure/table,
+/obj/machinery/microwave,
+/obj/item/weapon/storage/box/donkpockets,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/barber,
+/area/medical/medbay3)
+"bgL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/barber,
+/area/medical/medbay3)
+"bgM" = (
+/obj/machinery/photocopier,
+/turf/open/floor/plasteel/barber,
+/area/medical/medbay3)
+"bgN" = (
+/turf/closed/wall,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"bgO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/sleeper,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (NORTHWEST)";
+ icon_state = "whiteblue";
+ dir = 9
+ },
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"bgP" = (
+/obj/machinery/iv_drip,
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (NORTH)";
+ icon_state = "whiteblue";
+ dir = 1
+ },
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"bgQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (NORTH)";
+ icon_state = "whiteblue";
+ dir = 1
+ },
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"bgR" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/machinery/sleeper,
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (NORTHEAST)";
+ icon_state = "whiteblue";
+ dir = 5
+ },
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"bgS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ tag = "icon-whitebluecorner (EAST)";
+ icon_state = "whitebluecorner";
+ dir = 4
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bgT" = (
+/obj/machinery/chem_dispenser,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/turf/open/floor/plasteel/whiteyellow/side{
+ tag = "icon-whiteyellow (NORTHWEST)";
+ icon_state = "whiteyellow";
+ dir = 9
+ },
+/area/medical/chemistry)
+"bgU" = (
+/obj/machinery/chem_master,
+/obj/item/weapon/book/manual/wiki/chemistry,
+/turf/open/floor/plasteel/whiteyellow/side{
+ tag = "icon-whiteyellow (NORTH)";
+ icon_state = "whiteyellow";
+ dir = 1
+ },
+/area/medical/chemistry)
+"bgV" = (
+/obj/machinery/smartfridge/chemistry/preloaded{
+ name = "chemical component fridge"
+ },
+/obj/machinery/camera/autoname,
+/turf/open/floor/plasteel/whiteyellow/side{
+ tag = "icon-whiteyellow (NORTH)";
+ icon_state = "whiteyellow";
+ dir = 1
+ },
+/area/medical/chemistry)
+"bgW" = (
+/obj/structure/table,
+/obj/machinery/vending/wallmed{
+ pixel_y = 28
+ },
+/obj/item/weapon/hand_labeler,
+/obj/item/clothing/glasses/science,
+/turf/open/floor/plasteel/whiteyellow/side{
+ tag = "icon-whiteyellow (NORTH)";
+ icon_state = "whiteyellow";
+ dir = 1
+ },
+/area/medical/chemistry)
+"bgX" = (
+/obj/structure/table,
+/obj/machinery/reagentgrinder,
+/obj/item/stack/sheet/mineral/plasma{
+ layer = 2.9;
+ pixel_y = 4
+ },
+/obj/item/stack/sheet/mineral/plasma,
+/turf/open/floor/plasteel/whiteyellow/side{
+ tag = "icon-whiteyellow (NORTH)";
+ icon_state = "whiteyellow";
+ dir = 1
+ },
+/area/medical/chemistry)
+"bgY" = (
+/obj/structure/sink{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/whiteyellow/side{
+ tag = "icon-whiteyellow (NORTH)";
+ icon_state = "whiteyellow";
+ dir = 1
+ },
+/area/medical/chemistry)
+"bgZ" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/chem_master,
+/obj/item/weapon/book/manual/wiki/chemistry,
+/turf/open/floor/plasteel/whiteyellow/side{
+ tag = "icon-whiteyellow (NORTH)";
+ icon_state = "whiteyellow";
+ dir = 1
+ },
+/area/medical/chemistry)
+"bha" = (
+/obj/machinery/chem_dispenser,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/turf/open/floor/plasteel/whiteyellow/side{
+ tag = "icon-whiteyellow (NORTHEAST)";
+ icon_state = "whiteyellow";
+ dir = 5
+ },
+/area/medical/chemistry)
+"bhb" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/grass,
+/area/hallway/primary/port)
+"bhc" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/grille,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/hallway/primary/port)
+"bhd" = (
+/obj/structure/rack,
+/obj/item/weapon/storage/toolbox/emergency,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bhe" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/rack,
+/obj/item/weapon/storage/toolbox/mechanical,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bhf" = (
+/obj/structure/rack,
+/obj/item/weapon/storage/box/zipties,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bhg" = (
+/obj/structure/rack,
+/obj/item/weapon/storage/box/silver_ids{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/ids,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bhh" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/armor/bulletproof{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/clothing/suit/armor/bulletproof{
+ pixel_y = 0
+ },
+/obj/item/clothing/suit/armor/bulletproof{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/clothing/head/helmet/alt{
+ layer = 3.00001;
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/clothing/head/helmet/alt{
+ layer = 3.00001
+ },
+/obj/item/clothing/head/helmet/alt{
+ layer = 3.00001;
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bhi" = (
+/obj/structure/rack,
+/obj/item/weapon/storage/box/flashbangs,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bhj" = (
+/obj/structure/rack,
+/obj/item/weapon/storage/box/flashes,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bhk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/rack,
+/obj/item/weapon/storage/box/mechabeacons,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bhl" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/rack,
+/obj/item/weapon/storage/box/teargas,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/security/armory{
+ name = "Emergency Storage"
+ })
+"bhm" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/grille,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/hallway/primary/starboard)
+"bhn" = (
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bho" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bhp" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bhq" = (
+/obj/machinery/disposal/deliveryChute{
+ tag = "icon-intake (NORTH)";
+ icon_state = "intake";
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel/black,
+/area/quartermaster/office)
+"bhr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/quartermaster/office)
+"bhs" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/mining{
+ name = "Mining Office";
+ req_access_txt = "48"
+ },
+/turf/open/floor/plasteel/delivery,
+/area/quartermaster/office)
+"bht" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/quartermaster/office)
+"bhu" = (
+/turf/closed/wall,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"bhv" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"bhw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"bhx" = (
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTHWEST)";
+ icon_state = "brown";
+ dir = 9
+ },
+/area/quartermaster/storage)
+"bhy" = (
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTH)";
+ icon_state = "brown";
+ dir = 1
+ },
+/area/quartermaster/storage)
+"bhz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTH)";
+ icon_state = "brown";
+ dir = 1
+ },
+/area/quartermaster/storage)
+"bhA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTH)";
+ icon_state = "brown";
+ dir = 1
+ },
+/area/quartermaster/storage)
+"bhB" = (
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTH)";
+ icon_state = "brown";
+ dir = 1
+ },
+/area/quartermaster/storage)
+"bhC" = (
+/obj/item/device/radio/intercom{
+ name = "Station Intercom";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTH)";
+ icon_state = "brown";
+ dir = 1
+ },
+/area/quartermaster/storage)
+"bhD" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTH)";
+ icon_state = "brown";
+ dir = 1
+ },
+/area/quartermaster/storage)
+"bhE" = (
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTHEAST)";
+ icon_state = "brown";
+ dir = 5
+ },
+/area/quartermaster/storage)
+"bhF" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bhG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"bhH" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical{
+ name = "Patient Room 2";
+ req_access_txt = "5"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"bhI" = (
+/obj/structure/sign/examroom,
+/turf/closed/wall,
+/area/medical/medbay3)
+"bhJ" = (
+/obj/machinery/newscaster,
+/turf/closed/wall,
+/area/medical/medbay3)
+"bhK" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical{
+ name = "Medbay Break Room";
+ req_access_txt = "5"
+ },
+/turf/open/floor/plasteel/barber,
+/area/medical/medbay3)
+"bhL" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/medical/medbay3)
+"bhM" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Sleeper Room APC";
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (WEST)";
+ icon_state = "whiteblue";
+ dir = 8
+ },
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"bhN" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"bhO" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"bhP" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"bhQ" = (
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (EAST)";
+ icon_state = "whiteblue";
+ dir = 4
+ },
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"bhR" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/sign/examroom,
+/turf/closed/wall,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"bhS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/noticeboard{
+ dir = 8;
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/whiteyellow/corner,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bhT" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/item/weapon/storage/pill_bottle/epinephrine,
+/obj/item/weapon/storage/pill_bottle/charcoal,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bhU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Chemist"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bhV" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bhW" = (
+/obj/machinery/chem_heater,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bhX" = (
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bhY" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bhZ" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Chemist"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteyellow/side{
+ tag = "icon-whiteyellow (EAST)";
+ icon_state = "whiteyellow";
+ dir = 4
+ },
+/area/medical/chemistry)
+"bia" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/eastright{
+ base_state = "left";
+ dir = 8;
+ icon_state = "left";
+ name = "Chemistry Desk";
+ req_access_txt = "33"
+ },
+/obj/machinery/door/firedoor/border_only{
+ tag = "icon-door_open (EAST)";
+ icon_state = "door_open";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/orange,
+/area/medical/chemistry)
+"bib" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (WEST)";
+ icon_state = "blue";
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bic" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bid" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/grille,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/security/checkpoint)
+"bie" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/computer/security,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint)
+"bif" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen/red,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint)
+"big" = (
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint)
+"bih" = (
+/obj/structure/table,
+/obj/machinery/recharger,
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (SOUTHEAST)";
+ icon_state = "camera";
+ dir = 6
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint)
+"bii" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/filingcabinet/security,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint)
+"bij" = (
+/turf/closed/wall/r_wall,
+/area/bridge)
+"bik" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ layer = 2.9;
+ name = "bridge blast door"
+ },
+/obj/structure/sign/electricshock{
+ pixel_x = -32
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"bil" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ layer = 2.9;
+ name = "bridge blast door"
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"bim" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ layer = 2.9;
+ name = "bridge blast door"
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"bin" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ layer = 2.9;
+ name = "bridge blast door"
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"bio" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/cable,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ layer = 2.9;
+ name = "bridge blast door"
+ },
+/obj/structure/sign/electricshock{
+ pixel_x = 32
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"bip" = (
+/obj/structure/table,
+/obj/machinery/recharger,
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint)
+"biq" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen/red,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (SOUTHEAST)";
+ icon_state = "camera";
+ dir = 6
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint)
+"bir" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ locked = 0;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bis" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bit" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"biu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/closed/wall,
+/area/quartermaster/office)
+"biv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/closed/wall,
+/area/quartermaster/office)
+"biw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTHWEST)";
+ icon_state = "brown";
+ dir = 9
+ },
+/area/quartermaster/office)
+"bix" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTH)";
+ icon_state = "brown";
+ dir = 1
+ },
+/area/quartermaster/office)
+"biy" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTH)";
+ icon_state = "brown";
+ dir = 1
+ },
+/area/quartermaster/office)
+"biz" = (
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTHEAST)";
+ icon_state = "brown";
+ dir = 5
+ },
+/area/quartermaster/office)
+"biA" = (
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTHWEST)";
+ icon_state = "brown";
+ dir = 9
+ },
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"biB" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=8";
+ dir = 8;
+ freq = 1400;
+ location = "QM #1"
+ },
+/obj/effect/turf_decal/bot,
+/mob/living/simple_animal/bot/mulebot{
+ beacon_freq = 1400;
+ home_destination = "QM #1";
+ suffix = "#1"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"biC" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=8";
+ dir = 8;
+ freq = 1400;
+ location = "QM #2"
+ },
+/obj/effect/turf_decal/bot,
+/mob/living/simple_animal/bot/mulebot{
+ home_destination = "QM #2";
+ suffix = "#2"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"biD" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=8";
+ dir = 8;
+ freq = 1400;
+ location = "QM #3"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"biE" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=8";
+ dir = 8;
+ freq = 1400;
+ location = "QM #4"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"biF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTHEAST)";
+ icon_state = "brown";
+ dir = 5
+ },
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"biG" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (WEST)";
+ icon_state = "brown";
+ dir = 8
+ },
+/area/quartermaster/storage)
+"biH" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "bot"
+ },
+/area/quartermaster/storage)
+"biI" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "bot"
+ },
+/area/quartermaster/storage)
+"biJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "bot"
+ },
+/area/quartermaster/storage)
+"biK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"biL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "bot"
+ },
+/area/quartermaster/storage)
+"biM" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "bot"
+ },
+/area/quartermaster/storage)
+"biN" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (EAST)";
+ icon_state = "brown";
+ dir = 4
+ },
+/area/quartermaster/storage)
+"biO" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"biP" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (SOUTHEAST)";
+ icon_state = "camera";
+ dir = 6
+ },
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/medbay3)
+"biQ" = (
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/medbay3)
+"biR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/medbay3)
+"biS" = (
+/obj/machinery/door/firedoor/border_only{
+ tag = "icon-door_open (EAST)";
+ icon_state = "door_open";
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"biT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (WEST)";
+ icon_state = "whiteblue";
+ dir = 8
+ },
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"biU" = (
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"biV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"biW" = (
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"biX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/door/firedoor/border_only{
+ tag = "icon-door_open (EAST)";
+ icon_state = "door_open";
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"biY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/whiteyellow/side{
+ tag = "icon-whiteyellow (EAST)";
+ icon_state = "whiteyellow";
+ dir = 4
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"biZ" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = null;
+ name = "Chemistry Lab";
+ req_access_txt = "5; 33"
+ },
+/turf/open/floor/plasteel/orange,
+/area/medical/chemistry)
+"bja" = (
+/turf/open/floor/plasteel/whiteyellow/side{
+ tag = "icon-whiteyellow (WEST)";
+ icon_state = "whiteyellow";
+ dir = 8
+ },
+/area/medical/chemistry)
+"bjb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bjc" = (
+/obj/structure/closet/secure_closet/chemical,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bjd" = (
+/obj/machinery/smartfridge/chemistry/preloaded{
+ name = "chemical component fridge"
+ },
+/turf/open/floor/plasteel/whiteyellow/side{
+ tag = "icon-whiteyellow (EAST)";
+ icon_state = "whiteyellow";
+ dir = 4
+ },
+/area/medical/chemistry)
+"bje" = (
+/turf/closed/wall/r_wall,
+/area/security/checkpoint)
+"bjf" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/obj/machinery/computer/secure_data,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint)
+"bjg" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint)
+"bjh" = (
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint)
+"bji" = (
+/obj/machinery/button/door{
+ id = "bridge door west";
+ name = "Port Bridge Door Control";
+ pixel_x = 0;
+ pixel_y = -24;
+ req_access_txt = "19,1"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint)
+"bjj" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ name = "regular air scrubber";
+ on = 1
+ },
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_y = -28
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint)
+"bjk" = (
+/obj/machinery/computer/med_data,
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"bjl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/computer/card,
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"bjm" = (
+/obj/machinery/computer/crew,
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"bjn" = (
+/obj/machinery/computer/station_alert,
+/turf/open/floor/plasteel/darkbrown,
+/area/bridge)
+"bjo" = (
+/obj/machinery/computer/monitor{
+ name = "bridge power monitoring console"
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/plasteel/darkbrown,
+/area/bridge)
+"bjp" = (
+/obj/machinery/computer/atmos_alert,
+/turf/open/floor/plasteel/darkbrown,
+/area/bridge)
+"bjq" = (
+/obj/machinery/computer/security,
+/turf/open/floor/plasteel/darkred,
+/area/bridge)
+"bjr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/computer/secure_data,
+/turf/open/floor/plasteel/darkred,
+/area/bridge)
+"bjs" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/computer/prisoner,
+/turf/open/floor/plasteel/darkred,
+/area/bridge)
+"bjt" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_y = -28
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint)
+"bju" = (
+/obj/machinery/button/door{
+ id = "bridge door east";
+ name = "Starbord Bridge Door Control";
+ pixel_x = 0;
+ pixel_y = -24;
+ req_access_txt = "19,1"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint)
+"bjv" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint)
+"bjw" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ name = "regular air scrubber";
+ on = 1
+ },
+/obj/machinery/computer/secure_data,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint)
+"bjx" = (
+/obj/structure/table,
+/obj/item/weapon/hand_labeler,
+/obj/item/hand_labeler_refill,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bjy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (WEST)";
+ icon_state = "brown";
+ dir = 8
+ },
+/area/quartermaster/office)
+"bjz" = (
+/obj/structure/cable{
+ tag = "icon-1-4";
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bjA" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bjB" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (EAST)";
+ icon_state = "brown";
+ dir = 4
+ },
+/area/quartermaster/office)
+"bjC" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/poddoor/shutters{
+ id = "qm_warehouse";
+ name = "warehouse shutters"
+ },
+/obj/machinery/button/door{
+ id = "qm_warehouse";
+ name = "Warehouse Door Control";
+ pixel_x = -1;
+ pixel_y = 24;
+ req_access_txt = "31"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/delivery,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"bjD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (WEST)";
+ icon_state = "brown";
+ dir = 8
+ },
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"bjE" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/closet/crate{
+ name = "Silver Crate"
+ },
+/turf/open/floor/plasteel/delivery,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"bjF" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/delivery,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"bjG" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/turf/open/floor/plasteel/delivery,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"bjH" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/delivery,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"bjI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (EAST)";
+ icon_state = "brown";
+ dir = 4
+ },
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"bjJ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (WEST)";
+ icon_state = "brown";
+ dir = 8
+ },
+/area/quartermaster/storage)
+"bjK" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bjL" = (
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bjM" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bjN" = (
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bjO" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (EAST)";
+ icon_state = "brown";
+ dir = 4
+ },
+/area/quartermaster/storage)
+"bjP" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/rack,
+/obj/item/weapon/storage/box/lights/mixed,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bjQ" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/supply)
+"bjR" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bjS" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"bjT" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"bjU" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/medbay3)
+"bjV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/medbay3)
+"bjW" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/medbay3)
+"bjX" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/medbay3)
+"bjY" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/medbay3)
+"bjZ" = (
+/obj/machinery/door/firedoor/border_only{
+ tag = "icon-door_open (EAST)";
+ icon_state = "door_open";
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"bka" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (SOUTHWEST)";
+ icon_state = "whiteblue";
+ dir = 10
+ },
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"bkb" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"bkc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"bkd" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (SOUTHEAST)";
+ icon_state = "whiteblue";
+ dir = 6
+ },
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"bke" = (
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ freerange = 0;
+ frequency = 1485;
+ listening = 1;
+ name = "Station Intercom (Medbay)";
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/obj/machinery/door/firedoor/border_only{
+ tag = "icon-door_open (EAST)";
+ icon_state = "door_open";
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"bkf" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (WEST)";
+ icon_state = "whiteblue";
+ dir = 8
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bkg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bkh" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Chemistry APC";
+ pixel_x = 24;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/whiteyellow/corner{
+ tag = "icon-whiteyellowcorner (EAST)";
+ icon_state = "whiteyellowcorner";
+ dir = 4
+ },
+/area/medical/chemistry)
+"bki" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/structure/closet/wardrobe/chemistry_white,
+/obj/item/weapon/storage/backpack/chemistry,
+/turf/open/floor/plasteel/whiteyellow/side{
+ tag = "icon-whiteyellow (SOUTHWEST)";
+ icon_state = "whiteyellow";
+ dir = 10
+ },
+/area/medical/chemistry)
+"bkj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/beakers{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/weapon/storage/box/pillbottles{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/syringes,
+/turf/open/floor/plasteel/whiteyellow/side,
+/area/medical/chemistry)
+"bkk" = (
+/obj/structure/table/glass,
+/obj/item/stack/cable_coil/orange,
+/obj/item/stack/cable_coil/orange,
+/obj/item/clothing/glasses/science,
+/obj/machinery/reagentgrinder,
+/turf/open/floor/plasteel/whiteyellow/side,
+/area/medical/chemistry)
+"bkl" = (
+/obj/structure/table/glass,
+/obj/item/weapon/grenade/chem_grenade,
+/obj/item/weapon/grenade/chem_grenade,
+/obj/item/weapon/grenade/chem_grenade,
+/obj/item/weapon/grenade/chem_grenade,
+/obj/item/weapon/screwdriver,
+/turf/open/floor/plasteel/whiteyellow/side,
+/area/medical/chemistry)
+"bkm" = (
+/turf/open/floor/plasteel/whiteyellow/side,
+/area/medical/chemistry)
+"bkn" = (
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal/bin,
+/obj/machinery/requests_console{
+ department = "Chemistry";
+ departmentType = 2;
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/whiteyellow/side{
+ tag = "icon-whiteyellow (SOUTHEAST)";
+ icon_state = "whiteyellow";
+ dir = 6
+ },
+/area/medical/chemistry)
+"bko" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (WEST)";
+ icon_state = "blue";
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bkp" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bkq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/newscaster/security_unit,
+/turf/closed/wall/r_wall,
+/area/security/checkpoint)
+"bkr" = (
+/obj/machinery/door/airlock/security{
+ name = "Security Checkpoint";
+ req_access = null;
+ req_access_txt = "1"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint)
+"bks" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/security/checkpoint)
+"bkt" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/machinery/status_display{
+ dir = 8;
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ tag = "icon-darkblue (NORTH)";
+ icon_state = "darkblue";
+ dir = 1
+ },
+/area/bridge)
+"bku" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ tag = "icon-darkblue (NORTH)";
+ icon_state = "darkblue";
+ dir = 1
+ },
+/area/bridge)
+"bkv" = (
+/obj/structure/table,
+/obj/item/device/healthanalyzer,
+/turf/open/floor/plasteel/darkblue/side{
+ tag = "icon-darkblue (NORTH)";
+ icon_state = "darkblue";
+ dir = 1
+ },
+/area/bridge)
+"bkw" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/weapon/stock_parts/cell/high,
+/turf/open/floor/plasteel/darkbrown/side{
+ tag = "icon-darkbrown (NORTH)";
+ icon_state = "darkbrown";
+ dir = 1
+ },
+/area/bridge)
+"bkx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkbrown/side{
+ tag = "icon-darkbrown (NORTH)";
+ icon_state = "darkbrown";
+ dir = 1
+ },
+/area/bridge)
+"bky" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/obj/structure/table,
+/obj/item/weapon/storage/toolbox/emergency{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/item/device/multitool,
+/turf/open/floor/plasteel/darkbrown/side{
+ tag = "icon-darkbrown (NORTH)";
+ icon_state = "darkbrown";
+ dir = 1
+ },
+/area/bridge)
+"bkz" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/obj/structure/table,
+/turf/open/floor/plasteel/darkred/side{
+ tag = "icon-darkred (NORTH)";
+ icon_state = "darkred";
+ dir = 1
+ },
+/area/bridge)
+"bkA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/machinery/button/door{
+ dir = 8;
+ id = "civ armory rack";
+ name = "Civilian Armory Rack Shutters";
+ pixel_x = -28;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/darkred/side{
+ tag = "icon-darkred (NORTH)";
+ icon_state = "darkred";
+ dir = 1
+ },
+/area/bridge)
+"bkB" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/obj/structure/table,
+/obj/item/weapon/storage/box/zipties,
+/obj/item/device/assembly/flash,
+/obj/machinery/status_display{
+ dir = 4;
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/darkred/side{
+ tag = "icon-darkred (NORTH)";
+ icon_state = "darkred";
+ dir = 1
+ },
+/area/bridge)
+"bkC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/security/checkpoint)
+"bkD" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/obj/machinery/newscaster/security_unit,
+/turf/closed/wall/r_wall,
+/area/security/checkpoint)
+"bkE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/security/checkpoint)
+"bkF" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/hallway/primary/starboard)
+"bkG" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/hallway/primary/starboard)
+"bkH" = (
+/obj/structure/table,
+/obj/machinery/computer/stockexchange,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bkI" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bkJ" = (
+/obj/machinery/door/airlock/glass_mining{
+ name = "Mailroom";
+ req_access_txt = "0";
+ req_one_access_txt = "48;50"
+ },
+/turf/open/floor/plasteel/delivery,
+/area/quartermaster/office)
+"bkK" = (
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (WEST)";
+ icon_state = "brown";
+ dir = 8
+ },
+/area/quartermaster/office)
+"bkL" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bkM" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bkN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (EAST)";
+ icon_state = "brown";
+ dir = 4
+ },
+/area/quartermaster/office)
+"bkO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"bkP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (WEST)";
+ icon_state = "brown";
+ dir = 8
+ },
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"bkQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"bkR" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"bkS" = (
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"bkT" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Warehouse APC";
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (EAST)";
+ icon_state = "brown";
+ dir = 4
+ },
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"bkU" = (
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (WEST)";
+ icon_state = "brown";
+ dir = 8
+ },
+/area/quartermaster/storage)
+"bkV" = (
+/obj/structure/closet/crate/internals,
+/turf/open/floor/plasteel{
+ icon_state = "bot"
+ },
+/area/quartermaster/storage)
+"bkW" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel{
+ icon_state = "bot"
+ },
+/area/quartermaster/storage)
+"bkX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel{
+ icon_state = "bot"
+ },
+/area/quartermaster/storage)
+"bkY" = (
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (EAST)";
+ icon_state = "brown";
+ dir = 4
+ },
+/area/quartermaster/storage)
+"bkZ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"bla" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/supply)
+"blb" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/supply)
+"blc" = (
+/turf/closed/wall/r_wall,
+/area/medical/medbay3)
+"bld" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/door/poddoor/shutters{
+ id = "medsec";
+ name = "Secure Medbay Storage"
+ },
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "delivery"
+ },
+/area/medical/medbay3)
+"ble" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor/shutters{
+ id = "medsec";
+ name = "Secure Medbay Storage"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "delivery"
+ },
+/area/medical/medbay3)
+"blf" = (
+/obj/machinery/button/door{
+ id = "medsec";
+ name = "Secure Medbay Storage";
+ req_access_txt = "5"
+ },
+/turf/closed/wall/r_wall,
+/area/medical/medbay3)
+"blg" = (
+/turf/closed/wall/r_wall,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"blh" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bli" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"blj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = null;
+ name = "Medbay Storage";
+ req_access_txt = "45"
+ },
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"blk" = (
+/turf/closed/wall,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bll" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (WEST)";
+ icon_state = "whiteblue";
+ dir = 8
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"blm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/whiteblue/corner,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bln" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/medical/chemistry)
+"blo" = (
+/obj/machinery/smartfridge/chemistry/preloaded,
+/turf/closed/wall,
+/area/medical/chemistry)
+"blp" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/southleft{
+ dir = 1;
+ name = "Chemistry Desk";
+ req_access_txt = "33"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/open/floor/plasteel/orange,
+/area/medical/chemistry)
+"blq" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/medical/chemistry)
+"blr" = (
+/obj/machinery/door/airlock/glass_command{
+ name = "Bridge Access";
+ req_access_txt = "0";
+ req_one_access_txt = "19; 1"
+ },
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"bls" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ layer = 2.9;
+ name = "bridge blast door"
+ },
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"blt" = (
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"blu" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 28
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ layer = 2.9;
+ name = "bridge blast door"
+ },
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"blv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"blw" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Security Checkpoint APC";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/plasteel/darkblue,
+/area/security/checkpoint)
+"blx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (SOUTHEAST)";
+ icon_state = "camera";
+ dir = 6
+ },
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"bly" = (
+/obj/structure/table,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/obj/item/weapon/storage/fancy/donut_box,
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"blz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"blA" = (
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"blB" = (
+/obj/item/device/radio/beacon,
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"blC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"blD" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/table,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/obj/machinery/recharger,
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"blE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (SOUTHEAST)";
+ icon_state = "camera";
+ dir = 6
+ },
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"blF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"blG" = (
+/obj/machinery/door/airlock/glass_command{
+ name = "Bridge Access";
+ req_access_txt = "0";
+ req_one_access_txt = "19; 1"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"blH" = (
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"blI" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_Toxins = 0
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"blJ" = (
+/obj/structure/table,
+/obj/item/stack/wrapping_paper,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"blK" = (
+/obj/structure/table,
+/obj/item/stack/packageWrap,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"blL" = (
+/obj/machinery/light,
+/obj/structure/filingcabinet/chestdrawer,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"blM" = (
+/turf/open/floor/plasteel{
+ icon_state = "bot"
+ },
+/area/quartermaster/office)
+"blN" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"blO" = (
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (SOUTHWEST)";
+ icon_state = "brown";
+ dir = 10
+ },
+/area/quartermaster/office)
+"blP" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/office)
+"blQ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/office)
+"blR" = (
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (SOUTHEAST)";
+ icon_state = "brown";
+ dir = 6
+ },
+/area/quartermaster/office)
+"blS" = (
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (SOUTHWEST)";
+ icon_state = "brown";
+ dir = 10
+ },
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"blT" = (
+/obj/structure/closet/crate,
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"blU" = (
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"blV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/closet/crate,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (SOUTHEAST)";
+ icon_state = "brown";
+ dir = 6
+ },
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"blW" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"blX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"blY" = (
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"blZ" = (
+/turf/open/floor/plasteel/loadingarea{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
+ dir = 8
+ },
+/area/quartermaster/storage)
+"bma" = (
+/turf/open/floor/plasteel/delivery,
+/area/quartermaster/storage)
+"bmb" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad2"
+ },
+/turf/open/floor/plasteel/delivery,
+/area/quartermaster/storage)
+"bmc" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad2"
+ },
+/obj/machinery/door/poddoor{
+ id = "QMLoaddoor2";
+ name = "supply dock loading door"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"bmd" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad2"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"bme" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad2"
+ },
+/obj/structure/plasticflaps,
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"bmf" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad2"
+ },
+/obj/machinery/door/poddoor{
+ id = "QMLoaddoor2";
+ name = "supply dock loading door"
+ },
+/turf/open/floor/plating,
+/area/shuttle/supply)
+"bmg" = (
+/turf/closed/wall/r_wall,
+/area/security/transfer)
+"bmh" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"bmi" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/syringe,
+/obj/item/weapon/reagent_containers/glass/bottle/salglu_solution,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"bmj" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/medical,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"bmk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/medical/patients_rooms)
+"bml" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"bmm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"bmn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/medical/medbay3)
+"bmo" = (
+/obj/structure/cable{
+ tag = "icon-0-4";
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Medbay Port APC";
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/obj/item/weapon/defibrillator/loaded,
+/obj/structure/table,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/medical/medbay3)
+"bmp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/medical/medbay3)
+"bmq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/medical/medbay3)
+"bmr" = (
+/obj/structure/rack,
+/obj/item/weapon/caution,
+/obj/item/weapon/caution,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/medical/medbay3)
+"bms" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bmt" = (
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
+/obj/structure/closet/secure_closet/medical1,
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (NORTHWEST)";
+ icon_state = "whiteblue";
+ dir = 9
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bmu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (NORTH)";
+ icon_state = "whiteblue";
+ dir = 1
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bmv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (NORTH)";
+ icon_state = "whiteblue";
+ dir = 1
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bmw" = (
+/obj/structure/closet/l3closet,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (NORTHEAST)";
+ icon_state = "whiteblue";
+ dir = 5
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bmx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bmy" = (
+/obj/structure/bed/roller,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (WEST)";
+ icon_state = "whiteblue";
+ dir = 8
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bmz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bmA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ tag = "icon-whitebluecorner (EAST)";
+ icon_state = "whitebluecorner";
+ dir = 4
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bmB" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (NORTH)";
+ icon_state = "whiteblue";
+ dir = 1
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bmC" = (
+/obj/machinery/button/door{
+ desc = "A remote control switch for the medbay foyer.";
+ id = "MedbayFoyer";
+ name = "Medbay Exit Button";
+ normaldoorcontrol = 1;
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (NORTHEAST)";
+ icon_state = "whiteblue";
+ dir = 5
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bmD" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = "MedbayFoyer";
+ name = "Medbay";
+ req_access_txt = "5"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bmE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (NORTHWEST)";
+ icon_state = "whiteblue";
+ dir = 9
+ },
+/area/medical/medbay)
+"bmF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (NORTH)";
+ icon_state = "whiteblue";
+ dir = 1
+ },
+/area/medical/medbay)
+"bmG" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (NORTH)";
+ icon_state = "whiteblue";
+ dir = 1
+ },
+/area/medical/medbay)
+"bmH" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2";
+ tag = "icon-pipe-j1 (WEST)"
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (NORTHEAST)";
+ icon_state = "whiteblue";
+ dir = 5
+ },
+/area/medical/medbay)
+"bmI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/medical/medbay)
+"bmJ" = (
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (EAST)";
+ icon_state = "camera";
+ dir = 4
+ },
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (WEST)";
+ icon_state = "blue";
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bmK" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2";
+ tag = "icon-pipe-j1 (WEST)"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bmL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (EAST)";
+ icon_state = "blue";
+ dir = 4
+ },
+/area/hallway/primary/port)
+"bmM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/glass_command{
+ name = "Bridge Access";
+ req_access_txt = "0";
+ req_one_access_txt = "19; 1"
+ },
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"bmN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ layer = 2.9;
+ name = "bridge blast door"
+ },
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"bmO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_command{
+ name = "Bridge Access";
+ req_access_txt = "0";
+ req_one_access_txt = "19; 1"
+ },
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"bmP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"bmQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"bmR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"bmS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = ""
+ },
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"bmT" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
+/obj/machinery/light,
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"bmU" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"bmV" = (
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"bmW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/glass_command{
+ id_tag = "bridge door west";
+ name = "Bridge Port";
+ req_access_txt = "19"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"bmX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bmY" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bmZ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bna" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/keycard_auth{
+ pixel_x = -6
+ },
+/obj/machinery/button/door{
+ id = "bridge blast";
+ name = "Bridge Blast Door Control";
+ pixel_x = 6;
+ pixel_y = 0;
+ req_access_txt = "19"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ tag = "icon-darkblue (NORTHWEST)";
+ icon_state = "darkblue";
+ dir = 9
+ },
+/area/bridge)
+"bnb" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/machinery/computer/communications,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ tag = "icon-darkblue (NORTH)";
+ icon_state = "darkblue";
+ dir = 1
+ },
+/area/bridge)
+"bnc" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/table/reinforced,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ tag = "icon-darkblue (NORTHEAST)";
+ icon_state = "darkblue";
+ dir = 5
+ },
+/area/bridge)
+"bnd" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bne" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bnf" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bng" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/glass_command{
+ id_tag = "bridge door east";
+ name = "Bridge Starbord";
+ req_access_txt = "19"
+ },
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"bnh" = (
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"bni" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"bnj" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/machinery/light,
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"bnk" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"bnl" = (
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"bnm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"bnn" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"bno" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ layer = 2.9;
+ name = "bridge blast door"
+ },
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"bnp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"bnq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_command{
+ name = "Bridge Access";
+ req_access_txt = "0";
+ req_one_access_txt = "19; 1"
+ },
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"bnr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/glass_command{
+ name = "Bridge Access";
+ req_access_txt = "0";
+ req_one_access_txt = "19; 1"
+ },
+/turf/open/floor/plasteel/darkblue,
+/area/bridge)
+"bns" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bnt" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bnu" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bnv" = (
+/obj/machinery/mineral/ore_redemption,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bnw" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/glass_mining{
+ name = "Cargo Office";
+ req_access_txt = "0";
+ req_one_access_txt = "48;50"
+ },
+/turf/open/floor/plasteel/delivery,
+/area/quartermaster/office)
+"bnx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bny" = (
+/mob/living/simple_animal/sloth,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bnz" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "QMLoad2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bnA" = (
+/obj/machinery/door/airlock/glass_mining{
+ name = "Cargo Bay";
+ req_access_txt = "31"
+ },
+/turf/open/floor/noslip,
+/area/quartermaster/storage)
+"bnB" = (
+/turf/open/floor/noslip,
+/area/quartermaster/storage)
+"bnC" = (
+/obj/machinery/light,
+/turf/open/floor/noslip,
+/area/quartermaster/storage)
+"bnD" = (
+/obj/machinery/door/airlock/external{
+ name = "Supply Dock Airlock";
+ req_access_txt = "31"
+ },
+/turf/open/floor/noslip,
+/area/quartermaster/storage)
+"bnE" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Supply Shuttle Airlock";
+ req_access_txt = "31"
+ },
+/turf/open/floor/plating,
+/area/shuttle/supply)
+"bnF" = (
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/security/transfer)
+"bnG" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/security/transfer)
+"bnH" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/iv_drip,
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"bnI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"bnJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/medical/patients_rooms)
+"bnK" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"bnL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/medical/medbay3)
+"bnM" = (
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/structure/rack,
+/obj/item/weapon/reagent_containers/glass/bottle/charcoal,
+/obj/item/weapon/reagent_containers/glass/bottle/charcoal,
+/obj/item/weapon/reagent_containers/glass/bottle/potass_iodide,
+/obj/item/weapon/reagent_containers/glass/bottle/morphine,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/medical/medbay3)
+"bnN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/medical/medbay3)
+"bnO" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/medical/medbay3)
+"bnP" = (
+/obj/structure/mopbucket,
+/obj/item/weapon/mop,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/medical/medbay3)
+"bnQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bnR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/closet/secure_closet/medical3,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (WEST)";
+ icon_state = "whiteblue";
+ dir = 8
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bnS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bnT" = (
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bnU" = (
+/obj/structure/closet/wardrobe/white/medical,
+/obj/item/clothing/suit/hooded/wintercoat/medical,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (EAST)";
+ icon_state = "whiteblue";
+ dir = 4
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bnV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bnW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/bed/roller,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (SOUTHWEST)";
+ icon_state = "whiteblue";
+ dir = 10
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bnX" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bnY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bnZ" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"boa" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (SOUTHEAST)";
+ icon_state = "whiteblue";
+ dir = 6
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bob" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = "MedbayFoyer";
+ name = "Medbay";
+ req_access_txt = "5"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"boc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (WEST)";
+ icon_state = "whiteblue";
+ dir = 8
+ },
+/area/medical/medbay)
+"bod" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"boe" = (
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bof" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bog" = (
+/obj/structure/table/glass,
+/obj/item/device/healthanalyzer,
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (EAST)";
+ icon_state = "whiteblue";
+ dir = 4
+ },
+/area/medical/medbay)
+"boh" = (
+/turf/closed/wall,
+/area/medical/medbay)
+"boi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (WEST)";
+ icon_state = "blue";
+ dir = 8
+ },
+/area/hallway/primary/port)
+"boj" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/bridge)
+"bok" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/bridge)
+"bol" = (
+/obj/machinery/door/airlock/command{
+ name = "Conference Room";
+ req_access = null;
+ req_access_txt = "19"
+ },
+/turf/open/floor/wood,
+/area/bridge/meeting_room)
+"bom" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/bridge)
+"bon" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/hatch{
+ name = "Bridge Maintenance Access";
+ req_access_txt = "0";
+ req_one_access_txt = "19; 1"
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"boo" = (
+/obj/structure/table/glass,
+/obj/item/device/aicard,
+/obj/machinery/airalarm{
+ dir = 4;
+ locked = 0;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/darkpurple,
+/area/bridge)
+"bop" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/darkpurple/side{
+ tag = "icon-darkpurple (WEST)";
+ icon_state = "darkpurple";
+ dir = 8
+ },
+/area/bridge)
+"boq" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bor" = (
+/obj/machinery/door/window/brigdoor{
+ dir = 8;
+ name = "Command Desk";
+ req_access_txt = "19"
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ tag = "icon-darkblue (WEST)";
+ icon_state = "darkblue";
+ dir = 8
+ },
+/area/bridge)
+"bos" = (
+/obj/structure/chair/comfy/brown{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bot" = (
+/obj/machinery/door/window/brigdoor{
+ dir = 4;
+ name = "Command Desk";
+ req_access_txt = "19"
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching output from station security cameras.";
+ name = "Security Camera Monitor";
+ network = list("SS13");
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ tag = "icon-darkblue (EAST)";
+ icon_state = "darkblue";
+ dir = 4
+ },
+/area/bridge)
+"bou" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bov" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/darkgreen/side{
+ tag = "icon-darkgreen (EAST)";
+ icon_state = "darkgreen";
+ dir = 4
+ },
+/area/bridge)
+"bow" = (
+/obj/machinery/computer/security/mining,
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Bridge";
+ departmentType = 5;
+ name = "Bridge RC";
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/darkgreen,
+/area/bridge)
+"box" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/command{
+ name = "Captain's Office";
+ req_access = null;
+ req_access_txt = "20"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain)
+"boy" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j1";
+ tag = "icon-pipe-j1 (EAST)"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"boz" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"boA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/chair,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTHWEST)";
+ icon_state = "brown";
+ dir = 9
+ },
+/area/quartermaster/office)
+"boB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/chair,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTH)";
+ icon_state = "brown";
+ dir = 1
+ },
+/area/quartermaster/office)
+"boC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 1
+ },
+/area/quartermaster/office)
+"boD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/loadingarea{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+ },
+/area/quartermaster/office)
+"boE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 4
+ },
+/area/quartermaster/office)
+"boF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTH)";
+ icon_state = "brown";
+ dir = 1
+ },
+/area/quartermaster/office)
+"boG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/computer/cargo/request,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTHEAST)";
+ icon_state = "brown";
+ dir = 5
+ },
+/area/quartermaster/office)
+"boH" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"boI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/computer/cargo,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTHWEST)";
+ icon_state = "brown";
+ dir = 9
+ },
+/area/quartermaster/office)
+"boJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTH)";
+ icon_state = "brown";
+ dir = 1
+ },
+/area/quartermaster/office)
+"boK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/filingcabinet,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTH)";
+ icon_state = "brown";
+ dir = 1
+ },
+/area/quartermaster/office)
+"boL" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal/bin,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTH)";
+ icon_state = "brown";
+ dir = 1
+ },
+/area/quartermaster/office)
+"boM" = (
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/obj/structure/table,
+/obj/item/weapon/clipboard,
+/obj/item/weapon/folder/yellow,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTH)";
+ icon_state = "brown";
+ dir = 1
+ },
+/area/quartermaster/office)
+"boN" = (
+/obj/structure/table,
+/obj/machinery/computer/stockexchange,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTH)";
+ icon_state = "brown";
+ dir = 1
+ },
+/area/quartermaster/office)
+"boO" = (
+/obj/machinery/autolathe,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTH)";
+ icon_state = "brown";
+ dir = 1
+ },
+/area/quartermaster/office)
+"boP" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTH)";
+ icon_state = "brown";
+ dir = 1
+ },
+/area/quartermaster/office)
+"boQ" = (
+/obj/structure/table,
+/obj/item/device/multitool,
+/obj/item/weapon/screwdriver,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTH)";
+ icon_state = "brown";
+ dir = 1
+ },
+/area/quartermaster/office)
+"boR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/table,
+/obj/item/weapon/crowbar,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTHEAST)";
+ icon_state = "brown";
+ dir = 5
+ },
+/area/quartermaster/office)
+"boS" = (
+/obj/machinery/status_display{
+ density = 0;
+ name = "cargo display";
+ pixel_x = 0;
+ pixel_y = 0;
+ supply_display = 1
+ },
+/turf/closed/wall,
+/area/quartermaster/office)
+"boT" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"boU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"boV" = (
+/obj/machinery/computer/cargo,
+/obj/machinery/button/door{
+ dir = 2;
+ id = "QMLoaddoor2";
+ name = "Loading Doors";
+ pixel_x = 24;
+ pixel_y = 8
+ },
+/obj/machinery/button/door{
+ id = "QMLoaddoor";
+ name = "Loading Doors";
+ pixel_x = 24;
+ pixel_y = -8
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (EAST)";
+ icon_state = "brown";
+ dir = 4
+ },
+/area/quartermaster/storage)
+"boW" = (
+/obj/machinery/button/door{
+ id = "QMLoaddoor";
+ name = "Loading Doors";
+ pixel_x = -24;
+ pixel_y = -8
+ },
+/obj/machinery/button/door{
+ dir = 2;
+ id = "QMLoaddoor2";
+ name = "Loading Doors";
+ pixel_x = -24;
+ pixel_y = 8
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/supply)
+"boX" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/supply)
+"boY" = (
+/obj/machinery/power/emitter{
+ anchored = 1;
+ dir = 4;
+ req_access = list(11,2);
+ state = 2
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "delivery"
+ },
+/area/security/transfer)
+"boZ" = (
+/obj/structure/reflector/box{
+ tag = "icon-reflector_box (EAST)";
+ icon_state = "reflector_box";
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/transfer)
+"bpa" = (
+/turf/open/floor/plating{
+ tag = "icon-delivery";
+ icon_state = "delivery";
+ dir = 2
+ },
+/area/security/transfer)
+"bpb" = (
+/obj/structure/reflector/box{
+ tag = "icon-reflector_box (WEST)";
+ icon_state = "reflector_box";
+ dir = 8
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/transfer)
+"bpc" = (
+/obj/machinery/power/emitter{
+ anchored = 1;
+ dir = 8;
+ req_access = list(11,2);
+ state = 2
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "delivery"
+ },
+/area/security/transfer)
+"bpd" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical{
+ name = "Patient Room 3";
+ req_access_txt = "5"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"bpe" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/structure/rack,
+/obj/item/weapon/reagent_containers/glass/bottle/histamine,
+/obj/item/weapon/reagent_containers/glass/bottle/histamine,
+/obj/item/weapon/reagent_containers/glass/bottle/formaldehyde,
+/obj/item/weapon/reagent_containers/glass/bottle/toxin,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/medical/medbay3)
+"bpf" = (
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/medical/medbay3)
+"bpg" = (
+/obj/structure/rack,
+/obj/item/weapon/cartridge/medical,
+/obj/item/weapon/cartridge/medical,
+/obj/item/weapon/cartridge/chemistry,
+/obj/item/weapon/cartridge/chemistry,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 24
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/medical/medbay3)
+"bph" = (
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/weapon/storage/firstaid/fire{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/firstaid/fire,
+/obj/item/weapon/storage/firstaid/fire{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/structure/table/glass,
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (WEST)";
+ icon_state = "whiteblue";
+ dir = 8
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bpi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bpj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bpk" = (
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bpl" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/structure/closet/crate/freezer,
+/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/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OPlus,
+/obj/item/weapon/reagent_containers/blood/OPlus,
+/obj/item/weapon/reagent_containers/blood/empty,
+/obj/item/weapon/reagent_containers/blood/empty,
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (EAST)";
+ icon_state = "whiteblue";
+ dir = 4
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bpm" = (
+/turf/closed/wall,
+/area/security/checkpoint/medical)
+"bpn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/newscaster/security_unit,
+/turf/closed/wall,
+/area/security/checkpoint/medical)
+"bpo" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/glass_security{
+ name = "Medbay Security Post";
+ req_access_txt = "63"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/medical)
+"bpp" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/security/checkpoint/medical)
+"bpq" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/security/checkpoint/medical)
+"bpr" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (WEST)";
+ icon_state = "whiteblue";
+ dir = 8
+ },
+/area/medical/medbay)
+"bps" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bpt" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (EAST)";
+ icon_state = "whiteblue";
+ dir = 4
+ },
+/area/medical/medbay)
+"bpu" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/grille,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/bridge/meeting_room)
+"bpv" = (
+/obj/structure/chair/comfy/black,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/bridge/meeting_room)
+"bpw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/chair/comfy/black,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/bridge/meeting_room)
+"bpx" = (
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/bridge/meeting_room)
+"bpy" = (
+/turf/open/floor/wood,
+/area/bridge/meeting_room)
+"bpz" = (
+/obj/machinery/vending/coffee,
+/turf/open/floor/wood,
+/area/bridge/meeting_room)
+"bpA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/filingcabinet/chestdrawer,
+/turf/open/floor/wood,
+/area/bridge/meeting_room)
+"bpB" = (
+/turf/closed/wall,
+/area/bridge/meeting_room)
+"bpC" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"bpD" = (
+/obj/machinery/computer/teleporter,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/darkpurple,
+/area/bridge)
+"bpE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light,
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/plasteel/darkpurple/side{
+ tag = "icon-darkpurple (WEST)";
+ icon_state = "darkpurple";
+ dir = 8
+ },
+/area/bridge)
+"bpF" = (
+/obj/structure/fireaxecabinet{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bpG" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (SOUTHWEST)";
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ tag = "icon-darkblue (WEST)";
+ icon_state = "darkblue";
+ dir = 8
+ },
+/area/bridge)
+"bpH" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bpI" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/machinery/turretid{
+ control_area = "AI Upload Chamber";
+ name = "AI Upload turret control";
+ pixel_y = -25
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ tag = "icon-darkblue (EAST)";
+ icon_state = "darkblue";
+ dir = 4
+ },
+/area/bridge)
+"bpJ" = (
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 2;
+ name = "Bridge APC";
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bpK" = (
+/obj/machinery/light,
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkgreen/side{
+ tag = "icon-darkgreen (EAST)";
+ icon_state = "darkgreen";
+ dir = 4
+ },
+/area/bridge)
+"bpL" = (
+/obj/machinery/computer/cargo/request,
+/turf/open/floor/plasteel/darkgreen,
+/area/bridge)
+"bpM" = (
+/turf/closed/wall/r_wall,
+/area/crew_quarters/captain)
+"bpN" = (
+/obj/structure/displaycase/captain,
+/turf/open/floor/wood,
+/area/crew_quarters/captain)
+"bpO" = (
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/obj/structure/table/wood,
+/obj/item/weapon/storage/fancy/cigarettes/cigars,
+/obj/item/weapon/coin/plasma{
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/obj/item/weapon/lighter{
+ pixel_x = -6
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain)
+"bpP" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/wood,
+/area/crew_quarters/captain)
+"bpQ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/obj/machinery/computer/card,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain)
+"bpR" = (
+/obj/machinery/power/apc{
+ cell_type = 2500;
+ dir = 1;
+ name = "Captain's Office APC";
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain)
+"bpS" = (
+/obj/structure/table/wood,
+/obj/item/weapon/folder/blue,
+/obj/item/weapon/stamp/captain,
+/obj/machinery/newscaster/security_unit{
+ pixel_y = 32
+ },
+/obj/item/weapon/melee/chainofcommand,
+/obj/item/device/radio/intercom{
+ desc = "Talk smack through this.";
+ dir = 4;
+ pixel_x = 28;
+ syndie = 1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain)
+"bpT" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bpU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTHWEST)";
+ icon_state = "brown";
+ dir = 9
+ },
+/area/quartermaster/office)
+"bpV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown/corner{
+ tag = "icon-browncorner (NORTH)";
+ icon_state = "browncorner";
+ dir = 1
+ },
+/area/quartermaster/office)
+"bpW" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (WEST)";
+ icon_state = "vent_map";
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bpX" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bpY" = (
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (EAST)";
+ icon_state = "brown";
+ dir = 4
+ },
+/area/quartermaster/office)
+"bpZ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/westleft{
+ dir = 4;
+ name = "Cargo Desk";
+ req_access_txt = "50"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bqa" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (WEST)";
+ icon_state = "brown";
+ dir = 8
+ },
+/area/quartermaster/office)
+"bqb" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bqc" = (
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bqd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bqe" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (EAST)";
+ icon_state = "brown";
+ dir = 4
+ },
+/area/quartermaster/office)
+"bqf" = (
+/obj/machinery/door/airlock/glass_mining{
+ glass = 0;
+ name = "Cargo Bay";
+ opacity = 1;
+ req_access_txt = "0";
+ req_one_access_txt = "48;50"
+ },
+/turf/open/floor/plasteel/delivery,
+/area/quartermaster/office)
+"bqg" = (
+/obj/machinery/conveyor_switch/oneway{
+ convdir = -1;
+ id = "QMLoad"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bqh" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (EAST)";
+ icon_state = "brown";
+ dir = 4
+ },
+/area/quartermaster/storage)
+"bqi" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/noslip,
+/area/quartermaster/storage)
+"bqj" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Supply Shuttle Airlock";
+ req_access_txt = "31"
+ },
+/obj/docking_port/mobile/supply{
+ dir = 4;
+ dwidth = 5;
+ height = 7;
+ port_angle = -90;
+ width = 12
+ },
+/obj/docking_port/stationary{
+ dir = 4;
+ dwidth = 5;
+ height = 7;
+ id = "supply_home";
+ name = "Cargo Bay";
+ width = 12
+ },
+/turf/open/floor/plating,
+/area/shuttle/supply)
+"bqk" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/door/poddoor/preopen{
+ icon_state = "closed";
+ id = "exc";
+ name = "Execution Chamber"
+ },
+/turf/open/floor/plating{
+ tag = "icon-warnplate (NORTH)";
+ icon_state = "warnplate";
+ dir = 1
+ },
+/area/security/transfer)
+"bql" = (
+/obj/machinery/door/poddoor/preopen{
+ icon_state = "closed";
+ id = "exc";
+ name = "Execution Chamber"
+ },
+/turf/open/floor/plating{
+ icon_state = "warnplate";
+ dir = 5
+ },
+/area/security/transfer)
+"bqm" = (
+/obj/structure/chair/office/dark,
+/turf/open/floor/plating{
+ icon_state = "bot"
+ },
+/area/security/transfer)
+"bqn" = (
+/obj/machinery/door/poddoor/preopen{
+ icon_state = "closed";
+ id = "exc";
+ name = "Execution Chamber"
+ },
+/turf/open/floor/plating{
+ icon_state = "warnplate";
+ dir = 9
+ },
+/area/security/transfer)
+"bqo" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (EAST)";
+ icon_state = "camera";
+ dir = 4
+ },
+/mob/living/simple_animal/bot/cleanbot{
+ name = "Scrubs, MD";
+ on = 0
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/medical/medbay3)
+"bqp" = (
+/mob/living/simple_animal/bot/medbot{
+ auto_patrol = 1;
+ desc = "A little medical robot, officially part of the NanoTrasen medical inspectorate. He looks somewhat underwhelmed.";
+ name = "Inspector Johnson"
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/medical/medbay3)
+"bqq" = (
+/obj/structure/rack,
+/obj/item/weapon/gun/syringe,
+/obj/item/weapon/gun/syringe,
+/obj/item/weapon/storage/box/syringes,
+/obj/item/weapon/storage/box/syringes,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/medical/medbay3)
+"bqr" = (
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/weapon/storage/firstaid/brute{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/firstaid/brute,
+/obj/item/weapon/storage/firstaid/brute{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Medbay Storage APC";
+ pixel_y = -24
+ },
+/obj/structure/table/glass,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (WEST)";
+ icon_state = "whiteblue";
+ dir = 8
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bqs" = (
+/turf/open/floor/plasteel/white,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bqt" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bqu" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/medipens{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/syringes,
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (EAST)";
+ icon_state = "whiteblue";
+ dir = 4
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bqv" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/checkpoint/medical)
+"bqw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/filingcabinet/security,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/medical)
+"bqx" = (
+/obj/machinery/button/door{
+ desc = "A remote control switch for the medbay foyer.";
+ id = "MedbayFoyer";
+ name = "Medbay Doors Control";
+ normaldoorcontrol = 1;
+ pixel_x = 24;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/medical)
+"bqy" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin,
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/medical)
+"bqz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/computer/secure_data,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (SOUTHEAST)";
+ icon_state = "camera";
+ dir = 6
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/medical)
+"bqA" = (
+/obj/structure/table,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/pen/red,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/medical)
+"bqB" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/filingcabinet/medical,
+/obj/machinery/door/firedoor/border_only{
+ tag = "icon-door_open (NORTH)";
+ icon_state = "door_open";
+ dir = 1
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (WEST)";
+ icon_state = "whiteblue";
+ dir = 8
+ },
+/area/medical/medbay)
+"bqC" = (
+/obj/machinery/door/window/northleft{
+ name = "Medbay Reception";
+ req_access_txt = "5"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/door/firedoor/border_only{
+ tag = "icon-door_open (NORTH)";
+ icon_state = "door_open";
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bqD" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/machinery/door/firedoor/border_only{
+ tag = "icon-door_open (EAST)";
+ icon_state = "door_open";
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ tag = "icon-door_open (NORTH)";
+ icon_state = "door_open";
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bqE" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (EAST)";
+ icon_state = "whiteblue";
+ dir = 4
+ },
+/area/medical/medbay)
+"bqF" = (
+/obj/structure/sign/bluecross,
+/turf/closed/wall,
+/area/medical/medbay)
+"bqG" = (
+/obj/structure/flora/grass/green,
+/mob/living/simple_animal/chicken,
+/turf/open/floor/grass,
+/area/hallway/primary/port)
+"bqH" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/flora/grass/green,
+/turf/open/floor/grass,
+/area/hallway/primary/port)
+"bqI" = (
+/turf/closed/wall/r_wall,
+/area/bridge/meeting_room)
+"bqJ" = (
+/obj/structure/table/wood,
+/obj/item/weapon/folder/white,
+/obj/item/weapon/pen,
+/turf/open/floor/carpet,
+/area/bridge/meeting_room)
+"bqK" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/structure/table/wood,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/pen/red,
+/turf/open/floor/carpet,
+/area/bridge/meeting_room)
+"bqL" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ name = "regular air vent";
+ on = 1
+ },
+/obj/structure/chair/comfy/black{
+ dir = 8
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/bridge/meeting_room)
+"bqM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/wood,
+/area/bridge/meeting_room)
+"bqN" = (
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai_upload)
+"bqO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai_upload)
+"bqP" = (
+/obj/machinery/door/airlock/highsecurity{
+ icon_state = "door_closed";
+ locked = 0;
+ name = "AI Upload";
+ req_access_txt = "16"
+ },
+/turf/open/floor/circuit{
+ icon_state = "gcircuit";
+ luminosity = 2
+ },
+/area/ai_monitored/turret_protected/ai_upload)
+"bqQ" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/suit_storage_unit/captain,
+/turf/open/floor/wood,
+/area/crew_quarters/captain)
+"bqR" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain)
+"bqS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain)
+"bqT" = (
+/obj/machinery/computer/communications,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain)
+"bqU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Captain"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain)
+"bqV" = (
+/obj/item/weapon/storage/secure/safe{
+ pixel_x = 32
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain)
+"bqW" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/grass,
+/area/hallway/primary/starboard)
+"bqX" = (
+/obj/structure/flora/grass/green,
+/mob/living/simple_animal/pet/dog/corgi,
+/turf/open/floor/grass,
+/area/hallway/primary/starboard)
+"bqY" = (
+/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/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bqZ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bra" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (SOUTHWEST)";
+ icon_state = "brown";
+ dir = 10
+ },
+/area/quartermaster/office)
+"brb" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown/corner{
+ tag = "icon-browncorner (WEST)";
+ icon_state = "browncorner";
+ dir = 8
+ },
+/area/quartermaster/office)
+"brc" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"brd" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bre" = (
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (EAST)";
+ icon_state = "brown";
+ dir = 4
+ },
+/area/quartermaster/office)
+"brf" = (
+/obj/structure/table,
+/obj/item/weapon/stamp{
+ pixel_x = -6
+ },
+/obj/item/weapon/stamp/denied,
+/obj/item/weapon/pen{
+ pixel_x = 4;
+ pixel_y = 7
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (WEST)";
+ icon_state = "brown";
+ dir = 8
+ },
+/area/quartermaster/office)
+"brg" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"brh" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (WEST)";
+ icon_state = "brown";
+ dir = 8
+ },
+/area/quartermaster/storage)
+"bri" = (
+/turf/open/floor/plasteel/loadingarea{
+ tag = "icon-loadingarea (EAST)";
+ dir = 4;
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+ },
+/area/quartermaster/storage)
+"brj" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad"
+ },
+/turf/open/floor/plasteel/delivery,
+/area/quartermaster/storage)
+"brk" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad"
+ },
+/obj/machinery/door/poddoor{
+ id = "QMLoaddoor";
+ name = "supply dock loading door"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"brl" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"brm" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad"
+ },
+/obj/structure/plasticflaps,
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"brn" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad"
+ },
+/obj/machinery/door/poddoor{
+ id = "QMLoaddoor";
+ name = "supply dock loading door"
+ },
+/turf/open/floor/plating,
+/area/shuttle/supply)
+"bro" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/plasteel/darkred/corner{
+ tag = "icon-darkredcorners (WEST)";
+ icon_state = "darkredcorners";
+ dir = 8
+ },
+/area/security/transfer)
+"brp" = (
+/obj/machinery/door/poddoor/preopen{
+ icon_state = "closed";
+ id = "exc";
+ name = "Execution Chamber"
+ },
+/turf/open/floor/plating{
+ icon_state = "warnplatecorner";
+ dir = 8
+ },
+/area/security/transfer)
+"brq" = (
+/obj/machinery/door/poddoor/preopen{
+ icon_state = "closed";
+ id = "exc";
+ name = "Execution Chamber"
+ },
+/turf/open/floor/plating{
+ tag = "icon-warnplate (NORTH)";
+ icon_state = "warnplate";
+ dir = 1
+ },
+/area/security/transfer)
+"brr" = (
+/obj/machinery/door/poddoor/preopen{
+ icon_state = "closed";
+ id = "exc";
+ name = "Execution Chamber"
+ },
+/turf/open/floor/plating{
+ icon_state = "warnplatecorner";
+ dir = 4
+ },
+/area/security/transfer)
+"brs" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkred/corner,
+/area/security/transfer)
+"brt" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (SOUTHWEST)";
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"bru" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms)
+"brv" = (
+/obj/structure/closet/crate/medical,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/medical/medbay3)
+"brw" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/machinery/door/window/northright{
+ name = "Medbay Delivery";
+ req_access_txt = "5"
+ },
+/turf/open/floor/plasteel/delivery,
+/area/medical/medbay3)
+"brx" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/surgicaldrill,
+/obj/item/weapon/circular_saw,
+/obj/item/weapon/retractor,
+/obj/item/weapon/scalpel,
+/obj/item/weapon/hemostat,
+/obj/item/weapon/cautery,
+/obj/item/weapon/surgical_drapes,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/medical/medbay3)
+"bry" = (
+/obj/machinery/reagentgrinder,
+/obj/structure/table,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/medical/medbay3)
+"brz" = (
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/weapon/storage/firstaid/toxin{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/firstaid/toxin,
+/obj/item/weapon/storage/firstaid/toxin{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (SOUTHWEST)";
+ icon_state = "whiteblue";
+ dir = 10
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"brA" = (
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/weapon/storage/firstaid/o2{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/firstaid/o2,
+/obj/item/weapon/storage/firstaid/o2{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/structure/table/glass,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTH)";
+ icon_state = "camera";
+ dir = 1
+ },
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"brB" = (
+/obj/machinery/light,
+/obj/structure/closet/secure_closet/medical3,
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"brC" = (
+/obj/machinery/vending/medical,
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"brD" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/masks{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/gloves,
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (SOUTHEAST)";
+ icon_state = "whiteblue";
+ dir = 6
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"brE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/medical)
+"brF" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/medical)
+"brG" = (
+/obj/effect/landmark/start/depsec/medical,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/medical)
+"brH" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/medical)
+"brI" = (
+/obj/structure/closet/secure_closet/security/med,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/medical)
+"brJ" = (
+/obj/machinery/computer/med_data,
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (WEST)";
+ icon_state = "whiteblue";
+ dir = 8
+ },
+/area/medical/medbay)
+"brK" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/machinery/button/door{
+ desc = "A remote control switch for the medbay foyer.";
+ id = "MedbayFoyer";
+ name = "Medbay Doors Control";
+ normaldoorcontrol = 1;
+ pixel_x = 24;
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"brL" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/border_only{
+ tag = "icon-door_open (EAST)";
+ icon_state = "door_open";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"brM" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"brN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"brO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (EAST)";
+ icon_state = "whiteblue";
+ dir = 4
+ },
+/area/medical/medbay)
+"brP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/medbay)
+"brQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"brR" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/machinery/holopad,
+/turf/open/floor/carpet,
+/area/bridge/meeting_room)
+"brS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/table/wood,
+/obj/item/weapon/folder/blue,
+/obj/item/weapon/pen/blue,
+/turf/open/floor/carpet,
+/area/bridge/meeting_room)
+"brT" = (
+/obj/structure/chair/comfy/black{
+ dir = 8
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/bridge/meeting_room)
+"brU" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/wood,
+/area/bridge/meeting_room)
+"brV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin,
+/turf/open/floor/wood,
+/area/bridge/meeting_room)
+"brW" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"brX" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/obj/machinery/porta_turret/ai{
+ dir = 4
+ },
+/turf/open/floor/circuit{
+ icon_state = "gcircuit";
+ luminosity = 2
+ },
+/area/ai_monitored/turret_protected/ai_upload)
+"brY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"brZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"bsa" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/circuit{
+ icon_state = "gcircuit";
+ luminosity = 2
+ },
+/area/ai_monitored/turret_protected/ai_upload)
+"bsb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/camera/motion,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"bsc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/porta_turret/ai{
+ dir = 4
+ },
+/turf/open/floor/circuit{
+ icon_state = "gcircuit";
+ luminosity = 2
+ },
+/area/ai_monitored/turret_protected/ai_upload)
+"bsd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai_upload)
+"bse" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"bsf" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"bsg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Captain's Office Maintenance";
+ req_access_txt = "20"
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"bsh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain)
+"bsi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/mob/living/simple_animal/pet/fox/Renault,
+/turf/open/floor/wood,
+/area/crew_quarters/captain)
+"bsj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain)
+"bsk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/table/wood,
+/obj/machinery/recharger,
+/obj/item/weapon/hand_tele,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain)
+"bsl" = (
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
+/turf/open/floor/wood,
+/area/crew_quarters/captain)
+"bsm" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_Toxins = 0
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain)
+"bsn" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"bso" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (SOUTHWEST)";
+ icon_state = "brown";
+ dir = 10
+ },
+/area/quartermaster/office)
+"bsp" = (
+/obj/machinery/light,
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 8
+ },
+/area/quartermaster/office)
+"bsq" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTH)";
+ icon_state = "camera";
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "bot"
+ },
+/area/quartermaster/office)
+"bsr" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel{
+ icon_state = "bot"
+ },
+/area/quartermaster/office)
+"bss" = (
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "bot"
+ },
+/area/quartermaster/office)
+"bst" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/brown/corner,
+/area/quartermaster/office)
+"bsu" = (
+/obj/structure/cable{
+ tag = "icon-1-4";
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (SOUTHEAST)";
+ icon_state = "brown";
+ dir = 6
+ },
+/area/quartermaster/office)
+"bsv" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass_mining{
+ name = "Cargo Office";
+ req_access_txt = "50"
+ },
+/turf/open/floor/plasteel/delivery,
+/area/quartermaster/office)
+"bsw" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (SOUTHWEST)";
+ icon_state = "brown";
+ dir = 10
+ },
+/area/quartermaster/office)
+"bsx" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/office)
+"bsy" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/light,
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/office)
+"bsz" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/office)
+"bsA" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Cargo Office APC";
+ pixel_x = 1;
+ pixel_y = -24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/office)
+"bsB" = (
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/office)
+"bsC" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/office)
+"bsD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/office)
+"bsE" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTH)";
+ icon_state = "camera";
+ dir = 1
+ },
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/office)
+"bsF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (SOUTHEAST)";
+ icon_state = "brown";
+ dir = 6
+ },
+/area/quartermaster/office)
+"bsG" = (
+/obj/structure/closet/wardrobe/cargotech,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHEAST)";
+ icon_state = "camera";
+ dir = 5
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (WEST)";
+ icon_state = "brown";
+ dir = 8
+ },
+/area/quartermaster/storage)
+"bsH" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bsI" = (
+/obj/machinery/status_display{
+ density = 0;
+ name = "cargo display";
+ pixel_x = 32;
+ pixel_y = 0;
+ supply_display = 1
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (EAST)";
+ icon_state = "brown";
+ dir = 4
+ },
+/area/quartermaster/storage)
+"bsJ" = (
+/turf/closed/wall,
+/area/maintenance/asmaint2)
+"bsK" = (
+/obj/structure/cable{
+ tag = "icon-1-4";
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/darkred/side{
+ tag = "icon-darkred (SOUTHWEST)";
+ icon_state = "darkred";
+ dir = 10
+ },
+/area/security/transfer)
+"bsL" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/darkred/side,
+/area/security/transfer)
+"bsM" = (
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4";
+ tag = "icon-2-8"
+ },
+/turf/open/floor/plasteel/darkred/side,
+/area/security/transfer)
+"bsN" = (
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/obj/machinery/button/door{
+ dir = 4;
+ id = "exc";
+ name = "Execution Chamber";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/darkred/side{
+ tag = "icon-darkred (SOUTHEAST)";
+ icon_state = "darkred";
+ dir = 6
+ },
+/area/security/transfer)
+"bsO" = (
+/obj/effect/decal/remains/human,
+/turf/open/floor/plasteel{
+ icon_plating = "asteroid";
+ icon_state = "asteroid";
+ name = "Asteroid"
+ },
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"bsP" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Medbay Maintenance";
+ req_access_txt = "5"
+ },
+/turf/open/floor/plating,
+/area/medical/patients_rooms)
+"bsQ" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=4";
+ freq = 1400;
+ location = "Medbay"
+ },
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plasteel{
+ icon_state = "bot"
+ },
+/area/medical/medbay3)
+"bsR" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/structure/table,
+/obj/machinery/recharger,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/medical)
+"bsS" = (
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_y = -28
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/medical)
+"bsT" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/medical)
+"bsU" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/medical)
+"bsV" = (
+/obj/structure/closet/wardrobe/red,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/medical)
+"bsW" = (
+/obj/machinery/computer/crew,
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (SOUTHWEST)";
+ icon_state = "whiteblue";
+ dir = 10
+ },
+/area/medical/medbay)
+"bsX" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/item/weapon/clipboard,
+/obj/item/weapon/folder/white,
+/obj/item/weapon/pen/blue,
+/obj/machinery/door/firedoor/border_only{
+ tag = "icon-door_open (EAST)";
+ icon_state = "door_open";
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bsY" = (
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (EAST)";
+ icon_state = "whiteblue";
+ dir = 4
+ },
+/area/medical/medbay)
+"bsZ" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/medbay)
+"bta" = (
+/obj/effect/landmark/event_spawn,
+/obj/structure/flora/grass/green,
+/turf/open/floor/grass,
+/area/hallway/primary/port)
+"btb" = (
+/mob/living/simple_animal/chicken,
+/turf/open/floor/grass,
+/area/hallway/primary/port)
+"btc" = (
+/obj/structure/table/wood,
+/obj/item/weapon/folder,
+/obj/item/weapon/pen,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (EAST)";
+ icon_state = "camera";
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/bridge/meeting_room)
+"btd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/table/wood,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/pen,
+/turf/open/floor/carpet,
+/area/bridge/meeting_room)
+"bte" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/turf/open/floor/wood,
+/area/bridge/meeting_room)
+"btf" = (
+/obj/machinery/photocopier,
+/obj/structure/noticeboard{
+ dir = 8;
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/bridge/meeting_room)
+"btg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"bth" = (
+/obj/structure/table,
+/obj/item/weapon/aiModule/core/full/asimov,
+/obj/item/weapon/aiModule/core/freeformcore,
+/obj/machinery/door/window{
+ base_state = "right";
+ dir = 4;
+ icon_state = "right";
+ name = "Core Modules";
+ req_access_txt = "20"
+ },
+/obj/structure/window/reinforced,
+/obj/item/weapon/aiModule/core/full/corp,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/weapon/aiModule/core/full/custom,
+/turf/open/floor/plasteel/blue,
+/area/ai_monitored/turret_protected/ai_upload)
+"bti" = (
+/turf/open/floor/plasteel/blue,
+/area/ai_monitored/turret_protected/ai_upload)
+"btj" = (
+/mob/living/simple_animal/bot/secbot/beepsky,
+/turf/open/floor/circuit{
+ icon_state = "gcircuit";
+ luminosity = 2
+ },
+/area/ai_monitored/turret_protected/ai_upload)
+"btk" = (
+/obj/structure/table,
+/obj/item/weapon/aiModule/supplied/oxygen,
+/obj/item/weapon/aiModule/zeroth/oneHuman,
+/obj/machinery/door/window{
+ base_state = "left";
+ dir = 8;
+ icon_state = "left";
+ name = "High-Risk Modules";
+ req_access_txt = "20"
+ },
+/obj/item/weapon/aiModule/reset/purge,
+/obj/structure/window/reinforced,
+/obj/item/weapon/aiModule/core/full/antimov,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/weapon/aiModule/supplied/protectStation,
+/turf/open/floor/plasteel/blue,
+/area/ai_monitored/turret_protected/ai_upload)
+"btl" = (
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"btm" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/structure/table/wood,
+/obj/item/weapon/storage/lockbox/medal,
+/turf/open/floor/wood,
+/area/crew_quarters/captain)
+"btn" = (
+/obj/structure/table/wood,
+/obj/item/weapon/pinpointer,
+/obj/item/weapon/disk/nuclear,
+/turf/open/floor/wood,
+/area/crew_quarters/captain)
+"bto" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"btp" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain)
+"btq" = (
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood,
+/area/crew_quarters/captain)
+"btr" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/bin,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain)
+"bts" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/crew_quarters/captain)
+"btt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/hallway/primary/starboard)
+"btu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/flora/grass/green,
+/turf/open/floor/grass,
+/area/hallway/primary/starboard)
+"btv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/obj/structure/flora/grass/green,
+/turf/open/floor/grass,
+/area/hallway/primary/starboard)
+"btw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/grass,
+/area/hallway/primary/starboard)
+"btx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/glass{
+ name = "Grass Enclosure";
+ req_access_txt = "12"
+ },
+/turf/open/floor/plasteel/green,
+/area/hallway/primary/starboard)
+"bty" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"btz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j2";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"btA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"btB" = (
+/turf/closed/wall,
+/area/security/checkpoint/supply)
+"btC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/security/checkpoint/supply)
+"btD" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Security Post - Cargo";
+ req_access_txt = "63"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/supply)
+"btE" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/quartermaster/qm)
+"btF" = (
+/turf/closed/wall,
+/area/quartermaster/qm)
+"btG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/glass_mining{
+ name = "Quartermaster";
+ req_access_txt = "41"
+ },
+/turf/open/floor/plasteel/delivery,
+/area/quartermaster/qm)
+"btH" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/quartermaster/qm)
+"btI" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/structure/closet/wardrobe/cargotech,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (WEST)";
+ icon_state = "brown";
+ dir = 8
+ },
+/area/quartermaster/storage)
+"btJ" = (
+/obj/structure/table,
+/obj/item/device/gps,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (EAST)";
+ icon_state = "brown";
+ dir = 4
+ },
+/area/quartermaster/storage)
+"btK" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/rack,
+/obj/item/weapon/storage/box/mousetraps,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"btL" = (
+/turf/open/space,
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"btM" = (
+/turf/open/floor/mineral/titanium/blue,
+/turf/closed/wall/mineral/titanium/interior,
+/area/shuttle/supply)
+"btN" = (
+/obj/structure/closet/secure_closet{
+ name = "Firing Squad Locker";
+ req_access_txt = "2"
+ },
+/obj/item/ammo_casing/a762,
+/obj/item/ammo_casing/a762,
+/obj/item/ammo_casing/a762,
+/obj/item/ammo_casing/a762,
+/obj/item/ammo_casing/a762,
+/obj/item/ammo_casing/a762,
+/obj/item/ammo_casing/a762,
+/obj/item/ammo_casing/a762,
+/obj/item/weapon/gun/ballistic/shotgun/boltaction,
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"btO" = (
+/obj/structure/table/reinforced,
+/obj/item/device/electropack,
+/obj/item/weapon/wrench,
+/obj/item/device/assembly/signaler,
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"btP" = (
+/obj/structure/rack,
+/obj/item/weapon/tank/internals/anesthetic,
+/obj/item/clothing/mask/breath,
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"btQ" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"btR" = (
+/obj/structure/table/reinforced,
+/obj/item/device/taperecorder,
+/obj/item/weapon/restraints/handcuffs,
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"btS" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"btT" = (
+/obj/structure/closet/secure_closet/injection,
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"btU" = (
+/obj/item/weapon/restraints/handcuffs/cable/zipties/used,
+/turf/open/floor/plasteel{
+ icon_plating = "asteroid";
+ icon_state = "asteroid";
+ name = "Asteroid"
+ },
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"btV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = ""
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"btW" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/door/airlock/maintenance_hatch,
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"btX" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"btY" = (
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"btZ" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bua" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Medbay Storage APC";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/plating,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bub" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Medbay Security APC";
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/plating,
+/area/security/checkpoint/medical)
+"buc" = (
+/obj/machinery/vending/wallmed{
+ pixel_x = -24
+ },
+/obj/structure/rack,
+/obj/item/weapon/storage/firstaid/regular,
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (WEST)";
+ icon_state = "whiteblue";
+ dir = 8
+ },
+/area/medical/medbay)
+"bud" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/border_only{
+ tag = "icon-door_open (EAST)";
+ icon_state = "door_open";
+ dir = 4
+ },
+/obj/item/weapon/paper_bin,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bue" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"buf" = (
+/obj/machinery/shower{
+ dir = 8;
+ icon_state = "shower";
+ name = "emergency shower"
+ },
+/turf/open/floor/plasteel/delivery,
+/area/medical/medbay)
+"bug" = (
+/obj/structure/chair/comfy/black{
+ dir = 1
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/bridge/meeting_room)
+"buh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/chair/comfy/black{
+ dir = 1
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/bridge/meeting_room)
+"bui" = (
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/bridge/meeting_room)
+"buj" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"buk" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/blue,
+/area/ai_monitored/turret_protected/ai_upload)
+"bul" = (
+/obj/effect/landmark/start{
+ name = "Cyborg"
+ },
+/turf/open/floor/circuit{
+ icon_state = "gcircuit";
+ luminosity = 2
+ },
+/area/ai_monitored/turret_protected/ai_upload)
+"bum" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel/blue,
+/area/ai_monitored/turret_protected/ai_upload)
+"bun" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"buo" = (
+/turf/closed/wall/r_wall,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bup" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"buq" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/airlock/command{
+ name = "Captain's Quarters";
+ req_access = null;
+ req_access_txt = "20"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bur" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bus" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"but" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"buu" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"buv" = (
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"buw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/closet/secure_closet/security/cargo,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/supply)
+"bux" = (
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/supply)
+"buy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/machinery/computer/security,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/supply)
+"buz" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/security/checkpoint/supply)
+"buA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/structure/table,
+/obj/machinery/computer/stockexchange,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTHWEST)";
+ icon_state = "brown";
+ dir = 9
+ },
+/area/quartermaster/qm)
+"buB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTH)";
+ icon_state = "brown";
+ dir = 1
+ },
+/area/quartermaster/qm)
+"buC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTH)";
+ icon_state = "brown";
+ dir = 1
+ },
+/area/quartermaster/qm)
+"buD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTH)";
+ icon_state = "brown";
+ dir = 1
+ },
+/area/quartermaster/qm)
+"buE" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/structure/closet/secure_closet/quartermaster,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (NORTHEAST)";
+ icon_state = "brown";
+ dir = 5
+ },
+/area/quartermaster/qm)
+"buF" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"buG" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"buH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"buI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"buJ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"buK" = (
+/obj/structure/table,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (EAST)";
+ icon_state = "brown";
+ dir = 4
+ },
+/area/quartermaster/storage)
+"buL" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"buM" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/shuttle/engine/heater,
+/turf/open/floor/plating/airless,
+/area/shuttle/supply)
+"buN" = (
+/turf/closed/wall/r_wall,
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"buO" = (
+/turf/closed/wall,
+/area/security/transfer)
+"buP" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/security{
+ aiControlDisabled = 1;
+ id_tag = "prisonereducation";
+ name = "Prisoner Education Chamber";
+ req_access = null;
+ req_access_txt = "3"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"buQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/security/transfer)
+"buR" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ tag = "icon-1-4";
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"buS" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ tag = "icon-1-4";
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"buT" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"buU" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Medbay Maintenance";
+ req_access_txt = "5"
+ },
+/turf/open/floor/plating,
+/area/medical/medbay)
+"buV" = (
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (SOUTHWEST)";
+ icon_state = "whiteblue";
+ dir = 10
+ },
+/area/medical/medbay)
+"buW" = (
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/medbay)
+"buX" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/structure/table/reinforced,
+/obj/item/device/healthanalyzer,
+/obj/item/device/healthanalyzer,
+/obj/machinery/door/firedoor/border_only{
+ tag = "icon-door_open (EAST)";
+ icon_state = "door_open";
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/medbay)
+"buY" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/medbay)
+"buZ" = (
+/turf/open/floor/plasteel/whiteblue/side{
+ tag = "icon-whiteblue (SOUTHEAST)";
+ icon_state = "whiteblue";
+ dir = 6
+ },
+/area/medical/medbay)
+"bva" = (
+/obj/machinery/status_display,
+/turf/closed/wall,
+/area/medical/medbay)
+"bvb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (WEST)";
+ icon_state = "blue";
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bvc" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bvd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (EAST)";
+ icon_state = "blue";
+ dir = 4
+ },
+/area/hallway/primary/port)
+"bve" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/turf/open/floor/wood,
+/area/bridge/meeting_room)
+"bvf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/wood,
+/area/bridge/meeting_room)
+"bvg" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Conference Room Maintenance";
+ req_access_txt = "19"
+ },
+/turf/open/floor/plating,
+/area/bridge/meeting_room)
+"bvh" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Conference Room APC";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"bvi" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"bvj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"bvk" = (
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai_upload)
+"bvl" = (
+/turf/open/floor/circuit{
+ icon_state = "gcircuit";
+ luminosity = 2
+ },
+/area/ai_monitored/turret_protected/ai_upload)
+"bvm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"bvn" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"bvo" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"bvp" = (
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"bvq" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Captain's Quarters APC";
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/dresser,
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bvr" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/table/wood,
+/obj/item/weapon/card/id/captains_spare,
+/obj/item/weapon/reagent_containers/food/drinks/flask/gold,
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bvs" = (
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bvt" = (
+/obj/structure/closet/secure_closet/captains,
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bvu" = (
+/obj/structure/flora/grass/green,
+/mob/living/simple_animal/pet/dog/pug,
+/turf/open/floor/grass,
+/area/hallway/primary/starboard)
+"bvv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/poddoor/preopen{
+ id = "Biohazard";
+ name = "biohazard containment door"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bvw" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/poddoor/preopen{
+ id = "Biohazard";
+ name = "biohazard containment door"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bvx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/poddoor/preopen{
+ id = "Biohazard";
+ name = "biohazard containment door"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/purple/corner,
+/area/hallway/primary/starboard)
+"bvy" = (
+/turf/closed/wall/r_wall,
+/area/toxins/lab)
+"bvz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bvA" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/obj/structure/closet,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/supply)
+"bvB" = (
+/obj/effect/landmark/start/depsec/supply,
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/supply)
+"bvC" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/obj/machinery/computer/security/mining,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/supply)
+"bvD" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/checkpoint/supply)
+"bvE" = (
+/obj/structure/table,
+/obj/item/weapon/folder/yellow,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (WEST)";
+ icon_state = "brown";
+ dir = 8
+ },
+/area/quartermaster/qm)
+"bvF" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Quartermaster"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"bvG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"bvH" = (
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"bvI" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (EAST)";
+ icon_state = "brown";
+ dir = 4
+ },
+/area/quartermaster/qm)
+"bvJ" = (
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (SOUTHWEST)";
+ icon_state = "brown";
+ dir = 10
+ },
+/area/quartermaster/storage)
+"bvK" = (
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/storage)
+"bvL" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Cargo Bay APC";
+ pixel_x = 1;
+ pixel_y = -24
+ },
+/obj/structure/cable,
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/storage)
+"bvM" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/storage)
+"bvN" = (
+/obj/machinery/light,
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/storage)
+"bvO" = (
+/obj/structure/table,
+/obj/item/clothing/gloves/color/brown/cargo,
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/storage)
+"bvP" = (
+/obj/structure/table,
+/obj/item/weapon/hand_labeler,
+/obj/item/hand_labeler_refill,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (SOUTHEAST)";
+ icon_state = "brown";
+ dir = 6
+ },
+/area/quartermaster/storage)
+"bvQ" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "burst_l"
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/supply)
+"bvR" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/open/floor/plating/airless,
+/area/shuttle/supply)
+"bvS" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "burst_r"
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/supply)
+"bvT" = (
+/obj/structure/closet/secure_closet{
+ anchored = 1;
+ name = "Secure Evidence Closet";
+ req_access_txt = "0";
+ req_one_access_txt = "3,4"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/transfer)
+"bvU" = (
+/obj/structure/closet{
+ name = "Evidence Closet 1"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/transfer)
+"bvV" = (
+/obj/structure/closet{
+ name = "Evidence Closet 2"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/transfer)
+"bvW" = (
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bvX" = (
+/obj/structure/cable{
+ icon_state = "2-4";
+ tag = "icon-2-8"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bvY" = (
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 31
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bvZ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bwa" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4";
+ tag = "icon-2-8"
+ },
+/obj/structure/cable{
+ tag = "icon-1-4";
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bwb" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bwc" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4";
+ tag = "icon-2-8"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bwd" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bwe" = (
+/obj/machinery/camera/autoname,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bwf" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ name = "regular air scrubber";
+ on = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bwg" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bwh" = (
+/obj/effect/landmark/event_spawn,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bwi" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bwj" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/bin,
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bwk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/security/transfer)
+"bwl" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bwm" = (
+/turf/closed/wall,
+/area/crew_quarters/courtroom)
+"bwn" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bwo" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bwp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/redblue/blueside{
+ tag = "icon-bluered (WEST)";
+ icon_state = "bluered";
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bwq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/redblue/blueside{
+ tag = "icon-bluered (EAST)";
+ icon_state = "bluered";
+ dir = 4
+ },
+/area/hallway/primary/port)
+"bwr" = (
+/turf/closed/wall/r_wall,
+/area/security/hos)
+"bws" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/security/hos)
+"bwt" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/command{
+ name = "Head of Security's Office";
+ req_access = null;
+ req_access_txt = "58"
+ },
+/turf/open/floor/wood,
+/area/security/hos)
+"bwu" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"bwv" = (
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"bww" = (
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"bwx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/computer/upload/ai,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"bwy" = (
+/obj/structure/table,
+/obj/item/weapon/aiModule/core/full/asimov,
+/turf/open/floor/plasteel/blue,
+/area/ai_monitored/turret_protected/ai_upload)
+"bwz" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/circuit{
+ icon_state = "gcircuit";
+ luminosity = 2
+ },
+/area/ai_monitored/turret_protected/ai_upload)
+"bwA" = (
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 2;
+ name = "Upload APC";
+ pixel_y = -24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"bwB" = (
+/obj/structure/table,
+/obj/item/weapon/aiModule/core/freeformcore,
+/obj/item/weapon/aiModule/reset,
+/turf/open/floor/plasteel/blue,
+/area/ai_monitored/turret_protected/ai_upload)
+"bwC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/computer/upload/borg,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"bwD" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/captain,
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bwE" = (
+/obj/machinery/light,
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bwF" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bwG" = (
+/obj/item/device/radio/intercom{
+ desc = "Talk smack through this.";
+ dir = 4;
+ pixel_x = 28;
+ syndie = 1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bwH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/purple/corner{
+ tag = "icon-purplecorner (EAST)";
+ icon_state = "purplecorner";
+ dir = 4
+ },
+/area/hallway/primary/starboard)
+"bwI" = (
+/turf/open/floor/plasteel/purple/side{
+ tag = "icon-purple (NORTHEAST)";
+ icon_state = "purple";
+ dir = 5
+ },
+/area/hallway/primary/starboard)
+"bwJ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "rnd";
+ name = "research lab shutters"
+ },
+/turf/open/floor/plating,
+/area/toxins/lab)
+"bwK" = (
+/obj/machinery/camera{
+ c_tag = "Research and Development";
+ dir = 2;
+ network = list("SS13","RD");
+ pixel_x = 22
+ },
+/obj/machinery/button/door{
+ dir = 2;
+ id = "rnd";
+ name = "Shutters Control Button";
+ pixel_x = -6;
+ pixel_y = 24;
+ req_access_txt = "47"
+ },
+/obj/structure/table,
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bwL" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/weapon/stock_parts/cell/high,
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bwM" = (
+/obj/structure/table,
+/obj/item/stack/sheet/glass{
+ amount = 50;
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/clothing/glasses/welding,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bwN" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bwO" = (
+/obj/machinery/camera/autoname,
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bwP" = (
+/obj/machinery/door/window/eastright{
+ base_state = "left";
+ dir = 8;
+ icon_state = "left";
+ name = "Research Division Delivery";
+ req_access_txt = "47"
+ },
+/turf/open/floor/plasteel/delivery,
+/area/toxins/lab)
+"bwQ" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=8";
+ dir = 8;
+ freq = 1400;
+ location = "Research Division"
+ },
+/obj/structure/plasticflaps,
+/turf/open/floor/plasteel/bot,
+/area/toxins/lab)
+"bwR" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/obj/structure/filingcabinet/security,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/supply)
+"bwS" = (
+/obj/machinery/light/small,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/supply)
+"bwT" = (
+/obj/machinery/computer/secure_data,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/supply)
+"bwU" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTH)";
+ icon_state = "camera";
+ dir = 1
+ },
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (SOUTHWEST)";
+ icon_state = "brown";
+ dir = 10
+ },
+/area/quartermaster/qm)
+"bwV" = (
+/obj/machinery/computer/cargo,
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/qm)
+"bwW" = (
+/obj/machinery/light/small,
+/obj/machinery/computer/security/mining,
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/qm)
+"bwX" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/qm)
+"bwY" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/structure/filingcabinet/chestdrawer,
+/turf/open/floor/plasteel/brown{
+ tag = "icon-brown (SOUTHEAST)";
+ icon_state = "brown";
+ dir = 6
+ },
+/area/quartermaster/qm)
+"bwZ" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Cargo Bay Maintenance";
+ req_access_txt = "0";
+ req_one_access_txt = "48;50"
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bxa" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/security/transfer)
+"bxb" = (
+/turf/open/floor/plasteel/black,
+/area/security/transfer)
+"bxc" = (
+/obj/machinery/door/airlock/security{
+ name = "Evidence Storage";
+ req_access = null;
+ req_access_txt = "0";
+ req_one_access_txt = "1;4"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/transfer)
+"bxd" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bxe" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bxf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bxg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bxh" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bxi" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bxj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bxk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bxl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/closed/wall/r_wall,
+/area/security/transfer)
+"bxm" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bxn" = (
+/turf/open/floor/plasteel/blue,
+/area/crew_quarters/courtroom)
+"bxo" = (
+/obj/machinery/camera/autoname,
+/turf/open/floor/plasteel/redblue/blueside{
+ tag = "icon-bluered (WEST)";
+ icon_state = "bluered";
+ dir = 8
+ },
+/area/crew_quarters/courtroom)
+"bxp" = (
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/redgreen/side{
+ tag = "icon-redgreen (EAST)";
+ icon_state = "redgreen";
+ dir = 4
+ },
+/area/crew_quarters/courtroom)
+"bxq" = (
+/turf/open/floor/plasteel/green,
+/area/crew_quarters/courtroom)
+"bxr" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/crew_quarters/courtroom)
+"bxs" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 9
+ },
+/area/crew_quarters/courtroom)
+"bxt" = (
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/crew_quarters/courtroom)
+"bxu" = (
+/obj/machinery/door/airlock/glass{
+ name = "Courtroom"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/crew_quarters/courtroom)
+"bxv" = (
+/obj/structure/sign/directions/evac{
+ pixel_y = -10
+ },
+/obj/structure/sign/directions/engineering,
+/obj/structure/sign/directions/science{
+ pixel_y = 10
+ },
+/turf/closed/wall,
+/area/hallway/primary/port)
+"bxw" = (
+/obj/machinery/computer/card/minor/hos,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (EAST)";
+ icon_state = "camera";
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/security/hos)
+"bxx" = (
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Head of Security's Desk";
+ departmentType = 5;
+ name = "Head of Security RC";
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/wood,
+/area/security/hos)
+"bxy" = (
+/turf/open/floor/wood,
+/area/security/hos)
+"bxz" = (
+/obj/item/weapon/storage/secure/safe/HoS{
+ pixel_x = 35
+ },
+/obj/structure/closet/secure_closet/hos,
+/turf/open/floor/wood,
+/area/security/hos)
+"bxA" = (
+/obj/machinery/camera/motion{
+ c_tag = "MiniSat Foyer";
+ dir = 1;
+ network = list("MiniSat")
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"bxB" = (
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai)
+"bxC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai)
+"bxD" = (
+/obj/machinery/status_display,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai)
+"bxE" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/highsecurity{
+ icon_state = "door_closed";
+ locked = 0;
+ name = "AI Chamber";
+ req_access_txt = "16"
+ },
+/turf/open/floor/circuit{
+ icon_state = "gcircuit";
+ luminosity = 2
+ },
+/area/ai_monitored/turret_protected/ai)
+"bxF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai)
+"bxG" = (
+/turf/closed/wall,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bxH" = (
+/obj/machinery/door/airlock{
+ name = "Private Restroom";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bxI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/purple/corner{
+ tag = "icon-purplecorner (WEST)";
+ icon_state = "purplecorner";
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bxJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bxK" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bxL" = (
+/turf/open/floor/plasteel/purple/side{
+ tag = "icon-purple (EAST)";
+ icon_state = "purple";
+ dir = 4
+ },
+/area/hallway/primary/starboard)
+"bxM" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/southright{
+ dir = 4;
+ name = "Research and Development Desk";
+ req_access_txt = "7"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "rnd";
+ name = "research lab shutters"
+ },
+/turf/open/floor/plating,
+/area/toxins/lab)
+"bxN" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bxO" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ name = "regular air scrubber";
+ on = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bxP" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bxQ" = (
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bxR" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/stock_parts/cell/high{
+ pixel_x = 10;
+ pixel_y = 5
+ },
+/obj/item/weapon/stock_parts/cell/high,
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bxS" = (
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bxT" = (
+/obj/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bxU" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bxV" = (
+/obj/structure/closet{
+ name = "Evidence Closet 5"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/transfer)
+"bxW" = (
+/obj/structure/closet{
+ name = "Evidence Closet 4"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/transfer)
+"bxX" = (
+/obj/structure/closet{
+ name = "Evidence Closet 3"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/transfer)
+"bxY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/closed/wall,
+/area/security/transfer)
+"bxZ" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/glass_security{
+ name = "Long-Term Cell 2";
+ req_access_txt = "2"
+ },
+/turf/open/floor/plasteel/darkred/side{
+ tag = "icon-darkred (NORTH)";
+ icon_state = "darkred";
+ dir = 1
+ },
+/area/security/transfer)
+"bya" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/closed/wall,
+/area/security/transfer)
+"byb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/security/transfer)
+"byc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/security/transfer)
+"byd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/glass_security{
+ name = "Long-Term Cell 3";
+ req_access_txt = "2"
+ },
+/turf/open/floor/plasteel/darkred/side{
+ tag = "icon-darkred (NORTH)";
+ icon_state = "darkred";
+ dir = 1
+ },
+/area/security/transfer)
+"bye" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/closed/wall,
+/area/security/transfer)
+"byf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/security{
+ aiControlDisabled = 1;
+ id_tag = null;
+ name = "Prisoner Education Supplies";
+ req_access = null;
+ req_access_txt = "3"
+ },
+/turf/open/floor/plasteel/darkred/side{
+ tag = "icon-darkred (NORTH)";
+ icon_state = "darkred";
+ dir = 1
+ },
+/area/security/transfer)
+"byg" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/closed/wall,
+/area/security/transfer)
+"byh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/tank_dispenser/oxygen,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/machinery/door/firedoor/border_only{
+ tag = "icon-door_open (NORTH)";
+ icon_state = "door_open";
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"byi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/machinery/door/firedoor/border_only{
+ tag = "icon-door_open (NORTH)";
+ icon_state = "door_open";
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"byj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 1;
+ name = "Atmos Locker";
+ req_access_txt = "2"
+ },
+/obj/machinery/door/firedoor/border_only{
+ tag = "icon-door_open (NORTH)";
+ icon_state = "door_open";
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"byk" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/door/firedoor/border_only{
+ tag = "icon-door_open (NORTH)";
+ icon_state = "door_open";
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"byl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/structure/closet/secure_closet/brig,
+/obj/machinery/door/firedoor/border_only{
+ tag = "icon-door_open (NORTH)";
+ icon_state = "door_open";
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bym" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ tag = "icon-door_open (NORTH)";
+ icon_state = "door_open";
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"byn" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/filingcabinet/security,
+/obj/machinery/door/firedoor/border_only{
+ tag = "icon-door_open (NORTH)";
+ icon_state = "door_open";
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"byo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = 0
+ },
+/obj/machinery/door/firedoor/border_only{
+ tag = "icon-door_open (WEST)";
+ icon_state = "door_open";
+ dir = 8
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"byp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"byq" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Prisoner Transfer Centre";
+ pixel_x = 24;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"byr" = (
+/obj/structure/chair{
+ dir = 4;
+ name = "Prosecution"
+ },
+/turf/open/floor/plasteel/blue,
+/area/crew_quarters/courtroom)
+"bys" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/blue,
+/area/crew_quarters/courtroom)
+"byt" = (
+/turf/open/floor/plasteel/redblue/blueside{
+ tag = "icon-bluered (WEST)";
+ icon_state = "bluered";
+ dir = 8
+ },
+/area/crew_quarters/courtroom)
+"byu" = (
+/turf/open/floor/plasteel/redgreen/side{
+ tag = "icon-redgreen (EAST)";
+ icon_state = "redgreen";
+ dir = 4
+ },
+/area/crew_quarters/courtroom)
+"byv" = (
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/green,
+/area/crew_quarters/courtroom)
+"byw" = (
+/obj/structure/chair{
+ dir = 8;
+ name = "Defense"
+ },
+/turf/open/floor/plasteel/green,
+/area/crew_quarters/courtroom)
+"byx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/crew_quarters/courtroom)
+"byy" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/courtroom)
+"byz" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/red/corner,
+/area/crew_quarters/courtroom)
+"byA" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/crew_quarters/courtroom)
+"byB" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/red/side,
+/area/crew_quarters/courtroom)
+"byC" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Courtroom"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/crew_quarters/courtroom)
+"byD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/redblue/blueside{
+ tag = "icon-bluered (WEST)";
+ icon_state = "bluered";
+ dir = 8
+ },
+/area/hallway/primary/port)
+"byE" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"byF" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/security/detectives_office)
+"byG" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/computer/secure_data,
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"byH" = (
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"byI" = (
+/obj/machinery/computer/security/wooden_tv,
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"byJ" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/structure/table/wood,
+/obj/item/weapon/hand_labeler,
+/obj/item/weapon/reagent_containers/food/drinks/flask/det,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"byK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/machinery/computer/secure_data,
+/turf/open/floor/wood,
+/area/security/hos)
+"byL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/security/hos)
+"byM" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/carpet,
+/area/security/hos)
+"byN" = (
+/obj/structure/table/wood,
+/obj/item/weapon/storage/box/deputy,
+/obj/item/weapon/storage/box/seccarts{
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/wood,
+/area/security/hos)
+"byO" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"byP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/porta_turret/ai{
+ dir = 4
+ },
+/turf/open/floor/circuit{
+ icon_state = "gcircuit";
+ luminosity = 2
+ },
+/area/ai_monitored/turret_protected/ai)
+"byQ" = (
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"byR" = (
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"byS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/circuit{
+ icon_state = "gcircuit";
+ luminosity = 2
+ },
+/area/ai_monitored/turret_protected/ai)
+"byT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/porta_turret/ai{
+ dir = 4
+ },
+/turf/open/floor/circuit{
+ icon_state = "gcircuit";
+ luminosity = 2
+ },
+/area/ai_monitored/turret_protected/ai)
+"byU" = (
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"byV" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"byW" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/weapon/soap/deluxe,
+/obj/machinery/shower{
+ tag = "icon-shower (NORTH)";
+ icon_state = "shower";
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"byX" = (
+/obj/structure/sink{
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"byY" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"byZ" = (
+/turf/closed/wall,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bza" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (EAST)";
+ icon_state = "camera";
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/side{
+ tag = "icon-purple (WEST)";
+ icon_state = "purple";
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bzb" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=HOP";
+ location = "CHE"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bzc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/purple/corner,
+/area/hallway/primary/starboard)
+"bzd" = (
+/turf/open/floor/plasteel/purple/side{
+ tag = "icon-purple (SOUTHEAST)";
+ icon_state = "purple";
+ dir = 6
+ },
+/area/hallway/primary/starboard)
+"bze" = (
+/obj/machinery/r_n_d/destructive_analyzer,
+/turf/open/floor/plasteel/purple,
+/area/toxins/lab)
+"bzf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/purple,
+/area/toxins/lab)
+"bzg" = (
+/obj/machinery/r_n_d/protolathe,
+/turf/open/floor/plasteel/purple,
+/area/toxins/lab)
+"bzh" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bzi" = (
+/obj/structure/table/glass,
+/obj/item/weapon/stock_parts/manipulator,
+/obj/item/weapon/stock_parts/capacitor,
+/obj/item/weapon/stock_parts/capacitor,
+/obj/item/weapon/stock_parts/manipulator,
+/obj/item/weapon/stock_parts/micro_laser,
+/obj/item/weapon/stock_parts/micro_laser,
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stack/cable_coil,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bzj" = (
+/obj/structure/cable{
+ tag = "icon-1-4";
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bzk" = (
+/obj/structure/window/reinforced,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bzl" = (
+/obj/structure/window/reinforced,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Cargo Security APC";
+ pixel_x = 1;
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/security/checkpoint/supply)
+"bzm" = (
+/obj/structure/window/reinforced,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bzn" = (
+/obj/structure/window/reinforced,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Quartermaster's Office APC";
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/qm)
+"bzo" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bzp" = (
+/turf/closed/mineral/random/labormineral,
+/area/maintenance/asmaint2)
+"bzq" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bzr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/security/transfer)
+"bzs" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/transfer)
+"bzt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/security/transfer)
+"bzu" = (
+/obj/structure/bodycontainer/morgue,
+/turf/open/floor/plasteel/black,
+/area/security/transfer)
+"bzv" = (
+/obj/structure/filingcabinet/security,
+/turf/open/floor/plasteel/black,
+/area/security/transfer)
+"bzw" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bzx" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Waste to Filter";
+ on = 1
+ },
+/obj/item/weapon/storage/toolbox/mechanical,
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bzy" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = 0
+ },
+/obj/structure/closet/secure_closet/brig,
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bzz" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bzA" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = 0
+ },
+/obj/machinery/door/firedoor/border_only{
+ tag = "icon-door_open (WEST)";
+ icon_state = "door_open";
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = ""
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bzB" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bzC" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/structure/chair{
+ dir = 4;
+ name = "Prosecution"
+ },
+/turf/open/floor/plasteel/blue,
+/area/crew_quarters/courtroom)
+"bzD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/blue,
+/area/crew_quarters/courtroom)
+"bzE" = (
+/obj/structure/chair{
+ dir = 8;
+ name = "Defense"
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/green,
+/area/crew_quarters/courtroom)
+"bzF" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/crew_quarters/courtroom)
+"bzG" = (
+/obj/item/device/radio/beacon,
+/turf/open/floor/plasteel,
+/area/crew_quarters/courtroom)
+"bzH" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/crew_quarters/courtroom)
+"bzI" = (
+/turf/closed/wall,
+/area/lawoffice)
+"bzJ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/lawoffice)
+"bzK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/plasteel/redblue/blueside{
+ tag = "icon-bluered (WEST)";
+ icon_state = "bluered";
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bzL" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bzM" = (
+/obj/machinery/computer/med_data,
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"bzN" = (
+/obj/structure/chair/office/dark,
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"bzO" = (
+/obj/machinery/requests_console{
+ department = "Detective's office";
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"bzP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/computer/security,
+/turf/open/floor/wood,
+/area/security/hos)
+"bzQ" = (
+/obj/effect/landmark/start{
+ name = "Head of Security"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/carpet,
+/area/security/hos)
+"bzR" = (
+/turf/open/floor/carpet,
+/area/security/hos)
+"bzS" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/table/wood,
+/obj/machinery/recharger,
+/turf/open/floor/wood,
+/area/security/hos)
+"bzT" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"bzU" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"bzV" = (
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/obj/effect/landmark/start{
+ name = "Cyborg"
+ },
+/turf/open/floor/circuit{
+ icon_state = "gcircuit";
+ luminosity = 2
+ },
+/area/ai_monitored/turret_protected/ai)
+"bzW" = (
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"bzX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"bzY" = (
+/turf/closed/wall/r_wall,
+/area/crew_quarters/hor)
+"bzZ" = (
+/obj/structure/table,
+/obj/machinery/microwave,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bAa" = (
+/obj/machinery/vending/cola,
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bAb" = (
+/obj/machinery/vending/snack,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bAc" = (
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bAd" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bAe" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/purple/side{
+ tag = "icon-purple (WEST)";
+ icon_state = "purple";
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bAf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/purple/side{
+ tag = "icon-purple (EAST)";
+ icon_state = "purple";
+ dir = 4
+ },
+/area/hallway/primary/starboard)
+"bAg" = (
+/obj/machinery/computer/rdconsole/core,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science Requests Console";
+ pixel_x = -30;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/purple,
+/area/toxins/lab)
+"bAh" = (
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/purple,
+/area/toxins/lab)
+"bAi" = (
+/obj/machinery/r_n_d/circuit_imprinter,
+/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
+/turf/open/floor/plasteel/purple,
+/area/toxins/lab)
+"bAj" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bAk" = (
+/obj/item/weapon/stock_parts/console_screen,
+/obj/structure/table/glass,
+/obj/item/weapon/stock_parts/console_screen,
+/obj/item/weapon/stock_parts/console_screen,
+/obj/item/weapon/stock_parts/matter_bin,
+/obj/item/weapon/stock_parts/matter_bin,
+/obj/item/weapon/stock_parts/scanning_module{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/weapon/stock_parts/scanning_module,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bAl" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/airless{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"bAm" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bAn" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bAo" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/obj/structure/table,
+/obj/item/weapon/paper,
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/black,
+/area/security/transfer)
+"bAp" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/orange,
+/turf/open/floor/plasteel/black,
+/area/security/transfer)
+"bAq" = (
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/black,
+/area/security/transfer)
+"bAr" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/bodybags,
+/turf/open/floor/plasteel/black,
+/area/security/transfer)
+"bAs" = (
+/obj/machinery/suit_storage_unit/security,
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bAt" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bAu" = (
+/obj/machinery/light,
+/obj/structure/table,
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = 0
+ },
+/obj/item/weapon/storage/box/zipties,
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bAv" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/prisoner,
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bAw" = (
+/obj/machinery/computer/prisoner,
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bAx" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Security Control";
+ req_access_txt = "2"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bAy" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/glass_security{
+ name = "Prisoner Processing";
+ req_access_txt = "2"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bAz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/blue,
+/area/crew_quarters/courtroom)
+"bAA" = (
+/obj/machinery/door/airlock/glass{
+ name = "Courtroom";
+ req_access_txt = "42"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/courtroom)
+"bAB" = (
+/turf/open/floor/plasteel/red/side{
+ dir = 10
+ },
+/area/crew_quarters/courtroom)
+"bAC" = (
+/turf/open/floor/plasteel/red/side,
+/area/crew_quarters/courtroom)
+"bAD" = (
+/turf/open/floor/plasteel/red/side{
+ dir = 6
+ },
+/area/crew_quarters/courtroom)
+"bAE" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Law Office";
+ req_access_txt = "38"
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"bAF" = (
+/turf/open/floor/wood,
+/area/lawoffice)
+"bAG" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"bAH" = (
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"bAI" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/bin,
+/turf/open/floor/wood,
+/area/lawoffice)
+"bAJ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/preopen{
+ id = "lawyer_blast";
+ name = "privacy door"
+ },
+/turf/open/floor/plating,
+/area/lawoffice)
+"bAK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bAL" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j2";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bAM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/red/side{
+ tag = "icon-red (EAST)";
+ icon_state = "red";
+ dir = 4
+ },
+/area/hallway/primary/port)
+"bAN" = (
+/obj/structure/table/wood,
+/obj/item/device/taperecorder,
+/obj/item/device/camera,
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"bAO" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ name = "regular air scrubber";
+ on = 1
+ },
+/obj/structure/table/wood,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/pen/red,
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"bAP" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/book/manual/wiki/security_space_law,
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"bAQ" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"bAR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = -31
+ },
+/turf/open/floor/wood,
+/area/security/hos)
+"bAS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/carpet,
+/area/security/hos)
+"bAT" = (
+/obj/machinery/keycard_auth{
+ pixel_x = 24;
+ pixel_y = 10
+ },
+/obj/structure/table/wood,
+/obj/item/device/radio/off,
+/obj/item/device/taperecorder{
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/security/hos)
+"bAU" = (
+/obj/machinery/porta_turret/ai{
+ dir = 4
+ },
+/turf/open/floor/circuit{
+ icon_state = "gcircuit";
+ luminosity = 2
+ },
+/area/ai_monitored/turret_protected/ai)
+"bAV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"bAW" = (
+/turf/open/floor/plasteel/blue,
+/area/ai_monitored/turret_protected/ai)
+"bAX" = (
+/obj/machinery/camera/motion{
+ c_tag = "MiniSat Foyer";
+ dir = 1;
+ network = list("MiniSat")
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"bAY" = (
+/obj/machinery/light,
+/turf/open/floor/circuit{
+ icon_state = "gcircuit";
+ luminosity = 2
+ },
+/area/ai_monitored/turret_protected/ai)
+"bAZ" = (
+/obj/machinery/turretid{
+ name = "AI Chamber turret control";
+ pixel_x = 5;
+ pixel_y = -24
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"bBa" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "RD Maintenance";
+ req_access_txt = "30"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/hor)
+"bBb" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "RD Office APC";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/whitepurple/corner,
+/area/crew_quarters/hor)
+"bBc" = (
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Research Director's Desk";
+ departmentType = 5;
+ name = "Research Director RC";
+ pixel_x = -2;
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/whitepurple/corner,
+/area/crew_quarters/hor)
+"bBd" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/bin,
+/turf/open/floor/plasteel/whitepurple/corner,
+/area/crew_quarters/hor)
+"bBe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/weapon/twohanded/required/kirbyplants/dead,
+/turf/open/floor/plasteel/whitepurple/corner,
+/area/crew_quarters/hor)
+"bBf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/hor)
+"bBg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bBh" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bBi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bBj" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bBk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/side{
+ tag = "icon-purple (WEST)";
+ icon_state = "purple";
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bBl" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-y";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bBm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/side{
+ tag = "icon-purple (EAST)";
+ icon_state = "purple";
+ dir = 4
+ },
+/area/hallway/primary/starboard)
+"bBn" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "rnd";
+ name = "research lab shutters"
+ },
+/turf/open/floor/plating,
+/area/toxins/lab)
+"bBo" = (
+/obj/item/weapon/folder/white,
+/obj/structure/table,
+/obj/item/weapon/disk/tech_disk{
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/obj/item/weapon/disk/tech_disk{
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/obj/item/weapon/disk/design_disk,
+/obj/item/weapon/disk/design_disk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bBp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bBq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bBr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bBs" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bBt" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ name = "regular air vent";
+ on = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bBu" = (
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/glass/beaker/large{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/reagent_containers/glass/beaker{
+ pixel_x = 8;
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/dropper,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bBv" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = 0
+ },
+/turf/open/floor/plating/asteroid/airless{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"bBw" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/airless{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"bBx" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bBy" = (
+/obj/structure/cable,
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/sign/electricshock{
+ pixel_x = -32
+ },
+/obj/structure/sign/electricshock{
+ pixel_x = 32
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/security/transfer)
+"bBz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bBA" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/closed/wall/r_wall,
+/area/security/transfer)
+"bBB" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bBC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/courtroom)
+"bBD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/blue,
+/area/crew_quarters/courtroom)
+"bBE" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/blue,
+/area/crew_quarters/courtroom)
+"bBF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/redblue/blueside{
+ tag = "icon-bluered (WEST)";
+ icon_state = "bluered";
+ dir = 8
+ },
+/area/crew_quarters/courtroom)
+"bBG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/redgreen/side{
+ tag = "icon-redgreen (EAST)";
+ icon_state = "redgreen";
+ dir = 4
+ },
+/area/crew_quarters/courtroom)
+"bBH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/chair{
+ dir = 1;
+ name = "Bailiff"
+ },
+/turf/open/floor/plasteel/green,
+/area/crew_quarters/courtroom)
+"bBI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green,
+/area/crew_quarters/courtroom)
+"bBJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/crew_quarters/courtroom)
+"bBK" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/crew_quarters/courtroom)
+"bBL" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/cable{
+ tag = "icon-0-8";
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/crew_quarters/courtroom)
+"bBM" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ tag = "icon-0-8";
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/crew_quarters/courtroom)
+"bBN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/lawoffice)
+"bBO" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -28
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"bBP" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/weapon/storage/briefcase,
+/turf/open/floor/wood,
+/area/lawoffice)
+"bBQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"bBR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/table/wood,
+/obj/item/device/taperecorder,
+/obj/item/device/camera,
+/turf/open/floor/wood,
+/area/lawoffice)
+"bBS" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/preopen{
+ id = "lawyer_blast";
+ name = "privacy door"
+ },
+/turf/open/floor/plating,
+/area/lawoffice)
+"bBT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bBU" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bBV" = (
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/plasteel/red/side{
+ tag = "icon-red (EAST)";
+ icon_state = "red";
+ dir = 4
+ },
+/area/hallway/primary/port)
+"bBW" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/security/detectives_office)
+"bBX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/table/wood,
+/obj/item/weapon/storage/briefcase,
+/obj/item/clothing/glasses/sunglasses,
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"bBY" = (
+/obj/effect/landmark/start{
+ name = "Detective"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"bBZ" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"bCa" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"bCb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/security/hos)
+"bCc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/chair/comfy/black{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/security/hos)
+"bCd" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/structure/table/wood,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/stamp/hos,
+/turf/open/floor/carpet,
+/area/security/hos)
+"bCe" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/carpet,
+/area/security/hos)
+"bCf" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Head of Security's Office APC";
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/wood,
+/area/security/hos)
+"bCg" = (
+/turf/closed/wall,
+/area/crew_quarters/hor)
+"bCh" = (
+/obj/machinery/suit_storage_unit/rd,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/crew_quarters/hor)
+"bCi" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel/whitepurple/corner{
+ dir = 1
+ },
+/area/crew_quarters/hor)
+"bCj" = (
+/turf/open/floor/plasteel/whitepurple/corner{
+ dir = 1
+ },
+/area/crew_quarters/hor)
+"bCk" = (
+/obj/machinery/computer/aifixer,
+/turf/open/floor/plasteel/whitepurple/corner{
+ dir = 1
+ },
+/area/crew_quarters/hor)
+"bCl" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/crew_quarters/hor)
+"bCm" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bCn" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bCo" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bCp" = (
+/obj/structure/table,
+/obj/item/weapon/storage/fancy/donut_box,
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bCq" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bCr" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/bin,
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bCs" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bCt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bCu" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bCv" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/button/door{
+ id = "rnd2";
+ name = "Research Lab Shutter Control";
+ pixel_x = -5;
+ pixel_y = -24;
+ req_access_txt = "47"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bCw" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bCx" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Research Lab APC";
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/obj/structure/cable{
+ tag = "icon-0-8";
+ icon_state = "0-8"
+ },
+/obj/structure/table/glass,
+/obj/item/device/gps/science,
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bCy" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bCz" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bCA" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bCB" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bCC" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/table,
+/obj/item/weapon/folder/red,
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bCD" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/sign/electricshock{
+ pixel_y = -32
+ },
+/turf/open/floor/plating,
+/area/security/transfer)
+"bCE" = (
+/turf/closed/wall,
+/area/maintenance/fpmaint2)
+"bCF" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Arrivals North Maintenance APC";
+ pixel_x = -1;
+ pixel_y = 26
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"bCG" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"bCH" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"bCI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"bCJ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/darkred,
+/area/maintenance/fpmaint2)
+"bCK" = (
+/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{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/darkred,
+/area/maintenance/fpmaint2)
+"bCL" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bCM" = (
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bCN" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/door/firedoor/border_only{
+ tag = "icon-door_open (NORTH)";
+ icon_state = "door_open";
+ dir = 1
+ },
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (NORTHWEST)";
+ icon_state = "blue";
+ dir = 9
+ },
+/area/crew_quarters/courtroom)
+"bCO" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/machinery/door/firedoor/border_only{
+ tag = "icon-door_open (NORTH)";
+ icon_state = "door_open";
+ dir = 1
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (NORTH)";
+ icon_state = "blue";
+ dir = 1
+ },
+/area/crew_quarters/courtroom)
+"bCP" = (
+/obj/structure/table/wood,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/item/weapon/gavelblock,
+/obj/machinery/door/firedoor/border_only{
+ tag = "icon-door_open (NORTH)";
+ icon_state = "door_open";
+ dir = 1
+ },
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (NORTH)";
+ icon_state = "blue";
+ dir = 1
+ },
+/area/crew_quarters/courtroom)
+"bCQ" = (
+/obj/structure/table/wood,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ dir = 8;
+ listening = 1;
+ name = "Station Intercom (Court)";
+ pixel_x = 0
+ },
+/obj/machinery/door/firedoor/border_only{
+ tag = "icon-door_open (NORTH)";
+ icon_state = "door_open";
+ dir = 1
+ },
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (NORTH)";
+ icon_state = "blue";
+ dir = 1
+ },
+/area/crew_quarters/courtroom)
+"bCR" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/machinery/door/firedoor/border_only{
+ tag = "icon-door_open (NORTH)";
+ icon_state = "door_open";
+ dir = 1
+ },
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (NORTH)";
+ icon_state = "blue";
+ dir = 1
+ },
+/area/crew_quarters/courtroom)
+"bCS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 1;
+ req_access_txt = "1"
+ },
+/obj/machinery/door/firedoor/border_only{
+ tag = "icon-door_open (NORTH)";
+ icon_state = "door_open";
+ dir = 1
+ },
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (NORTHEAST)";
+ icon_state = "blue";
+ dir = 5
+ },
+/area/crew_quarters/courtroom)
+"bCT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/crew_quarters/courtroom)
+"bCU" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/structure/table,
+/obj/item/weapon/paper_bin,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"bCV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"bCW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/orange,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"bCX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/lawoffice)
+"bCY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/obj/machinery/requests_console{
+ department = "Law office";
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/obj/effect/landmark/start{
+ name = "Lawyer"
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"bCZ" = (
+/obj/structure/table/wood,
+/obj/item/weapon/book/manual/wiki/security_space_law,
+/obj/item/weapon/stamp/law,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"bDa" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"bDb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/photocopier,
+/turf/open/floor/wood,
+/area/lawoffice)
+"bDc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/lawoffice)
+"bDd" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bDe" = (
+/obj/structure/filingcabinet/security,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"bDf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"bDg" = (
+/obj/item/weapon/storage/secure/safe{
+ pixel_x = 0;
+ pixel_y = -23
+ },
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"bDh" = (
+/obj/structure/closet/secure_closet/detective,
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"bDi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/table/wood,
+/obj/item/weapon/book/manual/wiki/security_space_law,
+/turf/open/floor/wood,
+/area/security/hos)
+"bDj" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/turf/open/floor/wood,
+/area/security/hos)
+"bDk" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/wood,
+/area/security/hos)
+"bDl" = (
+/obj/machinery/suit_storage_unit/hos,
+/turf/open/floor/wood,
+/area/security/hos)
+"bDm" = (
+/obj/effect/landmark{
+ name = "tripai"
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"bDn" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"bDo" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/blue,
+/area/ai_monitored/turret_protected/ai)
+"bDp" = (
+/obj/effect/landmark/start{
+ name = "AI"
+ },
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ freerange = 1;
+ listening = 1;
+ name = "Common Channel";
+ pixel_x = -27;
+ pixel_y = 9
+ },
+/obj/item/device/radio/intercom{
+ anyai = 1;
+ freerange = 1;
+ listening = 0;
+ name = "Custom Channel";
+ pixel_x = 0;
+ pixel_y = 31
+ },
+/obj/item/device/radio/intercom{
+ anyai = 1;
+ broadcasting = 0;
+ freerange = 1;
+ frequency = 1447;
+ name = "Private Channel";
+ pixel_x = 27;
+ pixel_y = -9
+ },
+/obj/machinery/newscaster/security_unit{
+ pixel_x = -28;
+ pixel_y = 28
+ },
+/obj/machinery/requests_console{
+ department = "AI";
+ departmentType = 5;
+ pixel_x = 28;
+ pixel_y = 28
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"bDq" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel/blue,
+/area/ai_monitored/turret_protected/ai)
+"bDr" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"bDs" = (
+/obj/structure/displaycase/labcage,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/crew_quarters/hor)
+"bDt" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/whitepurple/corner,
+/area/crew_quarters/hor)
+"bDu" = (
+/obj/effect/landmark/start{
+ name = "Research Director"
+ },
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/corner,
+/area/crew_quarters/hor)
+"bDv" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/computer/robotics,
+/turf/open/floor/plasteel/whitepurple/corner,
+/area/crew_quarters/hor)
+"bDw" = (
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bDx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bDy" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bDz" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/power/apc{
+ cell_type = 10000;
+ dir = 4;
+ name = "Research Division APC";
+ pixel_x = 24;
+ pixel_y = 0
+ },
+/obj/structure/table,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bDA" = (
+/obj/structure/sign/directions/medical{
+ tag = "icon-direction_med (NORTH)";
+ icon_state = "direction_med";
+ dir = 1
+ },
+/obj/structure/sign/directions/evac{
+ pixel_y = -10
+ },
+/obj/structure/sign/directions/security{
+ pixel_y = 10
+ },
+/turf/closed/wall/r_wall,
+/area/toxins/lab)
+"bDB" = (
+/turf/closed/wall,
+/area/toxins/lab)
+"bDC" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/toxins/lab)
+"bDD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "rnd2";
+ name = "research lab shutters"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bDE" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "rnd2";
+ name = "research lab shutters"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bDF" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Research Maintenance";
+ req_access_txt = "47";
+ req_one_access_txt = "0"
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bDG" = (
+/turf/closed/wall/r_wall,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bDH" = (
+/turf/closed/wall/r_wall,
+/area/toxins/storage)
+"bDI" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bDJ" = (
+/turf/closed/wall/r_wall,
+/area/toxins/test_area)
+"bDK" = (
+/obj/structure/table,
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bDL" = (
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"bDM" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/security/armory)
+"bDN" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ tag = "icon-0-8";
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plating,
+/area/security/armory)
+"bDO" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ tag = "icon-0-8";
+ icon_state = "0-8"
+ },
+/obj/structure/cable,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plating,
+/area/security/armory)
+"bDP" = (
+/turf/closed/wall/r_wall,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bDQ" = (
+/turf/open/floor/plasteel/darkred,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bDR" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bDS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bDT" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bDU" = (
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (WEST)";
+ icon_state = "blue";
+ dir = 8
+ },
+/area/crew_quarters/courtroom)
+"bDV" = (
+/turf/open/floor/plasteel,
+/area/crew_quarters/courtroom)
+"bDW" = (
+/obj/structure/chair{
+ dir = 1;
+ name = "Judge"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/courtroom)
+"bDX" = (
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (EAST)";
+ icon_state = "blue";
+ dir = 4
+ },
+/area/crew_quarters/courtroom)
+"bDY" = (
+/turf/closed/wall/r_wall,
+/area/crew_quarters/courtroom)
+"bDZ" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/flasher{
+ id = "PCell 1";
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"bEa" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"bEb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"bEc" = (
+/turf/closed/wall/r_wall,
+/area/lawoffice)
+"bEd" = (
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (EAST)";
+ icon_state = "camera";
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"bEe" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"bEf" = (
+/obj/machinery/button/door{
+ id = "lawyer_blast";
+ name = "Privacy Shutters";
+ pixel_x = 25;
+ pixel_y = 8
+ },
+/obj/structure/filingcabinet/chestdrawer,
+/turf/open/floor/wood,
+/area/lawoffice)
+"bEg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bEh" = (
+/turf/closed/wall/r_wall,
+/area/security/detectives_office)
+"bEi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/glass_security{
+ name = "Detective";
+ req_access_txt = "4"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"bEj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/security/hos)
+"bEk" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/command{
+ name = "Head of Security's Office";
+ req_access = null;
+ req_access_txt = "58"
+ },
+/turf/open/floor/plasteel,
+/area/security/hos)
+"bEl" = (
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 1;
+ name = "AI Chamber APC";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/plasteel/blue,
+/area/ai_monitored/turret_protected/ai)
+"bEm" = (
+/obj/machinery/camera/motion,
+/turf/open/floor/plasteel/blue,
+/area/ai_monitored/turret_protected/ai)
+"bEn" = (
+/obj/structure/rack,
+/obj/item/weapon/circuitboard/aicore{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/crew_quarters/hor)
+"bEo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/whitepurple/corner{
+ dir = 1
+ },
+/area/crew_quarters/hor)
+"bEp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/whitepurple/corner{
+ dir = 1
+ },
+/area/crew_quarters/hor)
+"bEq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/computer/mecha,
+/turf/open/floor/plasteel/whitepurple/corner{
+ dir = 1
+ },
+/area/crew_quarters/hor)
+"bEr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/crew_quarters/hor)
+"bEs" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bEt" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bEu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bEv" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/item/weapon/storage/fancy/cigarettes,
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bEw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bEx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/purple/side{
+ tag = "icon-purple (WEST)";
+ icon_state = "purple";
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bEy" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bEz" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bEA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bEB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor/preopen{
+ id = "Biohazard";
+ name = "biohazard containment door"
+ },
+/turf/open/floor/plasteel/delivery,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bEC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bED" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (NORTH)";
+ icon_state = "whitepurple";
+ dir = 1
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bEE" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (NORTH)";
+ icon_state = "whitepurple";
+ dir = 1
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bEF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (NORTH)";
+ icon_state = "whitepurple";
+ dir = 1
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bEG" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (NORTH)";
+ icon_state = "whitepurple";
+ dir = 1
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bEH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (NORTH)";
+ icon_state = "whitepurple";
+ dir = 1
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bEI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (NORTH)";
+ icon_state = "whitepurple";
+ dir = 1
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bEJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (NORTHEAST)";
+ icon_state = "whitepurple";
+ dir = 5
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bEK" = (
+/turf/closed/wall,
+/area/toxins/storage)
+"bEL" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/plasteel/bot,
+/area/toxins/storage)
+"bEM" = (
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/toxins/storage)
+"bEN" = (
+/obj/machinery/camera/autoname,
+/turf/open/floor/plasteel/floorgrime,
+/area/toxins/storage)
+"bEO" = (
+/obj/machinery/portable_atmospherics/canister/toxins,
+/turf/open/floor/plasteel/delivery,
+/area/toxins/storage)
+"bEP" = (
+/obj/machinery/computer/shuttle/labor,
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = -31;
+ pixel_y = 0
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/labor)
+"bEQ" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/labor)
+"bER" = (
+/obj/structure/table,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/restraints/handcuffs,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/labor)
+"bES" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ tag = "icon-0-4";
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/security/transfer)
+"bET" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ tag = "icon-0-4";
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/security/transfer)
+"bEU" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bEV" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bEW" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/cable,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/security/armory)
+"bEX" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/security/armory)
+"bEY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/darkred,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bEZ" = (
+/obj/machinery/light/small,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/item/weapon/storage/toolbox/mechanical,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bFa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/closed/wall,
+/area/crew_quarters/courtroom)
+"bFb" = (
+/obj/structure/closet/secure_closet/courtroom,
+/obj/item/weapon/gavelhammer,
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (SOUTHWEST)";
+ icon_state = "blue";
+ dir = 10
+ },
+/area/crew_quarters/courtroom)
+"bFc" = (
+/turf/open/floor/plasteel/blue/side,
+/area/crew_quarters/courtroom)
+"bFd" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel/blue/side,
+/area/crew_quarters/courtroom)
+"bFe" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTH)";
+ icon_state = "camera";
+ dir = 1
+ },
+/turf/open/floor/plasteel/blue/side,
+/area/crew_quarters/courtroom)
+"bFf" = (
+/turf/open/floor/plasteel/blue/side{
+ tag = "icon-blue (SOUTHEAST)";
+ icon_state = "blue";
+ dir = 6
+ },
+/area/crew_quarters/courtroom)
+"bFg" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/security{
+ name = "Court Cell";
+ req_access = null;
+ req_access_txt = "63"
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"bFh" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"bFi" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"bFj" = (
+/obj/structure/closet/lawcloset,
+/turf/open/floor/wood,
+/area/lawoffice)
+"bFk" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ tag = "icon-plant-18";
+ icon_state = "plant-18"
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"bFl" = (
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/lawoffice)
+"bFm" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j1";
+ tag = "icon-pipe-j1 (EAST)"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bFn" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/side{
+ tag = "icon-red (EAST)";
+ icon_state = "red";
+ dir = 4
+ },
+/area/hallway/primary/port)
+"bFo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/security/main)
+"bFp" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal/bin,
+/turf/open/floor/plasteel/red/side{
+ dir = 9
+ },
+/area/security/main)
+"bFq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/main)
+"bFr" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/main)
+"bFs" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Security Office APC";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/table,
+/obj/item/weapon/storage/fancy/donut_box,
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/main)
+"bFt" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/main)
+"bFu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/table,
+/obj/item/weapon/folder/red,
+/obj/machinery/camera/autoname,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/main)
+"bFv" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/main)
+"bFw" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/main)
+"bFx" = (
+/obj/structure/closet/cabinet,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vermouth,
+/obj/item/key/security,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 5
+ },
+/area/security/main)
+"bFy" = (
+/turf/closed/wall/r_wall,
+/area/security/main)
+"bFz" = (
+/obj/structure/cable{
+ tag = "icon-1-4";
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"bFA" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ tag = "icon-1-4";
+ icon_state = "1-4"
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"bFB" = (
+/obj/machinery/power/smes{
+ charge = 5e+006
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"bFC" = (
+/obj/structure/rack,
+/obj/item/device/aicard,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHEAST)";
+ icon_state = "camera";
+ dir = 5
+ },
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/crew_quarters/hor)
+"bFD" = (
+/turf/open/floor/plasteel/whitepurple/corner,
+/area/crew_quarters/hor)
+"bFE" = (
+/obj/machinery/door/airlock/command{
+ name = "Research Director's Office";
+ req_access_txt = "30";
+ req_one_access_txt = "0"
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/hor)
+"bFF" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bFG" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bFH" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bFI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bFJ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/research{
+ name = "Research Division";
+ req_access_txt = "0";
+ req_one_access_txt = "47"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bFK" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/purple/side{
+ tag = "icon-purple (WEST)";
+ icon_state = "purple";
+ dir = 8
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bFL" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bFM" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bFN" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/research{
+ name = "Research Division";
+ req_access_txt = "0";
+ req_one_access_txt = "47"
+ },
+/turf/open/floor/plasteel,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bFO" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor/preopen{
+ id = "Biohazard";
+ name = "biohazard containment door"
+ },
+/turf/open/floor/plasteel/delivery,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bFP" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/research{
+ name = "Research Division";
+ req_access_txt = "0";
+ req_one_access_txt = "47"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bFQ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bFR" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bFS" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bFT" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bFU" = (
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bFV" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (EAST)";
+ icon_state = "whitepurple";
+ dir = 4
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bFW" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/plasteel/bot,
+/area/toxins/storage)
+"bFX" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ name = "regular air scrubber";
+ on = 1
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/plasteel/bot,
+/area/toxins/storage)
+"bFY" = (
+/turf/open/floor/plasteel/floorgrime,
+/area/toxins/storage)
+"bFZ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/toxins/storage)
+"bGa" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/toxins,
+/turf/open/floor/plasteel/delivery,
+/area/toxins/storage)
+"bGb" = (
+/turf/open/floor/plasteel/airless,
+/area/toxins/test_area)
+"bGc" = (
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/labor)
+"bGd" = (
+/obj/machinery/button/flasher{
+ id = "gulagshuttleflasher";
+ name = "Flash Control";
+ pixel_x = 0;
+ pixel_y = -26;
+ req_access_txt = "1"
+ },
+/obj/machinery/light,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/labor)
+"bGe" = (
+/obj/machinery/mineral/labor_claim_console{
+ machinedir = 2;
+ pixel_x = 30;
+ pixel_y = 30
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/labor)
+"bGf" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Labor Shuttle Airlock";
+ req_access_txt = "2"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/labor)
+"bGg" = (
+/obj/machinery/door/airlock/external{
+ name = "Arrival Airlock"
+ },
+/turf/open/floor/noslip,
+/area/security/transfer)
+"bGh" = (
+/turf/open/floor/noslip,
+/area/security/transfer)
+"bGi" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/glass_security{
+ name = "Labor Camp Shuttle Airlock";
+ req_access_txt = "2"
+ },
+/turf/open/floor/noslip,
+/area/security/transfer)
+"bGj" = (
+/obj/machinery/computer/gulag_teleporter_computer,
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bGk" = (
+/turf/closed/wall/r_wall,
+/area/security/armory)
+"bGl" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Security Control";
+ req_access_txt = "2"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bGm" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/glass_security{
+ name = "Security Control";
+ req_access_txt = "2"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bGn" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall/r_wall,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bGo" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/glass_security{
+ id_tag = null;
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/crew_quarters/courtroom)
+"bGp" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/glass_security{
+ name = "Long-Term Cell 1";
+ req_access_txt = "2"
+ },
+/turf/open/floor/plasteel/darkred/side{
+ tag = "icon-darkred (NORTH)";
+ icon_state = "darkred";
+ dir = 1
+ },
+/area/crew_quarters/courtroom)
+"bGq" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bGr" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bGs" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/side{
+ tag = "icon-red (EAST)";
+ icon_state = "red";
+ dir = 4
+ },
+/area/hallway/primary/port)
+"bGt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/security/main)
+"bGu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/security/main)
+"bGv" = (
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/security/main)
+"bGw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"bGx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/item/weapon/book/manual/wiki/security_space_law,
+/turf/open/floor/plasteel,
+/area/security/main)
+"bGy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/item/weapon/folder/red,
+/turf/open/floor/plasteel,
+/area/security/main)
+"bGz" = (
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
+/obj/structure/table,
+/turf/open/floor/plasteel,
+/area/security/main)
+"bGA" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"bGB" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"bGC" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
+ },
+/area/security/main)
+"bGD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"bGE" = (
+/obj/machinery/power/terminal{
+ icon_state = "term";
+ dir = 1
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"bGF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"bGG" = (
+/obj/structure/rack,
+/obj/item/device/taperecorder{
+ pixel_x = -3
+ },
+/obj/item/device/paicard{
+ pixel_x = 4
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/crew_quarters/hor)
+"bGH" = (
+/obj/machinery/keycard_auth{
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/obj/machinery/light,
+/obj/machinery/computer/card/minor/rd,
+/turf/open/floor/plasteel/whitepurple/corner{
+ dir = 1
+ },
+/area/crew_quarters/hor)
+"bGI" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/table,
+/obj/machinery/button/door{
+ id = "Biohazard";
+ name = "Biohazard Shutter Control";
+ pixel_x = -5;
+ pixel_y = 5;
+ req_access_txt = "47"
+ },
+/obj/machinery/button/door{
+ id = "rnd2";
+ name = "Research Lab Shutter Control";
+ pixel_x = 5;
+ pixel_y = 5;
+ req_access_txt = "47"
+ },
+/turf/open/floor/plasteel/whitepurple/corner{
+ dir = 1
+ },
+/area/crew_quarters/hor)
+"bGJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/RD,
+/turf/open/floor/plasteel/whitepurple/corner{
+ dir = 1
+ },
+/area/crew_quarters/hor)
+"bGK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/hor)
+"bGL" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bGM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (SOUTHWEST)";
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bGN" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bGO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bGP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bGQ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/purple/side{
+ tag = "icon-purple (WEST)";
+ icon_state = "purple";
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bGR" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bGS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bGT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bGU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor/preopen{
+ id = "Biohazard";
+ name = "biohazard containment door"
+ },
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel/delivery,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bGV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bGW" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/whitepurple/side,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bGX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/whitepurple/side,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bGY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/side,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bGZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/side,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bHa" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/whitepurple/corner{
+ tag = "icon-whitepurplecorner (WEST)";
+ icon_state = "whitepurplecorner";
+ dir = 8
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bHb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (EAST)";
+ icon_state = "whitepurple";
+ dir = 4
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bHc" = (
+/obj/machinery/portable_atmospherics/canister/bz,
+/turf/open/floor/plasteel/bot,
+/area/toxins/storage)
+"bHd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/portable_atmospherics/canister/bz,
+/turf/open/floor/plasteel/bot,
+/area/toxins/storage)
+"bHe" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/floorgrime,
+/area/toxins/storage)
+"bHf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/floorgrime,
+/area/toxins/storage)
+"bHg" = (
+/obj/item/clothing/shoes/sneakers/purple,
+/obj/item/clothing/head/soft/purple,
+/obj/item/clothing/glasses/regular/hipster,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bHh" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Labor Shuttle Airlock";
+ req_access_txt = "2"
+ },
+/turf/open/floor/plasteel/black,
+/area/shuttle/labor)
+"bHi" = (
+/obj/machinery/mineral/stacking_machine/laborstacker{
+ input_dir = 2;
+ output_dir = 1
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"bHj" = (
+/obj/machinery/gulag_teleporter,
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bHk" = (
+/obj/structure/closet/secure_closet/lethalshots,
+/turf/open/floor/plasteel{
+ icon_state = "vault";
+ dir = 4
+ },
+/area/ai_monitored/security/armory)
+"bHl" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "armory";
+ name = "armory shutters"
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/security/armory)
+"bHm" = (
+/obj/structure/rack,
+/obj/item/weapon/storage/box/rubbershot{
+ pixel_x = 4;
+ pixel_y = -6
+ },
+/obj/item/weapon/storage/box/rubbershot{
+ pixel_x = 1;
+ pixel_y = -2
+ },
+/obj/item/weapon/storage/box/rubbershot{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/machinery/camera/motion{
+ c_tag = "Armory Motion Sensor";
+ dir = 2;
+ name = "motion-sensitive security camera"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory)
+"bHn" = (
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/obj/structure/rack,
+/obj/item/clothing/suit/armor/riot{
+ pixel_x = 6;
+ pixel_y = -6
+ },
+/obj/item/clothing/suit/armor/riot{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/clothing/suit/armor/riot{
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/item/clothing/head/helmet/riot{
+ pixel_x = -4;
+ pixel_y = -6
+ },
+/obj/item/clothing/head/helmet/riot{
+ pixel_x = -6;
+ pixel_y = -2
+ },
+/obj/item/clothing/head/helmet/riot{
+ pixel_x = -8;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory)
+"bHo" = (
+/obj/structure/rack,
+/obj/item/weapon/shield/riot{
+ pixel_x = 4;
+ pixel_y = -7
+ },
+/obj/item/weapon/shield/riot{
+ pixel_x = 0;
+ pixel_y = -3
+ },
+/obj/item/weapon/shield/riot{
+ pixel_x = -4;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory)
+"bHp" = (
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 4;
+ name = "Armory APC";
+ pixel_x = 24;
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/button/door{
+ id = "armory";
+ name = "Armory Shutters";
+ pixel_x = 0;
+ pixel_y = 28;
+ req_access_txt = "3"
+ },
+/obj/structure/rack,
+/obj/item/clothing/mask/gas/sechailer{
+ pixel_x = 6;
+ pixel_y = -6
+ },
+/obj/item/clothing/mask/gas/sechailer{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/clothing/mask/gas/sechailer{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory)
+"bHq" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/structure/table,
+/obj/item/clothing/ears/earmuffs,
+/obj/item/clothing/ears/earmuffs,
+/obj/item/clothing/glasses/sunglasses,
+/obj/item/clothing/glasses/sunglasses,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 8;
+ name = "Brig Control APC";
+ pixel_x = -26;
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bHr" = (
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bHs" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bHt" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/table,
+/obj/machinery/recharger,
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 31
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bHu" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/bin,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (SOUTHEAST)";
+ icon_state = "camera";
+ dir = 6
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bHv" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2";
+ tag = "icon-pipe-j1 (WEST)"
+ },
+/turf/closed/wall,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bHw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/requests_console{
+ department = "Security";
+ departmentType = 5;
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bHx" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bHy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bHz" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/power/apc{
+ cell_type = 10000;
+ dir = 1;
+ name = "Brig APC";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bHA" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bHB" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bHC" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/button/flasher{
+ id = "PCell 1";
+ pixel_x = 6;
+ pixel_y = 24
+ },
+/obj/machinery/camera/autoname,
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bHD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bHE" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j1";
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bHF" = (
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "innersec";
+ name = "Security";
+ req_access_txt = "63"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bHG" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bHH" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bHI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bHJ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/flasher{
+ id = "secentry";
+ pixel_x = 0;
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bHK" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "outersec";
+ name = "Security";
+ req_access_txt = "63"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bHL" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bHM" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j2";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bHN" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/red/side{
+ tag = "icon-red (EAST)";
+ icon_state = "red";
+ dir = 4
+ },
+/area/hallway/primary/port)
+"bHO" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/security{
+ name = "Security Office";
+ req_access = null;
+ req_access_txt = "63"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/main)
+"bHP" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/security/main)
+"bHQ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/security/main)
+"bHR" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"bHS" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"bHT" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"bHU" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"bHV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"bHW" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"bHX" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
+ },
+/area/security/main)
+"bHY" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Security Maintenance";
+ req_access_txt = "1"
+ },
+/turf/open/floor/plating,
+/area/security/main)
+"bHZ" = (
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"bIa" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"bIb" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"bIc" = (
+/turf/closed/wall/r_wall,
+/area/toxins/server)
+"bId" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass_command{
+ name = "Server Room";
+ req_access_txt = "30"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/toxins/server)
+"bIe" = (
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bIf" = (
+/obj/machinery/vending/coffee,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bIg" = (
+/turf/open/floor/plasteel/purple/side{
+ tag = "icon-purple (WEST)";
+ icon_state = "purple";
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bIh" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel/purple/corner,
+/area/hallway/primary/starboard)
+"bIi" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bIj" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor/preopen{
+ id = "Biohazard";
+ name = "biohazard containment door"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bIk" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor/preopen{
+ id = "Biohazard";
+ name = "biohazard containment door"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bIl" = (
+/turf/closed/wall,
+/area/security/checkpoint/science)
+"bIm" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/security/checkpoint/science)
+"bIn" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/checkpoint/science)
+"bIo" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (WEST)";
+ icon_state = "whitepurple";
+ dir = 8
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bIp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (EAST)";
+ icon_state = "whitepurple";
+ dir = 4
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bIq" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Toxins Storage APC";
+ pixel_x = -25
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/turf/open/floor/plasteel/bot,
+/area/toxins/storage)
+"bIr" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/turf/open/floor/plasteel/bot,
+/area/toxins/storage)
+"bIs" = (
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/toxins/storage)
+"bIt" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"bIu" = (
+/obj/machinery/mineral/labor_claim_console{
+ machinedir = 1;
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"bIv" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/structure/sign/electricshock{
+ pixel_x = -32
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bIw" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/regular,
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bIx" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/cable,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/security/armory)
+"bIy" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/ai_monitored/security/armory)
+"bIz" = (
+/turf/closed/wall/r_wall,
+/area/ai_monitored/security/armory)
+"bIA" = (
+/obj/structure/closet/secure_closet{
+ name = "Autorifle Ammunition Locker";
+ req_access_txt = "3"
+ },
+/obj/item/ammo_box/magazine/wt550m9/wtap,
+/obj/item/ammo_box/magazine/wt550m9/wtap,
+/obj/item/ammo_box/magazine/wt550m9/wtap,
+/obj/item/ammo_box/magazine/wt550m9/wtap,
+/obj/item/ammo_box/magazine/wt550m9/wtap,
+/obj/item/ammo_box/magazine/wt550m9/wtap,
+/obj/item/ammo_box/magazine/wt550m9/wtap,
+/obj/item/ammo_box/magazine/wt550m9/wtap,
+/obj/item/ammo_box/magazine/wt550m9/wtap,
+/obj/item/ammo_box/magazine/wt550m9/wtap,
+/turf/open/floor/plasteel{
+ icon_state = "vault";
+ dir = 4
+ },
+/area/ai_monitored/security/armory)
+"bIB" = (
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory)
+"bIC" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory)
+"bID" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/weapon/storage/toolbox/mechanical,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bIE" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bIF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bIG" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bIH" = (
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bII" = (
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/brig{
+ name = "Security"
+ })
+"bIJ" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/brig{
+ name = "Security"
+ })
+"bIK" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bIL" = (
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "innersec";
+ name = "Security";
+ req_access_txt = "63"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bIM" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bIN" = (
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "outersec";
+ name = "Security";
+ req_access_txt = "63"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bIO" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel/red/side{
+ tag = "icon-red (EAST)";
+ icon_state = "red";
+ dir = 4
+ },
+/area/hallway/primary/port)
+"bIP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/security/main)
+"bIQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/security/main)
+"bIR" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/security/main)
+"bIS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"bIT" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"bIU" = (
+/turf/open/floor/plasteel,
+/area/security/main)
+"bIV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/security/main)
+"bIW" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin,
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
+ },
+/area/security/main)
+"bIX" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/camera/motion{
+ c_tag = "MiniSat Core Hallway";
+ dir = 4;
+ network = list("MiniSat")
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"bIY" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"bIZ" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/aisat)
+"bJa" = (
+/obj/machinery/r_n_d/server/robotics,
+/turf/open/floor/circuit{
+ name = "Server Base";
+ initial_gas_mix = "n2=500;TEMP=80"
+ },
+/area/toxins/server)
+"bJb" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 140;
+ on = 1;
+ pressure_checks = 0
+ },
+/turf/open/floor/circuit{
+ name = "Server Base";
+ initial_gas_mix = "n2=500;TEMP=80"
+ },
+/area/toxins/server)
+"bJc" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple{
+ dir = 4
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'SERVER ROOM'.";
+ name = "SERVER ROOM";
+ pixel_y = 32
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/toxins/server)
+"bJd" = (
+/obj/machinery/atmospherics/pipe/simple{
+ dir = 10
+ },
+/obj/machinery/camera/autoname,
+/turf/open/floor/plasteel/black,
+/area/toxins/server)
+"bJe" = (
+/obj/machinery/camera{
+ c_tag = "Server Room";
+ dir = 2;
+ network = list("SS13","RD");
+ pixel_x = 22
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Server Room APC";
+ pixel_x = 0;
+ pixel_y = 25
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/toxins/server)
+"bJf" = (
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/toxins/server)
+"bJg" = (
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bJh" = (
+/obj/structure/rack,
+/obj/item/device/gps/science,
+/obj/item/device/radio,
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bJi" = (
+/obj/structure/frame,
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bJj" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bJk" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bJl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/table,
+/obj/item/device/radio,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/science)
+"bJm" = (
+/obj/structure/table,
+/obj/machinery/button/door{
+ id = "Biohazard";
+ name = "Biohazard Shutter Control";
+ pixel_x = -5;
+ pixel_y = 5;
+ req_access_txt = "47"
+ },
+/obj/machinery/button/door{
+ id = "rnd2";
+ name = "Research Lab Shutter Control";
+ pixel_x = 5;
+ pixel_y = 5;
+ req_access_txt = "47"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/science)
+"bJn" = (
+/obj/machinery/computer/security,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/science)
+"bJo" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (WEST)";
+ icon_state = "whitepurple";
+ dir = 8
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bJp" = (
+/obj/machinery/portable_atmospherics/scrubber/huge/movable,
+/turf/open/floor/plasteel/floorgrime,
+/area/toxins/storage)
+"bJq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/floorgrime,
+/area/toxins/storage)
+"bJr" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/toxins/storage)
+"bJs" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bJt" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/closet/crate,
+/obj/item/weapon/storage/belt,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bJu" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"bJv" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/flasher{
+ id = "gulagshuttleflasher";
+ pixel_x = 25
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"bJw" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/zipties,
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bJx" = (
+/obj/structure/rack,
+/obj/item/weapon/gun/ballistic/shotgun/riot{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/gun/ballistic/shotgun/riot,
+/obj/item/weapon/gun/ballistic/shotgun/riot{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/open/floor/plasteel{
+ icon_state = "vault";
+ dir = 4
+ },
+/area/ai_monitored/security/armory)
+"bJy" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory)
+"bJz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory)
+"bJA" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/security{
+ name = "Armory";
+ req_access = null;
+ req_access_txt = "3"
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/security/armory)
+"bJB" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ tag = "icon-1-4";
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bJC" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bJD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bJE" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bJF" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/glass_security{
+ name = "Security Control";
+ req_access_txt = "2"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bJG" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bJH" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bJI" = (
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bJJ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/brig{
+ name = "Security"
+ })
+"bJK" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/bin,
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bJL" = (
+/turf/closed/wall,
+/area/security/brig{
+ name = "Security"
+ })
+"bJM" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/structure/cable,
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/brig{
+ name = "Security"
+ })
+"bJN" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/glass_security{
+ name = "Brig Desk";
+ req_access_txt = "1"
+ },
+/turf/open/floor/plasteel/darkred/side{
+ tag = "icon-darkred (NORTH)";
+ icon_state = "darkred";
+ dir = 1
+ },
+/area/security/brig{
+ name = "Security"
+ })
+"bJO" = (
+/turf/closed/wall/r_wall,
+/area/security/brig{
+ name = "Security"
+ })
+"bJP" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bJQ" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/photocopier,
+/turf/open/floor/plasteel/red/side{
+ dir = 10
+ },
+/area/security/main)
+"bJR" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/red/corner,
+/area/security/main)
+"bJS" = (
+/obj/machinery/button/flasher{
+ id = "insaneflash";
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel/red/corner,
+/area/security/main)
+"bJT" = (
+/obj/machinery/computer/security,
+/turf/open/floor/plasteel/red/corner,
+/area/security/main)
+"bJU" = (
+/obj/machinery/computer/secure_data,
+/turf/open/floor/plasteel/red/corner,
+/area/security/main)
+"bJV" = (
+/obj/vehicle/secway,
+/turf/open/floor/plasteel/red/corner,
+/area/security/main)
+"bJW" = (
+/turf/open/floor/plasteel/red/corner,
+/area/security/main)
+"bJX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/red/corner,
+/area/security/main)
+"bJY" = (
+/obj/machinery/door/window/eastright{
+ base_state = "left";
+ dir = 8;
+ icon_state = "left";
+ name = "Security Delivery";
+ req_access_txt = "1"
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plasteel{
+ icon_state = "delivery"
+ },
+/area/security/main)
+"bJZ" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=8";
+ freq = 1400;
+ location = "Security"
+ },
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plasteel{
+ icon_state = "bot"
+ },
+/area/security/main)
+"bKa" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"bKb" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"bKc" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/camera/motion{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"bKd" = (
+/obj/machinery/airalarm/server{
+ dir = 4;
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black{
+ name = "Server Walkway";
+ initial_gas_mix = "n2=500;TEMP=80"
+ },
+/area/toxins/server)
+"bKe" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/plasteel/black{
+ name = "Server Walkway";
+ initial_gas_mix = "n2=500;TEMP=80"
+ },
+/area/toxins/server)
+"bKf" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_command{
+ name = "Server Room";
+ req_access_txt = "30"
+ },
+/turf/open/floor/plasteel/black,
+/area/toxins/server)
+"bKg" = (
+/obj/machinery/atmospherics/pipe/manifold{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/toxins/server)
+"bKh" = (
+/obj/structure/chair/office/light,
+/obj/machinery/atmospherics/pipe/simple{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/toxins/server)
+"bKi" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple{
+ dir = 10
+ },
+/turf/open/floor/plasteel/black,
+/area/toxins/server)
+"bKj" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bKk" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/chem_dispenser,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bKl" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bKm" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = ""
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bKn" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Security Post - Research Division";
+ req_access_txt = "63"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/science)
+"bKo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/science)
+"bKp" = (
+/obj/effect/landmark/start/depsec/science,
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/science)
+"bKq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/machinery/computer/secure_data,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/science)
+"bKr" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/security/checkpoint/science)
+"bKs" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (WEST)";
+ icon_state = "whitepurple";
+ dir = 8
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bKt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/toxins/storage)
+"bKu" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/research{
+ name = "Toxins Storage";
+ req_access_txt = "8"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/toxins/storage)
+"bKv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/toxins/storage)
+"bKw" = (
+/turf/closed/wall/r_wall,
+/area/toxins/mixing)
+"bKx" = (
+/turf/closed/mineral/random/labormineral,
+/area/toxins/mixing)
+"bKy" = (
+/obj/structure/closet/crate,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"bKz" = (
+/obj/machinery/door/airlock/titanium{
+ id_tag = "prisonshuttle";
+ name = "Labor Shuttle Airlock"
+ },
+/obj/docking_port/mobile{
+ dir = 8;
+ dwidth = 2;
+ height = 5;
+ id = "laborcamp";
+ name = "labor camp shuttle";
+ port_angle = 90;
+ width = 9
+ },
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 2;
+ height = 5;
+ id = "laborcamp_home";
+ name = "fore bay 1";
+ width = 9
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"bKA" = (
+/obj/structure/chair,
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bKB" = (
+/obj/structure/grille,
+/turf/open/floor/plating/asteroid/airless,
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"bKC" = (
+/obj/structure/rack,
+/obj/item/weapon/storage/lockbox/loyalty{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/weapon/storage/lockbox/loyalty,
+/turf/open/floor/plasteel{
+ icon_state = "vault";
+ dir = 4
+ },
+/area/ai_monitored/security/armory)
+"bKD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory)
+"bKE" = (
+/obj/structure/rack,
+/obj/item/weapon/storage/box/chemimp{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/storage/box/trackimp,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory)
+"bKF" = (
+/obj/structure/rack,
+/obj/item/weapon/storage/box/handcuffs{
+ pixel_x = 3;
+ pixel_y = -6
+ },
+/obj/item/weapon/storage/box/flashbangs{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/weapon/storage/box/teargas{
+ pixel_x = -6;
+ pixel_y = 3
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory)
+"bKG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory)
+"bKH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/security/armory)
+"bKI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/button/door{
+ dir = 8;
+ id = "armory out";
+ name = "Armory Outer Shutters";
+ pixel_x = -28;
+ pixel_y = 0;
+ req_access_txt = "3"
+ },
+/obj/machinery/computer/prisoner,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bKJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bKK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bKL" = (
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bKM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/pen/red,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bKN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/structure/cable{
+ tag = "icon-0-4";
+ icon_state = "0-4"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bKO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/structure/cable{
+ tag = "icon-0-4";
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ tag = "icon-0-8";
+ icon_state = "0-8"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/brig{
+ name = "Security"
+ })
+"bKP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/glass_security{
+ name = "Equipment Room";
+ req_access_txt = "1"
+ },
+/turf/open/floor/plasteel/darkred/side{
+ tag = "icon-darkred (NORTH)";
+ icon_state = "darkred";
+ dir = 1
+ },
+/area/security/brig{
+ name = "Security"
+ })
+"bKQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ tag = "icon-0-8";
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ tag = "icon-0-4";
+ icon_state = "0-4"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/brig{
+ name = "Security"
+ })
+"bKR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ tag = "icon-0-8";
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/brig{
+ name = "Security"
+ })
+"bKS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/vending/security,
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bKT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/brig{
+ name = "Security"
+ })
+"bKU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/brig{
+ name = "Security"
+ })
+"bKV" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/brig{
+ name = "Security"
+ })
+"bKW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/filingcabinet/security,
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bKX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/security/brig{
+ name = "Security"
+ })
+"bKY" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/button/door{
+ desc = "A remote control switch for the medbay foyer.";
+ id = "innersec";
+ name = "Brig Interior Doors Control";
+ normaldoorcontrol = 1;
+ pixel_x = -26;
+ pixel_y = 5;
+ req_access_txt = "63"
+ },
+/obj/machinery/button/door{
+ desc = "A remote control switch for the medbay foyer.";
+ id = "outersec";
+ name = "Brig Exterior Doors Control";
+ normaldoorcontrol = 1;
+ pixel_x = -26;
+ pixel_y = -5;
+ req_access_txt = "63"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bKZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bLa" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ name = "regular air scrubber";
+ on = 1
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ freerange = 1;
+ name = "Station Intercom (Telecoms)";
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bLb" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/sign/electricshock{
+ pixel_y = 32
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "briggate";
+ name = "security shutters"
+ },
+/turf/open/floor/plating,
+/area/security/brig{
+ name = "Security"
+ })
+"bLc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bLd" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bLe" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/side{
+ tag = "icon-red (EAST)";
+ icon_state = "red";
+ dir = 4
+ },
+/area/hallway/primary/port)
+"bLf" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/glass_security{
+ name = "Insanity Ward";
+ req_access_txt = "2"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/main)
+"bLg" = (
+/turf/closed/wall/r_wall,
+/area/security/brig{
+ name = "Interrogation"
+ })
+"bLh" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/security{
+ name = "Interrogation";
+ req_access = null;
+ req_access_txt = "0";
+ req_one_access_txt = "1;4"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Interrogation"
+ })
+"bLi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/security/brig{
+ name = "Interrogation"
+ })
+"bLj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"bLk" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"bLl" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"bLm" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"bLn" = (
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 1;
+ name = "AI Maintenance APC";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ tag = "icon-0-8";
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/obj/machinery/camera/motion{
+ c_tag = "MiniSat Foyer";
+ dir = 1;
+ network = list("MiniSat")
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"bLo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"bLp" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat{
+ name = "AI Maintenance"
+ })
+"bLq" = (
+/obj/machinery/r_n_d/server/core,
+/turf/open/floor/circuit{
+ name = "Server Base";
+ initial_gas_mix = "n2=500;TEMP=80"
+ },
+/area/toxins/server)
+"bLr" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 120;
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
+ },
+/turf/open/floor/circuit{
+ name = "Server Base";
+ initial_gas_mix = "n2=500;TEMP=80"
+ },
+/area/toxins/server)
+"bLs" = (
+/obj/structure/grille,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'SERVER ROOM'.";
+ name = "SERVER ROOM";
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/pipe/simple{
+ dir = 4
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/toxins/server)
+"bLt" = (
+/obj/machinery/atmospherics/pipe/simple{
+ dir = 9
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/structure/table,
+/obj/item/weapon/folder/white,
+/obj/item/weapon/pen{
+ desc = "Writes upside down!";
+ name = "astronaut pen"
+ },
+/turf/open/floor/plasteel/black,
+/area/toxins/server)
+"bLu" = (
+/obj/machinery/computer/rdservercontrol,
+/turf/open/floor/plasteel/black,
+/area/toxins/server)
+"bLv" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/toxins/server)
+"bLw" = (
+/obj/structure/closet/wardrobe/science_white,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bLx" = (
+/obj/structure/closet/wardrobe/science_white,
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bLy" = (
+/obj/machinery/autolathe,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHEAST)";
+ icon_state = "camera";
+ dir = 5
+ },
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bLz" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/button/door{
+ dir = 2;
+ id = "robotics_lab";
+ name = "Robotics Door Control";
+ pixel_x = 0;
+ pixel_y = -24;
+ req_access_txt = "29"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bLA" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/science)
+"bLB" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/science)
+"bLC" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/science)
+"bLD" = (
+/obj/structure/closet/bombcloset,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bLE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/closet/bombcloset,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bLF" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bLG" = (
+/obj/machinery/portable_atmospherics/canister,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/obj/machinery/camera{
+ c_tag = "Toxins Lab West";
+ dir = 2;
+ network = list("SS13","RD");
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bLH" = (
+/obj/machinery/portable_atmospherics/canister,
+/obj/item/device/radio/intercom{
+ pixel_y = 25
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bLI" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/obj/item/weapon/storage/firstaid/toxin,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bLJ" = (
+/obj/machinery/portable_atmospherics/pump,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bLK" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bLL" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bLM" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/toxins/mixing)
+"bLN" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plating/airless,
+/area/toxins/test_area)
+"bLO" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/toxins/test_area)
+"bLP" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plating/airless,
+/area/toxins/test_area)
+"bLQ" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/labor)
+"bLR" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bLS" = (
+/obj/machinery/computer/shuttle/labor,
+/turf/open/floor/plasteel/darkred,
+/area/security/transfer)
+"bLT" = (
+/obj/structure/rack,
+/obj/item/weapon/gun/energy/plasma/light{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/item/weapon/gun/energy/plasma/light{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/weapon/gun/energy/plasma/light,
+/turf/open/floor/plasteel{
+ icon_state = "vault";
+ dir = 4
+ },
+/area/ai_monitored/security/armory)
+"bLU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory)
+"bLV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory)
+"bLW" = (
+/obj/structure/rack,
+/obj/item/weapon/gun/energy/e_gun{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/gun/energy/e_gun,
+/obj/item/weapon/gun/energy/e_gun{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/effect/turf_decal/bot{
+ dir = 2
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "armory out";
+ name = "armory"
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/security/armory)
+"bLX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/computer/security,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bLY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bLZ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bMa" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bMb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Warden"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bMc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor{
+ dir = 8;
+ name = "Brig Control Desk";
+ req_access_txt = "2"
+ },
+/obj/machinery/door/window/eastleft{
+ name = "Brig Desk";
+ req_access_txt = "1"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bMd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "secequipment"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bMe" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bMf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/security,
+/obj/item/weapon/storage/belt/security/full,
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bMg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/obj/structure/cable,
+/obj/machinery/door/firedoor/heavy,
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/brig{
+ name = "Security"
+ })
+"bMh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/item/weapon/book/manual/wiki/security_space_law,
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bMi" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/brig{
+ name = "Security"
+ })
+"bMj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/brig{
+ name = "Security"
+ })
+"bMk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/brig{
+ name = "Security"
+ })
+"bMl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 30
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bMm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/security/brig{
+ name = "Security"
+ })
+"bMn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bMo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/computer/security,
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bMp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/computer/secure_data,
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bMq" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bMr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/southleft{
+ dir = 4;
+ name = "Brig Desk";
+ req_access_txt = "1"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "briggate";
+ name = "security shutters"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bMs" = (
+/turf/closed/wall,
+/area/security/main)
+"bMt" = (
+/obj/structure/table,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/pen/red,
+/turf/open/floor/plasteel/whitered/side{
+ tag = "icon-whitered (NORTHWEST)";
+ icon_state = "whitered";
+ dir = 9
+ },
+/area/security/main)
+"bMu" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whitered/side{
+ tag = "icon-whitered (NORTH)";
+ icon_state = "whitered";
+ dir = 1
+ },
+/area/security/main)
+"bMv" = (
+/obj/machinery/sleeper{
+ icon_state = "sleeper-open";
+ dir = 8
+ },
+/turf/open/floor/plasteel/whitered/side{
+ tag = "icon-whitered (NORTH)";
+ icon_state = "whitered";
+ dir = 1
+ },
+/area/security/main)
+"bMw" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/machinery/computer/med_data,
+/turf/open/floor/plasteel/whitered/side{
+ tag = "icon-whitered (NORTHEAST)";
+ icon_state = "whitered";
+ dir = 5
+ },
+/area/security/main)
+"bMx" = (
+/turf/closed/wall,
+/area/security/brig{
+ name = "Interrogation"
+ })
+"bMy" = (
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Interrogation"
+ })
+"bMz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Interrogation"
+ })
+"bMA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/maintenance/maintcentral)
+"bMB" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/maintcentral)
+"bMC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/maintenance/maintcentral)
+"bMD" = (
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/purple/side{
+ tag = "icon-purple (WEST)";
+ icon_state = "purple";
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bME" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/purple/side{
+ tag = "icon-purple (EAST)";
+ icon_state = "purple";
+ dir = 4
+ },
+/area/hallway/primary/starboard)
+"bMF" = (
+/turf/closed/wall/r_wall,
+/area/assembly/robotics)
+"bMG" = (
+/turf/closed/wall,
+/area/assembly/robotics)
+"bMH" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/assembly/robotics)
+"bMI" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor/shutters{
+ id = "robotics_lab";
+ name = "robotics"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/assembly/robotics)
+"bMJ" = (
+/obj/machinery/light,
+/obj/structure/closet,
+/obj/item/weapon/screwdriver,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/science)
+"bMK" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Science Security APC";
+ pixel_y = -24
+ },
+/obj/structure/cable,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/science)
+"bML" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/structure/filingcabinet/security,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/science)
+"bMM" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (WEST)";
+ icon_state = "whitepurple";
+ dir = 8
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bMN" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (EAST)";
+ icon_state = "whitepurple";
+ dir = 4
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bMO" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/research{
+ name = "Toxins Lab";
+ req_access_txt = "8"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bMP" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bMQ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bMR" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bMS" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bMT" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bMU" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bMV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/obj/machinery/meter,
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bMW" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
+ },
+/turf/open/floor/plasteel/whitepurple/corner,
+/area/toxins/mixing)
+"bMX" = (
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/toxins/mixing)
+"bMY" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/toxins/mixing)
+"bMZ" = (
+/obj/structure/closet,
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bNa" = (
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bNb" = (
+/obj/machinery/camera/autoname,
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bNc" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bNd" = (
+/obj/machinery/button/massdriver{
+ dir = 2;
+ id = "toxinsdriver";
+ pixel_y = 24
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/toxins/mixing)
+"bNe" = (
+/obj/machinery/doppler_array{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing)
+"bNf" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/toxins/test_area)
+"bNg" = (
+/turf/open/floor/plating/airless,
+/area/toxins/test_area)
+"bNh" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/toxins/test_area)
+"bNi" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/open/floor/plating/airless,
+/area/shuttle/labor)
+"bNj" = (
+/obj/structure/rack,
+/obj/item/weapon/gun/energy/laser/rifle{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/item/weapon/gun/energy/laser/rifle{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/weapon/gun/energy/laser/rifle,
+/turf/open/floor/plasteel{
+ icon_state = "vault";
+ dir = 4
+ },
+/area/ai_monitored/security/armory)
+"bNk" = (
+/obj/structure/rack,
+/obj/item/weapon/gun/energy/e_gun/dragnet{
+ layer = 3.1;
+ pixel_x = -4;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/firingpins{
+ pixel_x = 3;
+ pixel_y = -6
+ },
+/obj/item/weapon/storage/box/firingpins,
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory)
+"bNl" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/obj/structure/rack,
+/obj/item/clothing/suit/armor/laserproof,
+/obj/item/weapon/gun/energy/ionrifle{
+ pixel_y = -4
+ },
+/turf/open/floor/plasteel/darkred,
+/area/ai_monitored/security/armory)
+"bNm" = (
+/obj/structure/rack,
+/obj/item/weapon/gun/energy/laser{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/gun/energy/laser,
+/obj/item/weapon/gun/energy/laser{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/effect/turf_decal/bot{
+ dir = 2
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "armory out";
+ name = "armory"
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/security/armory)
+"bNn" = (
+/obj/machinery/computer/secure_data,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bNo" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bNp" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/hand_labeler,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bNq" = (
+/turf/closed/wall,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bNr" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/table,
+/obj/machinery/recharger,
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bNs" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bNt" = (
+/obj/structure/closet/secure_closet/security,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/item/weapon/storage/belt/security/full,
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bNu" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/obj/structure/cable,
+/obj/machinery/door/firedoor/heavy,
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/brig{
+ name = "Security"
+ })
+"bNv" = (
+/obj/structure/table,
+/obj/item/device/radio,
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bNw" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/brig{
+ name = "Security"
+ })
+"bNx" = (
+/obj/machinery/status_display{
+ dir = 4;
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bNy" = (
+/obj/structure/cable{
+ tag = "icon-0-4";
+ icon_state = "0-4"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/brig{
+ name = "Security"
+ })
+"bNz" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/obj/structure/cable{
+ tag = "icon-0-8";
+ icon_state = "0-8"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/brig{
+ name = "Security"
+ })
+"bNA" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/closed/wall/r_wall,
+/area/security/brig{
+ name = "Security"
+ })
+"bNB" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/red/side{
+ tag = "icon-red (EAST)";
+ icon_state = "red";
+ dir = 4
+ },
+/area/hallway/primary/port)
+"bNC" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/security/main)
+"bND" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitered/side{
+ tag = "icon-whitered (WEST)";
+ icon_state = "whitered";
+ dir = 8
+ },
+/area/security/main)
+"bNE" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/security/main)
+"bNF" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/security/main)
+"bNG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/flasher{
+ id = "insaneflash";
+ pixel_x = 26
+ },
+/turf/open/floor/plasteel/whitered/side{
+ tag = "icon-whitered (EAST)";
+ icon_state = "whitered";
+ dir = 4
+ },
+/area/security/main)
+"bNH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/security/brig{
+ name = "Interrogation"
+ })
+"bNI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Interrogation"
+ })
+"bNJ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ name = "regular air vent";
+ on = 1
+ },
+/obj/structure/table,
+/obj/item/device/flashlight/lamp,
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Interrogation"
+ })
+"bNK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Interrogation"
+ })
+"bNL" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Security Maintenance";
+ req_access_txt = "1"
+ },
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bNM" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bNN" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bNO" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/space,
+/area/space/nearstation)
+"bNP" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/space,
+/area/space/nearstation)
+"bNQ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bNR" = (
+/obj/structure/cable{
+ tag = "icon-1-4";
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bNS" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bNT" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bNU" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bNV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/purple/side{
+ tag = "icon-purple (NORTH)";
+ icon_state = "purple";
+ dir = 1
+ },
+/area/hallway/primary/starboard)
+"bNW" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/purple/corner{
+ tag = "icon-purplecorner (NORTH)";
+ icon_state = "purplecorner";
+ dir = 1
+ },
+/area/hallway/primary/starboard)
+"bNX" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bNY" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/side{
+ tag = "icon-purple (EAST)";
+ icon_state = "purple";
+ dir = 4
+ },
+/area/hallway/primary/starboard)
+"bNZ" = (
+/obj/machinery/requests_console{
+ department = "Robotics";
+ departmentType = 2;
+ name = "Robotics RC";
+ pixel_y = 30
+ },
+/obj/machinery/button/door{
+ dir = 2;
+ id = "robotics";
+ name = "Shutters Control Button";
+ pixel_x = -24;
+ pixel_y = 0;
+ req_access_txt = "29"
+ },
+/obj/structure/table,
+/obj/item/weapon/stock_parts/cell/high,
+/obj/item/weapon/stock_parts/cell/high{
+ pixel_x = 10;
+ pixel_y = 5
+ },
+/obj/item/weapon/stock_parts/cell/high{
+ pixel_x = 10;
+ pixel_y = 5
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (NORTHWEST)";
+ icon_state = "whitepurple";
+ dir = 9
+ },
+/area/assembly/robotics)
+"bOa" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (NORTH)";
+ icon_state = "whitepurple";
+ dir = 1
+ },
+/area/assembly/robotics)
+"bOb" = (
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (NORTH)";
+ icon_state = "whitepurple";
+ dir = 1
+ },
+/area/assembly/robotics)
+"bOc" = (
+/obj/machinery/button/door{
+ dir = 2;
+ id = "robotics_lab";
+ name = "Robotics Door Control";
+ pixel_x = 24;
+ pixel_y = 0;
+ req_access_txt = "29"
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (NORTHEAST)";
+ icon_state = "whitepurple";
+ dir = 5
+ },
+/area/assembly/robotics)
+"bOd" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (WEST)";
+ icon_state = "whitepurple";
+ dir = 8
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bOe" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (EAST)";
+ icon_state = "whitepurple";
+ dir = 4
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bOf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/toxins/mixing)
+"bOg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHEAST)";
+ icon_state = "camera";
+ dir = 5
+ },
+/turf/open/floor/plasteel/whitepurple/corner{
+ tag = "icon-whitepurplecorner (WEST)";
+ icon_state = "whitepurplecorner";
+ dir = 8
+ },
+/area/toxins/mixing)
+"bOh" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bOi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bOj" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bOk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bOl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bOm" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bOn" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bOo" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (EAST)";
+ icon_state = "whitepurple";
+ dir = 4
+ },
+/area/toxins/mixing)
+"bOp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/research{
+ name = "Toxins Lab";
+ req_access_txt = "8"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bOq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bOr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Toxins Launch Room";
+ req_access_txt = "8"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bOs" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bOt" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ name = "regular air vent";
+ on = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bOu" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bOv" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing)
+"bOw" = (
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the test chamber.";
+ dir = 8;
+ layer = 4;
+ name = "Test Chamber Telescreen";
+ network = list("Toxins");
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing)
+"bOx" = (
+/obj/structure/rack,
+/obj/item/weapon/gun/ballistic/automatic/wt550{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/weapon/gun/ballistic/automatic/wt550{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/turf/open/floor/plasteel{
+ icon_state = "vault";
+ dir = 4
+ },
+/area/ai_monitored/security/armory)
+"bOy" = (
+/obj/structure/rack,
+/obj/item/weapon/gun/energy/e_gun/advtaser{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/gun/energy/e_gun/advtaser,
+/obj/item/weapon/gun/energy/e_gun/advtaser{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/effect/turf_decal/bot{
+ dir = 2
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "armory out";
+ name = "armory"
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/security/armory)
+"bOz" = (
+/obj/structure/table,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bOA" = (
+/obj/machinery/button/door{
+ id = "Secure Gate";
+ name = "Cell Shutters";
+ pixel_x = -27;
+ pixel_y = -2;
+ req_access_txt = "0"
+ },
+/obj/machinery/button/door{
+ id = "Prison Gate";
+ name = "Prison Wing Lockdown";
+ pixel_x = -27;
+ pixel_y = 8;
+ req_access_txt = "2"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bOB" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/warden,
+/obj/item/key/security,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bOC" = (
+/obj/machinery/newscaster/security_unit,
+/turf/closed/wall,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bOD" = (
+/obj/structure/table,
+/obj/machinery/recharger,
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bOE" = (
+/obj/effect/landmark{
+ name = "secequipment"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bOF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/closet/secure_closet/security,
+/obj/item/weapon/storage/belt/security/full,
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bOG" = (
+/obj/machinery/door_timer{
+ id = "Cell 1";
+ name = "Cell 1";
+ pixel_y = -32
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTH)";
+ icon_state = "camera";
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bOH" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bOI" = (
+/obj/machinery/door_timer{
+ id = "Cell 2";
+ name = "Cell 2";
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bOJ" = (
+/obj/machinery/door_timer{
+ id = "Cell 3";
+ name = "Cell 3";
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/brig{
+ name = "Security"
+ })
+"bOK" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "briggate";
+ name = "security shutters"
+ },
+/turf/open/floor/plating,
+/area/security/brig{
+ name = "Security"
+ })
+"bOL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bOM" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bON" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable,
+/obj/structure/sign/electricshock{
+ pixel_y = -32
+ },
+/turf/open/floor/plating,
+/area/security/main)
+"bOO" = (
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/glass/bottle/morphine,
+/obj/item/weapon/reagent_containers/syringe,
+/turf/open/floor/plasteel/whitered/side{
+ tag = "icon-whitered (WEST)";
+ icon_state = "whitered";
+ dir = 8
+ },
+/area/security/main)
+"bOP" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/security/main)
+"bOQ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/security/main)
+"bOR" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/glass/bottle/morphine,
+/obj/item/weapon/reagent_containers/syringe,
+/turf/open/floor/plasteel/whitered/side{
+ tag = "icon-whitered (EAST)";
+ icon_state = "whitered";
+ dir = 4
+ },
+/area/security/main)
+"bOS" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Interrogation"
+ })
+"bOT" = (
+/obj/structure/table,
+/obj/item/device/taperecorder,
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Interrogation"
+ })
+"bOU" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Interrogation"
+ })
+"bOV" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Interrogation"
+ })
+"bOW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bOX" = (
+/turf/closed/wall,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bOY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/engine/gravity_generator)
+"bOZ" = (
+/obj/machinery/ai_status_display,
+/turf/closed/wall/r_wall,
+/area/engine/gravity_generator)
+"bPa" = (
+/turf/closed/wall/r_wall,
+/area/engine/gravity_generator)
+"bPb" = (
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/gravity_generator)
+"bPc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/engine/gravity_generator)
+"bPd" = (
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bPe" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bPf" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bPg" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHEAST)";
+ icon_state = "camera";
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bPh" = (
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bPi" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/assembly/robotics)
+"bPj" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/weapon/stock_parts/cell/high,
+/turf/open/floor/plasteel/whitepurple/corner{
+ tag = "icon-whitepurplecorner (NORTH)";
+ icon_state = "whitepurplecorner";
+ dir = 1
+ },
+/area/assembly/robotics)
+"bPk" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"bPl" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"bPm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/corner{
+ tag = "icon-whitepurplecorner (EAST)";
+ icon_state = "whitepurplecorner";
+ dir = 4
+ },
+/area/assembly/robotics)
+"bPn" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (NORTH)";
+ icon_state = "whitepurple";
+ dir = 1
+ },
+/area/assembly/robotics)
+"bPo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (NORTH)";
+ icon_state = "whitepurple";
+ dir = 1
+ },
+/area/assembly/robotics)
+"bPp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (SOUTHEAST)";
+ icon_state = "camera";
+ dir = 6
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (NORTH)";
+ icon_state = "whitepurple";
+ dir = 1
+ },
+/area/assembly/robotics)
+"bPq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (NORTHEAST)";
+ icon_state = "whitepurple";
+ dir = 5
+ },
+/area/assembly/robotics)
+"bPr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/research{
+ name = "Robotics Lab";
+ req_access_txt = "29";
+ req_one_access_txt = "0"
+ },
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"bPs" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (WEST)";
+ icon_state = "whitepurple";
+ dir = 8
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bPt" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (EAST)";
+ icon_state = "whitepurple";
+ dir = 4
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bPu" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/toxins/mixing)
+"bPv" = (
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (WEST)";
+ icon_state = "whitepurple";
+ dir = 8
+ },
+/area/toxins/mixing)
+"bPw" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bPx" = (
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -4;
+ pixel_y = 1
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = 8;
+ pixel_y = 9
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = 9;
+ pixel_y = -2
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = 0;
+ pixel_y = 2
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bPy" = (
+/obj/structure/chair/stool,
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bPz" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/wrench,
+/obj/item/weapon/screwdriver{
+ pixel_y = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bPA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bPB" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (EAST)";
+ icon_state = "whitepurple";
+ dir = 4
+ },
+/area/toxins/mixing)
+"bPC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/toxins/mixing)
+"bPD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/toxins/mixing)
+"bPE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/window/southleft,
+/turf/open/floor/plasteel/loadingarea,
+/area/toxins/mixing)
+"bPF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/toxins/mixing)
+"bPG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/toxins/mixing)
+"bPH" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/toxins/mixing)
+"bPI" = (
+/obj/structure/rack,
+/obj/item/weapon/gun/ballistic/automatic/wt550{
+ pixel_x = 6;
+ pixel_y = -6
+ },
+/obj/item/weapon/gun/ballistic/automatic/wt550{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/weapon/gun/ballistic/automatic/wt550,
+/turf/open/floor/plasteel{
+ icon_state = "vault";
+ dir = 4
+ },
+/area/security/armory)
+"bPJ" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "armory";
+ name = "armory shutters"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/armory)
+"bPK" = (
+/obj/structure/rack,
+/obj/item/weapon/grenade/barrier{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/item/weapon/grenade/barrier{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/weapon/grenade/barrier,
+/obj/item/weapon/grenade/barrier{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/armory)
+"bPL" = (
+/obj/machinery/flasher/portable,
+/turf/open/floor/plasteel/darkred,
+/area/security/armory)
+"bPM" = (
+/obj/structure/closet/secure_closet{
+ anchored = 1;
+ name = "Contraband Locker";
+ req_access_txt = "3"
+ },
+/turf/open/floor/plasteel/darkred,
+/area/security/armory)
+"bPN" = (
+/obj/machinery/vending/security,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bPO" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/obj/vehicle/secway,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bPP" = (
+/obj/structure/table,
+/obj/item/device/radio/intercom{
+ desc = "Talk smack through this.";
+ dir = 4;
+ pixel_x = 28;
+ syndie = 1
+ },
+/obj/item/weapon/book/manual/wiki/security_space_law,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bPQ" = (
+/obj/structure/table,
+/obj/item/weapon/storage/fancy/donut_box,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden{
+ name = "Security Control"
+ })
+"bPR" = (
+/obj/structure/closet/wardrobe/red,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bPS" = (
+/obj/structure/cable{
+ tag = "icon-1-4";
+ icon_state = "1-4"
+ },
+/turf/closed/wall,
+/area/security/brig{
+ name = "Security"
+ })
+"bPT" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/cable{
+ tag = "icon-0-8";
+ icon_state = "0-8"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor/preopen{
+ id = "briglockdown";
+ name = "brig shutters"
+ },
+/turf/open/floor/plating,
+/area/security/brig{
+ name = "Security"
+ })
+"bPU" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/poddoor/preopen{
+ id = "briglockdown";
+ name = "brig shutters"
+ },
+/obj/machinery/door/window/brigdoor{
+ id = "Cell 1";
+ name = "Cell 1";
+ req_access_txt = "2"
+ },
+/turf/open/floor/plasteel/darkred/side{
+ tag = "icon-darkred (NORTH)";
+ icon_state = "darkred";
+ dir = 1
+ },
+/area/security/brig{
+ name = "Security"
+ })
+"bPV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/closed/wall,
+/area/security/brig{
+ name = "Security"
+ })
+"bPW" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/poddoor/preopen{
+ id = "briglockdown";
+ name = "brig shutters"
+ },
+/obj/machinery/door/window/brigdoor{
+ id = "Cell 2";
+ name = "Cell 2";
+ req_access_txt = "2"
+ },
+/turf/open/floor/plasteel/darkred/side{
+ tag = "icon-darkred (NORTH)";
+ icon_state = "darkred";
+ dir = 1
+ },
+/area/security/brig{
+ name = "Security"
+ })
+"bPX" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable{
+ tag = "icon-1-4";
+ icon_state = "1-4"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "briglockdown";
+ name = "brig shutters"
+ },
+/obj/machinery/door/window/brigdoor{
+ id = "Cell 3";
+ name = "Cell 3";
+ req_access_txt = "2"
+ },
+/turf/open/floor/plasteel/darkred/side{
+ tag = "icon-darkred (NORTH)";
+ icon_state = "darkred";
+ dir = 1
+ },
+/area/security/brig{
+ name = "Security"
+ })
+"bPY" = (
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/turf/closed/wall/r_wall,
+/area/security/brig{
+ name = "Security"
+ })
+"bPZ" = (
+/obj/structure/bed,
+/obj/item/clothing/suit/straight_jacket,
+/turf/open/floor/plasteel/whitered/side{
+ tag = "icon-whitered (SOUTHWEST)";
+ icon_state = "whitered";
+ dir = 10
+ },
+/area/security/main)
+"bQa" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/whitered/side,
+/area/security/main)
+"bQb" = (
+/turf/open/floor/plasteel/whitered/side,
+/area/security/main)
+"bQc" = (
+/obj/structure/bed,
+/obj/item/clothing/suit/straight_jacket,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel/whitered/side{
+ tag = "icon-whitered (SOUTHEAST)";
+ icon_state = "whitered";
+ dir = 6
+ },
+/area/security/main)
+"bQd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/device/radio,
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bQe" = (
+/obj/structure/table,
+/obj/item/device/taperecorder,
+/obj/item/device/tape,
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bQf" = (
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/gravity_generator)
+"bQg" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (SOUTHEAST)";
+ icon_state = "camera";
+ dir = 6
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/gravity_generator)
+"bQh" = (
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bQi" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Telecoms Monitoring APC";
+ pixel_y = -24
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bQj" = (
+/obj/structure/closet/firecloset/full,
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bQk" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/eastright{
+ base_state = "left";
+ dir = 4;
+ icon_state = "left";
+ name = "Robotics Desk";
+ req_access_txt = "29"
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "robotics";
+ name = "robotics lab shutters"
+ },
+/turf/open/floor/plating,
+/area/assembly/robotics)
+"bQl" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"bQm" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"bQn" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"bQo" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"bQp" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"bQq" = (
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"bQr" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = 6
+ },
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/clothing/head/welding{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/item/clothing/glasses/welding,
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"bQs" = (
+/obj/structure/closet/l3closet,
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (SOUTHWEST)";
+ icon_state = "whitepurple";
+ dir = 10
+ },
+/area/toxins/mixing)
+"bQt" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/whitepurple/side,
+/area/toxins/mixing)
+"bQu" = (
+/turf/open/floor/plasteel/whitepurple/side,
+/area/toxins/mixing)
+"bQv" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/turf/open/floor/plasteel/whitepurple/side,
+/area/toxins/mixing)
+"bQw" = (
+/obj/item/device/assembly/signaler{
+ pixel_x = 0;
+ pixel_y = 8
+ },
+/obj/item/device/assembly/signaler{
+ pixel_x = -8;
+ pixel_y = 5
+ },
+/obj/item/device/assembly/signaler{
+ pixel_x = 6;
+ pixel_y = 5
+ },
+/obj/item/device/assembly/signaler{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bQx" = (
+/obj/item/device/transfer_valve{
+ pixel_x = -5
+ },
+/obj/item/device/transfer_valve{
+ pixel_x = -5
+ },
+/obj/item/device/transfer_valve{
+ pixel_x = 0
+ },
+/obj/item/device/transfer_valve{
+ pixel_x = 0
+ },
+/obj/item/device/transfer_valve{
+ pixel_x = 5
+ },
+/obj/item/device/transfer_valve{
+ pixel_x = 5
+ },
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science Requests Console";
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bQy" = (
+/obj/item/device/assembly/timer{
+ pixel_x = 5;
+ pixel_y = 4
+ },
+/obj/item/device/assembly/timer{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/item/device/assembly/timer{
+ pixel_x = 6;
+ pixel_y = -4
+ },
+/obj/item/device/assembly/timer{
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bQz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whitepurple/side,
+/area/toxins/mixing)
+"bQA" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Toxins Lab APC";
+ pixel_x = 26;
+ pixel_y = 0
+ },
+/obj/structure/cable,
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (SOUTHEAST)";
+ icon_state = "whitepurple";
+ dir = 6
+ },
+/area/toxins/mixing)
+"bQB" = (
+/obj/machinery/mass_driver{
+ dir = 4;
+ id = "toxinsdriver"
+ },
+/turf/open/floor/plating,
+/area/toxins/mixing)
+"bQC" = (
+/turf/open/floor/plating,
+/area/toxins/mixing)
+"bQD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/toxins/mixing)
+"bQE" = (
+/obj/machinery/door/poddoor{
+ id = "toxinsdriver";
+ name = "toxins launcher bay door"
+ },
+/turf/open/floor/plating,
+/area/space)
+"bQF" = (
+/obj/item/device/radio/beacon,
+/turf/open/floor/plating/airless,
+/area/toxins/test_area)
+"bQG" = (
+/obj/machinery/camera{
+ active_power_usage = 0;
+ c_tag = "Bomb Test Site";
+ desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site.";
+ dir = 8;
+ invuln = 1;
+ light = null;
+ name = "Hardened Bomb-Test Camera";
+ network = list("Toxins");
+ use_power = 0
+ },
+/obj/item/target/alien{
+ anchored = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ luminosity = 2;
+ initial_gas_mix = "o2=0.01;n2=0.01"
+ },
+/area/toxins/test_area)
+"bQH" = (
+/turf/closed/indestructible/riveted,
+/area/toxins/test_area)
+"bQI" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/closet/bombcloset,
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bQJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/effect/landmark{
+ name = "secequipment"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bQK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/closet/secure_closet/security,
+/obj/item/weapon/storage/belt/security/full,
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bQL" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bQM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bQN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/security/brig{
+ name = "Security"
+ })
+"bQO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Port Primary Hallway"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bQP" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Port Primary Hallway"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bQQ" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Port Primary Hallway"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bQR" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/cable,
+/obj/structure/sign/electricshock{
+ pixel_x = -32
+ },
+/turf/open/floor/plating,
+/area/security/main)
+"bQS" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/security/main)
+"bQT" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bQU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bQV" = (
+/obj/structure/table,
+/obj/item/weapon/book/manual/wiki/security_space_law,
+/obj/item/weapon/folder/red,
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bQW" = (
+/turf/open/floor/plasteel{
+ icon_state = "vault";
+ dir = 1
+ },
+/area/engine/gravity_generator)
+"bQX" = (
+/turf/open/floor/plasteel{
+ icon_state = "vault";
+ dir = 8
+ },
+/area/engine/gravity_generator)
+"bQY" = (
+/turf/open/floor/plasteel{
+ icon_state = "vault";
+ dir = 4
+ },
+/area/engine/gravity_generator)
+"bQZ" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bRa" = (
+/turf/closed/wall/r_wall,
+/area/tcommsat/chamber)
+"bRb" = (
+/turf/closed/wall/r_wall,
+/area/tcommsat/computer)
+"bRc" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel/caution,
+/area/hallway/primary/starboard)
+"bRd" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel/caution/corner{
+ tag = "icon-cautioncorner (WEST)";
+ icon_state = "cautioncorner";
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bRe" = (
+/obj/structure/grille,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "robotics";
+ name = "robotics lab shutters"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/assembly/robotics)
+"bRf" = (
+/obj/structure/table,
+/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/weapon/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/device/healthanalyzer,
+/obj/item/device/healthanalyzer,
+/obj/item/device/healthanalyzer,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"bRg" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"bRh" = (
+/obj/machinery/mecha_part_fabricator,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"bRi" = (
+/obj/effect/landmark/start{
+ name = "Roboticist"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"bRj" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"bRk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"bRl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/closet/wardrobe/black,
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (EAST)";
+ icon_state = "whitepurple";
+ dir = 4
+ },
+/area/assembly/robotics)
+"bRm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/assembly/robotics)
+"bRn" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (WEST)";
+ icon_state = "whitepurple";
+ dir = 8
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bRo" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (NORTH)";
+ icon_state = "whitepurple";
+ dir = 1
+ },
+/area/toxins/mixing)
+"bRp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (NORTH)";
+ icon_state = "whitepurple";
+ dir = 1
+ },
+/area/toxins/mixing)
+"bRq" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bRr" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bRs" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/toxins/test_area)
+"bRt" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating/airless,
+/area/toxins/test_area)
+"bRu" = (
+/obj/item/clothing/glasses/red,
+/obj/item/clothing/head/beret,
+/obj/item/clothing/shoes/sneakers/red,
+/obj/item/clothing/under/color/red,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"bRv" = (
+/obj/structure/closet/l3closet/security,
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bRw" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bRx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/structure/closet/secure_closet/security,
+/obj/item/weapon/storage/belt/security/full,
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bRy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/obj/machinery/flasher{
+ id = "Cell 1";
+ pixel_x = -28
+ },
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/orange,
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bRz" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 1";
+ name = "Cell 1 Locker"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bRA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/obj/machinery/flasher{
+ id = "Cell 2";
+ pixel_x = -28
+ },
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/orange,
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bRB" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 2";
+ name = "Cell 2 Locker"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bRC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/obj/machinery/flasher{
+ id = "Cell 3";
+ pixel_x = -28
+ },
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/orange,
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bRD" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 3";
+ name = "Cell 3 Locker"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig{
+ name = "Security"
+ })
+"bRE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/security/brig{
+ name = "Security"
+ })
+"bRF" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bRG" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bRH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bRI" = (
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/hallway/secondary/entry)
+"bRJ" = (
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/hallway/secondary/entry)
+"bRK" = (
+/obj/machinery/vending/coffee,
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/hallway/secondary/entry)
+"bRL" = (
+/obj/machinery/vending/cola,
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/hallway/secondary/entry)
+"bRM" = (
+/obj/machinery/vending/snack,
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/hallway/secondary/entry)
+"bRN" = (
+/obj/machinery/vending/cigarette,
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/hallway/secondary/entry)
+"bRO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bRP" = (
+/obj/structure/table,
+/obj/item/weapon/storage/briefcase,
+/obj/item/weapon/pen/red,
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bRQ" = (
+/turf/open/floor/circuit{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bRR" = (
+/obj/machinery/telecomms/server/presets/engineering,
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bRS" = (
+/obj/machinery/telecomms/bus/preset_four,
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bRT" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 1;
+ name = "Telecoms Server APC";
+ pixel_x = 0;
+ pixel_y = 25
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/circuit{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bRU" = (
+/obj/machinery/telecomms/processor/preset_three,
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bRV" = (
+/obj/machinery/telecomms/server/presets/security,
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bRW" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/plating,
+/area/tcommsat/computer)
+"bRX" = (
+/obj/structure/table,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 9
+ },
+/area/tcommsat/computer)
+"bRY" = (
+/obj/item/device/radio/intercom{
+ dir = 8;
+ freerange = 1;
+ name = "Station Intercom (Telecoms)";
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bRZ" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/announcement_system,
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bSa" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/caution{
+ tag = "icon-caution (WEST)";
+ icon_state = "caution";
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bSb" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/table,
+/obj/item/device/assembly/flash,
+/obj/item/device/assembly/flash,
+/obj/item/device/assembly/flash,
+/obj/item/device/assembly/flash,
+/obj/item/device/assembly/flash,
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = 4;
+ pixel_y = 1
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = 4;
+ pixel_y = 1
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = 4;
+ pixel_y = 1
+ },
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"bSc" = (
+/turf/open/floor/plasteel/bot,
+/area/assembly/robotics)
+"bSd" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"bSe" = (
+/obj/machinery/vending/robotics,
+/turf/open/floor/plasteel/whitepurple/corner{
+ tag = "icon-whitepurplecorner (EAST)";
+ icon_state = "whitepurplecorner";
+ dir = 4
+ },
+/area/assembly/robotics)
+"bSf" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (WEST)";
+ icon_state = "whitepurple";
+ dir = 8
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bSg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (EAST)";
+ icon_state = "whitepurple";
+ dir = 4
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bSh" = (
+/obj/structure/lattice,
+/turf/open/space,
+/area/toxins/mixing)
+"bSi" = (
+/obj/machinery/door/poddoor{
+ id = "mixvent";
+ name = "Mixer Room Vent"
+ },
+/turf/open/floor/engine/vacuum,
+/area/toxins/mixing)
+"bSj" = (
+/turf/open/floor/engine/vacuum,
+/area/toxins/mixing)
+"bSk" = (
+/obj/machinery/sparker{
+ dir = 2;
+ id = "mixingsparker";
+ pixel_x = 25
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 0;
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/engine/vacuum,
+/area/toxins/mixing)
+"bSl" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/toxins/mixing)
+"bSm" = (
+/obj/machinery/airlock_sensor{
+ id_tag = "tox_airlock_sensor";
+ master_tag = "tox_airlock_control";
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/engine,
+/area/toxins/mixing)
+"bSn" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/machinery/embedded_controller/radio/airlock_controller{
+ airpump_tag = "tox_airlock_pump";
+ exterior_door_tag = "tox_airlock_exterior";
+ id_tag = "tox_airlock_control";
+ interior_door_tag = "tox_airlock_interior";
+ pixel_x = -24;
+ pixel_y = 0;
+ sanitize_external = 1;
+ sensor_tag = "tox_airlock_sensor"
+ },
+/turf/open/floor/engine,
+/area/toxins/mixing)
+"bSo" = (
+/obj/machinery/atmospherics/components/binary/valve{
+ dir = 4;
+ name = "mix to port"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/engine,
+/area/toxins/mixing)
+"bSp" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/toxins/mixing)
+"bSq" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/scrubber,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bSr" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/cable,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/security/armory)
+"bSs" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ tag = "icon-0-8";
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/armory)
+"bSt" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ tag = "icon-0-8";
+ icon_state = "0-8"
+ },
+/obj/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/plating,
+/area/security/armory)
+"bSu" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/brig{
+ name = "Security"
+ })
+"bSv" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bSw" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bSx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bSy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/hallway/secondary/entry)
+"bSz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/table/wood,
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/hallway/secondary/entry)
+"bSA" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/open/floor/carpet,
+/area/hallway/secondary/entry)
+"bSB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/chair/comfy/beige,
+/obj/effect/landmark/start{
+ name = "Assistant"
+ },
+/turf/open/floor/carpet,
+/area/hallway/secondary/entry)
+"bSC" = (
+/obj/structure/chair/comfy/beige,
+/obj/effect/landmark/start{
+ name = "Assistant"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/open/floor/carpet,
+/area/hallway/secondary/entry)
+"bSD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/hallway/secondary/entry)
+"bSE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/machinery/door/airlock/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bSF" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bSG" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bSH" = (
+/obj/machinery/power/apc{
+ cell_type = 2500;
+ dir = 4;
+ name = "Central Maintenance APC";
+ pixel_x = 26;
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bSI" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/closed/wall/r_wall,
+/area/engine/gravity_generator)
+"bSJ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/gravity_generator)
+"bSK" = (
+/obj/machinery/gravity_generator/main/station,
+/turf/open/floor/plasteel{
+ icon_state = "vault";
+ dir = 8
+ },
+/area/engine/gravity_generator)
+"bSL" = (
+/obj/machinery/camera{
+ c_tag = "Gravity Generator Room";
+ dir = 8;
+ network = list("SS13");
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/gravity_generator)
+"bSM" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/gravity_generator)
+"bSN" = (
+/obj/machinery/telecomms/server/presets/common,
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bSO" = (
+/obj/machinery/telecomms/processor/preset_four,
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bSP" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/circuit{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bSQ" = (
+/obj/machinery/telecomms/bus/preset_three,
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bSR" = (
+/obj/machinery/telecomms/server/presets/command,
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bSS" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/tcommsat/computer)
+"bST" = (
+/obj/machinery/computer/message_monitor,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/tcommsat/computer)
+"bSU" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bSV" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bSW" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bSX" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Robotics Lab APC";
+ pixel_x = -25
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"bSY" = (
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"bSZ" = (
+/obj/item/device/radio/intercom{
+ desc = "Talk smack through this.";
+ dir = 4;
+ pixel_x = 28;
+ syndie = 1
+ },
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"bTa" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"bTb" = (
+/obj/structure/table,
+/obj/item/device/mmi,
+/obj/item/device/mmi,
+/obj/item/device/mmi,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"bTc" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/engine/vacuum,
+/area/toxins/mixing)
+"bTd" = (
+/obj/machinery/door/airlock/glass_research{
+ autoclose = 0;
+ frequency = 1449;
+ glass = 1;
+ heat_proof = 1;
+ icon_state = "door_locked";
+ id_tag = "tox_airlock_exterior";
+ locked = 1;
+ name = "Mixing Room Exterior Airlock";
+ req_access_txt = "8"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/engine,
+/area/toxins/mixing)
+"bTe" = (
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{
+ dir = 2;
+ frequency = 1449;
+ id = "tox_airlock_pump"
+ },
+/turf/open/floor/engine,
+/area/toxins/mixing)
+"bTf" = (
+/obj/machinery/door/airlock/glass_research{
+ autoclose = 0;
+ frequency = 1449;
+ glass = 1;
+ heat_proof = 1;
+ icon_state = "door_locked";
+ id_tag = "tox_airlock_interior";
+ locked = 1;
+ name = "Mixing Room Interior Airlock";
+ req_access_txt = "8"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/engine,
+/area/toxins/mixing)
+"bTg" = (
+/turf/open/floor/engine,
+/area/toxins/mixing)
+"bTh" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/engine,
+/area/toxins/mixing)
+"bTi" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/machinery/camera{
+ c_tag = "Toxins Lab East";
+ dir = 8;
+ network = list("SS13","RD");
+ pixel_y = -22
+ },
+/turf/open/floor/engine,
+/area/toxins/mixing)
+"bTj" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"bTk" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"bTl" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"bTm" = (
+/turf/closed/mineral/random/labormineral,
+/area/hallway/secondary/entry)
+"bTn" = (
+/turf/closed/wall,
+/area/hallway/secondary/entry)
+"bTo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bTp" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bTq" = (
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bTr" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/grass,
+/area/hallway/secondary/entry)
+"bTs" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp/green,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/hallway/secondary/entry)
+"bTt" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/carpet,
+/area/hallway/secondary/entry)
+"bTu" = (
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/hallway/secondary/entry)
+"bTv" = (
+/obj/structure/table/wood,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/carpet,
+/area/hallway/secondary/entry)
+"bTw" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/hallway/secondary/entry)
+"bTx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bTy" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/gravity_generator)
+"bTz" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/gravity_generator)
+"bTA" = (
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bTB" = (
+/obj/machinery/blackbox_recorder,
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bTC" = (
+/obj/machinery/telecomms/broadcaster/preset_right,
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bTD" = (
+/obj/machinery/telecomms/receiver/preset_right,
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bTE" = (
+/obj/machinery/computer/telecomms/server{
+ network = "tcommsat"
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 10
+ },
+/area/tcommsat/computer)
+"bTF" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bTG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bTH" = (
+/obj/structure/table,
+/obj/item/weapon/folder/blue,
+/obj/item/weapon/pen/blue,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bTI" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel/purple/side{
+ tag = "icon-purple (EAST)";
+ icon_state = "purple";
+ dir = 4
+ },
+/area/hallway/primary/starboard)
+"bTJ" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"bTK" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/bin,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"bTL" = (
+/obj/machinery/r_n_d/circuit_imprinter,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"bTM" = (
+/obj/machinery/computer/rdconsole/robotics,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"bTN" = (
+/obj/structure/table,
+/obj/item/weapon/retractor,
+/obj/item/weapon/hemostat,
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"bTO" = (
+/obj/effect/landmark/start{
+ name = "Roboticist"
+ },
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"bTP" = (
+/obj/structure/table,
+/obj/item/clothing/gloves/color/latex,
+/obj/item/weapon/surgical_drapes,
+/obj/item/weapon/razor,
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"bTQ" = (
+/obj/machinery/sparker{
+ dir = 2;
+ id = "mixingsparker";
+ pixel_x = 25
+ },
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 4;
+ frequency = 1441;
+ id = "air_in"
+ },
+/turf/open/floor/engine/vacuum,
+/area/toxins/mixing)
+"bTR" = (
+/obj/structure/sign/fire{
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/engine,
+/area/toxins/mixing)
+"bTS" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/machinery/button/door{
+ id = "mixvent";
+ name = "Mixing Room Vent Control";
+ pixel_x = -25;
+ pixel_y = 5;
+ req_access_txt = "7"
+ },
+/obj/machinery/button/ignition{
+ id = "mixingsparker";
+ pixel_x = -25;
+ pixel_y = -5
+ },
+/turf/open/floor/engine,
+/area/toxins/mixing)
+"bTT" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/components/binary/valve{
+ dir = 4;
+ name = "port to mix"
+ },
+/turf/open/floor/engine,
+/area/toxins/mixing)
+"bTU" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bTV" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/weapon/storage/box/disks,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bTW" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plating/airless,
+/area/toxins/test_area)
+"bTX" = (
+/turf/closed/wall,
+/area/ruin/unpowered{
+ name = "Asteroid"
+ })
+"bTY" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"bTZ" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bUa" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bUb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bUc" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bUd" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bUe" = (
+/obj/structure/table/wood,
+/obj/effect/holodeck_effect/cards,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -28
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/hallway/secondary/entry)
+"bUf" = (
+/turf/open/floor/carpet,
+/area/hallway/secondary/entry)
+"bUg" = (
+/obj/structure/chair/comfy/beige{
+ dir = 1;
+ icon_state = "comfychair"
+ },
+/obj/effect/landmark/start{
+ name = "Assistant"
+ },
+/turf/open/floor/carpet,
+/area/hallway/secondary/entry)
+"bUh" = (
+/obj/structure/chair/comfy/beige{
+ dir = 1;
+ icon_state = "comfychair"
+ },
+/obj/effect/landmark/start{
+ name = "Assistant"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/carpet,
+/area/hallway/secondary/entry)
+"bUi" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/hallway/secondary/entry)
+"bUj" = (
+/obj/structure/grille,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/engine/gravity_generator)
+"bUk" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/engine/gravity_generator)
+"bUl" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Gravity Generator";
+ req_access_txt = "11";
+ req_one_access_txt = "0"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/gravity_generator)
+"bUm" = (
+/obj/structure/grille,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'RADIOACTIVE AREA'";
+ icon_state = "radiation";
+ name = "RADIOACTIVE AREA";
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/engine/gravity_generator)
+"bUn" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/circuit{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bUo" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/circuit{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bUp" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/circuit{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bUq" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/plating,
+/area/tcommsat/chamber)
+"bUr" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/grille,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/tcommsat/computer)
+"bUs" = (
+/obj/machinery/status_display,
+/turf/closed/wall,
+/area/tcommsat/computer)
+"bUt" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/tcommsat/computer)
+"bUu" = (
+/obj/machinery/door/airlock/glass_command{
+ name = "Control Room";
+ req_access_txt = "19; 61"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bUv" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/tcommsat/computer)
+"bUw" = (
+/turf/closed/wall/r_wall,
+/area/assembly/chargebay)
+"bUx" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/research{
+ name = "Mech Bay";
+ req_access_txt = "29";
+ req_one_access_txt = "0"
+ },
+/turf/open/floor/plasteel/white,
+/area/assembly/chargebay)
+"bUy" = (
+/turf/closed/wall,
+/area/assembly/chargebay)
+"bUz" = (
+/obj/structure/table,
+/obj/item/weapon/circular_saw,
+/obj/item/weapon/scalpel{
+ pixel_y = 12
+ },
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"bUA" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (WEST)";
+ icon_state = "whitepurple";
+ dir = 8
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bUB" = (
+/obj/structure/table,
+/obj/item/weapon/rack_parts,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bUC" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/weapon/storage/box/lights,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bUD" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bUE" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bUF" = (
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bUG" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTH)";
+ icon_state = "camera";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bUH" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bUI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bUJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bUK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/hallway/secondary/entry)
+"bUL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/hallway/secondary/entry)
+"bUM" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/hallway/secondary/entry)
+"bUN" = (
+/turf/closed/wall/r_wall,
+/area/ai_monitored/nuke_storage)
+"bUO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/nuke_storage)
+"bUP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/nuke_storage)
+"bUQ" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/turf_decal/stripes{
+ tag = "icon-warningline (NORTH)";
+ icon_state = "warningline";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"bUR" = (
+/obj/effect/turf_decal/stripes{
+ tag = "icon-warningline (NORTH)";
+ icon_state = "warningline";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"bUS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes{
+ tag = "icon-warningline (NORTH)";
+ icon_state = "warningline";
+ dir = 1
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"bUT" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/machinery/ntnet_relay,
+/turf/open/floor/circuit{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bUU" = (
+/obj/machinery/power/smes{
+ charge = 5e+006
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/circuit{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bUV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/circuit{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bUW" = (
+/obj/machinery/telecomms/hub/preset,
+/turf/open/floor/plasteel/vault{
+ dir = 8;
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bUX" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/circuit{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bUY" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/circuit{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bUZ" = (
+/obj/machinery/door/airlock/glass_engineering{
+ cyclelinkeddir = 4;
+ name = "Server Room";
+ req_access_txt = "61"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/tcommsat/chamber)
+"bVa" = (
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/tcommsat/entrance)
+"bVb" = (
+/obj/machinery/door/airlock/glass_engineering{
+ cyclelinkeddir = 8;
+ name = "Server Room";
+ req_access_txt = "61"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/tcommsat/entrance)
+"bVc" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/entrance)
+"bVd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/tcommsat/entrance)
+"bVe" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/camera{
+ c_tag = "Telecoms Monitoring";
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/tcommsat/entrance)
+"bVf" = (
+/turf/closed/wall/r_wall,
+/area/tcommsat/entrance)
+"bVg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/button/door{
+ dir = 2;
+ id = "Skynet_launch";
+ name = "Mech Bay Door Control";
+ pixel_x = 24;
+ pixel_y = 0;
+ req_access_txt = "29"
+ },
+/turf/open/floor/plasteel/purple/corner{
+ tag = "icon-purplecorner (EAST)";
+ icon_state = "purplecorner";
+ dir = 4
+ },
+/area/hallway/primary/starboard)
+"bVh" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/obj/machinery/button/door{
+ dir = 2;
+ id = "Skynet_launch";
+ name = "Mech Bay Door Control";
+ pixel_x = -24;
+ pixel_y = 0;
+ req_access_txt = "29"
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"bVi" = (
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/turf/open/floor/circuit,
+/area/assembly/chargebay)
+"bVj" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/open/floor/circuit,
+/area/assembly/chargebay)
+"bVk" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Mech Bay APC";
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/turf/open/floor/circuit,
+/area/assembly/chargebay)
+"bVl" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"bVm" = (
+/obj/structure/table/optable{
+ name = "Robotics Operating Table"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"bVn" = (
+/obj/machinery/computer/operating{
+ name = "Robotics Operating Computer"
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"bVo" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (WEST)";
+ icon_state = "whitepurple";
+ dir = 8
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bVp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (EAST)";
+ icon_state = "whitepurple";
+ dir = 4
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bVq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/toxins/misc_lab)
+"bVr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50;
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"bVs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/obj/structure/table,
+/obj/item/stack/sheet/mineral/plasma,
+/obj/item/stack/sheet/mineral/plasma,
+/obj/item/stack/sheet/mineral/plasma,
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"bVt" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"bVu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/item/device/taperecorder,
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"bVv" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/toxins/misc_lab)
+"bVw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/toxins/misc_lab)
+"bVx" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/engine,
+/area/toxins/misc_lab)
+"bVy" = (
+/turf/open/floor/engine,
+/area/toxins/misc_lab)
+"bVz" = (
+/turf/closed/wall/r_wall,
+/area/toxins/misc_lab)
+"bVA" = (
+/obj/structure/table,
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = 0;
+ pixel_y = 2
+ },
+/obj/item/device/assembly/signaler{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bVB" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"bVC" = (
+/obj/machinery/door/airlock/external{
+ name = "Arrivals Docking Bay 1"
+ },
+/turf/open/floor/noslip,
+/area/hallway/secondary/entry)
+"bVD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bVE" = (
+/turf/closed/wall,
+/area/storage/eva)
+"bVF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/storage/eva)
+"bVG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/storage/eva)
+"bVH" = (
+/obj/machinery/computer/bank_machine,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/nuke_storage)
+"bVI" = (
+/obj/machinery/light_switch{
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/circuit,
+/area/ai_monitored/nuke_storage)
+"bVJ" = (
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/nuke_storage)
+"bVK" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Vault APC";
+ pixel_x = 0;
+ pixel_y = 25
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/circuit,
+/area/ai_monitored/nuke_storage)
+"bVL" = (
+/obj/structure/filingcabinet,
+/obj/item/weapon/folder/documents,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/nuke_storage)
+"bVM" = (
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Gravity Generator APC";
+ pixel_x = -25;
+ pixel_y = 1
+ },
+/obj/structure/table,
+/obj/item/weapon/paper/gravity_gen{
+ layer = 3
+ },
+/obj/item/weapon/pen/blue,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -35
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"bVN" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"bVO" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable,
+/obj/machinery/power/smes{
+ charge = 5e+006
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"bVP" = (
+/obj/machinery/camera{
+ c_tag = "Telecoms Server Room";
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bVQ" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/tcommsat/chamber)
+"bVR" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/tcommsat/entrance)
+"bVS" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'SERVER ROOM'.";
+ name = "SERVER ROOM";
+ pixel_y = 0
+ },
+/turf/closed/wall,
+/area/tcommsat/entrance)
+"bVT" = (
+/turf/open/floor/plasteel,
+/area/tcommsat/entrance)
+"bVU" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/tcommsat/entrance)
+"bVV" = (
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Telecoms Admin";
+ departmentType = 5;
+ name = "Telecoms RC";
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/tcommsat/entrance)
+"bVW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/loadingarea{
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bVX" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters{
+ id = "Skynet_launch";
+ name = "mech bay"
+ },
+/turf/open/floor/plasteel/delivery,
+/area/assembly/chargebay)
+"bVY" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"bVZ" = (
+/obj/machinery/mech_bay_recharge_port,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/assembly/chargebay)
+"bWa" = (
+/turf/open/floor/mech_bay_recharge_floor,
+/area/assembly/chargebay)
+"bWb" = (
+/obj/machinery/computer/mech_bay_power_console,
+/obj/structure/cable,
+/turf/open/floor/circuit,
+/area/assembly/chargebay)
+"bWc" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ tag = "icon-whitepurple (WEST)";
+ icon_state = "whitepurple";
+ dir = 8
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bWd" = (
+/turf/closed/wall,
+/area/toxins/misc_lab)
+"bWe" = (
+/obj/structure/table,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHEAST)";
+ icon_state = "camera";
+ dir = 5
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"bWf" = (
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"bWg" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"bWh" = (
+/obj/structure/table,
+/obj/item/device/plant_analyzer,
+/obj/item/device/gps/science,
+/obj/item/weapon/storage/belt,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bWi" = (
+/turf/open/floor/noslip,
+/area/hallway/secondary/entry)
+"bWj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j1";
+ tag = "icon-pipe-j1 (EAST)"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bWk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bWl" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "EVA Storage APC";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/tank_dispenser/oxygen,
+/turf/open/floor/plasteel,
+/area/storage/eva)
+"bWm" = (
+/turf/open/floor/plasteel,
+/area/storage/eva)
+"bWn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/structure/closet/crate/rcd,
+/obj/machinery/camera/motion{
+ c_tag = "EVA Motion Sensor";
+ name = "motion-sensitive security camera"
+ },
+/turf/open/floor/plasteel,
+/area/storage/eva)
+"bWo" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/ai_monitored/nuke_storage)
+"bWp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/nuke_storage)
+"bWq" = (
+/obj/machinery/nuclearbomb/selfdestruct,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/nuke_storage)
+"bWr" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/nuke_storage)
+"bWs" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/ai_monitored/nuke_storage)
+"bWt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/engine/gravity_generator)
+"bWu" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/closed/wall/r_wall,
+/area/engine/gravity_generator)
+"bWv" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"bWw" = (
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"bWx" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"bWy" = (
+/obj/machinery/power/terminal{
+ icon_state = "term";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/closed/wall/r_wall,
+/area/engine/gravity_generator)
+"bWz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/closed/wall/r_wall,
+/area/engine/gravity_generator)
+"bWA" = (
+/obj/machinery/message_server,
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bWB" = (
+/obj/machinery/telecomms/broadcaster/preset_left,
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bWC" = (
+/obj/machinery/telecomms/receiver/preset_left,
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bWD" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/tcommsat/entrance)
+"bWE" = (
+/obj/structure/table,
+/obj/item/device/multitool,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 9
+ },
+/area/tcommsat/entrance)
+"bWF" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/entrance)
+"bWG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/tcommsat/entrance)
+"bWH" = (
+/obj/machinery/light_switch{
+ pixel_x = 27
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel,
+/area/tcommsat/entrance)
+"bWI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/tcommsat/entrance)
+"bWJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHEAST)";
+ icon_state = "camera";
+ dir = 5
+ },
+/turf/open/floor/plasteel/caution{
+ tag = "icon-caution (WEST)";
+ icon_state = "caution";
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bWK" = (
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/plasteel/loadingarea{
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bWL" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters{
+ id = "Skynet_launch";
+ name = "mech bay"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/delivery,
+/area/assembly/chargebay)
+"bWM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"bWN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/cable{
+ icon_state = "2-4";
+ tag = "icon-2-8"
+ },
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"bWO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Roboticist"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"bWP" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (SOUTHEAST)";
+ icon_state = "camera";
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"bWQ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ name = "regular air vent";
+ on = 1
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/white,
+/area/assembly/chargebay)
+"bWR" = (
+/obj/structure/closet/wardrobe/robotics_black,
+/turf/open/floor/plasteel/white,
+/area/assembly/chargebay)
+"bWS" = (
+/obj/machinery/recharge_station,
+/turf/open/floor/plasteel/bot,
+/area/assembly/chargebay)
+"bWT" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/research{
+ name = "Testing Lab";
+ req_access_txt = "47"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/misc_lab)
+"bWU" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"bWV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"bWW" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"bWX" = (
+/obj/machinery/door/airlock/glass_research{
+ name = "Test Chamber";
+ req_access_txt = "47"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/toxins/misc_lab)
+"bWY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/toxins/misc_lab)
+"bWZ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/engine,
+/area/toxins/misc_lab)
+"bXa" = (
+/obj/item/device/radio/beacon,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/engine,
+/area/toxins/misc_lab)
+"bXb" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/engine,
+/area/toxins/misc_lab)
+"bXc" = (
+/obj/effect/spawner/lootdrop/crate_spawner,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bXd" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/turf/open/floor/plasteel,
+/area/storage/eva)
+"bXe" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/clothing/shoes/magboots,
+/turf/open/floor/plasteel,
+/area/storage/eva)
+"bXf" = (
+/obj/structure/closet/crate{
+ name = "Gold Crate"
+ },
+/obj/item/stack/sheet/mineral/gold{
+ pixel_x = -1;
+ pixel_y = 5
+ },
+/obj/item/stack/sheet/mineral/gold{
+ pixel_y = 2
+ },
+/obj/item/stack/sheet/mineral/gold{
+ pixel_x = 1;
+ pixel_y = -2
+ },
+/obj/item/weapon/storage/belt/champion,
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/ai_monitored/nuke_storage)
+"bXg" = (
+/turf/open/floor/circuit,
+/area/ai_monitored/nuke_storage)
+"bXh" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/nuke_storage)
+"bXi" = (
+/obj/item/weapon/coin/silver{
+ pixel_x = 7;
+ pixel_y = 12
+ },
+/obj/item/weapon/coin/silver{
+ pixel_x = 12;
+ pixel_y = 7
+ },
+/obj/item/weapon/coin/silver{
+ pixel_x = 4;
+ pixel_y = 8
+ },
+/obj/item/weapon/coin/silver{
+ pixel_x = -6;
+ pixel_y = 5
+ },
+/obj/item/weapon/coin/silver{
+ pixel_x = 5;
+ pixel_y = -8
+ },
+/obj/structure/closet/crate{
+ name = "Silver Crate"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/ai_monitored/nuke_storage)
+"bXj" = (
+/obj/structure/closet/radiation,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/gravity_generator)
+"bXk" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTH)";
+ icon_state = "camera";
+ dir = 1
+ },
+/obj/structure/closet/radiation,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/gravity_generator)
+"bXl" = (
+/obj/machinery/telecomms/server/presets/supply,
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bXm" = (
+/obj/machinery/telecomms/bus/preset_two,
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bXn" = (
+/obj/machinery/telecomms/processor/preset_one,
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bXo" = (
+/obj/machinery/telecomms/server/presets/medical,
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bXp" = (
+/obj/machinery/computer/telecomms/monitor{
+ network = "tcommsat"
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/tcommsat/entrance)
+"bXq" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/entrance)
+"bXr" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/tcommsat/entrance)
+"bXs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/entrance)
+"bXt" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Telecommunications";
+ req_access_txt = "61"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/entrance)
+"bXu" = (
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
+/turf/open/floor/plasteel/caution{
+ tag = "icon-caution (WEST)";
+ icon_state = "caution";
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bXv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/corner,
+/area/hallway/primary/starboard)
+"bXw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/assembly/chargebay)
+"bXx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"bXy" = (
+/obj/machinery/mech_bay_recharge_port,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/assembly/chargebay)
+"bXz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/mech_bay_recharge_floor,
+/area/assembly/chargebay)
+"bXA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/machinery/computer/mech_bay_power_console,
+/obj/structure/cable,
+/turf/open/floor/circuit,
+/area/assembly/chargebay)
+"bXB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"bXC" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/assembly/chargebay)
+"bXD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "delivery"
+ },
+/area/assembly/chargebay)
+"bXE" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/research{
+ name = "Mech Bay";
+ req_access_txt = "29";
+ req_one_access_txt = "0"
+ },
+/turf/open/floor/plasteel/white,
+/area/assembly/chargebay)
+"bXF" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whitepurple/corner{
+ dir = 1
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bXG" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel/whitepurple/corner{
+ tag = "icon-whitepurplecorner (EAST)";
+ icon_state = "whitepurplecorner";
+ dir = 4
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bXH" = (
+/obj/machinery/atmospherics/components/unary/portables_connector{
+ tag = "icon-connector_map (EAST)";
+ icon_state = "connector_map";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"bXI" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"bXJ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"bXK" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/toxins/misc_lab)
+"bXL" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bXM" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/escape)
+"bXN" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/escape)
+"bXO" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/arrival)
+"bXP" = (
+/obj/machinery/door/airlock/shuttle{
+ name = "Arrivals Shuttle Airlock"
+ },
+/turf/open/floor/plasteel/shuttle,
+/area/shuttle/arrival)
+"bXQ" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/arrival)
+"bXR" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/storage/eva)
+"bXS" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/turf/open/floor/plasteel,
+/area/storage/eva)
+"bXT" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/clothing/shoes/magboots,
+/turf/open/floor/plasteel,
+/area/storage/eva)
+"bXU" = (
+/obj/machinery/camera/motion{
+ c_tag = "Vault";
+ dir = 1;
+ network = list("MiniSat")
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/ai_monitored/nuke_storage)
+"bXV" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/vault{
+ dir = 6
+ },
+/area/ai_monitored/nuke_storage)
+"bXW" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/vault,
+/area/ai_monitored/nuke_storage)
+"bXX" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/vault{
+ dir = 10
+ },
+/area/ai_monitored/nuke_storage)
+"bXY" = (
+/obj/structure/safe,
+/obj/item/clothing/head/bearpelt,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
+/obj/item/weapon/gun/ballistic/revolver/russian,
+/obj/item/ammo_box/a357,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/ai_monitored/nuke_storage)
+"bXZ" = (
+/obj/machinery/door/airlock/highsecurity{
+ name = "Gravity Generator Room";
+ req_access_txt = "19;23"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/gravity_generator)
+"bYa" = (
+/obj/machinery/telecomms/server/presets/service,
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bYb" = (
+/obj/machinery/telecomms/processor/preset_two,
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bYc" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_y = -32
+ },
+/obj/machinery/light,
+/turf/open/floor/circuit{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bYd" = (
+/obj/machinery/telecomms/bus/preset_one,
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bYe" = (
+/obj/machinery/telecomms/server/presets/science,
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/chamber)
+"bYf" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/grille,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/tcommsat/entrance)
+"bYg" = (
+/obj/structure/table,
+/obj/item/device/radio/off,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 10
+ },
+/area/tcommsat/entrance)
+"bYh" = (
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -35
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/tcommsat/entrance)
+"bYi" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/machinery/light,
+/obj/structure/filingcabinet/chestdrawer,
+/turf/open/floor/plasteel,
+/area/tcommsat/entrance)
+"bYj" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/entrance)
+"bYk" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/research{
+ name = "Mech Bay";
+ req_access_txt = "29";
+ req_one_access_txt = "0"
+ },
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"bYl" = (
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"bYm" = (
+/turf/open/floor/circuit,
+/area/assembly/chargebay)
+"bYn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/circuit,
+/area/assembly/chargebay)
+"bYo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"bYp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/white,
+/area/assembly/chargebay)
+"bYq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/droneDispenser,
+/turf/open/floor/plasteel/white,
+/area/assembly/chargebay)
+"bYr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/recharge_station,
+/turf/open/floor/plasteel/bot,
+/area/assembly/chargebay)
+"bYs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/assembly/chargebay)
+"bYt" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "Biohazard";
+ name = "biohazard containment door"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bYu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/poddoor/preopen{
+ id = "Biohazard";
+ name = "biohazard containment door"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bYv" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/toxins/misc_lab)
+"bYw" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/obj/machinery/meter,
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"bYx" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"bYy" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Testing Lab APC";
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/obj/structure/cable{
+ tag = "icon-0-8";
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"bYz" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/toxins/misc_lab)
+"bYA" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/toxins/misc_lab)
+"bYB" = (
+/obj/machinery/portable_atmospherics/canister,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bYC" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/pump,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bYD" = (
+/turf/open/floor/mineral/titanium,
+/turf/closed/wall/mineral/titanium/interior,
+/area/shuttle/escape)
+"bYE" = (
+/obj/structure/table,
+/obj/machinery/recharger,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"bYF" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"bYG" = (
+/obj/machinery/computer/emergency_shuttle,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"bYH" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/weapon/crowbar,
+/obj/item/weapon/storage/firstaid/fire,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"bYI" = (
+/obj/structure/shuttle/engine/propulsion{
+ tag = "icon-propulsion_l (EAST)";
+ icon_state = "propulsion_l";
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/arrival)
+"bYJ" = (
+/obj/structure/shuttle/engine/heater{
+ icon_state = "heater";
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/arrival)
+"bYK" = (
+/turf/open/floor/plasteel/shuttle,
+/area/shuttle/arrival)
+"bYL" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/shuttle,
+/area/shuttle/arrival)
+"bYM" = (
+/obj/structure/closet/wardrobe/black,
+/turf/open/floor/plasteel/shuttle,
+/area/shuttle/arrival)
+"bYN" = (
+/obj/structure/closet/wardrobe/grey,
+/turf/open/floor/plasteel/shuttle,
+/area/shuttle/arrival)
+"bYO" = (
+/obj/structure/closet/wardrobe/mixed,
+/turf/open/floor/plasteel/shuttle,
+/area/shuttle/arrival)
+"bYP" = (
+/obj/structure/closet/wardrobe/white,
+/turf/open/floor/plasteel/shuttle,
+/area/shuttle/arrival)
+"bYQ" = (
+/turf/closed/wall/mineral/titanium/interior,
+/area/shuttle/arrival)
+"bYR" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/storage/eva)
+"bYS" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/storage/eva)
+"bYT" = (
+/obj/structure/sign/securearea,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/nuke_storage)
+"bYU" = (
+/obj/machinery/door/airlock/vault{
+ icon_state = "door_locked";
+ locked = 1;
+ req_access_txt = "53"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/yellow,
+/area/ai_monitored/nuke_storage)
+"bYV" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/hallway/primary/aft)
+"bYW" = (
+/turf/open/floor/plasteel/stairs,
+/area/hallway/primary/aft)
+"bYX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/airlock/glass{
+ name = "Starboard Primary Hallway"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "Biohazard";
+ name = "biohazard containment door"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/caution{
+ tag = "icon-caution (WEST)";
+ icon_state = "caution";
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bYY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Starboard Primary Hallway"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "Biohazard";
+ name = "biohazard containment door"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bYZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/glass{
+ name = "Starboard Primary Hallway"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "Biohazard";
+ name = "biohazard containment door"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/purple/side{
+ tag = "icon-purple (EAST)";
+ icon_state = "purple";
+ dir = 4
+ },
+/area/hallway/primary/starboard)
+"bZa" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/assembly/chargebay)
+"bZb" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/airlock/research{
+ name = "Research Division";
+ req_access_txt = "0";
+ req_one_access_txt = "47"
+ },
+/turf/open/floor/plasteel/whitepurple,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bZc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/research{
+ name = "Research Division";
+ req_access_txt = "0";
+ req_one_access_txt = "47"
+ },
+/turf/open/floor/plasteel/whitepurple,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bZd" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/engine,
+/area/toxins/misc_lab)
+"bZe" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bZf" = (
+/obj/machinery/computer/atmos_alert,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"bZg" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"bZh" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"bZi" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"bZj" = (
+/obj/machinery/computer/security,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"bZk" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "propulsion";
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/arrival)
+"bZl" = (
+/obj/effect/landmark/latejoin,
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel/shuttle,
+/area/shuttle/arrival)
+"bZm" = (
+/obj/machinery/door/airlock/shuttle{
+ name = "bridge"
+ },
+/turf/open/floor/plasteel/shuttle{
+ icon_state = "shuttlefloor3"
+ },
+/area/shuttle/arrival)
+"bZn" = (
+/turf/open/floor/plasteel/shuttle{
+ icon_state = "shuttlefloor3"
+ },
+/area/shuttle/arrival)
+"bZo" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/storage/eva)
+"bZp" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/storage/eva)
+"bZq" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/hallway/primary/aft)
+"bZr" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/stairs,
+/area/hallway/primary/aft)
+"bZs" = (
+/turf/open/floor/plasteel/yellow,
+/area/hallway/primary/aft)
+"bZt" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bZu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/caution{
+ tag = "icon-caution (WEST)";
+ icon_state = "caution";
+ dir = 8
+ },
+/area/hallway/secondary/exit)
+"bZv" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"bZw" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=CHE";
+ location = "AIE"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/purple/corner{
+ tag = "icon-purplecorner (EAST)";
+ icon_state = "purplecorner";
+ dir = 4
+ },
+/area/hallway/secondary/exit)
+"bZx" = (
+/turf/open/floor/plasteel/purple/side{
+ tag = "icon-purple (NORTH)";
+ icon_state = "purple";
+ dir = 1
+ },
+/area/hallway/secondary/exit)
+"bZy" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/purple/side{
+ tag = "icon-purple (NORTH)";
+ icon_state = "purple";
+ dir = 1
+ },
+/area/hallway/secondary/exit)
+"bZz" = (
+/obj/machinery/camera/autoname,
+/turf/open/floor/plasteel/purple/side{
+ tag = "icon-purple (NORTH)";
+ icon_state = "purple";
+ dir = 1
+ },
+/area/hallway/secondary/exit)
+"bZA" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/purple/side{
+ tag = "icon-purple (NORTH)";
+ icon_state = "purple";
+ dir = 1
+ },
+/area/hallway/secondary/exit)
+"bZB" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/purple/side{
+ tag = "icon-purple (NORTH)";
+ icon_state = "purple";
+ dir = 1
+ },
+/area/hallway/secondary/exit)
+"bZC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/purple/side{
+ tag = "icon-purple (NORTH)";
+ icon_state = "purple";
+ dir = 1
+ },
+/area/hallway/secondary/exit)
+"bZD" = (
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/purple/side{
+ tag = "icon-purple (NORTH)";
+ icon_state = "purple";
+ dir = 1
+ },
+/area/hallway/secondary/exit)
+"bZE" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Escape Hallway APC";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/plasteel/purple/corner{
+ tag = "icon-purplecorner (NORTH)";
+ icon_state = "purplecorner";
+ dir = 1
+ },
+/area/hallway/secondary/exit)
+"bZF" = (
+/obj/machinery/camera/autoname,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"bZG" = (
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"bZH" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/vending/cigarette,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"bZI" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/hallway/secondary/exit)
+"bZJ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/hallway/secondary/exit)
+"bZK" = (
+/turf/closed/wall,
+/area/hallway/secondary/exit)
+"bZL" = (
+/obj/machinery/computer/crew,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"bZM" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"bZN" = (
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -29
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"bZO" = (
+/obj/machinery/button/flasher{
+ id = "cockpit_flasher";
+ pixel_x = 6;
+ pixel_y = -24
+ },
+/obj/machinery/light,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"bZP" = (
+/obj/machinery/computer/communications,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"bZQ" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel/shuttle,
+/area/shuttle/arrival)
+"bZR" = (
+/obj/machinery/computer,
+/turf/open/floor/plasteel/shuttle{
+ icon_state = "shuttlefloor3"
+ },
+/area/shuttle/arrival)
+"bZS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bZT" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bZU" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bZV" = (
+/obj/structure/sign/directions/medical{
+ tag = "icon-direction_med (NORTH)";
+ icon_state = "direction_med";
+ dir = 1
+ },
+/obj/structure/sign/directions/evac{
+ dir = 4;
+ icon_state = "direction_evac";
+ pixel_y = -10;
+ tag = "icon-direction_evac (EAST)"
+ },
+/obj/structure/sign/directions/security{
+ dir = 1;
+ icon_state = "direction_sec";
+ pixel_y = 10;
+ tag = "icon-direction_sec (NORTH)"
+ },
+/turf/closed/wall,
+/area/storage/eva)
+"bZW" = (
+/obj/structure/sign/directions/science{
+ tag = "icon-direction_sci (EAST)";
+ icon_state = "direction_sci";
+ dir = 4
+ },
+/obj/structure/sign/directions/engineering{
+ dir = 4;
+ icon_state = "direction_eng";
+ pixel_y = 10;
+ tag = "icon-direction_eng (EAST)"
+ },
+/turf/closed/wall,
+/area/storage/eva)
+"bZX" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "E.V.A. Storage";
+ req_access_txt = "18"
+ },
+/turf/open/floor/plasteel,
+/area/storage/eva)
+"bZY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/yellow,
+/area/hallway/primary/aft)
+"bZZ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/hallway/primary/aft)
+"caa" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/hallway/primary/aft)
+"cab" = (
+/turf/closed/wall,
+/area/hallway/primary/aft)
+"cac" = (
+/obj/structure/sign/directions/medical{
+ tag = "icon-direction_med (WEST)";
+ icon_state = "direction_med";
+ dir = 8
+ },
+/obj/structure/sign/directions/evac{
+ dir = 4;
+ icon_state = "direction_evac";
+ pixel_y = -10;
+ tag = "icon-direction_evac (EAST)"
+ },
+/obj/structure/sign/directions/security{
+ dir = 8;
+ icon_state = "direction_sec";
+ pixel_y = 10;
+ tag = "icon-direction_sec (WEST)"
+ },
+/turf/closed/wall,
+/area/hallway/primary/aft)
+"cad" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cae" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"caf" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cag" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cah" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cai" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"caj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cak" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cal" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cam" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"can" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Departures"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cao" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/escape{
+ tag = "icon-escape (NORTHWEST)";
+ icon_state = "escape";
+ dir = 9
+ },
+/area/hallway/secondary/exit)
+"cap" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/escape{
+ tag = "icon-escape (NORTH)";
+ icon_state = "escape";
+ dir = 1
+ },
+/area/hallway/secondary/exit)
+"caq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/chair,
+/turf/open/floor/plasteel/escape{
+ tag = "icon-escape (NORTH)";
+ icon_state = "escape";
+ dir = 1
+ },
+/area/hallway/secondary/exit)
+"car" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/chair,
+/obj/machinery/camera/autoname,
+/turf/open/floor/plasteel/escape{
+ tag = "icon-escape (NORTH)";
+ icon_state = "escape";
+ dir = 1
+ },
+/area/hallway/secondary/exit)
+"cas" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/escape{
+ tag = "icon-escape (NORTH)";
+ icon_state = "escape";
+ dir = 1
+ },
+/area/hallway/secondary/exit)
+"cat" = (
+/obj/machinery/computer/arcade,
+/turf/open/floor/plasteel/escape{
+ tag = "icon-escape (NORTHEAST)";
+ icon_state = "escape";
+ dir = 5
+ },
+/area/hallway/secondary/exit)
+"cau" = (
+/obj/machinery/door/airlock/glass{
+ name = "Emergency Shuttle Cockpit";
+ req_access_txt = "19"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"cav" = (
+/obj/machinery/status_display,
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/escape)
+"caw" = (
+/obj/effect/landmark{
+ name = "Observer-Start"
+ },
+/turf/open/floor/plasteel/shuttle,
+/area/shuttle/arrival)
+"cax" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/plasteel/shuttle{
+ icon_state = "shuttlefloor3"
+ },
+/area/shuttle/arrival)
+"cay" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel/shuttle{
+ icon_state = "shuttlefloor3"
+ },
+/area/shuttle/arrival)
+"caz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"caA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"caB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Engineering Hallway"
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTHWEST)";
+ icon_state = "yellow";
+ dir = 9
+ },
+/area/hallway/primary/aft)
+"caC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/hallway/primary/aft)
+"caD" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/hallway/primary/aft)
+"caE" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/hallway/primary/aft)
+"caF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/hallway/primary/aft)
+"caG" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/hallway/primary/aft)
+"caH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/hallway/primary/aft)
+"caI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/hallway/primary/aft)
+"caJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Engineering Hallway"
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTHEAST)";
+ icon_state = "yellow";
+ dir = 5
+ },
+/area/hallway/primary/aft)
+"caK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/caution{
+ tag = "icon-caution (WEST)";
+ icon_state = "caution";
+ dir = 8
+ },
+/area/hallway/secondary/exit)
+"caL" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"caM" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"caN" = (
+/obj/machinery/button/door{
+ id = 9966;
+ req_access_txt = "19"
+ },
+/turf/closed/wall,
+/area/storage/tools)
+"caO" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = 9966;
+ name = "Tool Storage shutters"
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/tools)
+"caP" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = 9966;
+ name = "Tool Storage shutters"
+ },
+/obj/machinery/door/window/northleft,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/tools)
+"caQ" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = 9966;
+ name = "Tool Storage shutters"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/tools)
+"caR" = (
+/turf/closed/wall,
+/area/storage/tools)
+"caS" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Tool Storage APC";
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"caT" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"caU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"caV" = (
+/turf/closed/wall,
+/area/storage/emergency)
+"caW" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/emergency)
+"caX" = (
+/obj/machinery/door/window/northleft,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/emergency)
+"caY" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/emergency)
+"caZ" = (
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Port Emergency Storage APC";
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel,
+/area/storage/emergency)
+"cba" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cbb" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cbc" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Departures"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cbd" = (
+/turf/open/floor/plasteel/escape{
+ tag = "icon-escape (WEST)";
+ icon_state = "escape";
+ dir = 8
+ },
+/area/hallway/secondary/exit)
+"cbe" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cbf" = (
+/turf/open/floor/plasteel/escape{
+ tag = "icon-escape (EAST)";
+ icon_state = "escape";
+ dir = 4
+ },
+/area/hallway/secondary/exit)
+"cbg" = (
+/obj/structure/closet,
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/escape)
+"cbh" = (
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/escape)
+"cbi" = (
+/obj/machinery/flasher{
+ id = "cockpit_flasher";
+ pixel_x = 6;
+ pixel_y = 24
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cbj" = (
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cbk" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cbl" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/fire,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/weapon/crowbar,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cbm" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=AIW";
+ location = "QM"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"cbn" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"cbo" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"cbp" = (
+/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/glass{
+ name = "Engineering Hallway"
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (WEST)";
+ icon_state = "yellow";
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"cbq" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cbr" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cbs" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-4";
+ tag = "icon-2-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cbt" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cbu" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cbv" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cbw" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cbx" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/cable{
+ icon_state = "2-4";
+ tag = "icon-2-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cby" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cbz" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cbA" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cbB" = (
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4";
+ tag = "icon-2-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cbC" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cbD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cbE" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cbF" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cbG" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cbH" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cbI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Engineering Hallway"
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (EAST)";
+ icon_state = "yellow";
+ dir = 4
+ },
+/area/hallway/primary/aft)
+"cbJ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/caution{
+ tag = "icon-caution (WEST)";
+ icon_state = "caution";
+ dir = 8
+ },
+/area/hallway/secondary/exit)
+"cbK" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cbL" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cbM" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/storage/tools)
+"cbN" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/cable_coil,
+/obj/item/device/multitool,
+/obj/item/device/geiger_counter,
+/turf/open/floor/plasteel{
+ tag = "icon-vault (WEST)";
+ icon_state = "vault";
+ dir = 8
+ },
+/area/storage/tools)
+"cbO" = (
+/obj/machinery/vending/tool,
+/turf/open/floor/plasteel{
+ tag = "icon-vault (WEST)";
+ icon_state = "vault";
+ dir = 8
+ },
+/area/storage/tools)
+"cbP" = (
+/obj/machinery/vending/assist,
+/turf/open/floor/plasteel{
+ tag = "icon-vault (WEST)";
+ icon_state = "vault";
+ dir = 8
+ },
+/area/storage/tools)
+"cbQ" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/plasteel{
+ amount = 10
+ },
+/obj/item/stack/sheet/plasteel{
+ amount = 10
+ },
+/turf/open/floor/plasteel{
+ tag = "icon-vault (WEST)";
+ icon_state = "vault";
+ dir = 8
+ },
+/area/storage/tools)
+"cbR" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/rglass{
+ amount = 50
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/obj/item/stack/rods{
+ amount = 50
+ },
+/turf/open/floor/plasteel{
+ tag = "icon-vault (WEST)";
+ icon_state = "vault";
+ dir = 8
+ },
+/area/storage/tools)
+"cbS" = (
+/obj/structure/closet/toolcloset,
+/turf/open/floor/plasteel{
+ tag = "icon-vault (WEST)";
+ icon_state = "vault";
+ dir = 8
+ },
+/area/storage/tools)
+"cbT" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cbU" = (
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cbV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cbW" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cbX" = (
+/obj/structure/tank_dispenser/oxygen,
+/turf/open/floor/plasteel{
+ tag = "icon-vault (WEST)";
+ icon_state = "vault";
+ dir = 8
+ },
+/area/storage/emergency)
+"cbY" = (
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/structure/closet/crate,
+/turf/open/floor/plasteel{
+ tag = "icon-vault (WEST)";
+ icon_state = "vault";
+ dir = 8
+ },
+/area/storage/emergency)
+"cbZ" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/plasteel{
+ tag = "icon-vault (WEST)";
+ icon_state = "vault";
+ dir = 8
+ },
+/area/storage/emergency)
+"cca" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/plasteel{
+ tag = "icon-vault (WEST)";
+ icon_state = "vault";
+ dir = 8
+ },
+/area/storage/emergency)
+"ccb" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plasteel{
+ tag = "icon-vault (WEST)";
+ icon_state = "vault";
+ dir = 8
+ },
+/area/storage/emergency)
+"ccc" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plasteel{
+ tag = "icon-vault (WEST)";
+ icon_state = "vault";
+ dir = 8
+ },
+/area/storage/emergency)
+"ccd" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plasteel{
+ tag = "icon-vault (WEST)";
+ icon_state = "vault";
+ dir = 8
+ },
+/area/storage/emergency)
+"cce" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/cable{
+ icon_state = "2-4";
+ tag = "icon-2-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"ccf" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"ccg" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=AIE";
+ location = "AftH"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cch" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/hallway/secondary/exit)
+"cci" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/escape{
+ tag = "icon-escape (WEST)";
+ icon_state = "escape";
+ dir = 8
+ },
+/area/hallway/secondary/exit)
+"ccj" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = 0
+ },
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/open/floor/grass,
+/area/hallway/secondary/exit)
+"cck" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/open/floor/grass,
+/area/hallway/secondary/exit)
+"ccl" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/open/floor/grass,
+/area/hallway/secondary/exit)
+"ccm" = (
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/escape)
+"ccn" = (
+/obj/machinery/door/airlock/glass{
+ name = "Emergency Shuttle Cargo"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"cco" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"ccp" = (
+/obj/structure/shuttle/engine/propulsion{
+ tag = "icon-propulsion_r (EAST)";
+ icon_state = "propulsion_r";
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/arrival)
+"ccq" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/shuttle,
+/area/shuttle/arrival)
+"ccr" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"ccs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"cct" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Engineering Hallway"
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (SOUTHWEST)";
+ icon_state = "yellow";
+ dir = 10
+ },
+/area/hallway/primary/aft)
+"ccu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/yellow/side,
+/area/hallway/primary/aft)
+"ccv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/hallway/primary/aft)
+"ccw" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/hallway/primary/aft)
+"ccx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/hallway/primary/aft)
+"ccy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/yellow/side,
+/area/hallway/primary/aft)
+"ccz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/hallway/primary/aft)
+"ccA" = (
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
+/turf/open/floor/plasteel/yellow/side,
+/area/hallway/primary/aft)
+"ccB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (SOUTHWEST)";
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/hallway/primary/aft)
+"ccC" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/yellow/side,
+/area/hallway/primary/aft)
+"ccD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/yellow/side,
+/area/hallway/primary/aft)
+"ccE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/hallway/primary/aft)
+"ccF" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/hallway/primary/aft)
+"ccG" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/hallway/primary/aft)
+"ccH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Engineering Hallway"
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (SOUTHEAST)";
+ icon_state = "yellow";
+ dir = 6
+ },
+/area/hallway/primary/aft)
+"ccI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/caution{
+ tag = "icon-caution (WEST)";
+ icon_state = "caution";
+ dir = 8
+ },
+/area/hallway/secondary/exit)
+"ccJ" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=AftH";
+ location = "AIW"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"ccK" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"ccL" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = 9966;
+ name = "Tool Storage shutters"
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/black,
+/area/storage/tools)
+"ccM" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = 9966;
+ name = "Tool Storage shutters"
+ },
+/obj/machinery/door/window,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/black,
+/area/storage/tools)
+"ccN" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = 9966;
+ name = "Tool Storage shutters"
+ },
+/obj/structure/window/reinforced,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/black,
+/area/storage/tools)
+"ccO" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"ccP" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/black,
+/area/storage/emergency)
+"ccQ" = (
+/obj/machinery/door/window,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/black,
+/area/storage/emergency)
+"ccR" = (
+/obj/structure/window/reinforced,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/black,
+/area/storage/emergency)
+"ccS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"ccT" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/escape{
+ tag = "icon-escape (WEST)";
+ icon_state = "escape";
+ dir = 8
+ },
+/area/hallway/secondary/exit)
+"ccU" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"ccV" = (
+/obj/machinery/door/airlock/external{
+ name = "Escape Airlock"
+ },
+/turf/open/floor/noslip,
+/area/hallway/secondary/exit)
+"ccW" = (
+/turf/open/floor/noslip,
+/area/hallway/secondary/exit)
+"ccX" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Emergency Shuttle Airlock";
+ req_access_txt = "2"
+ },
+/turf/open/floor/noslip,
+/area/shuttle/escape)
+"ccY" = (
+/obj/structure/closet/crate,
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/escape)
+"ccZ" = (
+/obj/structure/chair,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cda" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cdb" = (
+/obj/structure/table,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cdc" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Arrivals Shuttle Airlock"
+ },
+/obj/docking_port/mobile{
+ dwidth = 3;
+ height = 8;
+ id = "arrival";
+ name = "arrival shuttle";
+ port_angle = -90;
+ preferred_direction = 8;
+ width = 16
+ },
+/obj/docking_port/stationary{
+ dwidth = 3;
+ height = 8;
+ id = "arrival_home";
+ name = "port bay 1";
+ width = 16
+ },
+/turf/open/floor/plating,
+/area/shuttle/arrival)
+"cdd" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"cde" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Entry Hall APC";
+ pixel_x = 24;
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"cdf" = (
+/turf/closed/wall/r_wall,
+/area/hallway/secondary/entry)
+"cdg" = (
+/turf/closed/wall/r_wall,
+/area/teleporter)
+"cdh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/closed/wall/r_wall,
+/area/teleporter)
+"cdi" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Teleport Access";
+ req_access_txt = "17"
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/teleporter)
+"cdj" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering Foyer";
+ req_access_txt = "0";
+ req_one_access_txt = "32;19"
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"cdk" = (
+/turf/closed/wall,
+/area/engine/engineering)
+"cdl" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/engine/engineering)
+"cdm" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/closed/wall,
+/area/engine/chiefs_office)
+"cdn" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ tag = "icon-0-8";
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/engine/chiefs_office)
+"cdo" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ tag = "icon-0-8";
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plating,
+/area/engine/chiefs_office)
+"cdp" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/engine/chiefs_office)
+"cdq" = (
+/turf/closed/wall,
+/area/engine/chiefs_office)
+"cdr" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cds" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering Foyer";
+ req_access_txt = "0";
+ req_one_access_txt = "32;19"
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"cdt" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cdu" = (
+/turf/closed/wall/r_wall,
+/area/ai_monitored/storage/secure)
+"cdv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/storage/secure)
+"cdw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/storage/secure)
+"cdx" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering{
+ name = "Tech Storage";
+ req_access_txt = "0";
+ req_one_access_txt = "23;30"
+ },
+/turf/open/floor/plating{
+ tag = "icon-delivery";
+ icon_state = "delivery";
+ dir = 2
+ },
+/area/ai_monitored/storage/secure)
+"cdy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cdz" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHEAST)";
+ icon_state = "camera";
+ dir = 5
+ },
+/turf/open/floor/plasteel/caution{
+ tag = "icon-caution (WEST)";
+ icon_state = "caution";
+ dir = 8
+ },
+/area/hallway/secondary/exit)
+"cdA" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cdB" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cdC" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4";
+ tag = "icon-2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cdD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cdE" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cdF" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cdG" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cdH" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cdI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cdJ" = (
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cdK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cdL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Departures"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cdM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/escape{
+ tag = "icon-escape (WEST)";
+ icon_state = "escape";
+ dir = 8
+ },
+/area/hallway/secondary/exit)
+"cdN" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cdO" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/escape{
+ tag = "icon-escape (EAST)";
+ icon_state = "escape";
+ dir = 4
+ },
+/area/hallway/secondary/exit)
+"cdP" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/escape)
+"cdQ" = (
+/obj/structure/table,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cdR" = (
+/obj/machinery/shieldwallgen,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/teleporter)
+"cdS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel,
+/area/teleporter)
+"cdT" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/teleporter)
+"cdU" = (
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"cdV" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"cdW" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space/nearstation)
+"cdX" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/electricshock{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/engine/chiefs_office)
+"cdY" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal/bin,
+/turf/open/floor/wood,
+/area/engine/chiefs_office)
+"cdZ" = (
+/turf/open/floor/wood,
+/area/engine/chiefs_office)
+"cea" = (
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/wood,
+/area/engine/chiefs_office)
+"ceb" = (
+/obj/structure/closet/secure_closet/engineering_chief{
+ req_access_txt = "0"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (EAST)";
+ icon_state = "yellow";
+ dir = 4
+ },
+/area/engine/chiefs_office)
+"cec" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"ced" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"cee" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel/yellow,
+/area/hallway/primary/aft)
+"cef" = (
+/obj/structure/table,
+/obj/item/device/flashlight{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/item/device/flashlight{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/item/device/assembly/flash/handheld,
+/obj/item/device/assembly/flash/handheld,
+/obj/machinery/ai_status_display{
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"ceg" = (
+/obj/structure/table,
+/obj/item/weapon/electronics/apc,
+/obj/item/weapon/electronics/airlock,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"ceh" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/weapon/stock_parts/cell,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"cei" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/vending/assist,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"cej" = (
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"cek" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Tech Storage APC";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"cel" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"cem" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"cen" = (
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"ceo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cep" = (
+/turf/open/floor/plasteel/caution{
+ tag = "icon-caution (WEST)";
+ icon_state = "caution";
+ dir = 8
+ },
+/area/hallway/secondary/exit)
+"ceq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/caution/corner,
+/area/hallway/secondary/exit)
+"cer" = (
+/turf/open/floor/plasteel/caution,
+/area/hallway/secondary/exit)
+"ces" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/caution,
+/area/hallway/secondary/exit)
+"cet" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/caution,
+/area/hallway/secondary/exit)
+"ceu" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/caution,
+/area/hallway/secondary/exit)
+"cev" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/caution,
+/area/hallway/secondary/exit)
+"cew" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/caution,
+/area/hallway/secondary/exit)
+"cex" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/caution,
+/area/hallway/secondary/exit)
+"cey" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/caution,
+/area/hallway/secondary/exit)
+"cez" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTH)";
+ icon_state = "camera";
+ dir = 1
+ },
+/turf/open/floor/plasteel/caution,
+/area/hallway/secondary/exit)
+"ceA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/caution/corner{
+ tag = "icon-cautioncorner (WEST)";
+ icon_state = "cautioncorner";
+ dir = 8
+ },
+/area/hallway/secondary/exit)
+"ceB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"ceC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"ceD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"ceE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/structure/closet/firecloset/full,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"ceF" = (
+/obj/machinery/door/airlock/external{
+ name = "External Access";
+ req_access = null;
+ req_access_txt = "13"
+ },
+/turf/open/floor/noslip,
+/area/hallway/secondary/exit)
+"ceG" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"ceH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"ceI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"ceJ" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Emergency Shuttle Airlock"
+ },
+/obj/docking_port/mobile/emergency{
+ name = "Box emergency shuttle";
+ timid = 0
+ },
+/obj/docking_port/stationary{
+ dir = 4;
+ dwidth = 12;
+ height = 18;
+ id = "emergency_home";
+ name = "BoxStation emergency evac bay";
+ turf_type = /turf/open/space;
+ width = 32
+ },
+/turf/open/floor/noslip,
+/area/shuttle/escape)
+"ceK" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"ceL" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -5;
+ pixel_y = 30
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"ceM" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"ceN" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/teleporter)
+"ceO" = (
+/obj/machinery/shieldwallgen,
+/obj/effect/turf_decal/bot,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/teleporter)
+"ceP" = (
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"ceQ" = (
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"ceR" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"ceS" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/plating,
+/area/engine/chiefs_office)
+"ceT" = (
+/obj/machinery/computer/atmos_alert,
+/turf/open/floor/wood,
+/area/engine/chiefs_office)
+"ceU" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/clipboard,
+/obj/item/weapon/lighter,
+/obj/item/clothing/glasses/meson{
+ pixel_y = 4
+ },
+/obj/item/weapon/stamp/ce,
+/obj/item/weapon/stock_parts/cell/high/plus,
+/turf/open/floor/wood,
+/area/engine/chiefs_office)
+"ceV" = (
+/obj/item/weapon/cartridge/engineering{
+ pixel_x = 4;
+ pixel_y = 5
+ },
+/obj/item/weapon/cartridge/engineering{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/item/weapon/cartridge/engineering{
+ pixel_x = 3
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/light_switch{
+ pixel_x = 27
+ },
+/obj/item/weapon/cartridge/atmos,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (EAST)";
+ icon_state = "yellow";
+ dir = 4
+ },
+/area/engine/chiefs_office)
+"ceW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/engine/engineering)
+"ceX" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ceY" = (
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (EAST)";
+ icon_state = "yellow";
+ dir = 4
+ },
+/area/engine/engineering)
+"ceZ" = (
+/obj/structure/table,
+/obj/item/device/aicard,
+/obj/item/weapon/aiModule/reset,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"cfa" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"cfb" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/computer/pandemic{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/circuitboard/computer/rdconsole,
+/obj/item/weapon/circuitboard/machine/rdserver{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/weapon/circuitboard/machine/destructive_analyzer,
+/obj/item/weapon/circuitboard/machine/protolathe,
+/obj/item/weapon/circuitboard/computer/aifixer,
+/obj/item/weapon/circuitboard/computer/teleporter,
+/obj/item/weapon/circuitboard/machine/circuit_imprinter,
+/obj/item/weapon/circuitboard/machine/mechfab,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"cfc" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/computer/mining,
+/obj/item/weapon/circuitboard/machine/autolathe{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/weapon/circuitboard/computer/arcade/battle,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"cfd" = (
+/obj/structure/rack,
+/obj/item/weapon/circuitboard/machine/telecomms/processor,
+/obj/item/weapon/circuitboard/machine/telecomms/receiver,
+/obj/item/weapon/circuitboard/machine/telecomms/server,
+/obj/item/weapon/circuitboard/machine/telecomms/bus,
+/obj/item/weapon/circuitboard/machine/telecomms/broadcaster,
+/obj/item/weapon/circuitboard/computer/message_monitor{
+ pixel_y = -5
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"cfe" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"cff" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel{
+ dir = 8;
+ icon_state = "caution"
+ },
+/area/hallway/secondary/exit)
+"cfg" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "caution";
+ dir = 4
+ },
+/area/hallway/secondary/exit)
+"cfh" = (
+/turf/closed/wall/r_wall,
+/area/atmos)
+"cfi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/atmos)
+"cfj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Atmospherics";
+ req_access_txt = "32"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cfk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/atmos)
+"cfl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/atmos)
+"cfm" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/closed/wall/r_wall,
+/area/atmos)
+"cfn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/closed/wall/r_wall,
+/area/atmos)
+"cfo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/closed/wall/r_wall,
+/area/atmos)
+"cfp" = (
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 8;
+ name = "Departure Lounge APC";
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/obj/structure/cable,
+/turf/open/floor/plasteel/escape{
+ tag = "icon-escape (WEST)";
+ icon_state = "escape";
+ dir = 8
+ },
+/area/hallway/secondary/exit)
+"cfq" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cfr" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cfs" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cft" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
+ name = "KEEP CLEAR: DOCKING AREA";
+ pixel_y = 0
+ },
+/turf/closed/wall,
+/area/hallway/secondary/entry)
+"cfu" = (
+/turf/open/floor/plasteel,
+/area/teleporter)
+"cfv" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/closed/wall,
+/area/engine/chiefs_office)
+"cfw" = (
+/obj/machinery/computer/station_alert,
+/obj/machinery/camera{
+ c_tag = "Chief Engineer's Office";
+ dir = 4;
+ network = list("SS13")
+ },
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Chief Engineer's Desk";
+ departmentType = 3;
+ name = "Chief Engineer RC";
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/engine/chiefs_office)
+"cfx" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Chief Engineer"
+ },
+/turf/open/floor/wood,
+/area/engine/chiefs_office)
+"cfy" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/paper/monitorkey,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/wood,
+/area/engine/chiefs_office)
+"cfz" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (EAST)";
+ icon_state = "yellow";
+ dir = 4
+ },
+/area/engine/chiefs_office)
+"cfA" = (
+/obj/machinery/door/airlock/command{
+ name = "Chief Engineer's Office";
+ req_access_txt = "56";
+ req_one_access_txt = "0"
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/chiefs_office)
+"cfB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cfC" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cfD" = (
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (EAST)";
+ icon_state = "yellow";
+ dir = 4
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cfE" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/storage/secure)
+"cfF" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/computer/borgupload{
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/item/weapon/circuitboard/computer/aiupload{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/secure)
+"cfG" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/camera/autoname,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"cfH" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"cfI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"cfJ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/structure/table,
+/obj/item/stack/cable_coil{
+ pixel_y = 3
+ },
+/obj/item/stack/cable_coil,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"cfK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"cfL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"cfM" = (
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"cfN" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"cfO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/device/radio/beacon,
+/turf/open/floor/plasteel{
+ dir = 8;
+ icon_state = "caution"
+ },
+/area/hallway/secondary/exit)
+"cfP" = (
+/turf/open/floor/plasteel{
+ icon_state = "caution";
+ dir = 4
+ },
+/area/hallway/secondary/exit)
+"cfQ" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/plasteel{
+ dir = 2;
+ icon_state = "bot"
+ },
+/area/atmos)
+"cfR" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 2;
+ icon_state = "bot"
+ },
+/area/atmos)
+"cfS" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/machinery/camera/autoname,
+/turf/open/floor/plasteel{
+ dir = 2;
+ icon_state = "bot"
+ },
+/area/atmos)
+"cfT" = (
+/obj/machinery/portable_atmospherics/canister/bz,
+/turf/open/floor/plasteel{
+ dir = 2;
+ icon_state = "bot"
+ },
+/area/atmos)
+"cfU" = (
+/obj/machinery/portable_atmospherics/canister/toxins,
+/turf/open/floor/plasteel{
+ dir = 2;
+ icon_state = "bot"
+ },
+/area/atmos)
+"cfV" = (
+/turf/open/floor/plasteel{
+ icon_state = "delivery";
+ name = "floor"
+ },
+/area/atmos)
+"cfW" = (
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/atmos)
+"cfX" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/atmos)
+"cfY" = (
+/obj/machinery/pipedispenser,
+/turf/open/floor/plasteel,
+/area/atmos)
+"cfZ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/atmos)
+"cga" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/meter{
+ frequency = 1441;
+ id_tag = "waste_meter";
+ name = "Waste Loop"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cgb" = (
+/obj/machinery/camera{
+ c_tag = "Atmospherics North East"
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Distro to Waste";
+ on = 0
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cgc" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/visible{
+ dir = 2
+ },
+/obj/machinery/meter{
+ frequency = 1441;
+ id_tag = "distro_meter";
+ name = "Distribution Loop"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cgd" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/visible{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cge" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Air to Distro";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cgf" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 10;
+ initialize_directions = 10
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cgg" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/turf/open/floor/plasteel,
+/area/atmos)
+"cgh" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel/escape{
+ tag = "icon-escape (EAST)";
+ icon_state = "escape";
+ dir = 4
+ },
+/area/hallway/secondary/exit)
+"cgi" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/pod_1)
+"cgj" = (
+/obj/structure/shuttle/engine/propulsion/burst{
+ dir = 4;
+ icon_state = "propulsion";
+ tag = "icon-propulsion (WEST)"
+ },
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/pod_1)
+"cgk" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"cgl" = (
+/obj/machinery/camera/autoname,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"cgm" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"cgn" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"cgo" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"cgp" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"cgq" = (
+/obj/machinery/bluespace_beacon,
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (NORTH)";
+ icon_state = "intact";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/teleporter)
+"cgr" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cgs" = (
+/obj/machinery/computer/card/minor/ce,
+/turf/open/floor/wood,
+/area/engine/chiefs_office)
+"cgt" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/storage/fancy/cigarettes,
+/turf/open/floor/wood,
+/area/engine/chiefs_office)
+"cgu" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/wood,
+/area/engine/chiefs_office)
+"cgv" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 27
+ },
+/obj/structure/filingcabinet/chestdrawer,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/mob/living/simple_animal/parrot/Poly,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (EAST)";
+ icon_state = "yellow";
+ dir = 4
+ },
+/area/engine/chiefs_office)
+"cgw" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/storage/secure)
+"cgx" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/computer/crew{
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/item/weapon/circuitboard/computer/card{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/weapon/circuitboard/computer/communications{
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/secure)
+"cgy" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/door/airlock/highsecurity{
+ name = "Secure Tech Storage";
+ req_access_txt = "19;23"
+ },
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "delivery"
+ },
+/area/ai_monitored/storage/secure)
+"cgz" = (
+/obj/structure/table,
+/obj/item/weapon/stock_parts/subspace/analyzer,
+/obj/item/weapon/stock_parts/subspace/analyzer,
+/obj/item/weapon/stock_parts/subspace/analyzer,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"cgA" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"cgB" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"cgC" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"cgD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/pump,
+/turf/open/floor/plasteel{
+ icon_state = "arrival";
+ dir = 8
+ },
+/area/hallway/secondary/exit)
+"cgE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel{
+ icon_state = "caution";
+ dir = 4
+ },
+/area/hallway/secondary/exit)
+"cgF" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "atmos";
+ name = "Atmos Blast Door";
+ opacity = 0
+ },
+/turf/open/floor/plating,
+/area/atmos)
+"cgG" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/turf/open/floor/plasteel{
+ dir = 2;
+ icon_state = "bot"
+ },
+/area/atmos)
+"cgH" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/turf/open/floor/plasteel{
+ dir = 2;
+ icon_state = "bot"
+ },
+/area/atmos)
+"cgI" = (
+/turf/open/floor/plasteel,
+/area/atmos)
+"cgJ" = (
+/obj/machinery/computer/atmos_control,
+/turf/open/floor/plasteel{
+ icon_state = "caution";
+ dir = 4
+ },
+/area/atmos)
+"cgK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cgL" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/plasteel,
+/area/atmos)
+"cgM" = (
+/obj/machinery/pipedispenser/disposal,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cgN" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/atmos)
+"cgO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cgP" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cgQ" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Mix to Distro";
+ on = 0
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cgR" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/meter,
+/turf/open/floor/plasteel,
+/area/atmos)
+"cgS" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Mix to Incinerator";
+ on = 0
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cgT" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 10;
+ initialize_directions = 10
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/atmos)
+"cgU" = (
+/obj/structure/grille,
+/turf/closed/wall/r_wall,
+/area/atmos)
+"cgV" = (
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space/nearstation)
+"cgW" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/escape{
+ tag = "icon-escape (WEST)";
+ icon_state = "escape";
+ dir = 8
+ },
+/area/hallway/secondary/exit)
+"cgX" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cgY" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cgZ" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel/escape{
+ tag = "icon-escape (EAST)";
+ icon_state = "escape";
+ dir = 4
+ },
+/area/hallway/secondary/exit)
+"cha" = (
+/obj/docking_port/stationary/random{
+ dir = 8;
+ id = "pod_asteroid1";
+ name = "asteroid"
+ },
+/turf/open/space,
+/area/space)
+"chb" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/pod_1)
+"chc" = (
+/obj/machinery/computer/shuttle/pod{
+ pixel_x = 0;
+ pixel_y = -32;
+ possible_destinations = "pod_asteroid1";
+ shuttleId = "pod1"
+ },
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 3;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/pod_1)
+"chd" = (
+/obj/item/weapon/storage/pod{
+ pixel_x = 6;
+ pixel_y = -28
+ },
+/obj/item/device/radio/intercom{
+ pixel_x = 0;
+ pixel_y = 25
+ },
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/pod_1)
+"che" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Escape Pod Airlock"
+ },
+/obj/docking_port/mobile/pod{
+ dir = 8;
+ id = "pod1";
+ name = "escape pod 1";
+ port_angle = 180
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/pod_1)
+"chf" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 1;
+ name = "Escape Pod One"
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"chg" = (
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"chh" = (
+/obj/structure/closet/crate,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Teleporter APC";
+ pixel_x = -24
+ },
+/obj/structure/cable{
+ tag = "icon-0-4";
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel,
+/area/teleporter)
+"chi" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel,
+/area/teleporter)
+"chj" = (
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/teleporter)
+"chk" = (
+/obj/structure/closet/crate,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel,
+/area/teleporter)
+"chl" = (
+/obj/machinery/suit_storage_unit/ce,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/chiefs_office)
+"chm" = (
+/obj/machinery/light,
+/turf/open/floor/wood,
+/area/engine/chiefs_office)
+"chn" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/wood,
+/area/engine/chiefs_office)
+"cho" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "CE Office APC";
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (EAST)";
+ icon_state = "yellow";
+ dir = 4
+ },
+/area/engine/chiefs_office)
+"chp" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/ai_monitored/storage/secure)
+"chq" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/computer/robotics{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/weapon/circuitboard/computer/mecha_control{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/secure)
+"chr" = (
+/obj/structure/table,
+/obj/item/weapon/stock_parts/micro_laser,
+/obj/item/weapon/stock_parts/manipulator,
+/obj/item/weapon/stock_parts/manipulator,
+/obj/item/weapon/stock_parts/manipulator,
+/obj/item/weapon/stock_parts/manipulator,
+/obj/item/weapon/stock_parts/capacitor,
+/obj/item/weapon/stock_parts/micro_laser/high,
+/obj/item/weapon/stock_parts/micro_laser/high,
+/obj/item/weapon/stock_parts/micro_laser/high,
+/obj/item/weapon/stock_parts/micro_laser/high,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (EAST)";
+ icon_state = "camera";
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"chs" = (
+/obj/structure/table,
+/obj/item/weapon/stock_parts/subspace/amplifier,
+/obj/item/weapon/stock_parts/subspace/amplifier,
+/obj/item/weapon/stock_parts/subspace/amplifier,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"cht" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/computer/cloning{
+ pixel_x = 0
+ },
+/obj/item/weapon/circuitboard/computer/med_data{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/weapon/circuitboard/machine/clonescanner,
+/obj/item/weapon/circuitboard/machine/clonepod,
+/obj/item/weapon/circuitboard/computer/scan_consolenew,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"chu" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/computer/secure_data{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/weapon/circuitboard/computer/security{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"chv" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/computer/powermonitor{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/weapon/circuitboard/computer/stationalert{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/item/weapon/circuitboard/computer/atmos_alert{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"chw" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "caution";
+ dir = 4
+ },
+/area/hallway/secondary/exit)
+"chx" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmos";
+ name = "Atmos Blast Door";
+ opacity = 0
+ },
+/obj/machinery/door/window/northleft{
+ dir = 4;
+ icon_state = "left";
+ name = "Atmospherics Desk";
+ req_access_txt = "24"
+ },
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/pen,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "atmos";
+ name = "Atmos Blast Door";
+ opacity = 0
+ },
+/turf/open/floor/plasteel{
+ icon_state = "delivery";
+ name = "floor"
+ },
+/area/atmos)
+"chy" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"chz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"chA" = (
+/obj/machinery/computer/atmos_control,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "caution";
+ dir = 4
+ },
+/area/atmos)
+"chB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/atmos)
+"chC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "delivery";
+ name = "floor"
+ },
+/area/atmos)
+"chD" = (
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
+/turf/open/floor/plasteel,
+/area/atmos)
+"chE" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/atmos)
+"chF" = (
+/obj/machinery/pipedispenser/disposal/transit_tube,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"chG" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/atmos)
+"chH" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 0;
+ name = "Waste In";
+ on = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"chI" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"chJ" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"chK" = (
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible,
+/turf/open/floor/plasteel,
+/area/atmos)
+"chL" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Mix Outlet Pump";
+ on = 0
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"chM" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 0;
+ name = "Air to Mix";
+ on = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"chN" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible,
+/turf/open/floor/plasteel/green/side{
+ dir = 5
+ },
+/area/atmos)
+"chO" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/atmos)
+"chP" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/turf/open/space,
+/area/space/nearstation)
+"chQ" = (
+/obj/machinery/atmospherics/pipe/simple{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/machinery/meter,
+/turf/closed/wall/r_wall,
+/area/atmos)
+"chR" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 0;
+ frequency = 1441;
+ id_tag = "mix_in";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
+ },
+/turf/open/floor/engine/vacuum,
+/area/atmos)
+"chS" = (
+/obj/machinery/camera{
+ c_tag = "Atmospherics Waste Tank"
+ },
+/turf/open/floor/engine/vacuum,
+/area/atmos)
+"chT" = (
+/turf/open/floor/engine/vacuum,
+/area/atmos)
+"chU" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/escape{
+ tag = "icon-escape (WEST)";
+ icon_state = "escape";
+ dir = 8
+ },
+/area/hallway/secondary/exit)
+"chV" = (
+/obj/machinery/camera{
+ c_tag = "Arrivals Escape Pod 1";
+ dir = 8
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"chW" = (
+/obj/structure/sign/pods,
+/turf/closed/wall,
+/area/hallway/secondary/entry)
+"chX" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"chY" = (
+/obj/structure/table,
+/obj/effect/turf_decal/stripes/line,
+/obj/item/device/radio/beacon,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -28
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/teleporter)
+"chZ" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/teleporter)
+"cia" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/turf/closed/wall,
+/area/engine/chiefs_office)
+"cib" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/closed/wall,
+/area/engine/chiefs_office)
+"cic" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ tag = "icon-0-4";
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/engine/chiefs_office)
+"cid" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ tag = "icon-0-8";
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/engine/chiefs_office)
+"cie" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ tag = "icon-0-8";
+ icon_state = "0-8"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ tag = "icon-intact (EAST)";
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/chiefs_office)
+"cif" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ tag = "icon-intact (EAST)";
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/closed/wall,
+/area/engine/chiefs_office)
+"cig" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cih" = (
+/obj/structure/table,
+/obj/item/weapon/stock_parts/subspace/transmitter,
+/obj/item/weapon/stock_parts/subspace/transmitter,
+/obj/item/weapon/stock_parts/subspace/treatment,
+/obj/item/weapon/stock_parts/subspace/treatment,
+/obj/item/weapon/stock_parts/subspace/treatment,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"cii" = (
+/obj/structure/table,
+/obj/item/weapon/stock_parts/subspace/filter,
+/obj/item/weapon/stock_parts/subspace/filter,
+/obj/item/weapon/stock_parts/subspace/filter,
+/obj/item/weapon/stock_parts/subspace/filter,
+/obj/item/weapon/stock_parts/subspace/filter,
+/obj/machinery/light/small,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"cij" = (
+/obj/structure/table,
+/obj/item/weapon/stock_parts/subspace/ansible,
+/obj/item/weapon/stock_parts/subspace/ansible,
+/obj/item/weapon/stock_parts/subspace/ansible,
+/obj/item/weapon/stock_parts/subspace/crystal,
+/obj/item/weapon/stock_parts/subspace/crystal,
+/obj/item/weapon/stock_parts/subspace/crystal,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"cik" = (
+/obj/machinery/vending/engivend,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/ai_monitored/storage/secure)
+"cil" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/scrubber,
+/turf/open/floor/plasteel{
+ dir = 8;
+ icon_state = "escape"
+ },
+/area/hallway/secondary/exit)
+"cim" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cin" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel{
+ icon_state = "caution";
+ dir = 4
+ },
+/area/hallway/secondary/exit)
+"cio" = (
+/obj/structure/tank_dispenser,
+/turf/open/floor/plasteel,
+/area/atmos)
+"cip" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"ciq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cir" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Atmospheric Technician"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cis" = (
+/obj/machinery/computer/atmos_alert,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "caution";
+ dir = 4
+ },
+/area/atmos)
+"cit" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/atmos)
+"ciu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "delivery";
+ name = "floor"
+ },
+/area/atmos)
+"civ" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"ciw" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cix" = (
+/obj/structure/closet/crate,
+/turf/open/floor/plasteel,
+/area/atmos)
+"ciy" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 8
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/atmos)
+"ciz" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Mix to Filter";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"ciA" = (
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"ciB" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"ciC" = (
+/obj/machinery/atmospherics/pipe/manifold/green/visible{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"ciD" = (
+/obj/machinery/atmospherics/pipe/manifold/green/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"ciE" = (
+/obj/machinery/computer/atmos_control/tank{
+ frequency = 1441;
+ input_tag = "mix_in";
+ name = "Gas Mix Tank Control";
+ output_tag = "mix_out";
+ sensors = list("mix_sensor" = "Tank")
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/atmos)
+"ciF" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/atmos)
+"ciG" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating/airless,
+/area/atmos)
+"ciH" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "mix_sensor"
+ },
+/turf/open/floor/engine/vacuum,
+/area/atmos)
+"ciI" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/engine/vacuum,
+/area/atmos)
+"ciJ" = (
+/obj/machinery/vending/cola,
+/turf/open/floor/plasteel/escape{
+ tag = "icon-escape (WEST)";
+ icon_state = "escape";
+ dir = 8
+ },
+/area/hallway/secondary/exit)
+"ciK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -28
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"ciL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"ciM" = (
+/obj/structure/table,
+/obj/item/weapon/hand_tele,
+/turf/open/floor/plasteel,
+/area/teleporter)
+"ciN" = (
+/obj/machinery/computer/teleporter,
+/turf/open/floor/plating,
+/area/teleporter)
+"ciO" = (
+/obj/machinery/teleport/station,
+/turf/open/floor/plating,
+/area/teleporter)
+"ciP" = (
+/obj/machinery/teleport/hub,
+/turf/open/floor/plating,
+/area/teleporter)
+"ciQ" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"ciR" = (
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/engine/break_room)
+"ciS" = (
+/turf/closed/wall,
+/area/engine/break_room)
+"ciT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space/nearstation)
+"ciU" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/space,
+/area/space/nearstation)
+"ciV" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space/nearstation)
+"ciW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space/nearstation)
+"ciX" = (
+/turf/closed/wall,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"ciY" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering{
+ name = "Tech Storage";
+ req_access_txt = "0";
+ req_one_access_txt = "23;30"
+ },
+/turf/open/floor/plating{
+ tag = "icon-delivery";
+ icon_state = "delivery";
+ dir = 2
+ },
+/area/ai_monitored/storage/secure)
+"ciZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cja" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/hallway/secondary/exit)
+"cjb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/scrubber,
+/turf/open/floor/plasteel{
+ dir = 8;
+ icon_state = "escape"
+ },
+/area/hallway/secondary/exit)
+"cjc" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cjd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "caution";
+ dir = 4
+ },
+/area/hallway/secondary/exit)
+"cje" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=4";
+ freq = 1400;
+ location = "Atmospherics"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "atmos";
+ name = "Atmos Blast Door";
+ opacity = 0
+ },
+/turf/open/floor/plasteel{
+ icon_state = "delivery";
+ name = "floor"
+ },
+/area/atmos)
+"cjf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/table,
+/obj/item/clothing/mask/breath,
+/turf/open/floor/plasteel,
+/area/atmos)
+"cjg" = (
+/obj/machinery/computer/station_alert,
+/turf/open/floor/plasteel{
+ dir = 6;
+ icon_state = "caution"
+ },
+/area/atmos)
+"cjh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 6
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cji" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cjj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_atmos{
+ name = "Distribution Loop";
+ req_access_txt = "24"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cjk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cjl" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cjm" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Pure to Mix";
+ on = 0
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cjn" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 5;
+ initialize_directions = 12
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cjo" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Unfiltered to Mix";
+ on = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4;
+ initialize_directions = 12
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cjp" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 6
+ },
+/area/atmos)
+"cjq" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/atmos)
+"cjr" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/turf/open/space,
+/area/space/nearstation)
+"cjs" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 8;
+ frequency = 1441;
+ id = "mix_in";
+ pixel_y = 1
+ },
+/turf/open/floor/engine/vacuum,
+/area/atmos)
+"cjt" = (
+/obj/machinery/vending/snack,
+/turf/open/floor/plasteel/escape{
+ tag = "icon-escape (SOUTHWEST)";
+ icon_state = "escape";
+ dir = 10
+ },
+/area/hallway/secondary/exit)
+"cju" = (
+/turf/open/floor/plasteel/escape,
+/area/hallway/secondary/exit)
+"cjv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/escape,
+/area/hallway/secondary/exit)
+"cjw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/escape,
+/area/hallway/secondary/exit)
+"cjx" = (
+/turf/open/floor/plasteel/escape{
+ tag = "icon-escape (SOUTHEAST)";
+ icon_state = "escape";
+ dir = 6
+ },
+/area/hallway/secondary/exit)
+"cjy" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Emergency Shuttle Airlock"
+ },
+/turf/open/floor/noslip,
+/area/shuttle/escape)
+"cjz" = (
+/obj/machinery/light/small,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"cjA" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"cjB" = (
+/obj/machinery/light,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"cjC" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"cjD" = (
+/turf/closed/wall/r_wall,
+/area/hallway/primary/aft)
+"cjE" = (
+/turf/closed/wall/r_wall,
+/area/security/checkpoint/engineering)
+"cjF" = (
+/turf/open/floor/plasteel/yellow/side{
+ dir = 10
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cjG" = (
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (SOUTHEAST)";
+ icon_state = "yellow";
+ dir = 6
+ },
+/area/engine/break_room)
+"cjH" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/engine/break_room)
+"cjI" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel/yellow,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cjJ" = (
+/turf/open/floor/plasteel/yellow,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cjK" = (
+/turf/open/floor/plasteel/yellow,
+/area/space)
+"cjL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cjM" = (
+/obj/item/weapon/crowbar,
+/obj/item/weapon/wrench,
+/obj/structure/table,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel{
+ dir = 8;
+ icon_state = "cautioncorner"
+ },
+/area/hallway/secondary/exit)
+"cjN" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel{
+ icon_state = "caution";
+ dir = 4
+ },
+/area/hallway/secondary/exit)
+"cjO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/atmos)
+"cjP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/table,
+/obj/item/weapon/wrench,
+/turf/open/floor/plasteel,
+/area/atmos)
+"cjQ" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Air to External";
+ on = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "delivery";
+ name = "floor"
+ },
+/area/atmos)
+"cjR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cjS" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 6;
+ initialize_directions = 6
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/atmos)
+"cjT" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/atmos)
+"cjU" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/atmos)
+"cjV" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/atmos)
+"cjW" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/atmos)
+"cjX" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/atmos)
+"cjY" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/atmos)
+"cjZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/security{
+ name = "Brig";
+ req_access = null;
+ req_access_txt = "63; 42"
+ },
+/turf/open/floor/plasteel/red,
+/area/hallway/secondary/exit)
+"cka" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/hallway/secondary/exit)
+"ckb" = (
+/obj/machinery/door/airlock/glass{
+ name = "Emergency Shuttle Brig";
+ req_access_txt = "2"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"ckc" = (
+/obj/machinery/door/airlock/glass{
+ name = "Emergency Shuttle Infirmary"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"ckd" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/transport)
+"cke" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/transport)
+"ckf" = (
+/obj/machinery/door/airlock/external,
+/turf/open/floor/pod/dark,
+/area/shuttle/transport)
+"ckg" = (
+/turf/open/space,
+/area/hallway/secondary/entry)
+"ckh" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cki" = (
+/turf/closed/wall,
+/area/security/checkpoint/engineering)
+"ckj" = (
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/obj/structure/table,
+/obj/machinery/recharger,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/engineering)
+"ckk" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Engineering Security APC";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/engineering)
+"ckl" = (
+/obj/machinery/computer/security,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/engineering)
+"ckm" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/plating,
+/area/security/checkpoint/engineering)
+"ckn" = (
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cko" = (
+/obj/structure/table,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/break_room)
+"ckp" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/food/drinks/soda_cans/thirteenloko,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"ckq" = (
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/obj/structure/table,
+/turf/open/floor/plasteel/yellow,
+/area/engine/break_room)
+"ckr" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/bin,
+/obj/machinery/camera/autoname,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cks" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/space,
+/area/space/nearstation)
+"ckt" = (
+/turf/open/floor/plasteel,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cku" = (
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (EAST)";
+ icon_state = "yellow";
+ dir = 4
+ },
+/area/space)
+"ckv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel{
+ dir = 10;
+ icon_state = "yellow"
+ },
+/area/hallway/secondary/exit)
+"ckw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/hallway/secondary/exit)
+"ckx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ dir = 6;
+ icon_state = "yellow"
+ },
+/area/hallway/secondary/exit)
+"cky" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/bin,
+/turf/open/floor/plasteel,
+/area/atmos)
+"ckz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/sign/atmosplaque{
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"ckA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_atmos{
+ name = "Atmospherics Monitoring";
+ req_access_txt = "24"
+ },
+/obj/structure/sign/nosmoking_2{
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"ckB" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ name = "External to Filter";
+ on = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "delivery";
+ name = "floor"
+ },
+/area/atmos)
+"ckC" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"ckD" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ tag = "icon-intact (NORTHEAST)";
+ icon_state = "intact";
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"ckE" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"ckF" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/meter,
+/turf/open/floor/plasteel,
+/area/atmos)
+"ckG" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/obj/machinery/meter,
+/turf/open/floor/plasteel,
+/area/atmos)
+"ckH" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 6
+ },
+/obj/machinery/meter,
+/turf/open/floor/plasteel,
+/area/atmos)
+"ckI" = (
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"ckJ" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"ckK" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "N2O Outlet Pump";
+ on = 0
+ },
+/turf/open/floor/plasteel/escape{
+ dir = 5
+ },
+/area/atmos)
+"ckL" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 0;
+ frequency = 1441;
+ id_tag = "n2o_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
+ },
+/turf/open/floor/engine/n2o,
+/area/atmos)
+"ckM" = (
+/turf/open/floor/engine/n2o,
+/area/atmos)
+"ckN" = (
+/turf/open/floor/plasteel/red,
+/area/hallway/secondary/exit)
+"ckO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/red,
+/area/hallway/secondary/exit)
+"ckP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/red,
+/area/hallway/secondary/exit)
+"ckQ" = (
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/escape)
+"ckR" = (
+/obj/structure/chair{
+ name = "tactical chair"
+ },
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/escape)
+"ckS" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/structure/chair{
+ name = "tactical chair"
+ },
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/escape)
+"ckT" = (
+/obj/machinery/sleeper{
+ icon_state = "sleeper-open";
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"ckU" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion_l"
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/transport)
+"ckV" = (
+/obj/structure/shuttle/engine/heater{
+ icon_state = "heater";
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plating/airless,
+/area/shuttle/transport)
+"ckW" = (
+/obj/structure/chair,
+/turf/open/floor/pod/dark,
+/area/shuttle/transport)
+"ckX" = (
+/obj/structure/chair,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/transport)
+"ckY" = (
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"ckZ" = (
+/obj/structure/grille,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"cla" = (
+/obj/structure/closet/firecloset/full,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"clb" = (
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = -30
+ },
+/obj/structure/table,
+/obj/item/weapon/book/manual/wiki/security_space_law,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/engineering)
+"clc" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/engineering)
+"cld" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/computer/secure_data,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/engineering)
+"cle" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/security/checkpoint/engineering)
+"clf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"clg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/break_room)
+"clh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cli" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/structure/chair/stool,
+/obj/effect/landmark/start{
+ name = "Station Engineer"
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/break_room)
+"clj" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"clk" = (
+/obj/structure/sink/kitchen{
+ dir = 8;
+ pixel_x = 11
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/break_room)
+"cll" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"clm" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cln" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"clo" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (EAST)";
+ icon_state = "yellow";
+ dir = 4
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"clp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"clq" = (
+/turf/closed/wall/r_wall,
+/area/engine/break_room)
+"clr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/engine/break_room)
+"cls" = (
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering Storage";
+ req_access_txt = "32"
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/break_room)
+"clt" = (
+/obj/machinery/door/airlock/glass_atmos{
+ name = "Atmospherics Monitoring";
+ req_access_txt = "24"
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"clu" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel{
+ icon_state = "delivery";
+ name = "floor"
+ },
+/area/atmos)
+"clv" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/turf/open/floor/plasteel,
+/area/atmos)
+"clw" = (
+/obj/item/device/radio/beacon,
+/turf/open/floor/plasteel,
+/area/atmos)
+"clx" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 0;
+ name = "Air to Port";
+ on = 0
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cly" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 0;
+ name = "Mix to Port";
+ on = 0
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"clz" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 0;
+ name = "Pure to Port";
+ on = 0
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"clA" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/turf/open/floor/plasteel,
+/area/atmos)
+"clB" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/turf/open/floor/plasteel,
+/area/atmos)
+"clC" = (
+/obj/machinery/computer/atmos_control/tank{
+ frequency = 1441;
+ input_tag = "n2o_in";
+ name = "Nitrous Oxide Supply Control";
+ output_tag = "n2o_out";
+ sensors = list("n2o_sensor" = "Tank")
+ },
+/turf/open/floor/plasteel/escape{
+ dir = 4
+ },
+/area/atmos)
+"clD" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "n2o_sensor"
+ },
+/turf/open/floor/engine/n2o,
+/area/atmos)
+"clE" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/turf/open/floor/engine/n2o,
+/area/atmos)
+"clF" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/engine/n2o,
+/area/atmos)
+"clG" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel/red,
+/area/hallway/secondary/exit)
+"clH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/red,
+/area/hallway/secondary/exit)
+"clI" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/red,
+/area/hallway/secondary/exit)
+"clJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/red,
+/area/hallway/secondary/exit)
+"clK" = (
+/obj/machinery/flasher{
+ id = "shuttle_flasher";
+ pixel_x = -24;
+ pixel_y = 6
+ },
+/obj/machinery/button/flasher{
+ id = "shuttle_flasher";
+ pixel_x = -24;
+ pixel_y = -6
+ },
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/escape)
+"clL" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/flasher{
+ id = "shuttle_flasher";
+ pixel_x = 24;
+ pixel_y = 6
+ },
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/escape)
+"clM" = (
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"clN" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/fire,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/weapon/crowbar,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"clO" = (
+/obj/structure/shuttle/engine/heater{
+ icon_state = "heater";
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/transport)
+"clP" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"clQ" = (
+/obj/machinery/door/airlock/titanium,
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"clR" = (
+/obj/machinery/computer/shuttle/ferry/request,
+/turf/open/floor/pod/dark,
+/area/shuttle/transport)
+"clS" = (
+/obj/machinery/door/airlock/titanium,
+/obj/docking_port/mobile{
+ dir = 8;
+ dwidth = 2;
+ height = 13;
+ id = "ferry";
+ name = "ferry shuttle";
+ port_angle = 0;
+ preferred_direction = 4;
+ roundstart_move = "ferry_away";
+ width = 5
+ },
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 2;
+ height = 13;
+ id = "ferry_home";
+ name = "port bay 2";
+ turf_type = /turf/open/space;
+ width = 5
+ },
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"clT" = (
+/obj/machinery/door/airlock/external{
+ id_tag = null;
+ name = "Port Docking Bay 2";
+ req_access_txt = "0"
+ },
+/turf/open/floor/noslip,
+/area/hallway/secondary/entry)
+"clU" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/engineering)
+"clV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/engineering)
+"clW" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/engineering)
+"clX" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/cable{
+ tag = "icon-1-4";
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-4";
+ tag = "icon-2-8"
+ },
+/obj/machinery/door/airlock/glass_security{
+ name = "Engineering Security Post";
+ req_access_txt = "63"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/engineering)
+"clY" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"clZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cma" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/break_room)
+"cmb" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cmc" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/break_room)
+"cmd" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cme" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering Foyer";
+ req_access_txt = "0";
+ req_one_access_txt = "32;19"
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/break_room)
+"cmf" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cmg" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cmh" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cmi" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ tag = "icon-yellowcorner (NORTH)";
+ icon_state = "yellowcorner";
+ dir = 1
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cmj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cmk" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ tag = "icon-yellowcorner (EAST)";
+ icon_state = "yellowcorner";
+ dir = 4
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cml" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Engineering Foyer APC";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ tag = "icon-0-8";
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cmm" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cmn" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (SOUTHEAST)";
+ icon_state = "camera";
+ dir = 6
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cmo" = (
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cmp" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cmq" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cmr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering Foyer";
+ req_access_txt = "0";
+ req_one_access_txt = "32;19"
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cms" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cmt" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ tag = "icon-yellowcorner (NORTH)";
+ icon_state = "yellowcorner";
+ dir = 1
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cmu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cmv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ tag = "icon-yellowcorner (EAST)";
+ icon_state = "yellowcorner";
+ dir = 4
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cmw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cmx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTHEAST)";
+ icon_state = "yellow";
+ dir = 5
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cmy" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering Storage";
+ req_access_txt = "32"
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/break_room)
+"cmz" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTHWEST)";
+ icon_state = "yellow";
+ dir = 9
+ },
+/area/engine/break_room)
+"cmA" = (
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/engine/break_room)
+"cmB" = (
+/obj/machinery/vending/engivend,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/engine/break_room)
+"cmC" = (
+/obj/machinery/vending/tool,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/engine/break_room)
+"cmD" = (
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/obj/structure/closet/secure_closet/engineering_welding,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/engine/break_room)
+"cmE" = (
+/obj/structure/closet/secure_closet/engineering_electrical,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/engine/break_room)
+"cmF" = (
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTHEAST)";
+ icon_state = "yellow";
+ dir = 5
+ },
+/area/engine/break_room)
+"cmG" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/yellow,
+/area/engine/break_room)
+"cmH" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plasteel,
+/area/atmos)
+"cmI" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plasteel,
+/area/atmos)
+"cmJ" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/gloves/color/black,
+/obj/item/clothing/gloves/color/black,
+/obj/item/clothing/gloves/color/black,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/plasteel,
+/area/atmos)
+"cmK" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cmL" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/obj/machinery/meter,
+/turf/open/floor/plasteel,
+/area/atmos)
+"cmM" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cmN" = (
+/obj/machinery/atmospherics/components/trinary/filter{
+ dir = 1;
+ filter_type = "n2o";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cmO" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/escape{
+ dir = 6
+ },
+/area/atmos)
+"cmP" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 8;
+ frequency = 1441;
+ id = "n2o_in";
+ pixel_y = 1
+ },
+/turf/open/floor/engine/n2o,
+/area/atmos)
+"cmQ" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plasteel/red,
+/area/hallway/secondary/exit)
+"cmR" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (SOUTHWEST)";
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/open/floor/plasteel/red,
+/area/hallway/secondary/exit)
+"cmS" = (
+/obj/machinery/light,
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plasteel/red,
+/area/hallway/secondary/exit)
+"cmT" = (
+/obj/structure/chair{
+ dir = 1;
+ name = "tactical chair"
+ },
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/escape)
+"cmU" = (
+/obj/structure/shuttle/engine/heater{
+ icon_state = "heater";
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/transport)
+"cmV" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/transport)
+"cmW" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/open/floor/pod/dark,
+/area/shuttle/transport)
+"cmX" = (
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cmY" = (
+/obj/structure/filingcabinet/security,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/engineering)
+"cmZ" = (
+/obj/effect/landmark/start/depsec/engineering,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/engineering)
+"cna" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/engineering)
+"cnb" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/security/checkpoint/engineering)
+"cnc" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cnd" = (
+/turf/open/floor/plasteel/yellow,
+/area/engine/break_room)
+"cne" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cnf" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/yellow,
+/area/engine/break_room)
+"cng" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cnh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering Foyer";
+ req_access_txt = "0";
+ req_one_access_txt = "32;19"
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/break_room)
+"cni" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cnj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cnk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (SOUTHWEST)";
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cnl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ tag = "icon-yellowcorner (WEST)";
+ icon_state = "yellowcorner";
+ dir = 8
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cnm" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cnn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/corner,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cno" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cnp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering Foyer";
+ req_access_txt = "0";
+ req_one_access_txt = "32;19"
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cnq" = (
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (SOUTHEAST)";
+ icon_state = "yellow";
+ dir = 6
+ },
+/area/engine/break_room)
+"cnr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering Storage";
+ req_access_txt = "32"
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/break_room)
+"cns" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (WEST)";
+ icon_state = "yellow";
+ dir = 8
+ },
+/area/engine/break_room)
+"cnt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cnu" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cnv" = (
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (EAST)";
+ icon_state = "yellow";
+ dir = 4
+ },
+/area/engine/break_room)
+"cnw" = (
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Atmospherics";
+ req_access_txt = "32"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/atmos)
+"cnx" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/machinery/camera{
+ c_tag = "Atmospherics West";
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cny" = (
+/turf/closed/wall,
+/area/atmos)
+"cnz" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 0;
+ name = "Air to Port";
+ on = 0
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cnA" = (
+/obj/effect/landmark/start{
+ name = "Atmospheric Technician"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cnB" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cnC" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/shuttle/engine/heater,
+/turf/open/floor/plating/airless,
+/area/shuttle/escape)
+"cnD" = (
+/obj/machinery/door/airlock/external,
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"cnE" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"cnF" = (
+/obj/structure/closet,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/engineering)
+"cnG" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTH)";
+ icon_state = "camera";
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/engineering)
+"cnH" = (
+/obj/item/device/radio,
+/turf/open/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/checkpoint/engineering)
+"cnI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cnJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/noticeboard{
+ dir = 1;
+ pixel_y = -27
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/break_room)
+"cnK" = (
+/obj/structure/table,
+/obj/machinery/microwave,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cnL" = (
+/obj/machinery/light/small,
+/obj/machinery/vending/cola,
+/turf/open/floor/plasteel/yellow,
+/area/engine/break_room)
+"cnM" = (
+/obj/machinery/vending/snack,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cnN" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cnO" = (
+/turf/closed/wall,
+/area/maintenance/aft)
+"cnP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/tank_dispenser/oxygen,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (WEST)";
+ icon_state = "yellow";
+ dir = 8
+ },
+/area/engine/break_room)
+"cnQ" = (
+/obj/structure/closet/secure_closet/atmospherics,
+/turf/open/floor/plasteel{
+ dir = 2;
+ icon_state = "bot"
+ },
+/area/engine/break_room)
+"cnR" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/open/floor/plasteel{
+ dir = 2;
+ icon_state = "bot"
+ },
+/area/engine/break_room)
+"cnS" = (
+/obj/effect/turf_decal/delivery,
+/obj/item/device/radio/intercom{
+ desc = "Talk smack through this.";
+ dir = 4;
+ pixel_x = 28;
+ syndie = 1
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/break_room)
+"cnT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cnU" = (
+/obj/structure/closet/secure_closet/atmospherics,
+/turf/open/floor/plasteel{
+ icon_state = "delivery";
+ name = "floor"
+ },
+/area/atmos)
+"cnV" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister,
+/turf/open/floor/plasteel{
+ dir = 2;
+ icon_state = "bot"
+ },
+/area/atmos)
+"cnW" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/obj/effect/turf_decal/bot{
+ dir = 2
+ },
+/turf/open/floor/plasteel{
+ dir = 2
+ },
+/area/atmos)
+"cnX" = (
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cnY" = (
+/obj/machinery/camera{
+ c_tag = "Atmospherics East";
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Plasma Outlet Pump";
+ on = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cnZ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 0;
+ frequency = 1441;
+ id_tag = "tox_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
+ },
+/turf/open/floor/engine/plasma,
+/area/atmos)
+"coa" = (
+/turf/open/floor/engine/plasma,
+/area/atmos)
+"cob" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/engine/plasma,
+/area/atmos)
+"coc" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/open/floor/plating/airless,
+/area/shuttle/escape)
+"cod" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 9
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"coe" = (
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTHEAST)";
+ icon_state = "yellow";
+ dir = 5
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cof" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cog" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j1";
+ tag = "icon-pipe-j1 (EAST)"
+ },
+/turf/open/space,
+/area/space/nearstation)
+"coh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"coi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"coj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cok" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (EAST)";
+ icon_state = "yellow";
+ dir = 4
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"col" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/aft)
+"com" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/junction{
+ tag = "icon-pipe-y (WEST)";
+ icon_state = "pipe-y";
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"con" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/suit_storage_unit/engine,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (WEST)";
+ icon_state = "yellow";
+ dir = 8
+ },
+/area/engine/break_room)
+"coo" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (EAST)";
+ icon_state = "yellow";
+ dir = 4
+ },
+/area/engine/break_room)
+"cop" = (
+/obj/structure/fireaxecabinet{
+ pixel_x = -30
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (EAST)";
+ icon_state = "camera";
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "delivery";
+ name = "floor"
+ },
+/area/atmos)
+"coq" = (
+/obj/machinery/suit_storage_unit/atmos,
+/turf/open/floor/plasteel{
+ icon_state = "delivery";
+ name = "floor"
+ },
+/area/atmos)
+"cor" = (
+/obj/structure/sign/nosmoking_2,
+/turf/closed/wall,
+/area/atmos)
+"cos" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/meter,
+/turf/open/floor/plasteel,
+/area/atmos)
+"cot" = (
+/obj/machinery/computer/atmos_control/tank{
+ frequency = 1441;
+ input_tag = "tox_in";
+ name = "Plasma Supply Control";
+ output_tag = "tox_out";
+ sensors = list("tox_sensor" = "Tank")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cou" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "tox_sensor"
+ },
+/turf/open/floor/engine/plasma,
+/area/atmos)
+"cov" = (
+/obj/machinery/portable_atmospherics/canister/toxins,
+/turf/open/floor/engine/plasma,
+/area/atmos)
+"cow" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/engine/plasma,
+/area/atmos)
+"cox" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"coy" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"coz" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"coA" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"coB" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/suit_storage_unit/engine,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (WEST)";
+ icon_state = "yellow";
+ dir = 8
+ },
+/area/engine/break_room)
+"coC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"coD" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"coE" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"coF" = (
+/turf/open/floor/plasteel/yellow/corner{
+ tag = "icon-yellowcorner (EAST)";
+ icon_state = "yellowcorner";
+ dir = 4
+ },
+/area/engine/break_room)
+"coG" = (
+/obj/structure/closet/toolcloset,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTHEAST)";
+ icon_state = "yellow";
+ dir = 5
+ },
+/area/engine/break_room)
+"coH" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Atmospherics APC";
+ pixel_x = -24
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/atmos)
+"coI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel{
+ icon_state = "delivery";
+ name = "floor"
+ },
+/area/atmos)
+"coJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"coK" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/item/weapon/wrench,
+/turf/open/floor/plasteel,
+/area/atmos)
+"coL" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
+ },
+/obj/machinery/meter,
+/turf/open/floor/plasteel,
+/area/atmos)
+"coM" = (
+/obj/machinery/atmospherics/components/trinary/filter{
+ dir = 1;
+ filter_type = "plasma";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"coN" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"coO" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 8;
+ frequency = 1441;
+ id = "tox_in";
+ pixel_y = 1
+ },
+/turf/open/floor/engine/plasma,
+/area/atmos)
+"coP" = (
+/obj/structure/grille,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"coQ" = (
+/obj/structure/grille{
+ density = 0;
+ icon_state = "brokengrille"
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"coR" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/pod_2)
+"coS" = (
+/obj/structure/shuttle/engine/propulsion/burst{
+ dir = 4;
+ icon_state = "propulsion";
+ tag = "icon-propulsion (WEST)"
+ },
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/pod_2)
+"coT" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"coU" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"coV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/suit_storage_unit/atmos,
+/turf/open/floor/plasteel/green/side{
+ dir = 10
+ },
+/area/engine/break_room)
+"coW" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (SOUTHWEST)";
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/open/floor/plasteel/green/side,
+/area/engine/break_room)
+"coX" = (
+/obj/machinery/suit_storage_unit/engine,
+/turf/open/floor/plasteel/orange/side,
+/area/engine/break_room)
+"coY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ tag = "icon-yellowcorner (WEST)";
+ icon_state = "yellowcorner";
+ dir = 8
+ },
+/area/engine/break_room)
+"coZ" = (
+/turf/open/floor/plasteel/yellow/corner,
+/area/engine/break_room)
+"cpa" = (
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/break_room)
+"cpb" = (
+/obj/structure/closet/radiation,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (SOUTHEAST)";
+ icon_state = "yellow";
+ dir = 6
+ },
+/area/engine/break_room)
+"cpc" = (
+/obj/structure/closet/wardrobe/atmospherics_yellow,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/atmos)
+"cpd" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel{
+ icon_state = "delivery";
+ name = "floor"
+ },
+/area/atmos)
+"cpe" = (
+/obj/machinery/requests_console{
+ department = "Atmospherics";
+ departmentType = 4;
+ name = "Atmos RC";
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cpf" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Atmospherics Central";
+ dir = 4;
+ network = list("SS13")
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 0;
+ name = "Port to Filter";
+ on = 0
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cpg" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
+ },
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel,
+/area/atmos)
+"cph" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/heater{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cpi" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/pod_2)
+"cpj" = (
+/obj/machinery/computer/shuttle/pod{
+ pixel_x = 0;
+ pixel_y = -32;
+ possible_destinations = "pod_asteroid2";
+ shuttleId = "pod2"
+ },
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 3;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/pod_2)
+"cpk" = (
+/obj/item/weapon/storage/pod{
+ pixel_x = 6;
+ pixel_y = -28
+ },
+/obj/item/device/radio/intercom{
+ pixel_x = 0;
+ pixel_y = 25
+ },
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/pod_2)
+"cpl" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Escape Pod Airlock"
+ },
+/obj/docking_port/mobile/pod{
+ dir = 8;
+ id = "pod2";
+ name = "escape pod 2";
+ port_angle = 180
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/pod_2)
+"cpm" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 1;
+ name = "Escape Pod Two"
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"cpn" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cpo" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cpp" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cpq" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cpr" = (
+/mob/living/simple_animal/bot/floorbot,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cps" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/atmos_control)
+"cpt" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/atmos_control)
+"cpu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (SOUTHWEST)";
+ icon_state = "yellow";
+ dir = 10
+ },
+/area/engine/break_room)
+"cpv" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (SOUTHEAST)";
+ icon_state = "yellow";
+ dir = 6
+ },
+/area/engine/break_room)
+"cpw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/atmos)
+"cpx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/turf/open/floor/plasteel,
+/area/atmos)
+"cpy" = (
+/obj/structure/closet/wardrobe/atmospherics_yellow,
+/turf/open/floor/plasteel,
+/area/atmos)
+"cpz" = (
+/obj/machinery/space_heater,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cpA" = (
+/obj/machinery/space_heater,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cpB" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cpC" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Port to Filter";
+ on = 0
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cpD" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/obj/item/weapon/cigbutt,
+/turf/open/floor/plasteel,
+/area/atmos)
+"cpE" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cpF" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "CO2 Outlet Pump";
+ on = 0
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 5
+ },
+/area/atmos)
+"cpG" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 0;
+ frequency = 1441;
+ id_tag = "co2_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
+ },
+/turf/open/floor/engine/co2,
+/area/atmos)
+"cpH" = (
+/turf/open/floor/engine/co2,
+/area/atmos)
+"cpI" = (
+/obj/machinery/camera{
+ c_tag = "Arrivals Escape Pod 2";
+ dir = 8
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"cpJ" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"cpK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = ""
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cpL" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cpM" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cpN" = (
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (SOUTHEAST)";
+ icon_state = "yellow";
+ dir = 6
+ },
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cpO" = (
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cpP" = (
+/obj/structure/cable{
+ icon_state = "2-4";
+ tag = "icon-2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cpQ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cpR" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cpS" = (
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cpT" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/atmos_control)
+"cpU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/structure/closet/crate{
+ name = "solar pack crate"
+ },
+/turf/open/floor/plating,
+/area/maintenance/atmos_control)
+"cpV" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/atmos_control)
+"cpW" = (
+/obj/item/weapon/storage/backpack/industrial,
+/turf/open/floor/plating,
+/area/maintenance/atmos_control)
+"cpX" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/aft)
+"cpY" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Storage Room";
+ req_access_txt = "32"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cpZ" = (
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal/bin,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/atmos)
+"cqa" = (
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/atmos)
+"cqb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cqc" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 1
+ },
+/obj/machinery/meter,
+/turf/open/floor/plasteel,
+/area/atmos)
+"cqd" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cqe" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 9
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/atmos)
+"cqf" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 6;
+ initialize_directions = 6
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cqg" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ name = "N2 to Pure";
+ on = 0
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cqh" = (
+/obj/machinery/computer/atmos_control/tank{
+ frequency = 1441;
+ input_tag = "co2_in";
+ name = "Carbon Dioxide Supply Control";
+ output_tag = "co2_out";
+ sensors = list("co2_sensor" = "Tank")
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/atmos)
+"cqi" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "co2_sensor"
+ },
+/turf/open/floor/engine/co2,
+/area/atmos)
+"cqj" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/turf/open/floor/engine/co2,
+/area/atmos)
+"cqk" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/engine/co2,
+/area/atmos)
+"cql" = (
+/obj/structure/lattice,
+/obj/structure/grille,
+/turf/open/space,
+/area/space)
+"cqm" = (
+/turf/closed/wall,
+/area/mining_construction)
+"cqn" = (
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"cqo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"cqp" = (
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Power Monitoring";
+ req_access_txt = "32"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"cqq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/closed/wall,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cqr" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/yellow,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cqs" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/yellow,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cqt" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/yellow,
+/area/engine/break_room{
+ name = "Engineering Hallway"
+ })
+"cqu" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/storage/belt/utility,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cqv" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cqw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cqx" = (
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cqy" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cqz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/atmos_control)
+"cqA" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/atmos_control)
+"cqB" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/atmos_control)
+"cqC" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cqD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cqE" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cqF" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Atmospherics Maintenance";
+ req_access_txt = "24"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cqG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/atmos)
+"cqH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel{
+ icon_state = "delivery";
+ name = "floor"
+ },
+/area/atmos)
+"cqI" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/turf/open/floor/plasteel,
+/area/atmos)
+"cqJ" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/open/floor/plasteel,
+/area/atmos)
+"cqK" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible,
+/turf/open/floor/plasteel,
+/area/atmos)
+"cqL" = (
+/obj/machinery/atmospherics/components/trinary/mixer{
+ dir = 4;
+ node1_concentration = 0.8;
+ node2_concentration = 0.2;
+ on = 1;
+ pixel_x = 0;
+ pixel_y = 0;
+ target_pressure = 4500
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cqM" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "O2 to Pure";
+ on = 0
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cqN" = (
+/obj/machinery/atmospherics/components/trinary/filter{
+ dir = 1;
+ filter_type = "co2";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cqO" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 6
+ },
+/area/atmos)
+"cqP" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 8;
+ frequency = 1441;
+ id = "co2_in";
+ pixel_y = 1
+ },
+/turf/open/floor/engine/co2,
+/area/atmos)
+"cqQ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"cqR" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"cqS" = (
+/obj/structure/closet/secure_closet/miner{
+ locked = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"cqT" = (
+/obj/machinery/computer/arcade,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"cqU" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/computer/station_alert,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTHWEST)";
+ icon_state = "yellow";
+ dir = 9
+ },
+/area/engine/engineering)
+"cqV" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/engine/engineering)
+"cqW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/engine/engineering)
+"cqX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/camera/autoname,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/engine/engineering)
+"cqY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTHEAST)";
+ icon_state = "yellow";
+ dir = 5
+ },
+/area/engine/engineering)
+"cqZ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cra" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"crb" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering{
+ name = "Engine Room";
+ req_access_txt = "10"
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"crc" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Engine Maintenance";
+ req_access_txt = "10"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"crd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"cre" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Engineering Maintenance APC";
+ pixel_x = -25;
+ pixel_y = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"crf" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"crg" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"crh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cri" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ tag = "icon-platingdmg3";
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/aft)
+"crj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/atmos)
+"crk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plasteel{
+ icon_state = "delivery";
+ name = "floor"
+ },
+/area/atmos)
+"crl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/atmos)
+"crm" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/turf/open/floor/plasteel,
+/area/atmos)
+"crn" = (
+/obj/machinery/atmospherics/components/binary/valve/digital{
+ name = "Waste Release"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cro" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"crp" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/atmos)
+"crq" = (
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
+ },
+/turf/open/floor/plasteel/airless/solarpanel,
+/area/solar/auxstarboard{
+ name = "Auxiliary Solar Array"
+ })
+"crr" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxstarboard{
+ name = "Auxiliary Solar Array"
+ })
+"crs" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
+ },
+/turf/open/floor/plasteel/airless/solarpanel,
+/area/solar/auxstarboard{
+ name = "Auxiliary Solar Array"
+ })
+"crt" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"cru" = (
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"crv" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"crw" = (
+/obj/machinery/vending/cola,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"crx" = (
+/obj/machinery/computer/monitor{
+ name = "primary power monitoring console"
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (SOUTHWEST)";
+ icon_state = "yellow";
+ dir = 10
+ },
+/area/engine/engineering)
+"cry" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/engineering)
+"crz" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ name = "regular air vent";
+ on = 1
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/engineering)
+"crA" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/engineering)
+"crB" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ tag = "icon-intact (EAST)";
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (SOUTHEAST)";
+ icon_state = "yellow";
+ dir = 6
+ },
+/area/engine/engineering)
+"crC" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"crD" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Power Monitoring";
+ req_access_txt = "32"
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"crE" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTHWEST)";
+ icon_state = "yellow";
+ dir = 9
+ },
+/area/engine/engineering)
+"crF" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/machinery/camera/autoname,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/engine/engineering)
+"crG" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/rack,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/engine/engineering)
+"crH" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/rack,
+/obj/item/clothing/head/welding,
+/obj/item/clothing/glasses/welding,
+/obj/item/clothing/glasses/welding,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/engine/engineering)
+"crI" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/obj/structure/rack,
+/obj/item/weapon/storage/belt/utility,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 5
+ },
+/area/engine/engineering)
+"crJ" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"crK" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/bin,
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"crL" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/engine/engineering)
+"crM" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/engine/engineering)
+"crN" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/engine/engineering)
+"crO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/computer/station_alert,
+/obj/structure/cable{
+ tag = "icon-0-8";
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"crP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"crQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 9
+ },
+/area/engine/engineering)
+"crR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/engine/engineering)
+"crS" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/engine/engineering)
+"crT" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/structure/closet/wardrobe/engineering_yellow,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTH)";
+ icon_state = "yellow";
+ dir = 1
+ },
+/area/engine/engineering)
+"crU" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (NORTHEAST)";
+ icon_state = "yellow";
+ dir = 5
+ },
+/area/engine/engineering)
+"crV" = (
+/obj/machinery/power/port_gen/pacman,
+/turf/open/floor/plasteel{
+ tag = "icon-vault (WEST)";
+ icon_state = "vault";
+ dir = 8
+ },
+/area/engine/engineering)
+"crW" = (
+/obj/machinery/portable_atmospherics/scrubber/huge/movable,
+/turf/open/floor/plasteel{
+ tag = "icon-vault (WEST)";
+ icon_state = "vault";
+ dir = 8
+ },
+/area/engine/engineering)
+"crX" = (
+/obj/machinery/portable_atmospherics/canister/toxins,
+/turf/open/floor/plasteel{
+ tag = "icon-vault (WEST)";
+ icon_state = "vault";
+ dir = 8
+ },
+/area/engine/engineering)
+"crY" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/engineering)
+"crZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"csa" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"csb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/aft)
+"csc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/atmos)
+"csd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plasteel{
+ icon_state = "delivery";
+ name = "floor"
+ },
+/area/atmos)
+"cse" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"csf" = (
+/obj/machinery/atmospherics/components/trinary/filter{
+ dir = 2;
+ filter_type = "n2";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"csg" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"csh" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"csi" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxstarboard{
+ name = "Auxiliary Solar Array"
+ })
+"csj" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/mining_construction)
+"csk" = (
+/obj/machinery/vending/snack,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"csl" = (
+/turf/closed/wall/r_wall,
+/area/engine/engine_smes)
+"csm" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/engine/engine_smes)
+"csn" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/engine/engine_smes)
+"cso" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Power Monitoring";
+ req_access_txt = "32"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/engine_smes)
+"csp" = (
+/turf/closed/wall,
+/area/engine/engine_smes)
+"csq" = (
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (WEST)";
+ icon_state = "yellow";
+ dir = 8
+ },
+/area/engine/engineering)
+"csr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"css" = (
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cst" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4";
+ d1 = 1;
+ d2 = 4
+ },
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"csu" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"csv" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"csw" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"csx" = (
+/obj/machinery/computer/monitor,
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"csy" = (
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/engine/engineering)
+"csz" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"csA" = (
+/obj/machinery/door/poddoor{
+ id = "Secure Storage";
+ name = "secure storage"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"csB" = (
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/engineering)
+"csC" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/tank_dispenser,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/engineering)
+"csD" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (EAST)";
+ icon_state = "camera";
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/atmos)
+"csE" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/turf/open/floor/plasteel{
+ icon_state = "delivery";
+ name = "floor"
+ },
+/area/atmos)
+"csF" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/machinery/portable_atmospherics/pump,
+/turf/open/floor/plasteel,
+/area/atmos)
+"csG" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/turf/open/floor/plasteel,
+/area/atmos)
+"csH" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/turf/open/floor/plasteel,
+/area/atmos)
+"csI" = (
+/obj/machinery/atmospherics/components/trinary/filter{
+ dir = 4;
+ filter_type = "o2";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"csJ" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"csK" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4;
+ initialize_directions = 12
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"csL" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"csM" = (
+/obj/machinery/light,
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"csN" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/mining_construction)
+"csO" = (
+/obj/structure/closet/toolcloset,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 9
+ },
+/area/mining_construction)
+"csP" = (
+/obj/structure/closet/toolcloset,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/mining_construction)
+"csQ" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 5
+ },
+/area/mining_construction)
+"csR" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"csS" = (
+/obj/structure/table,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"csT" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "SMES Room APC";
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ tag = "icon-0-4";
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/engine_smes)
+"csU" = (
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/engine_smes)
+"csV" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/engine_smes)
+"csW" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/engine_smes)
+"csX" = (
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/engine_smes)
+"csY" = (
+/obj/structure/table,
+/obj/item/device/flashlight,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 9
+ },
+/area/engine/engineering)
+"csZ" = (
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/engine/engineering)
+"cta" = (
+/turf/open/floor/plasteel/yellow/corner{
+ tag = "icon-yellowcorner (NORTH)";
+ icon_state = "yellowcorner";
+ dir = 1
+ },
+/area/engine/engineering)
+"ctb" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ctc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (EAST)";
+ icon_state = "yellow";
+ dir = 4
+ },
+/area/engine/engineering)
+"ctd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Engine Room";
+ req_access_txt = "10"
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"cte" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"ctf" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ctg" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/obj/effect/landmark/start{
+ name = "Station Engineer"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cth" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cti" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/engine/engineering)
+"ctj" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ name = "regular air scrubber";
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ctk" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ctl" = (
+/obj/machinery/shieldgen,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/engineering)
+"ctm" = (
+/obj/machinery/portable_atmospherics/pump,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/atmos)
+"ctn" = (
+/obj/machinery/portable_atmospherics/pump,
+/turf/open/floor/plasteel{
+ icon_state = "delivery";
+ name = "floor"
+ },
+/area/atmos)
+"cto" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/machinery/portable_atmospherics/pump,
+/turf/open/floor/plasteel/red/side{
+ dir = 10
+ },
+/area/atmos)
+"ctp" = (
+/obj/machinery/computer/atmos_control/tank{
+ frequency = 1441;
+ input_tag = "n2_in";
+ name = "Nitrogen Supply Control";
+ output_tag = "n2_out";
+ sensors = list("n2_sensor" = "Tank")
+ },
+/turf/open/floor/plasteel/red/side,
+/area/atmos)
+"ctq" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "N2 Outlet Pump";
+ on = 1
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 6
+ },
+/area/atmos)
+"ctr" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/turf/open/floor/plasteel,
+/area/atmos)
+"cts" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/turf/open/floor/plasteel/blue/side{
+ dir = 10
+ },
+/area/atmos)
+"ctt" = (
+/obj/machinery/computer/atmos_control/tank{
+ frequency = 1441;
+ input_tag = "o2_in";
+ name = "Oxygen Supply Control";
+ output_tag = "o2_out";
+ sensors = list("o2_sensor" = "Tank")
+ },
+/turf/open/floor/plasteel/blue/side{
+ dir = 0
+ },
+/area/atmos)
+"ctu" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "O2 Outlet Pump";
+ on = 1
+ },
+/turf/open/floor/plasteel/blue/side{
+ dir = 6
+ },
+/area/atmos)
+"ctv" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/turf/open/floor/plasteel/arrival{
+ dir = 10
+ },
+/area/atmos)
+"ctw" = (
+/obj/machinery/computer/atmos_control/tank{
+ frequency = 1441;
+ input_tag = "air_in";
+ name = "Mixed Air Supply Control";
+ output_tag = "air_out";
+ sensors = list("air_sensor" = "Tank")
+ },
+/turf/open/floor/plasteel/arrival,
+/area/atmos)
+"ctx" = (
+/obj/machinery/camera{
+ c_tag = "Atmospherics South East";
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Air Outlet Pump";
+ on = 1
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 6
+ },
+/area/atmos)
+"cty" = (
+/obj/machinery/door/airlock/external{
+ name = "Atmospherics External Airlock";
+ req_access_txt = "24"
+ },
+/turf/open/floor/noslip,
+/area/atmos)
+"ctz" = (
+/turf/open/floor/noslip,
+/area/atmos)
+"ctA" = (
+/obj/machinery/camera{
+ c_tag = "Auxillary Mining Base";
+ dir = 8;
+ network = list("SS13","AuxBase")
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"ctB" = (
+/obj/docking_port/mobile/auxillary_base{
+ dheight = 4;
+ dir = 4;
+ dwidth = 4;
+ height = 9;
+ width = 9
+ },
+/obj/machinery/bluespace_beacon,
+/obj/machinery/computer/auxillary_base{
+ pixel_y = 0
+ },
+/turf/closed/wall,
+/area/shuttle/auxillary_base)
+"ctC" = (
+/obj/structure/mining_shuttle_beacon{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"ctD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/docking_port/stationary/public_mining_dock{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"ctE" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 1;
+ name = "Construction Zone";
+ req_access = null;
+ req_access_txt = "0";
+ req_one_access_txt = "0"
+ },
+/turf/open/floor/plating,
+/area/mining_construction)
+"ctF" = (
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/mining_construction)
+"ctG" = (
+/turf/open/floor/plasteel,
+/area/mining_construction)
+"ctH" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Auxillary Base Construction";
+ dir = 8
+ },
+/obj/machinery/computer/camera_advanced/base_construction,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/mining_construction)
+"ctI" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/engine_smes)
+"ctJ" = (
+/obj/machinery/power/smes/engineering,
+/obj/structure/cable{
+ tag = "icon-0-8";
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel{
+ tag = "icon-vault (WEST)";
+ icon_state = "vault";
+ dir = 8
+ },
+/area/engine/engine_smes)
+"ctK" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/engine_smes)
+"ctL" = (
+/obj/machinery/power/smes/engineering,
+/obj/structure/cable{
+ tag = "icon-0-4";
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel{
+ tag = "icon-vault (WEST)";
+ icon_state = "vault";
+ dir = 8
+ },
+/area/engine/engine_smes)
+"ctM" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/engine_smes)
+"ctN" = (
+/obj/machinery/power/apc{
+ cell_type = 10000;
+ dir = 8;
+ name = "Engine Room APC";
+ pixel_x = -26;
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (WEST)";
+ icon_state = "yellow";
+ dir = 8
+ },
+/area/engine/engineering)
+"ctO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/structure/table,
+/obj/item/weapon/storage/toolbox,
+/obj/item/weapon/storage/toolbox,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ctP" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ctQ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (EAST)";
+ icon_state = "yellow";
+ dir = 4
+ },
+/area/engine/engineering)
+"ctR" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"ctS" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/closet/radiation,
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"ctT" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ name = "regular air scrubber";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ctU" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ctV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/table,
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/weapon/reagent_containers/pill/charcoal,
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"ctW" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/table,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (EAST)";
+ icon_state = "camera";
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/engine/engineering)
+"ctX" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ctY" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ctZ" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/closet/secure_closet/engineering_electrical,
+/obj/machinery/button/door{
+ desc = "A remote control-switch for secure storage.";
+ id = "Secure Storage";
+ name = "Engineering Secure Storage";
+ pixel_x = 24;
+ pixel_y = 0;
+ req_access_txt = "11"
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (EAST)";
+ icon_state = "yellow";
+ dir = 4
+ },
+/area/engine/engineering)
+"cua" = (
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/rods{
+ amount = 50
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/obj/item/weapon/electronics/airlock,
+/obj/item/weapon/electronics/airlock,
+/obj/item/weapon/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/item/stack/sheet/mineral/plasma{
+ amount = 30
+ },
+/obj/item/device/gps,
+/obj/machinery/button/door{
+ desc = "A remote control-switch for secure storage.";
+ id = "Secure Storage";
+ name = "Engineering Secure Storage";
+ pixel_x = -24;
+ pixel_y = 0;
+ req_access_txt = "11"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/engineering)
+"cub" = (
+/obj/machinery/shieldgen,
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHWEST)";
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/engineering)
+"cuc" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/turf/closed/wall/r_wall,
+/area/atmos)
+"cud" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/atmos)
+"cue" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/turf/open/floor/plating,
+/area/atmos)
+"cuf" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/atmos)
+"cug" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/atmos)
+"cuh" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/turf/closed/wall/r_wall,
+/area/atmos)
+"cui" = (
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space)
+"cuj" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/auxsolarstarboard{
+ name = "Auxiliary Solar Control"
+ })
+"cuk" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating/airless,
+/area/maintenance/auxsolarstarboard{
+ name = "Auxiliary Solar Control"
+ })
+"cul" = (
+/obj/docking_port/stationary{
+ dheight = 9;
+ dir = 2;
+ dwidth = 5;
+ height = 24;
+ id = "syndicate_southmaint";
+ name = "south maintenance airlock";
+ turf_type = /turf/open/space;
+ width = 18
+ },
+/turf/open/space,
+/area/space)
+"cum" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"cun" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/mining_construction)
+"cuo" = (
+/obj/structure/rack{
+ dir = 4
+ },
+/obj/item/weapon/electronics/airlock,
+/obj/item/weapon/electronics/airlock,
+/obj/item/weapon/electronics/airlock,
+/obj/item/weapon/electronics/airlock,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/wallframe/camera,
+/obj/item/wallframe/camera,
+/obj/item/wallframe/camera,
+/obj/item/wallframe/camera,
+/obj/item/device/assault_pod/mining,
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for the Auxillary Mining Base.";
+ dir = 8;
+ name = "Auxillary Base Monitor";
+ network = list("AuxBase");
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/mining_construction)
+"cup" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/engine_smes)
+"cuq" = (
+/obj/machinery/power/terminal{
+ icon_state = "term";
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/engine_smes)
+"cur" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/engine_smes)
+"cus" = (
+/obj/machinery/power/terminal{
+ icon_state = "term";
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/engine_smes)
+"cut" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/table,
+/obj/item/weapon/folder/yellow,
+/obj/item/clothing/ears/earmuffs{
+ pixel_x = -3;
+ pixel_y = -2
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (WEST)";
+ icon_state = "yellow";
+ dir = 8
+ },
+/area/engine/engineering)
+"cuu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/table,
+/obj/item/weapon/storage/toolbox/electrical,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cuv" = (
+/obj/effect/landmark/start{
+ name = "Station Engineer"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cuw" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/table,
+/obj/item/weapon/electronics/apc,
+/obj/item/weapon/electronics/apc,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (EAST)";
+ icon_state = "yellow";
+ dir = 4
+ },
+/area/engine/engineering)
+"cux" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cuy" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/machinery/light,
+/obj/structure/closet/radiation,
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"cuz" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/engineering)
+"cuA" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4";
+ d1 = 1;
+ d2 = 4
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/engineering)
+"cuB" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the singularity chamber.";
+ dir = 2;
+ layer = 4;
+ name = "Engine Containment Telescreen";
+ network = list("Singularity");
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/engineering)
+"cuC" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/machinery/light,
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/weapon/stock_parts/cell/high,
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"cuD" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/table,
+/obj/item/weapon/book/manual/wiki/engineering_construction{
+ pixel_x = 6
+ },
+/obj/item/weapon/book/manual/wiki/engineering_guide,
+/obj/item/weapon/book/manual/wiki/engineering_hacking{
+ pixel_x = -6
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/engine/engineering)
+"cuE" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/closet/secure_closet/engineering_welding,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (EAST)";
+ icon_state = "yellow";
+ dir = 4
+ },
+/area/engine/engineering)
+"cuF" = (
+/obj/machinery/field/generator{
+ anchored = 0;
+ state = 2
+ },
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (EAST)";
+ icon_state = "camera";
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/engineering)
+"cuG" = (
+/obj/machinery/field/generator{
+ anchored = 0;
+ state = 2
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/engineering)
+"cuH" = (
+/obj/machinery/the_singularitygen{
+ anchored = 0
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/engineering)
+"cuI" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/turf/open/space,
+/area/space/nearstation)
+"cuJ" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/turf/open/space,
+/area/space/nearstation)
+"cuK" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1;
+ frequency = 1441;
+ id = "waste_out"
+ },
+/turf/open/floor/plating/airless,
+/area/atmos)
+"cuL" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/turf/open/space,
+/area/space/nearstation)
+"cuM" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/turf/open/space,
+/area/space)
+"cuN" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/power/smes,
+/turf/open/floor/plating,
+/area/maintenance/auxsolarstarboard{
+ name = "Auxiliary Solar Control"
+ })
+"cuO" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/power/terminal{
+ tag = "icon-term (WEST)";
+ icon_state = "term";
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/auxsolarstarboard{
+ name = "Auxiliary Solar Control"
+ })
+"cuP" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/item/stack/cable_coil,
+/turf/open/floor/plating,
+/area/maintenance/auxsolarstarboard{
+ name = "Auxiliary Solar Control"
+ })
+"cuQ" = (
+/obj/structure/cable,
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxstarboard{
+ name = "Auxiliary Solar Array"
+ })
+"cuR" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/space,
+/area/solar/auxstarboard{
+ name = "Auxiliary Solar Array"
+ })
+"cuS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/mining_construction)
+"cuT" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/mining_construction)
+"cuU" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/engine_smes)
+"cuV" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/engine/engine_smes)
+"cuW" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/table,
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/obj/item/stack/rods{
+ amount = 50
+ },
+/obj/item/stack/rods{
+ amount = 50
+ },
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (WEST)";
+ icon_state = "yellow";
+ dir = 8
+ },
+/area/engine/engineering)
+"cuX" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/obj/structure/table,
+/obj/item/weapon/storage/toolbox/emergency,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cuY" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/table,
+/obj/item/weapon/electronics/airlock,
+/obj/item/weapon/electronics/airlock,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (EAST)";
+ icon_state = "yellow";
+ dir = 4
+ },
+/area/engine/engineering)
+"cuZ" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/button/door{
+ id = "Singularity";
+ name = "Shutters Control";
+ pixel_x = -25;
+ pixel_y = 0;
+ req_access_txt = "11"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "Singularity";
+ name = "radiation shutters"
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Engine Room";
+ req_access_txt = "10"
+ },
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "delivery"
+ },
+/area/engine/engineering)
+"cva" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/table,
+/obj/item/weapon/book/manual/engineering_particle_accelerator{
+ pixel_x = 3
+ },
+/obj/item/weapon/book/manual/engineering_singularity_safety{
+ pixel_x = -3
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (WEST)";
+ icon_state = "yellow";
+ dir = 8
+ },
+/area/engine/engineering)
+"cvb" = (
+/obj/structure/table,
+/obj/item/stack/sheet/rglass{
+ amount = 50
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cvc" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ tag = "icon-vent_map (NORTH)";
+ name = "regular air vent";
+ icon_state = "vent_map";
+ dir = 1;
+ on = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cvd" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/closet/toolcloset,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (EAST)";
+ icon_state = "yellow";
+ dir = 4
+ },
+/area/engine/engineering)
+"cve" = (
+/obj/machinery/field/generator{
+ anchored = 0;
+ state = 2
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/engineering)
+"cvf" = (
+/obj/machinery/atmospherics/pipe/simple,
+/obj/structure/grille,
+/obj/machinery/meter,
+/turf/closed/wall/r_wall,
+/area/atmos)
+"cvg" = (
+/obj/machinery/atmospherics/pipe/simple,
+/obj/structure/grille,
+/obj/machinery/meter{
+ name = "Mixed Air Tank In"
+ },
+/turf/closed/wall/r_wall,
+/area/atmos)
+"cvh" = (
+/obj/machinery/atmospherics/pipe/simple,
+/obj/structure/grille,
+/obj/machinery/meter{
+ name = "Mixed Air Tank Out"
+ },
+/turf/closed/wall/r_wall,
+/area/atmos)
+"cvi" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/turf/open/space,
+/area/space)
+"cvj" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/space,
+/area/space)
+"cvk" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 8;
+ name = "Solar Maintenance";
+ req_access = null;
+ req_access_txt = "10; 13"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/auxsolarstarboard{
+ name = "Auxiliary Solar Control"
+ })
+"cvl" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/auxsolarstarboard{
+ name = "Auxiliary Solar Control"
+ })
+"cvm" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 4;
+ name = "Solar Maintenance";
+ req_access = null;
+ req_access_txt = "10; 13"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/auxsolarstarboard{
+ name = "Auxiliary Solar Control"
+ })
+"cvn" = (
+/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";
+ tag = ""
+ },
+/turf/open/floor/plating,
+/area/maintenance/auxsolarstarboard{
+ name = "Auxiliary Solar Control"
+ })
+"cvo" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = ""
+ },
+/turf/open/floor/plating,
+/area/maintenance/auxsolarstarboard{
+ name = "Auxiliary Solar Control"
+ })
+"cvp" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/auxsolarstarboard{
+ name = "Auxiliary Solar Control"
+ })
+"cvq" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 8;
+ name = "Solar Maintenance";
+ req_access = null;
+ req_access_txt = "10; 13"
+ },
+/turf/open/floor/plating,
+/area/maintenance/auxsolarstarboard{
+ name = "Auxiliary Solar Control"
+ })
+"cvr" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 4;
+ name = "Solar Maintenance";
+ req_access = null;
+ req_access_txt = "10; 13"
+ },
+/turf/open/floor/plating,
+/area/maintenance/auxsolarstarboard{
+ name = "Auxiliary Solar Control"
+ })
+"cvs" = (
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/maintenance/auxsolarstarboard{
+ name = "Auxiliary Solar Control"
+ })
+"cvt" = (
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxstarboard{
+ name = "Auxiliary Solar Array"
+ })
+"cvu" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/space,
+/area/solar/auxstarboard{
+ name = "Auxiliary Solar Array"
+ })
+"cvv" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/space,
+/area/solar/auxstarboard{
+ name = "Auxiliary Solar Array"
+ })
+"cvw" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/turf/open/space,
+/area/solar/auxstarboard{
+ name = "Auxiliary Solar Array"
+ })
+"cvx" = (
+/obj/structure/lattice/catwalk,
+/obj/item/stack/cable_coil,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/space,
+/area/solar/auxstarboard{
+ name = "Auxiliary Solar Array"
+ })
+"cvy" = (
+/obj/machinery/power/tracker,
+/obj/structure/cable{
+ tag = "icon-0-8";
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/airless/solarpanel,
+/area/solar/auxstarboard{
+ name = "Auxiliary Solar Array"
+ })
+"cvz" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/mining_construction)
+"cvA" = (
+/obj/structure/table,
+/obj/item/stack/sheet/plasteel{
+ amount = 10
+ },
+/obj/item/stack/rods{
+ amount = 50
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/mining_construction)
+"cvB" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"cvC" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/engine/engine_smes)
+"cvD" = (
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/engine_smes)
+"cvE" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/engine_smes)
+"cvF" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (WEST)";
+ icon_state = "yellow";
+ dir = 8
+ },
+/area/engine/engineering)
+"cvG" = (
+/obj/structure/table,
+/obj/item/weapon/storage/toolbox/mechanical,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cvH" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/table,
+/obj/item/weapon/electronics/firealarm,
+/obj/item/stack/cable_coil{
+ pixel_x = 5
+ },
+/obj/item/stack/cable_coil,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (EAST)";
+ icon_state = "yellow";
+ dir = 4
+ },
+/area/engine/engineering)
+"cvI" = (
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/engine/engineering)
+"cvJ" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/engine/engineering)
+"cvK" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/engine/engineering)
+"cvL" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/table,
+/obj/item/weapon/airlock_painter,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (WEST)";
+ icon_state = "yellow";
+ dir = 8
+ },
+/area/engine/engineering)
+"cvM" = (
+/obj/structure/table,
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cvN" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/table,
+/obj/item/weapon/wrench,
+/obj/item/weapon/crowbar/red,
+/obj/item/weapon/storage/belt/utility,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (EAST)";
+ icon_state = "yellow";
+ dir = 4
+ },
+/area/engine/engineering)
+"cvO" = (
+/obj/machinery/power/emitter,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/engineering)
+"cvP" = (
+/obj/structure/closet/crate,
+/obj/machinery/power/rad_collector,
+/obj/machinery/power/rad_collector,
+/obj/machinery/power/rad_collector,
+/obj/machinery/power/rad_collector,
+/obj/machinery/power/rad_collector,
+/obj/machinery/power/rad_collector,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/engineering)
+"cvQ" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1;
+ frequency = 1441;
+ id = "n2_in"
+ },
+/turf/open/floor/engine/n2,
+/area/atmos)
+"cvR" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "n2_sensor"
+ },
+/turf/open/floor/engine/n2,
+/area/atmos)
+"cvS" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 0;
+ frequency = 1441;
+ id_tag = "n2_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
+ },
+/turf/open/floor/engine/n2,
+/area/atmos)
+"cvT" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1;
+ frequency = 1441;
+ id = "o2_in"
+ },
+/turf/open/floor/engine/o2,
+/area/atmos)
+"cvU" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "o2_sensor"
+ },
+/turf/open/floor/engine/o2,
+/area/atmos)
+"cvV" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 0;
+ frequency = 1441;
+ id_tag = "o2_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
+ },
+/turf/open/floor/engine/o2,
+/area/atmos)
+"cvW" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1;
+ frequency = 1441;
+ id = "air_in"
+ },
+/turf/open/floor/engine/air,
+/area/atmos)
+"cvX" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "air_sensor"
+ },
+/turf/open/floor/engine/air,
+/area/atmos)
+"cvY" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{
+ dir = 1;
+ external_pressure_bound = 0;
+ frequency = 1441;
+ icon_state = "vent_map";
+ id_tag = "air_out";
+ internal_pressure_bound = 2000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
+ },
+/turf/open/floor/engine/air,
+/area/atmos)
+"cvZ" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/space,
+/area/space)
+"cwa" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Aft Port Solar APC";
+ pixel_x = -23;
+ pixel_y = 2
+ },
+/obj/machinery/camera{
+ c_tag = "Aft Port Solar Control";
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/maintenance/auxsolarstarboard{
+ name = "Auxiliary Solar Control"
+ })
+"cwb" = (
+/turf/open/floor/plating,
+/area/maintenance/auxsolarstarboard{
+ name = "Auxiliary Solar Control"
+ })
+"cwc" = (
+/obj/machinery/power/solar_control{
+ id = "portsolar";
+ name = "Aft Port Solar Control";
+ track = 0
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/maintenance/auxsolarstarboard{
+ name = "Auxiliary Solar Control"
+ })
+"cwd" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxstarboard{
+ name = "Auxiliary Solar Array"
+ })
+"cwe" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"cwf" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"cwg" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"cwh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 10
+ },
+/area/mining_construction)
+"cwi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/yellow/side,
+/area/mining_construction)
+"cwj" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/pipe_dispenser,
+/obj/machinery/button/door{
+ id = "aux_base_shutters";
+ name = "Public Shutters Control";
+ pixel_x = 24;
+ pixel_y = 0;
+ req_access_txt = "0";
+ req_one_access_txt = "32;47;48"
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 6
+ },
+/area/mining_construction)
+"cwk" = (
+/obj/structure/table,
+/obj/item/stack/sheet/plasteel{
+ amount = 10
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 10
+ },
+/area/engine/engineering)
+"cwl" = (
+/obj/structure/table,
+/obj/item/clothing/gloves/color/yellow,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cwm" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cwn" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/button/door{
+ id = "Singularity";
+ name = "Shutters Control";
+ pixel_x = 25;
+ pixel_y = 0;
+ req_access_txt = "11"
+ },
+/obj/structure/closet/radiation,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (EAST)";
+ icon_state = "yellow";
+ dir = 4
+ },
+/area/engine/engineering)
+"cwo" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/machinery/button/door{
+ id = "Singularity";
+ name = "Shutters Control";
+ pixel_x = -25;
+ pixel_y = 0;
+ req_access_txt = "11"
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/engine/engineering)
+"cwp" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/engine/engineering)
+"cwq" = (
+/obj/structure/particle_accelerator/end_cap,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/engine/engineering)
+"cwr" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/button/door{
+ id = "Singularity";
+ name = "Shutters Control";
+ pixel_x = 25;
+ pixel_y = 0;
+ req_access_txt = "11"
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/engine/engineering)
+"cws" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/button/door{
+ id = "Singularity";
+ name = "Shutters Control";
+ pixel_x = -25;
+ pixel_y = 0;
+ req_access_txt = "11"
+ },
+/obj/structure/closet/radiation,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (WEST)";
+ icon_state = "yellow";
+ dir = 8
+ },
+/area/engine/engineering)
+"cwt" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/rods{
+ amount = 50
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cwu" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/table,
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/weapon/storage/firstaid/fire,
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (EAST)";
+ icon_state = "yellow";
+ dir = 4
+ },
+/area/engine/engineering)
+"cwv" = (
+/turf/open/floor/engine/n2,
+/area/atmos)
+"cww" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/turf/open/floor/engine/n2,
+/area/atmos)
+"cwx" = (
+/turf/open/floor/engine/o2,
+/area/atmos)
+"cwy" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/engine/o2,
+/area/atmos)
+"cwz" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/engine/air,
+/area/atmos)
+"cwA" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/engine/air,
+/area/atmos)
+"cwB" = (
+/turf/open/floor/engine/air,
+/area/atmos)
+"cwC" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxstarboard{
+ name = "Auxiliary Solar Array"
+ })
+"cwD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/poddoor/shutters{
+ id = "aux_base_shutters";
+ name = "Auxillary Base Shutters"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/mining_construction)
+"cwE" = (
+/obj/machinery/door/airlock/engineering{
+ cyclelinkeddir = 1;
+ name = "Auxillary Base Construction";
+ req_access_txt = "0";
+ req_one_access_txt = "32;47;48"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/mining_construction)
+"cwF" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"cwG" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (WEST)";
+ icon_state = "yellow";
+ dir = 8
+ },
+/area/engine/engineering)
+"cwH" = (
+/obj/structure/table,
+/obj/item/weapon/book/manual/wiki/engineering_guide,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cwI" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (EAST)";
+ icon_state = "yellow";
+ dir = 4
+ },
+/area/engine/engineering)
+"cwJ" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "Singularity";
+ name = "radiation shutters"
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Engine Room";
+ req_access_txt = "10"
+ },
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "delivery"
+ },
+/area/engine/engineering)
+"cwK" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/engine/engineering)
+"cwL" = (
+/obj/structure/cable/yellow,
+/obj/machinery/particle_accelerator/control_box,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/engine/engineering)
+"cwM" = (
+/obj/structure/particle_accelerator/fuel_chamber,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/engine/engineering)
+"cwN" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (WEST)";
+ icon_state = "yellow";
+ dir = 8
+ },
+/area/engine/engineering)
+"cwO" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (EAST)";
+ icon_state = "yellow";
+ dir = 4
+ },
+/area/engine/engineering)
+"cwP" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"cwQ" = (
+/obj/machinery/light/small,
+/turf/open/floor/engine/n2,
+/area/atmos)
+"cwR" = (
+/obj/machinery/light/small,
+/turf/open/floor/engine/o2,
+/area/atmos)
+"cwS" = (
+/obj/machinery/light/small,
+/turf/open/floor/engine/air,
+/area/atmos)
+"cwT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"cwU" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"cwV" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"cwW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"cwX" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTHEAST)";
+ icon_state = "camera";
+ dir = 5
+ },
+/obj/structure/closet/firecloset,
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"cwY" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 10
+ },
+/area/engine/engineering)
+"cwZ" = (
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/engineering)
+"cxa" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (SOUTHEAST)";
+ icon_state = "yellow";
+ dir = 6
+ },
+/area/engine/engineering)
+"cxb" = (
+/obj/structure/particle_accelerator/power_box,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/engine/engineering)
+"cxc" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (SOUTHWEST)";
+ icon_state = "yellow";
+ dir = 10
+ },
+/area/engine/engineering)
+"cxd" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/turf/open/floor/plasteel/yellow/side{
+ tag = "icon-yellow (SOUTHEAST)";
+ icon_state = "yellow";
+ dir = 6
+ },
+/area/engine/engineering)
+"cxe" = (
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"cxf" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable,
+/turf/open/space,
+/area/space)
+"cxg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"cxh" = (
+/obj/machinery/camera/autoname{
+ tag = "icon-camera (NORTH)";
+ icon_state = "camera";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"cxi" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"cxj" = (
+/obj/structure/cable{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"cxk" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "delivery"
+ },
+/area/engine/engineering)
+"cxl" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "delivery"
+ },
+/area/engine/engineering)
+"cxm" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "delivery"
+ },
+/area/engine/engineering)
+"cxn" = (
+/obj/structure/particle_accelerator/particle_emitter/left,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/engine/engineering)
+"cxo" = (
+/obj/structure/particle_accelerator/particle_emitter/center,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/engine/engineering)
+"cxp" = (
+/obj/structure/particle_accelerator/particle_emitter/right,
+/turf/open/floor/plating{
+ icon_state = "floorgrime"
+ },
+/area/engine/engineering)
+"cxq" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4";
+ d1 = 1;
+ d2 = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "delivery"
+ },
+/area/engine/engineering)
+"cxr" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "delivery"
+ },
+/area/engine/engineering)
+"cxs" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "delivery"
+ },
+/area/engine/engineering)
+"cxt" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"cxu" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/autoname,
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"cxv" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"cxw" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"cxx" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkedairlock = 4;
+ name = "External Access";
+ req_access = null;
+ req_access_txt = "13"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/noslip,
+/area/engine/engineering)
+"cxy" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/noslip,
+/area/engine/engineering)
+"cxz" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkedairlock = 8;
+ name = "External Access";
+ req_access = null;
+ req_access_txt = "13"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/noslip,
+/area/engine/engineering)
+"cxA" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/open/space,
+/area/space)
+"cxB" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/effect/landmark{
+ name = "Syndicate Breach Area"
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"cxC" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"cxD" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"cxE" = (
+/obj/structure/cable/yellow,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "Singularity";
+ name = "radiation shutters"
+ },
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "delivery"
+ },
+/area/engine/engineering)
+"cxF" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "Singularity";
+ name = "radiation shutters"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cxG" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4";
+ d1 = 1;
+ d2 = 4
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "Singularity";
+ name = "radiation shutters"
+ },
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "delivery"
+ },
+/area/engine/engineering)
+"cxH" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "Singularity";
+ name = "radiation shutters"
+ },
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "delivery"
+ },
+/area/engine/engineering)
+"cxI" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "Singularity";
+ name = "radiation shutters"
+ },
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "delivery"
+ },
+/area/engine/engineering)
+"cxJ" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "Singularity";
+ name = "radiation shutters"
+ },
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "delivery"
+ },
+/area/engine/engineering)
+"cxK" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "Singularity";
+ name = "radiation shutters"
+ },
+/obj/machinery/camera/emp_proof{
+ c_tag = "Containment - Particle Accelerator";
+ dir = 1;
+ network = list("Singularity")
+ },
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "delivery"
+ },
+/area/engine/engineering)
+"cxL" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"cxM" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"cxN" = (
+/obj/structure/cable{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"cxO" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxstarboard{
+ name = "Auxiliary Solar Array"
+ })
+"cxP" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/yellow,
+/area/engine/engineering)
+"cxQ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cxR" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/turf/open/floor/noslip,
+/area/engine/engineering)
+"cxS" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkedairlock = 0;
+ name = "Engineering External Access";
+ req_access = null;
+ req_access_txt = "10;13"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/turf/open/floor/noslip,
+/area/engine/engineering)
+"cxT" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/turf/open/floor/noslip,
+/area/engine/engineering)
+"cxU" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/obj/machinery/door/airlock/external{
+ cyclelinkedairlock = 0;
+ name = "Engineering External Access";
+ req_access = null;
+ req_access_txt = "10;13"
+ },
+/turf/open/floor/noslip,
+/area/engine/engineering)
+"cxV" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/space,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cxW" = (
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cxX" = (
+/obj/machinery/power/grounding_rod,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plating/airless,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cxY" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/space,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cxZ" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "2-4";
+ tag = "icon-2-8"
+ },
+/turf/open/space,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cya" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/noslip,
+/area/engine/engineering)
+"cyb" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = ""
+ },
+/turf/open/space,
+/area/space)
+"cyc" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/turf/open/space,
+/area/space)
+"cyd" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ tag = "icon-0-8";
+ icon_state = "0-8"
+ },
+/turf/open/space,
+/area/space)
+"cye" = (
+/turf/closed/wall/r_wall,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cyf" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/open/space,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cyg" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboardsolar)
+"cyh" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 2;
+ name = "Solar Maintenance";
+ req_access = null;
+ req_access_txt = "10; 13"
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboardsolar)
+"cyi" = (
+/obj/structure/lattice,
+/turf/open/space,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cyj" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/turf/open/space,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cyk" = (
+/turf/open/floor/plating/airless,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cyl" = (
+/turf/open/space,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cym" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/turf/open/space,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cyn" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboardsolar)
+"cyo" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/camera/emp_proof{
+ c_tag = "Containment - Fore Port";
+ dir = 4;
+ icon_state = "camera";
+ network = list("Singularity");
+ tag = "icon-camera (EAST)"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cyp" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cyq" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cyr" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/cable/yellow{
+ tag = "icon-0-8";
+ icon_state = "0-8"
+ },
+/obj/machinery/power/tesla_coil,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plating/airless,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cys" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4";
+ d1 = 1;
+ d2 = 4
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cyt" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cyu" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/obj/machinery/camera/emp_proof{
+ c_tag = "Containment - Fore Starboard";
+ dir = 8;
+ icon_state = "camera";
+ network = list("Singularity");
+ tag = "icon-camera (WEST)"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cyv" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 1;
+ name = "Solar Maintenance";
+ req_access = null;
+ req_access_txt = "10; 13"
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboardsolar)
+"cyw" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_y = 0
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/starboardsolar)
+"cyx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cyy" = (
+/obj/machinery/power/emitter{
+ anchored = 1;
+ dir = 4;
+ state = 2
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plating/airless,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cyz" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plating/airless,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cyA" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plating/airless,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cyB" = (
+/obj/machinery/field/generator{
+ anchored = 1;
+ state = 2
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plating/airless,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cyC" = (
+/obj/machinery/power/emitter{
+ anchored = 1;
+ dir = 8;
+ state = 2
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable{
+ tag = "icon-0-4";
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cyD" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cyE" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Aft Starboard Solar APC";
+ pixel_x = -26;
+ pixel_y = 3
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboardsolar)
+"cyF" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboardsolar)
+"cyG" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/smes,
+/turf/open/floor/plating,
+/area/maintenance/starboardsolar)
+"cyH" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0;
+ tag = ""
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cyI" = (
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/yellow,
+/obj/machinery/power/tesla_coil,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plating/airless,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cyJ" = (
+/obj/structure/chair/stool,
+/obj/machinery/camera{
+ c_tag = "Aft Starboard Solar Control";
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboardsolar)
+"cyK" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboardsolar)
+"cyL" = (
+/obj/machinery/power/terminal{
+ icon_state = "term";
+ dir = 1
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboardsolar)
+"cyM" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cyN" = (
+/obj/machinery/power/solar_control{
+ id = "starboardsolar";
+ name = "Aft Starboard Solar Control";
+ track = 0
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboardsolar)
+"cyO" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboardsolar)
+"cyP" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/obj/item/stack/cable_coil,
+/turf/open/floor/plating,
+/area/maintenance/starboardsolar)
+"cyQ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/starboardsolar)
+"cyR" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 2;
+ name = "Solar Maintenance";
+ req_access = null;
+ req_access_txt = "10; 13"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboardsolar)
+"cyS" = (
+/obj/machinery/the_singularitygen/tesla,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plating/airless,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cyT" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboardsolar)
+"cyU" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 1;
+ name = "Solar Maintenance";
+ req_access = null;
+ req_access_txt = "10; 13"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboardsolar)
+"cyV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/starboard)
+"cyW" = (
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cyX" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cyY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cyZ" = (
+/obj/structure/lattice,
+/obj/structure/grille/broken,
+/turf/open/space,
+/area/space)
+"cza" = (
+/obj/machinery/camera/emp_proof{
+ c_tag = "Containment - Aft Port";
+ dir = 4;
+ icon_state = "camera";
+ network = list("Singularity");
+ tag = "icon-camera (NORTHEAST)"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"czb" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4";
+ d1 = 1;
+ d2 = 4
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"czc" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"czd" = (
+/obj/machinery/camera/emp_proof{
+ c_tag = "Containment - Aft Starboard";
+ dir = 8;
+ icon_state = "camera";
+ network = list("Singularity");
+ tag = "icon-camera (NORTHWEST)"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering{
+ name = "Singularity Chamber"
+ })
+"cze" = (
+/obj/structure/cable,
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/starboard)
+"czf" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/power/solar{
+ id = "starboardsolar";
+ name = "Starboard Solar Array"
+ },
+/turf/open/floor/plasteel/airless/solarpanel,
+/area/solar/starboard)
+"czg" = (
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/starboard)
+"czh" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/starboard)
+"czi" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/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
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/starboard)
+"czj" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/starboard)
+"czk" = (
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/starboard)
+"czl" = (
+/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";
+ pixel_x = 0
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/starboard)
+"czm" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/starboard)
+"czn" = (
+/obj/structure/cable,
+/obj/machinery/power/solar{
+ id = "starboardsolar";
+ name = "Starboard Solar Array"
+ },
+/turf/open/floor/plasteel/airless/solarpanel,
+/area/solar/starboard)
+"czo" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/starboard)
+"czp" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/starboard)
+"czq" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable,
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/starboard)
+"czr" = (
+/obj/docking_port/stationary{
+ dheight = 9;
+ dir = 2;
+ dwidth = 5;
+ height = 24;
+ id = "syndicate_s";
+ name = "south of station";
+ turf_type = /turf/open/space;
+ width = 18
+ },
+/turf/open/space,
+/area/space)
+"czs" = (
+/obj/structure/cable,
+/obj/machinery/power/tracker,
+/turf/open/floor/plasteel/airless/solarpanel,
+/area/solar/starboard)
+
+(1,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(2,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(3,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(4,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(5,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(6,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(7,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(8,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(9,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(10,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(11,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(12,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(13,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(14,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(15,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(16,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(17,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(18,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(19,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(20,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(21,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(22,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(23,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(24,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(25,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(26,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(27,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(28,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(29,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(30,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(31,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(32,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(33,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(34,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(35,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(36,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aap
+aaq
+aaq
+aaq
+aaq
+aev
+aaq
+aaq
+aaq
+abm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(37,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aap
+aaq
+aaq
+aaq
+aaq
+aaq
+aaq
+adt
+adJ
+adt
+adu
+aew
+aff
+afD
+afG
+agd
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(38,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaq
+aci
+aci
+acw
+aci
+aci
+aaq
+adu
+adu
+adu
+adu
+aex
+adu
+afE
+afG
+age
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(39,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaq
+aay
+aay
+aay
+aay
+aay
+aaq
+adv
+adu
+adu
+adu
+aey
+afg
+afF
+afG
+agf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+agI
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abl
+abl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(40,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aap
+aaq
+aaq
+aaq
+abm
+aaa
+aaa
+aaq
+aay
+acp
+aay
+aay
+aay
+aaq
+adw
+adu
+adu
+adu
+aez
+aaq
+aaq
+aaq
+agJ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abl
+abl
+abl
+abl
+abl
+abl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(41,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaq
+aax
+aaQ
+abe
+aaq
+aby
+aaa
+aaq
+acj
+acq
+acx
+aay
+aay
+aaq
+adx
+adu
+adu
+adu
+aeA
+aaq
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abl
+abl
+abl
+abl
+abl
+abl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(42,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aar
+aay
+aay
+aay
+aaq
+aaq
+aaq
+aaq
+aaq
+aaq
+aaq
+acF
+acX
+aaq
+aaq
+adK
+adR
+aec
+aaq
+aaq
+aaq
+abm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(43,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aar
+aaz
+aay
+aay
+aaq
+abz
+aay
+abU
+aay
+aay
+acy
+aay
+aay
+adi
+abU
+aay
+aay
+aay
+aay
+acy
+afG
+agd
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+agI
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(44,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aar
+aaA
+aaR
+aay
+abn
+aay
+aay
+aay
+aay
+aay
+acz
+aay
+aay
+aay
+aay
+aay
+aay
+aay
+aay
+afh
+afG
+age
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+agI
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(45,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aar
+aaB
+aay
+abf
+aaq
+abA
+abM
+abV
+abM
+abM
+acy
+aay
+aay
+aay
+aaS
+aay
+aay
+aay
+aay
+acy
+afG
+agf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(46,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aar
+aaC
+aay
+aay
+aaq
+aaq
+aaq
+abW
+aaq
+aaq
+aaq
+acG
+acy
+aaq
+aaq
+aaq
+adS
+aed
+aaq
+aaq
+aaq
+abo
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(47,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaq
+aaC
+aaS
+abg
+aaq
+abo
+aaa
+aaa
+aaa
+aaq
+aay
+aay
+aay
+aaq
+ady
+aay
+aay
+aay
+aeB
+afi
+aaq
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(48,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aas
+aaq
+aaq
+aaq
+abo
+aaa
+aaa
+aaa
+aaa
+acr
+aay
+aay
+aay
+aaq
+adz
+aay
+aay
+aay
+aeC
+aaq
+aaq
+aaq
+agK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(49,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acs
+aay
+aaS
+aay
+aaq
+adA
+aay
+aay
+aay
+aay
+aay
+afH
+afG
+agd
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(50,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aas
+aaq
+aaq
+aaq
+aaq
+adB
+acp
+aay
+aay
+aay
+aay
+afI
+afG
+age
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(51,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acY
+aaq
+adC
+adL
+aay
+aee
+aeD
+aay
+afJ
+afG
+agf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+apm
+apm
+apo
+apm
+apm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(52,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aas
+aaq
+aaq
+aaq
+aaq
+abW
+aaq
+aaq
+aaq
+abo
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+apm
+aqF
+apL
+aqF
+apm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(53,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+apm
+apL
+apL
+apL
+apm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abl
+abl
+abl
+abl
+abl
+abl
+abL
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(54,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+apm
+apL
+apL
+apL
+apm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+acg
+acg
+acg
+acg
+acg
+acg
+abl
+abl
+abl
+abl
+abl
+abL
+abL
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(55,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+apm
+apL
+apL
+apL
+apm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+acg
+abl
+abl
+abl
+abl
+abL
+abL
+abL
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(56,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+apm
+apL
+apL
+apL
+apm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+agc
+agc
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abl
+abl
+abl
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(57,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+apm
+apL
+apL
+apL
+apm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+agc
+agc
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+acg
+abL
+abL
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(58,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+apm
+apL
+apL
+apL
+apm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+agc
+agc
+agc
+agc
+acg
+acg
+acg
+abL
+abL
+abL
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(59,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+apm
+apL
+apL
+aup
+apm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+agc
+acg
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+agc
+agc
+agc
+agc
+acg
+acg
+agI
+abL
+abL
+abL
+abL
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abl
+abl
+abl
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cul
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(60,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+apm
+aqF
+apL
+aqF
+apm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+agc
+agc
+agc
+agc
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+acg
+acg
+abL
+abL
+abL
+abL
+abL
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abl
+abl
+abl
+abl
+abL
+abL
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(61,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+apm
+apm
+apo
+apm
+apm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+agc
+agc
+agc
+agc
+acg
+acg
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+acg
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(62,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+apm
+apL
+apm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+agc
+agc
+agc
+agc
+acg
+acg
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+abL
+abL
+aaa
+aQH
+aQH
+aQI
+aQH
+aQH
+aQI
+aQH
+aQH
+aQH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(63,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+amy
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+apm
+apm
+apo
+apm
+apm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+agc
+agc
+agc
+agc
+acg
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+abL
+abL
+aaa
+aQI
+bEP
+bGc
+bHh
+aSg
+bJu
+bKy
+bLQ
+bNi
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(64,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+alR
+amz
+alR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+apm
+apm
+aqF
+apL
+aqF
+apm
+apm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+agc
+agc
+agc
+agc
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+ads
+ads
+ads
+buN
+bmg
+bmg
+bmg
+bmg
+ads
+abL
+aaa
+aQI
+bEQ
+bGd
+aQH
+bIt
+aSg
+aSg
+bLQ
+bNi
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(65,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+alR
+amA
+alR
+aaa
+aaa
+aaa
+apm
+apK
+aqi
+aqi
+aqi
+arC
+aaa
+apm
+aqF
+apL
+apL
+apL
+aqF
+apm
+aaa
+apK
+aqi
+aqi
+aqi
+arC
+apm
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+agc
+agc
+agc
+abL
+abL
+abL
+abL
+abL
+abL
+acg
+abL
+abL
+abL
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+bmg
+bvT
+bxa
+bxV
+bmg
+ads
+abL
+aaa
+aQI
+bER
+bGe
+bHi
+bIu
+bJv
+aSg
+bLQ
+bNi
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(66,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+alR
+amB
+alR
+aaa
+aaa
+aaa
+apm
+apm
+aqj
+aqj
+aqj
+apm
+apm
+apm
+apL
+apL
+apL
+apL
+apL
+apm
+apm
+apm
+aqj
+aqj
+aqj
+apm
+apm
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+agc
+agc
+abL
+abL
+abL
+abL
+abL
+abL
+acg
+acg
+acg
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+bmg
+bvU
+bxb
+bxW
+bmg
+ads
+abL
+aaa
+aQH
+aQH
+bGf
+aQH
+aQH
+aQH
+bKz
+aQH
+aQH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(67,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+alS
+amC
+alS
+aaa
+aaa
+aaa
+aaa
+apm
+aqk
+aqE
+aqE
+aqk
+apm
+aqF
+apL
+apL
+apL
+apL
+apL
+aqF
+apm
+aqk
+aqE
+aqE
+aqk
+apm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+agc
+agc
+abL
+abL
+abL
+abL
+abL
+agc
+agc
+agc
+agc
+agc
+acg
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+bmg
+bvV
+bxb
+bxX
+bmg
+abL
+abL
+aaa
+aaa
+bES
+bGg
+bES
+aaa
+bES
+bGg
+bES
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(68,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+akt
+akt
+amD
+akt
+akt
+aaT
+aaT
+aaT
+aaT
+apm
+aqk
+aqE
+aqE
+apm
+apL
+apL
+apL
+apL
+apL
+apL
+avt
+apm
+aqE
+aqE
+aqk
+apm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+aKF
+aKF
+aKF
+aKF
+aKF
+ads
+ads
+agc
+agc
+abL
+abL
+abL
+abL
+abL
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+bmg
+buO
+bxc
+buO
+bmg
+abL
+abL
+abL
+aaa
+bET
+bGh
+bET
+aaa
+bET
+bGh
+bET
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(69,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaT
+aaT
+aaT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+akt
+alT
+ajg
+and
+anF
+aaT
+aoJ
+aaT
+aaT
+aaT
+apm
+apm
+arD
+apm
+apm
+apm
+ass
+atM
+ass
+apm
+apm
+apm
+arD
+apm
+apm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+aKF
+aLC
+aLD
+aLE
+aKF
+ads
+ads
+agc
+abL
+abL
+abL
+abL
+abL
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+bmg
+bvW
+bvW
+bvW
+bmg
+bmg
+bmg
+bmg
+bmg
+bET
+bGi
+bET
+bmg
+bET
+bGi
+bET
+bmg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(70,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaT
+aaT
+aaT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+akt
+alU
+amD
+akP
+akt
+aaT
+aaT
+aaT
+aaT
+aaT
+apm
+apm
+apL
+apL
+apL
+apL
+apL
+apL
+apL
+apL
+apL
+apL
+apL
+apm
+apm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+aKF
+aLD
+aLD
+aLD
+aKF
+ads
+ads
+agc
+abL
+abL
+abL
+abL
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+bmg
+bmg
+bmg
+bmg
+bmg
+bmg
+bmg
+bvX
+btQ
+btQ
+bzq
+btQ
+bBx
+bCB
+btQ
+bEU
+btQ
+bEU
+bIv
+bEU
+btQ
+bLR
+bmg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(71,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+adT
+adT
+adT
+adT
+adT
+adU
+adT
+adT
+adT
+adT
+adT
+adT
+ajV
+adj
+adj
+akt
+aku
+aku
+akO
+akt
+aaT
+aaT
+aaT
+aaT
+apm
+apm
+aqF
+arE
+apL
+apL
+apL
+apL
+apL
+apL
+apL
+apL
+apL
+apL
+apm
+apm
+apm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+aKF
+aLE
+aLD
+aLC
+aKF
+ads
+ads
+agc
+abL
+abL
+abL
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+bmg
+boY
+bqk
+bro
+bsK
+btN
+buO
+bvY
+bvW
+bvW
+bvW
+bvW
+bvW
+bvZ
+bvW
+bvW
+bvW
+bvW
+bvW
+bvW
+bvW
+bvW
+bmg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(72,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+adT
+aef
+aeE
+afj
+afK
+agg
+agL
+ahm
+ahU
+ain
+aiR
+adT
+ajW
+adj
+adj
+akt
+alV
+amE
+aku
+akt
+adj
+adj
+aaT
+apm
+apm
+aqF
+apL
+apL
+apL
+apL
+apm
+apm
+apm
+apm
+apm
+apm
+apL
+apL
+apm
+apm
+apm
+apm
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+aKF
+aLD
+aLD
+aLD
+aKF
+ads
+ads
+abL
+abL
+abL
+abL
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+bmg
+bmg
+boZ
+bql
+brp
+bsL
+btO
+buO
+bvZ
+bxd
+buO
+buO
+buO
+buO
+bCC
+bDK
+bEV
+bGj
+bHj
+bIw
+bJw
+bKA
+bLS
+bmg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(73,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaT
+aaT
+adT
+aeg
+aeF
+afk
+afL
+agh
+agM
+ahn
+ahV
+aio
+aiS
+adU
+ajW
+adj
+aaT
+akt
+alp
+amF
+aku
+akt
+aog
+akt
+apm
+apm
+apm
+apm
+apm
+apm
+aqF
+apL
+apm
+atk
+apL
+apL
+apL
+apo
+apL
+apL
+apo
+apL
+aqF
+apm
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+aKF
+aLC
+aLD
+aLE
+aKF
+ads
+ads
+abL
+abL
+abL
+abL
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+bmg
+bnF
+bnF
+bnF
+brq
+bsL
+btP
+buO
+bvZ
+bxe
+bxY
+bzr
+bAo
+bmg
+bCD
+bmg
+bmg
+bmg
+bmg
+bmg
+bmg
+bmg
+bmg
+bmg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(74,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaT
+aaT
+adU
+aef
+aeG
+afl
+afM
+agi
+agN
+afj
+afj
+afj
+afj
+adT
+ajW
+adj
+aaT
+akt
+alp
+amG
+aku
+anG
+aoh
+anG
+apn
+apL
+apL
+aqG
+aqG
+aqF
+apm
+apL
+apm
+atl
+apL
+auq
+auS
+apm
+apL
+apL
+apm
+apL
+ayd
+apm
+apm
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+aKF
+aLD
+aLD
+aLD
+aKF
+ads
+abL
+abL
+abL
+abL
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+ads
+aOU
+aOU
+aOU
+aOU
+aOU
+ads
+ads
+bmg
+bnG
+bpa
+bqm
+brq
+bsM
+btQ
+buP
+bwa
+bxf
+bxZ
+bzs
+bzs
+bBy
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(75,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaT
+aaT
+adT
+aeh
+aeH
+afm
+afN
+agj
+agO
+aho
+ahV
+aip
+aiS
+adU
+ajW
+adj
+aaT
+akt
+alp
+amH
+ane
+akP
+aog
+akt
+apm
+apL
+apL
+apL
+apL
+arF
+apm
+apL
+apo
+apL
+apL
+apL
+auT
+apm
+apL
+apL
+apm
+apL
+apL
+aqF
+apm
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+aKF
+aLE
+aLD
+aLC
+aKF
+ads
+abL
+abL
+abL
+abL
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+aOU
+aUF
+aVm
+aVZ
+aOU
+ads
+ads
+bmg
+bnF
+bnF
+bnF
+brq
+bsL
+btR
+buO
+bvZ
+bxg
+bya
+bzt
+bAp
+bmg
+abL
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(76,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+adT
+aef
+aeE
+afj
+afO
+agk
+agP
+ahm
+ahW
+aiq
+aiR
+adT
+ajX
+aks
+aaT
+akt
+alp
+aku
+amG
+aku
+aoi
+aog
+apm
+apM
+apL
+apL
+apL
+apL
+apm
+apL
+apm
+apm
+apm
+apm
+apm
+apm
+apL
+arE
+ass
+axA
+apL
+apL
+apm
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+aKF
+aLD
+aLD
+aLD
+aKF
+ads
+abL
+abL
+abL
+agc
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+aOU
+aUG
+aUG
+aVZ
+aOU
+ads
+ads
+bmg
+bmg
+bpb
+bqn
+brr
+bsL
+btS
+buO
+bwb
+bxg
+byb
+buO
+buO
+bmg
+abL
+abL
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(77,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+adT
+adT
+aeI
+afj
+afP
+agl
+agQ
+ahp
+ahX
+ahX
+aiT
+ajB
+ajY
+akt
+akt
+akt
+alW
+aku
+amG
+aku
+aoj
+aog
+apm
+apN
+apL
+apL
+apL
+apL
+apo
+apL
+apL
+apL
+apL
+apL
+apL
+apL
+apL
+apL
+ass
+apL
+apL
+ayL
+apm
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+aKF
+aLC
+aLD
+aLE
+aKF
+ads
+abL
+abL
+abL
+agc
+agc
+agc
+aOU
+aOU
+aOU
+aOU
+aXq
+aOU
+aOU
+aOU
+aOU
+aOU
+bds
+aOU
+aUH
+bgE
+aWa
+aOU
+ads
+ads
+ads
+bmg
+bpc
+bqk
+brs
+bsN
+btT
+buO
+bvZ
+bxh
+byc
+bzr
+bAo
+bmg
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(78,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+adV
+adT
+aeJ
+afn
+afQ
+agm
+agR
+ahq
+afj
+air
+aiU
+ajC
+ajZ
+akt
+akM
+aku
+alp
+aku
+amG
+aku
+amd
+aog
+apm
+apL
+apL
+apL
+apL
+apL
+apm
+aqF
+apL
+apL
+apL
+apL
+apL
+apL
+apL
+awq
+ass
+apL
+apL
+apL
+apm
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+aKF
+aLD
+aLD
+aLD
+aKF
+ads
+abL
+abL
+abL
+agc
+agc
+aTE
+aUC
+aVj
+aOV
+aOU
+aOV
+aOV
+aYY
+aOV
+aOV
+aQm
+aOV
+aOU
+aVZ
+bgF
+aVZ
+aOU
+ads
+ads
+ads
+bmg
+bmg
+bmg
+bmg
+bmg
+bmg
+bmg
+bwc
+bxf
+byd
+bzs
+bzs
+bBy
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(79,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+adj
+adU
+aeK
+afo
+afR
+agn
+agS
+ahr
+afj
+ais
+aiV
+ajD
+aka
+akt
+aku
+aku
+alp
+aku
+amG
+aku
+aok
+aog
+apm
+apL
+apL
+apL
+apL
+aqF
+apm
+apm
+apm
+ass
+atM
+ass
+apm
+apm
+apm
+apm
+apm
+apL
+apL
+apL
+apm
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+aKF
+aLD
+aLD
+aLD
+aKF
+ads
+abL
+abL
+abL
+agc
+aOU
+aTF
+aUD
+aVk
+aOV
+aOU
+aOV
+aOV
+aOV
+aOV
+aOV
+aOU
+aOV
+aOU
+aOU
+bgG
+aOU
+aOU
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+bsO
+btU
+bmg
+bvZ
+bxg
+bye
+bzt
+bAp
+bmg
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+bKB
+bKB
+bKB
+bKB
+bKB
+bKB
+bKB
+bKB
+bKB
+ads
+ads
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(80,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+adj
+adT
+aeL
+afp
+afS
+ago
+agT
+ahs
+ahY
+ait
+aiW
+ajE
+akb
+akt
+akN
+aku
+alp
+aku
+amG
+akP
+aog
+akt
+apm
+apL
+apL
+apL
+aqF
+apm
+aqF
+apL
+apL
+apL
+apL
+apL
+apL
+atm
+atm
+atm
+apm
+apL
+apL
+aqF
+apm
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+aKF
+aKF
+aMR
+aKF
+aKF
+abL
+abL
+abL
+agc
+agc
+aOU
+aTG
+aTG
+aTG
+aOV
+aQm
+aXr
+aYh
+aYh
+aZX
+baO
+bcd
+aSl
+aSl
+aSl
+bgH
+bhF
+biO
+bjR
+bjR
+bjR
+bjR
+bjR
+bjR
+bjR
+bjR
+btV
+buQ
+bwd
+bxi
+byb
+buO
+buO
+bmg
+bCE
+bCE
+bCE
+bCE
+bCE
+bCE
+bCE
+bCE
+bCE
+bCE
+bCE
+bCE
+bCE
+bCE
+bCE
+bCE
+bTX
+ads
+ads
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(81,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+adj
+adU
+aeM
+afq
+afT
+agp
+agU
+aht
+afj
+aiu
+aiX
+ajF
+akc
+akt
+akN
+aku
+alp
+aku
+amG
+anG
+aoh
+anG
+apo
+apL
+aql
+apL
+apm
+aqF
+apL
+apL
+apL
+apL
+apL
+apL
+apL
+apL
+apL
+apL
+aqF
+aqF
+arG
+apm
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+aKF
+aLD
+aLD
+aLD
+aKF
+abL
+abL
+abL
+ads
+ads
+aOU
+aOU
+aOU
+aOU
+aOU
+aOU
+aXs
+aOU
+aOU
+aOU
+aOU
+aOU
+aOU
+aOU
+aOU
+aOU
+aOU
+aOU
+aOU
+aOU
+aOU
+aOU
+aOU
+aOU
+aOU
+aOU
+aRF
+bmg
+bwe
+bxg
+byb
+bzu
+bzu
+bmg
+bCF
+bDL
+bDL
+bDL
+bDL
+bDL
+bDL
+bDL
+bDL
+bDL
+bDL
+bDL
+bDL
+bDL
+bDL
+bTj
+bTX
+ads
+ads
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(82,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aac
+aac
+aac
+aac
+abp
+abB
+abN
+abB
+abB
+abN
+abB
+acH
+aac
+adj
+adj
+adj
+adj
+adT
+aeN
+afr
+afU
+agq
+agV
+ahu
+afj
+aiv
+aiY
+ajG
+akd
+akt
+akO
+aku
+alp
+aku
+anf
+akP
+aog
+akt
+apm
+apm
+apm
+aqH
+apm
+arG
+arU
+apL
+apL
+apL
+apL
+apL
+apL
+apL
+apL
+awr
+arG
+apm
+apm
+apm
+aaa
+aaa
+acf
+aaa
+aaa
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+abL
+aMS
+abL
+abL
+abL
+abL
+abL
+ads
+ads
+aTb
+aOV
+aOV
+aOV
+aOV
+aOV
+aRF
+aOU
+aYZ
+aZY
+baP
+bce
+bdt
+aZd
+aYZ
+aZY
+baP
+bce
+bdt
+aZd
+aYZ
+aZY
+baP
+bce
+bdt
+aZd
+btW
+bmg
+bvZ
+bxg
+byf
+bxb
+bAq
+bmg
+bCG
+bDM
+bEW
+bEW
+bEW
+bIx
+bEW
+bEW
+bEW
+bEW
+bEW
+bEW
+bEW
+bEW
+bSr
+bDL
+bTX
+ads
+ads
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(83,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aac
+aaD
+aaU
+abh
+abq
+abs
+abO
+abs
+ack
+act
+abX
+acI
+aac
+adj
+adj
+adj
+acW
+adT
+adT
+adT
+afV
+agr
+afj
+afj
+afj
+afj
+adU
+afj
+adT
+akt
+akP
+aku
+alp
+aku
+amG
+anH
+anH
+akt
+aaT
+aaT
+apm
+aqI
+apm
+arG
+arU
+apL
+apL
+atm
+atN
+atm
+apL
+apL
+apL
+apL
+aqF
+apm
+apm
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+abL
+aMS
+abL
+abL
+abL
+abL
+ads
+ads
+ads
+aTb
+aOV
+aUE
+aVl
+aVY
+aWD
+aRF
+aOU
+aZa
+aZZ
+aZZ
+aZZ
+bdu
+beB
+bfF
+aZZ
+aZZ
+aZZ
+bdu
+beB
+bmh
+aZf
+aZf
+aZf
+brt
+aZd
+aRF
+bmg
+bwf
+bxj
+byg
+bzv
+bAr
+bmg
+bCG
+bDN
+bEX
+bEX
+bEX
+bIy
+bEX
+bEX
+bEX
+bEX
+bEX
+bEX
+bEX
+bEX
+bSs
+bDL
+bTX
+ads
+ads
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(84,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aac
+aaE
+aaV
+aaj
+abr
+abr
+aaj
+abr
+abr
+aaj
+abr
+acJ
+aac
+aaT
+aaT
+aaT
+acW
+adf
+aeO
+afs
+afW
+ags
+agW
+ahv
+afj
+aiw
+aiZ
+ajH
+adT
+aku
+aku
+aku
+alp
+aku
+amG
+anI
+anI
+aog
+adj
+aaT
+apm
+aqJ
+apm
+aqF
+arV
+apL
+apL
+atn
+atO
+atm
+apL
+apL
+apL
+aqF
+apm
+apm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+abL
+abL
+aMS
+abL
+abL
+abL
+ads
+ads
+ads
+ads
+aTb
+aOU
+aOU
+aOU
+aOU
+aOU
+aXt
+aYi
+aZb
+baa
+baQ
+baQ
+bdv
+beC
+bfG
+bgI
+bhG
+baQ
+bdv
+beC
+bmi
+bnH
+baQ
+baQ
+bru
+aZd
+aRF
+bmg
+bvZ
+bxg
+byb
+buO
+buO
+bmg
+bCG
+bDN
+bEX
+bGk
+bGk
+bIz
+bGk
+bGk
+bGk
+bGk
+bGk
+bGk
+bGk
+bEX
+bSs
+bDL
+bTX
+ads
+ads
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(85,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aab
+aab
+aab
+aac
+aaF
+aaj
+aaj
+abs
+abC
+abr
+abX
+abs
+abr
+acA
+acK
+aac
+aaT
+aaT
+aaT
+acW
+aei
+aeP
+aft
+afX
+agt
+agX
+ahw
+ahZ
+aix
+aja
+ajI
+ake
+akv
+akv
+akv
+alX
+akv
+ang
+anJ
+aol
+aog
+adj
+aaT
+aaT
+aaT
+apm
+apm
+apm
+ass
+ass
+ass
+ass
+ass
+ass
+ass
+apm
+apm
+apm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+aLF
+agH
+aNZ
+ads
+ads
+ads
+ads
+ads
+ads
+aTb
+aOU
+aUF
+aVm
+aVZ
+aOU
+aXu
+aOU
+aZc
+aZf
+aZf
+bcf
+bdw
+aZd
+aZc
+aZf
+aZf
+bcf
+bdw
+aZd
+bmj
+bnI
+aZf
+bcf
+bdw
+aZd
+aRF
+bmg
+bwb
+bxg
+byh
+bzw
+bzw
+bmg
+bCG
+bDN
+bEX
+bGk
+bHk
+bIA
+bJx
+bKC
+bLT
+bNj
+bOx
+bPI
+bGk
+bEX
+bSs
+bDL
+bTX
+ads
+ads
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+acf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(86,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aac
+aac
+aac
+aac
+aaG
+aaW
+aaW
+abt
+abD
+abD
+abD
+acl
+abD
+acB
+acL
+aac
+aac
+aac
+aac
+aac
+aej
+aeQ
+afu
+afY
+agu
+agY
+ahx
+aia
+aiy
+ajb
+ajJ
+akf
+aku
+aku
+aku
+alp
+aku
+amG
+anK
+anK
+aog
+aaT
+adj
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaa
+aaa
+aaa
+acg
+acg
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ahk
+aMT
+ahk
+ads
+ads
+ads
+aOU
+aOU
+aOU
+aTb
+aOU
+aUG
+aUG
+aWa
+aOU
+aXv
+aOU
+aZd
+aZd
+baR
+aZd
+bdx
+aZd
+aZd
+aZd
+bhH
+aZd
+bdx
+aZd
+bmk
+bnJ
+bpd
+aZd
+bdx
+aZd
+aRF
+bmg
+bvZ
+bxg
+byi
+bvW
+bAs
+bmg
+bCG
+bDN
+bEX
+bGk
+bHl
+bHl
+bHl
+bHl
+bHl
+bHl
+bHl
+bPJ
+bGk
+bEX
+bSs
+bDL
+bTX
+ads
+ads
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(87,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aad
+aai
+aal
+aat
+aaH
+aaj
+aaj
+aaj
+aaj
+abP
+aaj
+abP
+abP
+aaj
+acM
+aat
+aal
+aai
+adM
+aac
+aek
+aeR
+acW
+acW
+acW
+acW
+acW
+acW
+acW
+acW
+acW
+acW
+acW
+acW
+aln
+alp
+aku
+amG
+anH
+anH
+akt
+aaT
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+aab
+aab
+aab
+acg
+acg
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ahk
+aik
+ahk
+ads
+ads
+ads
+aOU
+aRD
+aOU
+aOV
+aOU
+aUH
+aVn
+aWb
+aWE
+aXw
+aOU
+aZe
+bab
+baS
+baS
+baS
+beD
+bfH
+bgJ
+baS
+baS
+bjS
+baS
+bml
+bnK
+baS
+baS
+baS
+bsP
+btX
+bmg
+bwg
+bxi
+byj
+bvW
+bAs
+bmg
+bCG
+bDN
+bEX
+bGk
+bHm
+bIB
+bJy
+bKD
+bIB
+bIB
+bIB
+bPK
+bGk
+bEX
+bSs
+bDL
+bTX
+ads
+ads
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(88,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aae
+aaj
+aaj
+aau
+aaI
+aaj
+aaj
+aaj
+abE
+aaj
+abY
+aaj
+aaj
+aaj
+acN
+acZ
+aaj
+aaj
+adN
+aag
+ael
+aeS
+afv
+aeo
+agv
+agZ
+ahy
+aeo
+aiz
+adq
+ajK
+akg
+akg
+acW
+aku
+alp
+aku
+amG
+akP
+aom
+aom
+app
+app
+app
+aqK
+aqK
+aqK
+aqK
+app
+app
+aqK
+aqK
+aqK
+aqK
+app
+app
+aqK
+aqK
+aqK
+aqK
+app
+app
+app
+app
+app
+akr
+akr
+akr
+ahk
+ahk
+aEe
+akF
+akF
+akF
+akF
+akF
+akF
+akF
+akF
+akF
+akF
+ahk
+aMT
+ahk
+aOU
+aOU
+aOU
+aOU
+aOU
+aOU
+aOV
+aOU
+aOU
+aOU
+aOU
+aOU
+aXv
+aOU
+aZf
+aZf
+aZf
+bcg
+bdy
+beE
+aZf
+aZf
+aZf
+aZf
+bjT
+aZf
+bmm
+bnI
+aZf
+aZf
+aZf
+aZd
+aRF
+bmg
+bwh
+bxg
+byk
+bzx
+bAt
+bmg
+bCG
+bDN
+bEX
+bGk
+bHn
+bIB
+bIB
+bKE
+bIB
+bNk
+bIB
+bPL
+bGk
+bEX
+bSs
+bDL
+bTX
+ads
+ads
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(89,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aaf
+aak
+aam
+aav
+aaJ
+aaX
+aak
+aak
+abF
+aak
+abZ
+aak
+aak
+aaX
+acO
+aav
+adk
+aak
+adO
+aag
+aem
+aeT
+afw
+aeo
+agw
+aha
+ahz
+aeo
+aiz
+adq
+adq
+adq
+adq
+acW
+aku
+alp
+amI
+ang
+anL
+aom
+aoK
+apq
+apq
+aqm
+apq
+apq
+apq
+arW
+apq
+asM
+apq
+apq
+apq
+apq
+apq
+apq
+apq
+apq
+apq
+apq
+apr
+apr
+azK
+apr
+app
+aBa
+aBf
+aCm
+aiL
+ahk
+arq
+aik
+aik
+aik
+ajo
+ajp
+ajm
+ajm
+ajm
+aik
+aik
+aik
+aik
+aik
+aOV
+aOV
+aQm
+aOV
+aRE
+aSl
+aSl
+aSl
+aSl
+aSl
+aSl
+aSl
+aXx
+aOU
+aYj
+aYj
+aYj
+aYj
+bdz
+aYj
+aYj
+aYj
+bhI
+biP
+bjU
+blc
+bmn
+bnL
+blc
+blc
+blc
+blc
+aRH
+bmg
+bvZ
+bxg
+byl
+bzy
+bAu
+bmg
+bCG
+bDN
+bEX
+bGk
+bHo
+bIB
+bIB
+bKF
+bLU
+bNl
+bIB
+bPL
+bGk
+bEX
+bSs
+bDL
+bTX
+ads
+ads
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(90,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aag
+aag
+aag
+aag
+aaK
+aaY
+abi
+abi
+abG
+abQ
+aaY
+abi
+abi
+aaY
+acP
+aag
+aag
+aag
+aag
+aag
+aen
+aeU
+afx
+aeo
+agx
+ahb
+ahA
+aeo
+aeo
+ajc
+aeo
+akg
+akg
+acW
+aku
+alq
+amE
+amG
+anL
+aon
+aoL
+apr
+apr
+apr
+apr
+apr
+apr
+arX
+apr
+apr
+apr
+apr
+apr
+apr
+apr
+apr
+apr
+apr
+apr
+apr
+apr
+apr
+apr
+apr
+app
+aBb
+aBf
+aBf
+aBg
+ahk
+aik
+aik
+aEi
+aEi
+aEi
+aEi
+aEi
+aEi
+aIZ
+aIZ
+aIZ
+aIZ
+aMU
+aIZ
+aIZ
+aIZ
+aIZ
+aQN
+aRF
+aOV
+aTc
+aTc
+aTc
+aTc
+aTc
+aTc
+aXy
+aYj
+aZg
+bac
+aYj
+bch
+bdA
+beF
+bfI
+bgK
+bhJ
+biQ
+bjV
+blc
+bmo
+bnM
+bpe
+bqo
+brv
+blc
+aRH
+bmg
+bvY
+bxg
+bym
+bvW
+bAv
+bmg
+bCG
+bDN
+bEX
+bGk
+bHp
+bIC
+bJz
+bKG
+bLV
+bIB
+bIB
+bPM
+bGk
+bEX
+bSs
+bDL
+bTX
+ads
+ads
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cha
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+amy
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(91,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aad
+aai
+aan
+aat
+aaL
+aaZ
+aag
+abu
+abH
+aag
+aca
+abu
+aag
+aaZ
+acQ
+aat
+aal
+aai
+adM
+aag
+aeo
+aeV
+aeo
+aeo
+agy
+ahc
+ahB
+aib
+aiA
+adq
+aeo
+aeo
+aeo
+acW
+aku
+alp
+aku
+amG
+anL
+aom
+aoL
+aps
+apO
+aqn
+aps
+aps
+aps
+arY
+aps
+aps
+aps
+aps
+aps
+aps
+aps
+avU
+apO
+aps
+aps
+aps
+apr
+apr
+apr
+apr
+app
+aBc
+aBJ
+aCn
+aBd
+ahk
+aik
+aik
+aEi
+aGg
+aGN
+aHv
+aGg
+aGg
+aIZ
+aJJ
+aKG
+aJJ
+aJK
+aOa
+aKG
+aJJ
+aIZ
+aQO
+aRG
+aSm
+aTc
+aTH
+aUI
+aVo
+aTH
+aTH
+aXz
+aYj
+aZh
+bad
+aYj
+bci
+bdB
+bdA
+bdA
+bdA
+bhK
+biQ
+bjW
+bld
+bmp
+bnN
+bpf
+bpf
+brw
+bsQ
+aRH
+bmg
+bvZ
+bxg
+byn
+bzz
+bAw
+bmg
+bCH
+bDO
+bEX
+bGk
+bGk
+bIz
+bJA
+bKH
+bLW
+bNm
+bOy
+bGk
+bGk
+bEX
+bSs
+bDL
+bTX
+ads
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cgi
+chb
+cgi
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+coR
+cpi
+coR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(92,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aae
+aaj
+aaj
+aaw
+aaj
+aaZ
+aag
+aaj
+abI
+abR
+acb
+aaj
+aag
+aaZ
+acR
+ada
+aaj
+aaj
+adN
+aag
+adQ
+aeW
+adQ
+aeo
+agz
+ahd
+ahC
+aic
+aiB
+adq
+ajL
+akh
+akw
+akQ
+alo
+alY
+amJ
+anh
+amJ
+amJ
+aoM
+aoM
+aoM
+aqo
+aoM
+aoM
+aoM
+arZ
+aoM
+aoM
+aoM
+aoM
+aoM
+aoM
+aoM
+aoM
+aoM
+aoM
+aoM
+aoM
+aoM
+azb
+azL
+azL
+app
+aBd
+aBK
+aCo
+aik
+ahk
+aik
+aik
+aEi
+aGh
+aGO
+aHw
+aGO
+aGO
+aIZ
+aJK
+aJK
+aJK
+aJK
+aJK
+aJK
+aJK
+aIZ
+aQP
+aRH
+aSn
+aTc
+aTI
+aUJ
+aVp
+aWc
+aUJ
+aXA
+aYj
+aZi
+bad
+aYj
+bcj
+bdA
+bdA
+bfJ
+bgL
+bhL
+biR
+bjX
+ble
+bmq
+bnO
+bpf
+bqp
+brx
+blc
+aRH
+bmg
+bwi
+bxf
+byo
+bzA
+buO
+bmg
+bCI
+bDP
+bDP
+bDP
+bHq
+bID
+bJB
+bKI
+bLX
+bNn
+bOz
+bPN
+bDP
+bEX
+bSs
+bDL
+bTX
+ads
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cgi
+chc
+cgi
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+coR
+cpj
+coR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(93,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aah
+aak
+aao
+aav
+aaM
+aba
+aag
+abv
+aaI
+aaj
+aaZ
+acm
+aag
+acC
+acS
+aav
+adl
+aak
+adO
+aag
+aep
+aeX
+afy
+aeo
+agA
+ahc
+ahD
+aib
+aiC
+adq
+ajM
+aki
+akx
+akR
+alp
+alZ
+amK
+ani
+anM
+aoo
+aoN
+apt
+apt
+aqp
+aqL
+ark
+arH
+asa
+apt
+asN
+ato
+ato
+ato
+ato
+ato
+aoN
+apt
+apt
+apt
+aye
+aoM
+apr
+apr
+apr
+app
+aik
+aBf
+aik
+ahk
+ahk
+ahk
+ail
+aEi
+aGi
+aGP
+aHx
+aHx
+aIA
+aJa
+aJL
+aKH
+aLG
+aJJ
+aJK
+aOW
+aJK
+aIZ
+aQQ
+aRH
+aSo
+aTc
+aTJ
+aUK
+aUK
+aUK
+aUK
+aXB
+aYj
+aZj
+bad
+baT
+bck
+bdC
+beG
+bfK
+bgM
+aYj
+biQ
+bjY
+blf
+bmr
+bnP
+bpg
+bqq
+bry
+blc
+aRH
+bmg
+bvW
+bxg
+byp
+bvZ
+bAx
+bvW
+bCJ
+bDQ
+bDQ
+bGl
+bHr
+bHr
+bJC
+bKJ
+bLY
+bHr
+bOA
+bHr
+bDP
+bEX
+bSs
+bDL
+bTX
+ads
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cgi
+chd
+cgi
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+coR
+cpk
+coR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(94,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aac
+aac
+aac
+aac
+aaN
+abb
+aag
+aag
+abJ
+aag
+acc
+aag
+aag
+aaN
+acT
+aag
+aag
+aag
+aag
+aag
+adQ
+aeY
+adQ
+aeo
+agB
+ahe
+ahE
+aeo
+aiD
+ajd
+ajN
+akj
+aky
+akS
+alq
+ama
+amL
+anj
+anN
+aop
+aoO
+anj
+anj
+aqq
+anj
+anj
+anj
+anj
+anj
+anj
+anj
+anj
+anj
+anj
+anj
+avV
+anj
+anj
+axB
+ayf
+aoM
+azc
+apr
+aAe
+app
+aik
+aBf
+aBf
+ahk
+aik
+aik
+aik
+aFB
+aGj
+aGQ
+aHy
+aGj
+aHY
+aJb
+aJK
+aJK
+aJK
+aJK
+aJK
+aJK
+aJK
+aIZ
+aQR
+aRI
+aOU
+aTc
+aTK
+aQT
+aQT
+aQT
+aWF
+aXC
+aYk
+aZk
+aZk
+baU
+bcl
+aZk
+aZk
+bfL
+bgN
+bgN
+biS
+bjZ
+blg
+bms
+bnQ
+blg
+blg
+blg
+blg
+aRH
+bmg
+bwj
+bxk
+byq
+bzB
+bAy
+bBz
+bCK
+bDR
+bEY
+bGm
+bHs
+bIE
+bJD
+bKK
+bLZ
+bHr
+bHr
+bPO
+bDP
+bEX
+bSt
+bTk
+bCE
+bCE
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cgj
+che
+cgj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+coS
+cpl
+coS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(95,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aab
+aab
+aab
+aac
+aaO
+abc
+abj
+abw
+abK
+abS
+acd
+acn
+acu
+acD
+acU
+adb
+adm
+adD
+adD
+adW
+adD
+aeZ
+adD
+afZ
+aeZ
+ahf
+aeZ
+aid
+aiE
+aje
+ajO
+akk
+akk
+akT
+alr
+amb
+aiI
+aiI
+anO
+aoq
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+asS
+auW
+ayg
+aoM
+azd
+apr
+aAe
+app
+aik
+aBL
+aCp
+akr
+aik
+ajm
+ajm
+aEi
+aGk
+aGR
+aHz
+aHW
+aIB
+aJc
+aJM
+aKI
+aJM
+aMV
+aJM
+aKI
+aPF
+aQn
+aQS
+aRJ
+aSp
+aTd
+aTL
+aQT
+aVq
+aVq
+aWG
+aXD
+aYl
+aZl
+bae
+baV
+bcm
+bdD
+beH
+bfM
+bgO
+bhM
+biT
+bka
+blh
+bmt
+bnR
+bph
+bqr
+brz
+blk
+aRH
+bmg
+bwk
+bxl
+buQ
+buQ
+buQ
+bBA
+bCL
+bDS
+bDS
+bDS
+bHt
+bIF
+bJE
+bKL
+bMa
+bNo
+bHr
+bPP
+bDP
+bCE
+bCE
+bTl
+bTk
+bCE
+abL
+aaT
+aaT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaT
+aaT
+bTn
+bTn
+chf
+bTn
+bTn
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+bTn
+bTn
+cpm
+bTn
+bTn
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(96,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aac
+aaP
+abd
+abk
+abx
+abx
+abT
+ace
+aco
+acv
+acE
+acV
+adc
+adn
+adE
+adP
+adX
+adP
+afa
+afz
+aga
+agC
+ahg
+ahF
+aie
+aga
+ahg
+ajP
+akl
+akz
+akU
+als
+amc
+aiI
+ank
+anP
+aor
+aoP
+amN
+apP
+aji
+aji
+amN
+apP
+aji
+aji
+amN
+apP
+aji
+aji
+aiI
+avu
+avW
+aiI
+axc
+auW
+ayg
+aoM
+aze
+apr
+aAe
+app
+aik
+aik
+aCq
+akr
+aik
+aEf
+aEf
+aEi
+aGl
+aGR
+aHA
+aHX
+aGj
+aJb
+aJK
+aJK
+aJK
+aJK
+aJK
+aJK
+aPG
+aIZ
+aQT
+aRK
+aQT
+aTc
+aTM
+aQT
+aVr
+aVs
+aQT
+aXE
+aYm
+aZm
+baf
+baW
+bcn
+bcn
+beI
+bfN
+bgP
+bhN
+biU
+bkb
+bli
+bmu
+bnS
+bpi
+bqs
+brA
+blk
+btY
+buR
+bwl
+bxm
+bxm
+bxm
+bxm
+bBB
+bCM
+bDT
+bEZ
+bDP
+bHu
+bHr
+bJC
+bKM
+bMb
+bNp
+bOB
+bPQ
+bDP
+bRu
+bCE
+bCE
+bTY
+bCE
+bTn
+aaT
+aaT
+bXO
+bYI
+bZk
+bZk
+bZk
+bZk
+ccp
+bXO
+aaT
+aaT
+cft
+cgk
+chg
+chV
+bTn
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+bTn
+cgk
+chg
+cpI
+cft
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(97,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aag
+aag
+adF
+adq
+adY
+adq
+adq
+afA
+adq
+adq
+adq
+ahG
+acW
+acW
+acW
+acW
+acW
+acW
+akV
+alt
+amd
+aiI
+anl
+anQ
+aos
+aoQ
+amN
+apQ
+aqr
+aji
+amN
+apQ
+asb
+aji
+amN
+apQ
+aqr
+aji
+aiI
+avv
+avX
+aws
+axd
+auW
+ayg
+aoM
+azc
+apr
+aAe
+app
+aik
+aBf
+aCr
+ahk
+aik
+aEg
+aEK
+aEi
+aGm
+aGR
+aGj
+aHY
+aGj
+aIZ
+aJN
+aKJ
+aLH
+aJJ
+aJK
+aOW
+aPG
+aIZ
+aQT
+aRK
+aSq
+aTc
+aTN
+aUL
+aVs
+aQT
+aWH
+aXF
+aYn
+aZn
+bag
+baX
+bco
+bdE
+beJ
+bfO
+bgQ
+bhO
+biV
+bkc
+blj
+bmv
+bnT
+bpj
+bqt
+brB
+blk
+btZ
+aRH
+bwm
+bwm
+bwm
+bwm
+bwm
+bBC
+bwm
+bwm
+bFa
+bGn
+bHv
+bIG
+bJF
+bKN
+bMc
+bNq
+bOC
+bNq
+bDP
+bJO
+bJO
+bTm
+bTZ
+bUD
+bTn
+aaT
+aaT
+bXO
+bYJ
+bYJ
+bYJ
+bYJ
+bYJ
+bYJ
+bXO
+aaT
+aaT
+bTn
+bTn
+chf
+chW
+bTn
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+bTn
+chW
+cpm
+bTn
+bTn
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(98,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+acW
+add
+ado
+adG
+adG
+adZ
+aeq
+afb
+adG
+adG
+adG
+adG
+adG
+acW
+aiF
+ajf
+ajQ
+akm
+akA
+akP
+alt
+ame
+aiI
+amg
+anQ
+aor
+aoR
+amN
+apQ
+aji
+aji
+amN
+apQ
+aji
+aji
+amN
+apQ
+aji
+akp
+aiI
+avv
+avX
+aws
+axd
+auW
+ayg
+aoM
+azc
+apr
+aAe
+app
+aik
+aBf
+ahk
+ahk
+ail
+ahk
+aEL
+aEi
+aGn
+aGR
+aHB
+aHZ
+aIC
+aJd
+aJO
+aJK
+aJK
+aJK
+aOb
+aJK
+aPG
+aIZ
+aQU
+aRK
+aSr
+aTc
+aTO
+aUM
+aQT
+aWd
+aWI
+aXE
+aYo
+aZo
+bah
+baY
+bcp
+baY
+beK
+bfN
+bgP
+bhP
+biW
+bkb
+bli
+bmu
+bnS
+bpk
+bqs
+brC
+blk
+bua
+buS
+bwm
+bxn
+byr
+bzC
+bxn
+bBD
+bCN
+bDU
+bFb
+bDY
+bHw
+bIH
+bJG
+bKO
+bMd
+bNr
+bOD
+bPR
+bQI
+bRv
+bJO
+bTm
+bTZ
+bUE
+bVB
+bVB
+bVB
+bXO
+bYK
+bYK
+bYK
+bYK
+bYK
+bYK
+bXO
+bVB
+bVB
+bVB
+bUF
+bUF
+bUF
+bTn
+aaT
+aaT
+aaT
+ckU
+aaT
+aaT
+aaT
+bTn
+bUF
+bUF
+bUF
+bTn
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(99,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+acW
+ade
+adp
+adH
+adQ
+aea
+aer
+afc
+afB
+agb
+agD
+adQ
+ahH
+acW
+aiG
+ajg
+ajR
+akn
+akB
+akW
+alu
+aku
+aiI
+amg
+anQ
+aot
+aoQ
+amN
+apR
+aqs
+aqM
+amN
+arI
+asc
+ast
+amN
+atp
+atP
+aur
+aiI
+avw
+avY
+aiI
+axe
+axC
+ayh
+axh
+azf
+apr
+aAe
+app
+aBe
+aBf
+aCs
+aiL
+aik
+aDb
+aEM
+aEi
+aGo
+aGR
+aGj
+aHY
+aID
+aIZ
+aJP
+aKK
+aJK
+aMW
+aOc
+aOX
+aPH
+aIZ
+aQT
+aRL
+aSs
+aTc
+aTP
+aUN
+aVt
+aWe
+aWJ
+aXG
+aYp
+aZp
+bai
+baZ
+bcq
+bdF
+beL
+bfP
+bgR
+bhQ
+bhQ
+bkd
+bli
+bmw
+bnU
+bpl
+bqu
+brD
+blk
+bub
+buS
+bwn
+bxn
+bys
+bzD
+bAz
+bBE
+bCO
+bDV
+bFc
+bDY
+bHx
+bII
+bJH
+bKP
+bMe
+bNs
+bOE
+bOE
+bQJ
+bRw
+bSu
+bTm
+bTZ
+bUF
+bVC
+bWi
+bVC
+bXP
+bYK
+bZl
+bZl
+bZl
+bZl
+bYK
+cdc
+bVC
+bWi
+bVC
+bUF
+bUF
+bUF
+bTn
+aaT
+aaT
+ckU
+clO
+ckU
+aaT
+aaT
+bTn
+cgl
+bUF
+bUF
+cqm
+cqm
+cqm
+cqm
+cqm
+cqm
+cqm
+cqm
+cqm
+cqm
+bVB
+bVB
+bVB
+bVB
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+czr
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(100,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+acW
+adf
+adq
+adq
+adq
+aeb
+aes
+afd
+afd
+afd
+agE
+adQ
+ahI
+acW
+aiH
+ajh
+ajS
+ako
+akC
+akt
+aiI
+amf
+aiI
+amg
+anR
+aou
+aoS
+apu
+apS
+aqt
+aqN
+arl
+apS
+aqt
+asu
+arl
+apS
+aqt
+aus
+aiI
+avx
+avZ
+aiI
+axe
+auW
+ayg
+aoM
+azc
+apr
+aAe
+app
+aik
+aBf
+aCt
+aDb
+aDc
+aDc
+aEN
+aEi
+aGp
+aGR
+aGj
+aHY
+aGj
+aIZ
+aJQ
+aIZ
+aLI
+aIZ
+aIZ
+aIZ
+aIZ
+aQo
+aQV
+aRM
+aRM
+aRM
+aRM
+aRM
+aRM
+aWf
+aWK
+aXH
+aYq
+aYq
+aYq
+bba
+bcr
+bdG
+beM
+bfQ
+bfQ
+bhR
+biX
+bke
+blk
+bmx
+bnV
+bpm
+bqv
+bqv
+bpm
+bpm
+aRH
+bwm
+bxo
+byt
+byt
+byt
+bBF
+bCP
+bDW
+bFc
+bGo
+bHy
+bII
+bJH
+bKQ
+bMf
+bNt
+bOF
+bOF
+bQK
+bRx
+bJO
+bTm
+bTZ
+bUF
+bVB
+bVB
+bVB
+bXO
+bYL
+bYK
+bYK
+bYK
+bYK
+ccq
+bXO
+bVB
+bVB
+bVB
+cgl
+bUF
+bUH
+bTn
+aaT
+aaT
+ckV
+ckY
+cmU
+aaT
+aaT
+bTn
+coT
+bUF
+bUF
+cqm
+cqQ
+crt
+crt
+crt
+crt
+crt
+crt
+crt
+cwe
+bVB
+cnE
+cnE
+bVB
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(101,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+acW
+adg
+adq
+adq
+adq
+adQ
+aes
+afd
+afd
+afd
+agE
+ahh
+aeo
+acW
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+alv
+amg
+amg
+amg
+anQ
+amg
+amg
+apv
+amg
+amg
+apU
+arm
+amg
+amg
+apU
+asO
+amg
+amg
+apU
+amg
+amg
+awa
+aws
+axe
+auW
+ayg
+aoM
+azc
+apr
+aAe
+app
+ail
+ahk
+aCu
+aDc
+aDb
+aDb
+aEO
+aEi
+aGq
+aGQ
+aHx
+aIa
+aHx
+aJe
+aJR
+aKL
+aLJ
+aMX
+aOd
+akG
+akI
+akG
+aQW
+aRM
+aSt
+aTe
+aTQ
+aUO
+aVu
+aWf
+aWL
+aXI
+aYr
+aZq
+aWf
+bbb
+bcs
+aXM
+beN
+bfR
+aXM
+aXM
+beN
+bkf
+bll
+bmy
+bnW
+bpn
+bqw
+brE
+bsR
+bpm
+aRH
+bwm
+bxp
+byu
+byu
+byu
+bBG
+bCQ
+bDW
+bFd
+bDY
+bHy
+bII
+bJH
+bKR
+bMg
+bNu
+bNu
+bPS
+bKX
+bMm
+bJO
+bTn
+bUa
+bUF
+bVB
+adj
+aaT
+bXQ
+bYM
+bZl
+bZl
+bZl
+bZl
+bYK
+bXQ
+aaT
+adj
+bVB
+bUF
+bUF
+bUF
+bTn
+aaT
+aaT
+ckd
+clP
+ckd
+aaT
+aaT
+bTn
+bUF
+bUF
+bUF
+cqm
+cqR
+cru
+cru
+cru
+cru
+cru
+cru
+cru
+cwf
+bTn
+bUF
+bUF
+bTn
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(102,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+acW
+adh
+adr
+adI
+adI
+adI
+aet
+afe
+afC
+afC
+agF
+adQ
+aeo
+aif
+aiI
+aji
+aji
+aji
+aiI
+akX
+alw
+amh
+amM
+amM
+anS
+aov
+amM
+apw
+apT
+amM
+aqO
+amM
+arJ
+amM
+aqO
+amM
+arJ
+amM
+aml
+amg
+amg
+awa
+awt
+axf
+auW
+ayg
+aoM
+azc
+apr
+aAf
+app
+aBf
+aBf
+aik
+aDc
+aDc
+aDc
+aEP
+aEi
+aGr
+aGR
+aHC
+aHY
+aGj
+aEi
+aJS
+aKM
+aLK
+aMY
+aOd
+akG
+akI
+akI
+aAw
+aRM
+aSu
+aTf
+aTR
+aTR
+aVv
+aWg
+aWM
+aXJ
+aYs
+aZr
+baj
+bbc
+bct
+bdH
+beO
+bfS
+bfS
+bfS
+beO
+bkg
+bfS
+bmz
+bnX
+bpo
+bqx
+brF
+bsS
+bpm
+aRH
+bwm
+bxq
+byv
+byv
+bxq
+bBH
+bCR
+bDV
+bFe
+bDY
+bHz
+bIJ
+bJI
+bKS
+bMh
+bNv
+bIH
+bPT
+bQL
+bRy
+bJO
+bTm
+bTZ
+bUG
+bVB
+adj
+aaT
+bXQ
+bYN
+bYK
+bYK
+caw
+bYK
+bYK
+bXQ
+aaT
+adj
+bVB
+bUF
+bUF
+bUF
+bTn
+aaT
+ckd
+ckd
+clQ
+ckd
+ckd
+aaT
+bTn
+bUF
+bUF
+bUF
+cqm
+cqR
+cru
+cru
+cru
+cru
+cru
+cru
+cru
+cwf
+cqm
+cgl
+bUF
+bTn
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(103,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+acW
+acW
+acW
+acW
+acW
+acW
+acW
+acW
+acW
+acW
+acW
+ahi
+aeo
+aig
+aiI
+ajj
+aji
+aji
+akD
+akY
+alx
+ami
+amN
+anm
+anT
+amg
+amg
+apx
+apU
+amg
+amg
+arn
+apU
+amg
+amg
+asP
+apU
+amg
+amg
+auU
+avy
+awb
+aws
+axg
+auW
+ayg
+aoM
+azc
+apr
+aAe
+app
+aBg
+aBM
+aCv
+aik
+aAY
+aEh
+aEQ
+aEi
+aEi
+aGS
+aEi
+aIb
+aEi
+aEi
+aJT
+aKN
+aKN
+aKN
+aKN
+aKN
+aKN
+aQp
+aQX
+aRM
+aSv
+aTg
+aTS
+aUP
+aVw
+aWh
+aWN
+aXK
+aYt
+aZs
+aWh
+bbd
+bcu
+bdI
+beP
+bfT
+bgS
+bhS
+biY
+bkh
+blm
+bmA
+bnY
+bpm
+bqy
+brG
+bsT
+bpm
+aRH
+bwm
+bxq
+byw
+bzE
+bxq
+bBI
+bCS
+bDX
+bFf
+bDY
+bHA
+bII
+bII
+bKT
+bMi
+bNw
+bIH
+bPU
+bKZ
+bMe
+bSu
+bTm
+bTZ
+bUF
+bVB
+adj
+aaT
+bXQ
+bYO
+bZl
+bZl
+bZl
+bZl
+bYK
+bXQ
+aaT
+adj
+bVB
+bUF
+bUF
+bUF
+bVB
+aaT
+cke
+ckW
+ckY
+cmV
+cke
+aaT
+bVB
+bUF
+bUF
+bUF
+cqm
+cqR
+cru
+cru
+cru
+ctA
+cru
+cru
+cru
+cwf
+cqm
+coT
+bUF
+bTn
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(104,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abL
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+acW
+adQ
+aeo
+aeo
+aiI
+aji
+aji
+akp
+aji
+akZ
+aly
+ami
+amN
+ann
+anU
+aow
+aoT
+apu
+apV
+aqu
+aqP
+arl
+arK
+aqu
+aqP
+arl
+atq
+aqu
+aqP
+aiI
+aiI
+aiI
+aiI
+aoM
+auW
+ayi
+aoN
+azg
+azM
+aAg
+app
+aBh
+ahk
+ahk
+aik
+ahk
+ahk
+aEL
+aEi
+aGs
+aGT
+aHD
+aIc
+aIE
+aHD
+aJU
+aKN
+aLL
+aMZ
+aOe
+aNc
+aKN
+akG
+aAw
+aRM
+aSw
+aTg
+aTT
+aUQ
+aVx
+aWf
+aWO
+aXL
+aYu
+aZt
+aWf
+bbe
+bcv
+bdJ
+beQ
+bfU
+bfW
+bfV
+biZ
+bfV
+bfV
+bmB
+bnZ
+bpp
+bqz
+brH
+bsU
+bpm
+aRH
+bwm
+bxr
+bxr
+bwm
+bAA
+bBJ
+bCT
+bDY
+bFg
+bDY
+bHB
+bII
+bII
+bKU
+bMj
+bII
+bOG
+bPV
+bQM
+bRz
+bJO
+bTm
+bTZ
+bUF
+bVB
+adj
+aaT
+bXQ
+bYP
+bYK
+bYK
+bYK
+bYK
+bYK
+bXQ
+aaT
+adj
+bVB
+bUE
+bUF
+bUF
+bVB
+aaT
+ckd
+ckX
+ckY
+cmW
+ckd
+aaT
+bVB
+bUF
+bUF
+bUF
+cqm
+cqR
+cru
+cru
+csM
+ctB
+cum
+cru
+cru
+cwf
+cqm
+bUF
+bUF
+bVB
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(105,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abL
+abL
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+acW
+ahj
+ahJ
+aih
+aiJ
+aji
+aji
+aji
+aji
+ala
+alz
+amj
+amN
+ano
+amg
+amg
+aoU
+amN
+apW
+aqv
+aqQ
+amN
+arL
+asd
+asv
+amN
+atr
+atQ
+aut
+aiI
+avz
+awc
+awu
+aoM
+auW
+ayg
+aoM
+azc
+apr
+aAe
+app
+aik
+aBN
+ahk
+aik
+ail
+aik
+aER
+aEi
+aGt
+aGU
+aHE
+aId
+aHE
+aJf
+aJV
+aKO
+aLM
+aNa
+aOf
+aNc
+aNd
+akI
+aAw
+aRM
+aSx
+aTg
+aTg
+aTg
+aVy
+aWf
+aWP
+aWP
+aWP
+aWP
+bak
+bbf
+bcv
+bdJ
+beR
+bfV
+bgT
+bhT
+bja
+bki
+bfV
+bmC
+boa
+bpq
+bqA
+brI
+bsV
+bpm
+buT
+bwo
+bxs
+byx
+bzF
+bAB
+bBK
+bCU
+bDZ
+bFh
+bDY
+bHC
+bII
+bII
+bKT
+bMk
+bII
+bOH
+bPV
+bKX
+bMm
+bJO
+bTn
+bUa
+bUF
+bVB
+bVB
+bVB
+bXO
+bYL
+bZl
+bZl
+bZl
+bZl
+ccq
+bXO
+bVB
+bVB
+bVB
+bUF
+bUF
+bUF
+bVB
+aaT
+ckd
+ckY
+ckY
+ckY
+ckd
+aaT
+bVB
+bUF
+bUF
+bUF
+cqm
+cqR
+cru
+cru
+cru
+ctC
+cru
+cru
+cru
+cwf
+cqm
+bUF
+bUF
+bVB
+aaa
+cui
+cui
+cui
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(106,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abL
+abL
+abL
+ads
+ads
+ads
+ads
+ads
+ads
+acW
+acW
+acW
+acW
+aiI
+ajk
+aji
+aji
+akE
+alb
+alA
+ami
+amN
+anp
+amg
+aox
+aoV
+amN
+aji
+aji
+apQ
+amN
+aji
+aji
+apQ
+amN
+aji
+aji
+apQ
+aiI
+atR
+atR
+atR
+aoM
+auW
+ayg
+aoM
+azd
+apr
+aAe
+app
+aik
+aik
+ahk
+ahk
+ahk
+aik
+aES
+aEi
+aGu
+aGV
+aHF
+aIe
+aIF
+aJg
+aJW
+aKP
+aLN
+aLN
+aOg
+aOY
+aKN
+akI
+aAw
+aRM
+aSy
+aTh
+aTU
+aUR
+aVz
+aWi
+aWQ
+aXM
+aXM
+aXM
+aXM
+bbg
+bcv
+bdJ
+beS
+bfW
+bgU
+bhU
+bjb
+bkj
+bln
+bmD
+bob
+bpm
+bpq
+bpq
+bpq
+bpm
+buU
+boh
+bxt
+byy
+bzG
+bAC
+bBL
+bCV
+bEa
+bEa
+bGp
+bHD
+bII
+bJJ
+bKV
+bMj
+bII
+bIH
+bPT
+bQL
+bRA
+bJO
+bTm
+bTZ
+bUF
+bVC
+bWi
+bVC
+bXP
+bYK
+bYK
+bYK
+bYK
+bYK
+bYK
+bXP
+bVC
+bWi
+bVC
+bUF
+bUF
+bUF
+bVB
+aaT
+ckf
+ckY
+clR
+ckY
+cnD
+aaT
+bVB
+bUE
+bUF
+bUF
+cqm
+cqR
+cru
+cru
+cru
+cru
+cru
+cru
+cru
+cwf
+cqm
+bUF
+bUE
+bVB
+aaa
+cui
+cui
+cui
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(107,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abL
+abL
+abL
+abL
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+aiI
+ajj
+aji
+aji
+akD
+alc
+alB
+amk
+amN
+anq
+amg
+amg
+aoW
+amN
+aji
+aqr
+apQ
+amN
+aji
+asb
+apQ
+amN
+aji
+aqr
+apQ
+aiI
+atR
+atR
+atR
+aoM
+auW
+ayg
+aoM
+azh
+aoL
+aAh
+app
+aBi
+aBO
+ahk
+aDd
+aik
+aik
+aET
+aEi
+aGv
+aGW
+aHG
+aIf
+aHG
+aGv
+aJX
+aKQ
+aLO
+aNb
+aOh
+aOZ
+aNd
+akI
+aAw
+aRM
+aSz
+aSz
+aSz
+aSz
+aSz
+aWj
+aWR
+aXN
+aXN
+aZu
+aXN
+aXN
+bcw
+bdK
+beT
+bfV
+bgV
+bhV
+bhX
+bkk
+bfW
+bmE
+boc
+bpr
+bqB
+brJ
+bsW
+buc
+buV
+boh
+bxt
+byz
+bzH
+bAD
+bBM
+bCW
+bEb
+bFi
+bDY
+bHE
+bIK
+bJK
+bKW
+bMl
+bNx
+bIH
+bPW
+bKZ
+bMe
+bSu
+bTm
+bTZ
+bUF
+bVB
+bVB
+bVB
+bXO
+bYK
+bYK
+bZQ
+bYK
+bYK
+bYK
+bXO
+bVB
+bVB
+bVB
+bUF
+bUF
+bUF
+bVB
+aaT
+ckd
+ckY
+ckY
+ckY
+ckd
+aaT
+bVB
+bUF
+bUF
+bUF
+cqm
+cqR
+cru
+cru
+cru
+cru
+cru
+cru
+cru
+cwf
+cqm
+bUF
+bUF
+cxB
+aaa
+aab
+cui
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(108,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abL
+abL
+abL
+abL
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+aiI
+aji
+aji
+aji
+aiI
+akX
+alC
+aml
+amN
+anr
+amg
+amg
+aoX
+amN
+aji
+aji
+aqR
+amN
+aji
+aji
+aqR
+amN
+aji
+aji
+aqR
+aiI
+atR
+ats
+atR
+aoM
+aqo
+ayj
+amJ
+aom
+aon
+aom
+aom
+ahk
+ahk
+ahk
+aDe
+aik
+aEi
+aEU
+aEi
+aGw
+aGX
+aHH
+aIf
+aHH
+aJh
+aJY
+aKN
+aLP
+aNc
+aNc
+aPa
+aKN
+akG
+aAw
+aRM
+aSA
+aSA
+aSA
+aSA
+aSA
+aWj
+aWS
+aXO
+aWS
+aZv
+bal
+bal
+aZv
+bdL
+aZv
+aZv
+bgW
+bhW
+bhX
+bkl
+bfW
+bmF
+bod
+bps
+bqC
+brK
+boe
+boe
+buW
+boh
+bxt
+byA
+bzI
+bAE
+bBN
+bCX
+bEc
+bEc
+bEc
+bHF
+bIL
+bJL
+bKX
+bMm
+bJO
+bOI
+bPV
+bQM
+bRB
+bJO
+bTm
+bTZ
+bUF
+bVB
+adj
+aaT
+bXO
+bYQ
+bZm
+bYQ
+bYQ
+bZm
+bXO
+bXO
+aaT
+adj
+bVB
+bUF
+bUF
+bUG
+bVB
+aaT
+ckd
+ckX
+ckY
+cmW
+ckd
+aaT
+bVB
+bUF
+bUF
+bUF
+cqm
+cqS
+crv
+crv
+crv
+ctD
+crv
+crv
+crv
+cwg
+cqm
+bUF
+bUF
+bVB
+aaa
+aab
+cui
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(109,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acf
+aaa
+aaa
+aaa
+abL
+abL
+abL
+abL
+abL
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+aiI
+atR
+aoM
+aoM
+aoM
+axD
+ayh
+axh
+azi
+apr
+aAi
+app
+aBj
+aBP
+aCw
+aik
+aik
+aEi
+aEV
+aFC
+aGx
+aGY
+aHG
+aIf
+aHG
+aGx
+aJZ
+aKN
+aLQ
+aNd
+aNd
+aKN
+aKN
+akG
+aAw
+aRM
+aSB
+aTi
+aTi
+aTi
+aVA
+aRN
+aWT
+aTj
+aYv
+aZv
+bam
+bbh
+bcx
+bdM
+beU
+aZv
+bgX
+bhX
+bhX
+bkm
+blo
+bmF
+boe
+boe
+bqD
+brL
+bsX
+bud
+buX
+boh
+bxt
+byA
+bzJ
+bAF
+bBO
+bCY
+bEd
+bFj
+bEc
+bHG
+bIH
+bJL
+bKY
+bMn
+bJL
+bOH
+bPV
+bKX
+bMm
+bJO
+bTn
+bUa
+bUF
+bVB
+adj
+aaT
+bXO
+bXO
+bZn
+bZn
+cax
+bZn
+bXO
+bXO
+aaT
+adj
+bVB
+bUF
+bUF
+bUF
+bVB
+aaT
+cke
+ckW
+ckY
+cmV
+cke
+aaT
+bVB
+bUF
+bUF
+bUG
+cqm
+cqm
+cqm
+cqm
+csN
+ctE
+csj
+csj
+csj
+csj
+cqm
+cgm
+bUF
+bVB
+aaa
+aab
+cui
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(110,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+abL
+abL
+abL
+abL
+asQ
+abL
+atR
+auu
+atR
+atR
+atT
+awv
+atT
+auW
+ayk
+ayM
+azj
+azN
+apr
+aAA
+aik
+aik
+aik
+aik
+aik
+aEi
+aEW
+aEi
+aGu
+aGZ
+aHH
+aIf
+aHH
+aJi
+aKa
+aEi
+aLR
+akG
+akG
+akG
+akG
+akG
+aAy
+aRM
+aSz
+aRM
+aTV
+aRM
+aSz
+aRN
+aWU
+aSD
+aYw
+aZv
+ban
+bbi
+bcy
+bdN
+beV
+aZv
+bgY
+bhX
+bjc
+bkm
+bfW
+bmF
+boe
+boe
+boe
+brM
+bps
+bue
+buY
+boh
+bxt
+byA
+bzJ
+bAG
+bBP
+bCZ
+bAF
+bFk
+bEc
+bHH
+bIM
+bJM
+bKZ
+bMo
+bNy
+bIH
+bPT
+bQL
+bRC
+bJO
+bTm
+bTZ
+bUF
+bVB
+adj
+aaT
+aaT
+bXO
+bXO
+bZR
+cay
+bXO
+bXO
+aaT
+aaT
+adj
+bVB
+bUF
+bUF
+bUF
+bVB
+aaT
+ckd
+cke
+clS
+cke
+ckd
+aaT
+bVB
+bUF
+bUF
+bUF
+bTn
+aaT
+adj
+cqm
+csO
+ctF
+cun
+cuS
+cuS
+cwh
+cwD
+cwT
+cxg
+bVB
+aaa
+aab
+cui
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(111,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+abL
+abL
+abL
+abL
+abL
+atS
+aoM
+aoM
+aoM
+aoM
+aoM
+aoM
+axE
+avC
+aoN
+azk
+azO
+aAj
+app
+ajs
+aBQ
+aik
+aik
+aik
+aEi
+aEX
+aFD
+aGv
+aGW
+aHG
+aIf
+aHG
+aGv
+aKb
+aEi
+aLR
+akI
+akI
+akI
+akG
+akG
+aAw
+aRN
+aSC
+aTj
+aTj
+aTj
+aTj
+aWk
+aWV
+aWx
+aYx
+aZv
+bao
+bbj
+bcz
+bdO
+beW
+aZv
+bgZ
+bhY
+bhW
+bkm
+blp
+bmG
+bof
+boe
+boe
+brN
+boe
+bsY
+buZ
+boh
+bxt
+byB
+bzI
+bAH
+bBQ
+bDa
+bEe
+bAF
+bEc
+bHI
+bIH
+bJN
+bKZ
+bMp
+bNz
+bIM
+bPX
+bKZ
+bMe
+bSu
+bTm
+bTZ
+bUF
+bVB
+adj
+aaT
+aaT
+aaT
+bXO
+bXQ
+bXQ
+bXO
+aaT
+aaT
+aaT
+adj
+bVB
+bUF
+bUF
+chX
+bTn
+aaT
+ckg
+ckZ
+clT
+bVB
+ckg
+aaT
+bTn
+bUF
+bUF
+bUF
+bVB
+aaT
+adj
+csj
+csP
+ctG
+ctG
+ctG
+cvz
+cwi
+cwE
+cwU
+caA
+bTn
+aaa
+aab
+cui
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(112,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+abL
+abL
+abL
+abL
+abL
+atR
+aoM
+auV
+avA
+avA
+aww
+axh
+axF
+ayl
+amJ
+aom
+azP
+aom
+aom
+ahk
+ahk
+ahk
+ahk
+ail
+aEi
+aEU
+aEi
+aGw
+aGX
+aHH
+aIf
+aHH
+aJh
+aJY
+aKR
+aDP
+akI
+akI
+akI
+akI
+akG
+aAw
+aRN
+aSD
+aSD
+aSD
+aSD
+aSD
+aSD
+aSD
+aSD
+aSD
+aZv
+bap
+bbk
+bcA
+bdO
+beX
+aZv
+bha
+bhZ
+bjd
+bkn
+blq
+bmH
+bog
+bpt
+bqE
+brO
+bsY
+buf
+buf
+boh
+bxt
+byB
+bzJ
+bAI
+bBR
+bDb
+bEf
+bFl
+bEc
+bHJ
+bIH
+bJL
+bLa
+bMq
+bJL
+bOJ
+bPV
+bQM
+bRD
+bJO
+bTm
+bTZ
+bUG
+bVB
+adj
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+adj
+bVB
+bUF
+bUF
+bUH
+bTn
+bTn
+bVB
+bVB
+bWi
+bVB
+bVB
+bTn
+bTn
+coT
+bUF
+cpJ
+bTn
+aaT
+adj
+cqm
+csQ
+ctH
+cuo
+cuT
+cvA
+cwj
+cqm
+cwV
+caA
+bTn
+aaa
+aab
+cui
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(113,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+atR
+aoM
+auW
+avB
+apt
+awx
+aoN
+axG
+aym
+aoM
+aoL
+azQ
+aAk
+app
+aBk
+aBR
+aik
+ajm
+aik
+aik
+aEY
+aEi
+aGx
+aGU
+aHI
+aIf
+aIG
+aJj
+aKc
+aKR
+aDP
+akG
+akG
+aHU
+akI
+akG
+aAw
+aRN
+aSE
+aSD
+aSD
+aSD
+aVB
+aSD
+aSD
+aSD
+aYy
+aZv
+bal
+bbl
+bcB
+bdP
+aZv
+aZv
+bfW
+bia
+bfW
+bfW
+bfU
+bmI
+boh
+boh
+bqF
+brP
+bsZ
+bqF
+bva
+boh
+bxu
+byC
+bzI
+bAJ
+bBS
+bDc
+bzI
+bzI
+bEc
+bHK
+bIN
+bJO
+bLb
+bMr
+bNA
+bOK
+bPY
+bQN
+bRE
+bJO
+bTm
+bTZ
+bUH
+bTn
+bVB
+bVB
+bVB
+bVB
+bVB
+bVB
+bVB
+bVB
+bVB
+bVB
+bVB
+bVB
+bVB
+cgm
+bUF
+bUF
+bTn
+bUF
+bUF
+bVB
+clT
+bVB
+cnE
+bUF
+bTn
+cgm
+bUF
+bUF
+bTn
+bTn
+bTn
+cqm
+cqm
+cqm
+cqm
+cqm
+cqm
+cqm
+cqm
+ccs
+caA
+bTn
+aaa
+aab
+cui
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(114,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+atR
+aoM
+auW
+avC
+awd
+asS
+axi
+asS
+asS
+aoM
+apr
+azR
+apr
+app
+aik
+aik
+aik
+ajm
+aik
+aik
+aEZ
+aEi
+aGu
+aHa
+aHJ
+aIg
+aHJ
+aJk
+aKd
+aKS
+aLS
+aNe
+aNe
+aPb
+aPb
+aPb
+aQY
+aRO
+aSF
+aSF
+aSF
+aSF
+aVC
+aVL
+aSF
+aSF
+aYz
+aZw
+baq
+bbm
+bcC
+bdQ
+bcC
+bfX
+bcC
+bib
+bcC
+bko
+bcC
+bmJ
+boi
+bfX
+bcC
+bib
+bcC
+bcC
+bvb
+bwp
+bwp
+byD
+bzK
+bAK
+bBT
+bDd
+bEg
+bEg
+bGq
+bHL
+bEg
+bGq
+bLc
+bDd
+bEg
+bOL
+bEg
+bQO
+bRF
+bSv
+bTo
+bUb
+bUI
+bVD
+bUI
+bUI
+bUI
+bUI
+bUI
+bZS
+bUI
+cbm
+bSv
+bUI
+bUI
+bUI
+bUI
+cgn
+bUI
+bUI
+ciK
+bUI
+bUI
+bUI
+bUI
+bUI
+bUI
+bUI
+cox
+cgn
+bUI
+bUI
+ciK
+bUI
+bUI
+bUI
+bUI
+bUI
+bUI
+bUI
+bUI
+bUI
+cox
+cwW
+caA
+bVB
+aaa
+aab
+cui
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+acf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(115,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abL
+abL
+abL
+abL
+abL
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+ats
+atR
+aoM
+auW
+avC
+awd
+awy
+aoM
+asS
+asS
+aoM
+apr
+azR
+apr
+app
+aik
+aik
+aik
+aik
+aik
+aik
+aFa
+aEi
+aGy
+aHb
+aHK
+aIf
+aHG
+aJl
+aKb
+aKR
+aLT
+aNf
+aOi
+aPc
+aOi
+aNf
+axl
+aRP
+aSG
+aSG
+aSG
+aSG
+aSG
+aWl
+aWW
+aSG
+aSG
+aZx
+bar
+bbn
+bcD
+bcD
+bcD
+bfY
+bcD
+bic
+bcD
+bkp
+bcD
+bmK
+bcD
+bcD
+bcD
+brQ
+bcD
+bcD
+bvc
+bcD
+bcD
+byE
+bzL
+bAL
+bBU
+bzL
+bzL
+bFm
+bGr
+bHM
+bzL
+bJP
+bLd
+bzL
+bzL
+bOM
+bzL
+bQP
+bRG
+bSw
+bTp
+bUc
+bUJ
+bUJ
+bWj
+bUJ
+bUJ
+bUJ
+bUJ
+bZT
+caz
+cbn
+ccr
+cdd
+bRH
+bRH
+bRH
+cgo
+bRH
+bRH
+ciL
+bRH
+bRH
+bRH
+bRH
+bRH
+bRH
+bRH
+bRH
+cgo
+bRH
+bRH
+ciL
+bRH
+bRH
+bRH
+bRH
+bRH
+bRH
+bRH
+bRH
+bRH
+bRH
+cgo
+cxh
+bVB
+aaa
+aab
+cui
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(116,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abL
+abL
+abL
+abL
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+asR
+aoM
+atT
+aoM
+auW
+avC
+awe
+awz
+aoM
+asS
+asS
+aoM
+azl
+azR
+aAl
+app
+ajo
+aBS
+aCx
+aik
+aik
+aik
+aEN
+aEi
+aGz
+aHc
+aEi
+aIh
+aEi
+aJm
+aKe
+aKT
+aLU
+aNg
+aNg
+aPd
+aPd
+aPd
+aQZ
+aRQ
+aSH
+aSH
+aSH
+aUS
+aSH
+aVN
+aWX
+aSH
+aSH
+aZy
+aSH
+bbo
+bcE
+bcE
+bcE
+bfZ
+bcE
+bfZ
+bcE
+bcE
+bcE
+bmL
+bcE
+bcE
+bcE
+bfZ
+bcE
+bcE
+bvd
+bwq
+bwq
+bwq
+bwq
+bAM
+bBV
+bAM
+bAM
+bFn
+bGs
+bHN
+bIO
+bAM
+bLe
+bAM
+bNB
+bLe
+bAM
+bQQ
+bRH
+bSx
+bTq
+bUd
+bUF
+bUF
+bWk
+bUF
+bUF
+bUF
+bUF
+bZU
+caA
+cbo
+ccs
+cde
+bUF
+bUF
+bUF
+cgp
+bUF
+bUF
+bZU
+cjC
+bUF
+bUF
+bUF
+bUF
+bUF
+bUF
+bUF
+cgp
+bUF
+bUF
+bZU
+bUF
+bUF
+bUF
+bUF
+bUF
+bUF
+bUF
+bUF
+bUF
+bUF
+cgp
+bUF
+bVB
+aaa
+aab
+cui
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(117,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abL
+abL
+abL
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+aoM
+atU
+aoM
+auW
+avC
+awe
+awz
+aoM
+axH
+asS
+aoM
+azm
+azS
+arX
+app
+ahk
+ahk
+ahk
+ahk
+ahk
+ahk
+aFb
+aEi
+aEi
+aEi
+aEi
+aIi
+aEi
+aGS
+aJT
+aKU
+aLV
+akI
+akI
+akG
+akG
+akG
+aAw
+aRN
+aSI
+aSI
+aSI
+aRN
+aSf
+aWm
+aWY
+aXP
+aYA
+aZz
+aYA
+bbp
+bbq
+bbq
+bbq
+bbq
+bbq
+bbq
+bbq
+bbq
+blr
+bmM
+boj
+bbq
+bbq
+bbq
+bbr
+bbq
+bbp
+bbq
+bxv
+byF
+byF
+byF
+bBW
+byF
+bEh
+bFo
+bGt
+bHO
+bIP
+bFy
+bFy
+bMs
+bNC
+bON
+bMs
+bMs
+bRI
+bSy
+bTr
+bTn
+bRI
+bVE
+bVE
+bVE
+bXR
+bXR
+bXR
+bZV
+caB
+cbp
+cct
+cdf
+cdg
+cdg
+cdg
+cdg
+cdg
+cdg
+cdg
+cjD
+ckh
+cla
+cla
+cmX
+cmX
+bYV
+bYV
+bYV
+bYV
+bYV
+bYV
+cqT
+bUF
+bUF
+csR
+csR
+csR
+bUF
+bUF
+bYV
+bVB
+bVB
+bVB
+bVB
+aab
+aab
+cui
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(118,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abL
+abL
+abL
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+abL
+ads
+abL
+abL
+ads
+ads
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+aoM
+aoM
+aoM
+atT
+aoM
+auW
+avD
+awf
+awA
+axj
+awf
+awf
+axj
+azn
+azT
+aAm
+aAB
+aBl
+aBT
+aBl
+aBl
+aDE
+aBl
+aFc
+aFE
+aGA
+aHd
+aHd
+aIj
+aIH
+aJn
+aKf
+aKV
+aLW
+aNh
+aNh
+aNh
+aNh
+aNh
+aNh
+aKV
+amT
+amT
+amT
+aUT
+aVD
+aWn
+aWZ
+aXQ
+aSD
+aZA
+aSD
+bbq
+bcF
+bcG
+bcG
+bcF
+bcF
+bcF
+bcF
+bbq
+bls
+bmN
+boj
+bcF
+bcG
+bcG
+bcG
+bcF
+bcF
+bcG
+bbp
+byG
+bzM
+bAN
+bBX
+bDe
+bEh
+bFp
+bGu
+bHP
+bIQ
+bJQ
+bFy
+bMt
+bND
+bOO
+bPZ
+bMs
+bRI
+bSz
+bTs
+bUe
+bUK
+bVF
+bWl
+bXd
+bXS
+bYR
+bZo
+bZW
+caC
+cbq
+ccu
+cdg
+cdR
+cdR
+cdR
+cdR
+chh
+chY
+ciM
+cjE
+cki
+cki
+cki
+cki
+cki
+cki
+adj
+adj
+adj
+adj
+bYV
+bUF
+crw
+csk
+csS
+csS
+csS
+bUF
+cvB
+bYV
+cgV
+cgV
+cgV
+cgV
+cui
+cui
+cui
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(119,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abL
+abL
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+aoM
+asS
+att
+asS
+aoM
+auX
+avA
+avA
+awB
+axh
+axI
+ayn
+axh
+azo
+azU
+aAn
+aAC
+aBm
+aBm
+aBm
+aBm
+aBm
+aBm
+aBm
+aFF
+aGB
+aHe
+aHe
+aIk
+aII
+aJo
+aKg
+aKW
+aLX
+aNi
+aNi
+aNi
+aNi
+aNi
+aNi
+aRR
+aNi
+aNi
+aNi
+aNi
+aNi
+aNi
+aNi
+aXR
+aYB
+aZB
+aSD
+bbq
+bcF
+bdR
+bcG
+bga
+bcG
+bcF
+bcG
+bbq
+blr
+bmO
+boj
+bcF
+bqG
+bcF
+bta
+bcG
+bqG
+bcF
+bbq
+byH
+bzN
+bAO
+bBY
+bDf
+bEi
+bFq
+bGv
+bHQ
+bIR
+bJR
+bLf
+bMu
+bNE
+bOP
+bQa
+bQR
+bRI
+bSA
+bTt
+bUf
+bRI
+bVE
+bWm
+bWm
+bWm
+bWm
+bWm
+bZX
+caD
+cbr
+ccv
+cdh
+cdS
+ceN
+cfu
+cfu
+chi
+chZ
+ciN
+cjE
+ckj
+clb
+clU
+cmY
+cnF
+cki
+adj
+aaT
+aaT
+adj
+cqn
+cqn
+cqn
+csl
+csl
+csl
+csl
+csm
+cvC
+csl
+adj
+adj
+adj
+adj
+aab
+aab
+aab
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(120,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+ads
+ads
+abL
+abL
+abL
+abL
+abL
+abL
+agc
+agc
+agc
+agc
+agc
+ads
+aoM
+asT
+asT
+ahk
+ahk
+ail
+ahk
+ahk
+ahk
+ahk
+ahk
+ahk
+ahk
+ahk
+azV
+azV
+azV
+azV
+azV
+azV
+azV
+azV
+azV
+azV
+azV
+azV
+azV
+azV
+aIl
+aIJ
+aoD
+aKh
+aKX
+aLY
+aLY
+aKm
+aPe
+aKm
+aKk
+aRa
+aKk
+aKm
+aKk
+aKk
+aKm
+ajT
+akG
+akG
+akq
+aSD
+aZA
+aSD
+bbr
+bcF
+bcF
+bcF
+bcF
+bcG
+bcF
+bcG
+bbq
+blt
+bmP
+boj
+bcF
+bqH
+bcF
+btb
+bcF
+bcG
+bcG
+bhc
+byI
+byH
+bAP
+bBZ
+bDg
+bEh
+bFr
+bGw
+bHR
+bIS
+bJS
+bFy
+bMv
+bNF
+bOQ
+bQb
+bQS
+bRI
+bSB
+bTu
+bUg
+bRI
+bVE
+bWm
+bWm
+bWm
+bWm
+bWm
+bZX
+caC
+cbs
+ccw
+cdi
+cdT
+cdT
+cdT
+cgq
+chj
+chZ
+ciO
+cjE
+ckk
+clc
+clV
+cmZ
+cnG
+cki
+adj
+aaT
+aaT
+adj
+cqn
+cqU
+crx
+csm
+csT
+ctI
+cup
+cuU
+cvD
+csl
+adj
+aaT
+aaT
+aaT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(121,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+ads
+abL
+ads
+ads
+ads
+ads
+abL
+abL
+abL
+abL
+aeu
+abL
+agc
+agc
+agc
+agc
+agc
+ads
+aoM
+asS
+asS
+ahk
+auv
+aik
+aik
+aik
+aiL
+aik
+aik
+aik
+aik
+aik
+azW
+aAo
+aAD
+aAo
+aAo
+aCy
+azV
+aDF
+aAO
+aFd
+aAO
+aGC
+aAO
+aHf
+aIm
+aIJ
+aoD
+aKi
+aKY
+aLZ
+aNj
+aOj
+aPf
+aOj
+aOj
+aOj
+aOj
+aSJ
+aOm
+aTW
+aKm
+aQp
+akG
+akG
+akq
+aYC
+aZA
+aSD
+bbq
+bcG
+bcG
+beY
+bcF
+bhb
+bcF
+bcF
+bbq
+blt
+bmP
+bij
+bcG
+bgb
+bcF
+bgb
+bcF
+bgb
+bcF
+bbp
+byJ
+bzO
+bAQ
+bCa
+bDh
+bEh
+bFs
+bGx
+bHS
+bIT
+bJT
+bFy
+bMw
+bNG
+bOR
+bQc
+bMs
+bRI
+bSC
+bTv
+bUh
+bUL
+bVG
+bWn
+bXe
+bXT
+bYS
+bZp
+bVE
+caC
+cbq
+ccx
+cdg
+cdR
+ceO
+cdR
+cdR
+chk
+chZ
+ciP
+cjE
+ckl
+cld
+clW
+cna
+cnH
+cki
+adj
+aaT
+aaT
+adj
+cqn
+cqV
+cry
+csn
+csU
+ctJ
+cuq
+ctJ
+cuq
+csl
+adj
+aaT
+aaT
+aaT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(122,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+ads
+ads
+ads
+abL
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+abL
+abL
+ads
+ads
+ads
+ads
+agc
+agc
+agc
+agc
+agc
+ads
+aoM
+ahk
+atu
+ahk
+ahk
+ahk
+avE
+avE
+awC
+aoa
+aik
+ajm
+ahk
+ahk
+azV
+aAo
+aAE
+aBn
+aBU
+aCz
+aDf
+aDG
+aEj
+aFe
+aFG
+aGD
+aEj
+aHL
+aIn
+aIK
+aJp
+aKj
+aKZ
+aMa
+aNk
+aOk
+aPg
+aPI
+aQq
+aRb
+aOj
+aSK
+aTk
+aSK
+aKk
+asg
+akG
+aWo
+aHU
+aSD
+aZA
+aSD
+bbq
+bcG
+bcG
+bdR
+bcF
+bgb
+bcF
+bgb
+bbq
+blt
+bmQ
+bij
+bpu
+bqI
+bqI
+bqI
+bpu
+bqI
+bwr
+bwr
+bwr
+bwr
+bwr
+bCb
+bwr
+bwr
+bFt
+bGy
+bHT
+bIU
+bJU
+bLg
+bMx
+bNH
+bMx
+bMx
+bMx
+bRJ
+bSD
+bTw
+bUi
+bUM
+bVE
+bVE
+bVE
+bXR
+bXR
+bXR
+bVE
+caC
+cbq
+ccx
+cdg
+cdg
+cdg
+cdg
+cdg
+cdg
+cdg
+cdg
+cjE
+ckm
+cle
+clX
+cnb
+ckm
+cki
+cdk
+cdk
+cdk
+cdk
+cqn
+cqW
+crz
+cso
+csV
+ctK
+cur
+ctK
+cvE
+csl
+adj
+adj
+adj
+adj
+aab
+aab
+aab
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(123,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+agc
+aqw
+akF
+akF
+akF
+akF
+asw
+aik
+aik
+aik
+auw
+ahk
+ajp
+aik
+awD
+aob
+aik
+aik
+aik
+azp
+azV
+aAo
+aAF
+aBo
+aBV
+aAo
+azV
+aDH
+aEk
+aFd
+aAM
+aGC
+aAO
+aHf
+aIm
+aIJ
+akI
+aKk
+aLa
+aMb
+aNl
+aOj
+aPh
+aPJ
+aOj
+aOj
+aOj
+aOm
+aOm
+aOm
+aKk
+aJq
+akG
+aVE
+akG
+aSD
+aZA
+aSD
+bbq
+bcF
+bcG
+bcG
+bgb
+bgb
+bid
+bje
+bje
+blu
+bmN
+bij
+bpv
+bqJ
+brR
+btc
+bug
+bve
+bwr
+bxw
+byK
+bzP
+bAR
+bCc
+bDi
+bEj
+bFu
+bGz
+bHU
+bIU
+bJV
+bLg
+bMy
+bNI
+bOS
+bMy
+bMx
+bRK
+bSD
+bTn
+bTn
+bTn
+bTn
+adj
+adj
+adj
+adj
+adj
+bYV
+caC
+cbq
+ccx
+cdj
+cdU
+ceP
+ceP
+ceP
+ceP
+ceP
+ciQ
+cjF
+cjJ
+clf
+clY
+cnc
+cnI
+cod
+coy
+coy
+cpn
+cpK
+cqo
+cqX
+crA
+csm
+csW
+ctL
+cus
+ctL
+cus
+csl
+cqn
+cqn
+cqn
+cqn
+cqn
+cqn
+cqn
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(124,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+agc
+aqx
+aik
+aro
+aik
+ase
+aik
+aik
+aik
+aik
+aux
+ahk
+ajp
+aik
+ajs
+axk
+aik
+aik
+ayN
+azq
+azV
+aAp
+aAG
+aBp
+aBV
+aAo
+aDg
+aBX
+aEl
+aBX
+aAM
+aAO
+aAO
+aHf
+aIm
+aIJ
+akI
+aKk
+aLa
+aMc
+aNm
+aOj
+aPi
+aPJ
+aOj
+aRc
+aRS
+aOj
+aOj
+aTX
+aUU
+akG
+akI
+akG
+akG
+aSD
+aZA
+aSD
+bbq
+bcF
+bcG
+bcG
+bcF
+bhc
+bie
+bjf
+bkq
+blv
+bmR
+bok
+bpw
+bqK
+brS
+btd
+buh
+bvf
+bws
+bxx
+byL
+bzQ
+bAS
+bCd
+bDj
+bwr
+bFv
+bGA
+bHV
+bIU
+bJW
+bLh
+bMy
+bNJ
+bOT
+bMy
+bMx
+bRL
+bSD
+bTn
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+bYV
+caD
+cbt
+ccx
+cdk
+cdV
+ceQ
+ceQ
+cgr
+ceQ
+ceQ
+ciR
+cjG
+ckn
+clg
+clZ
+cnd
+ckn
+coe
+ceQ
+ceQ
+ceQ
+cpL
+cqp
+cqY
+crB
+csm
+csX
+ctM
+cup
+csU
+cvD
+csp
+cwF
+cwX
+cdU
+cxi
+cxP
+cxR
+cqn
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(125,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+aqy
+aik
+arp
+arM
+arM
+arM
+asU
+aik
+aik
+auy
+ahk
+aik
+aik
+aik
+aik
+aik
+aik
+aik
+azr
+azV
+aAq
+aAH
+aBq
+aBW
+aAo
+aDg
+aBX
+aEl
+aBX
+aFH
+azV
+aHf
+azV
+aIo
+aIJ
+aJq
+aKk
+aLa
+aMd
+aNn
+aOl
+aPj
+aPK
+aLZ
+aRd
+aRT
+aOj
+aTl
+aTY
+aKk
+aJq
+akG
+aXa
+akG
+aSD
+aZA
+aSD
+bbq
+bcF
+bcG
+bcF
+bgb
+bgb
+bif
+bjg
+bje
+blt
+bmP
+bij
+bpx
+bqL
+brT
+brT
+bui
+bpy
+bwt
+bxy
+byM
+bzR
+bzR
+bCe
+bDk
+bEk
+bFw
+bGB
+bHW
+bIV
+bJX
+bLi
+bMz
+bNK
+bOU
+bMy
+bMx
+bRM
+bSD
+bTn
+adj
+bUN
+bUN
+bUN
+bUN
+bUN
+bUN
+adj
+bYV
+caC
+cbq
+ccx
+cdk
+cdk
+ceR
+ceR
+ceR
+ceR
+ceR
+ciS
+ciS
+cko
+clh
+cma
+cne
+cnJ
+cof
+coz
+coz
+coz
+coz
+coz
+cqZ
+crC
+csp
+csp
+csp
+csp
+cuV
+csm
+csp
+cdU
+cdU
+cxi
+cxj
+cdk
+cxS
+cqn
+cyi
+cyl
+cyl
+cyl
+cyl
+cyl
+cyl
+cyl
+cyl
+cyl
+cyl
+cyl
+cyl
+cyl
+cyl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(126,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+ahR
+aik
+aik
+aik
+aik
+aik
+aik
+atv
+aik
+auz
+ahk
+auv
+aik
+aik
+aik
+aik
+aik
+aik
+aik
+azV
+aAo
+aAI
+aBr
+aBX
+aCA
+azV
+aDI
+aEl
+aBX
+aAN
+aGE
+aHg
+aHM
+aIp
+aIJ
+aJr
+aKk
+aLa
+aMc
+aNm
+aOm
+aPk
+aPL
+aOj
+aRe
+aOj
+aOj
+aTl
+aTY
+aKk
+aVE
+akG
+akI
+akG
+aSD
+aZA
+aSD
+bbq
+bcF
+bcG
+bcF
+bcF
+bgb
+big
+bjh
+bkr
+blt
+bmP
+bol
+bpy
+bpy
+bpy
+bpy
+bpy
+bpy
+bwr
+bxz
+byN
+bzS
+bAT
+bCf
+bDl
+bwr
+bFx
+bGC
+bHX
+bIW
+bJY
+bLg
+bMy
+bMy
+bOV
+bMy
+bMx
+bRN
+bSD
+bTn
+adj
+bUN
+bVH
+bWo
+bXf
+bXU
+bUN
+adj
+bYV
+caC
+cbu
+ccy
+cdl
+cdW
+cdW
+cdW
+cdW
+cdW
+cdW
+ciT
+ciS
+ckp
+cli
+cmb
+cnf
+cnK
+ciX
+adj
+adj
+adj
+adj
+adj
+cdt
+crC
+cdk
+csY
+ctN
+cut
+cuW
+cvF
+cwk
+cwG
+cwY
+cxj
+cxC
+cdk
+cxT
+cqn
+cye
+cye
+cye
+cye
+cye
+cye
+cye
+cye
+cye
+cye
+cye
+cye
+cye
+cye
+cye
+cyl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(127,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+agG
+ahk
+ahk
+ahk
+ahk
+ahk
+ahk
+ahk
+akF
+ahk
+akF
+akF
+amO
+ahk
+akF
+akF
+aoY
+apy
+ahk
+aqz
+aqS
+aik
+aqS
+asf
+asx
+asV
+aik
+aik
+aik
+ahk
+ajm
+ajn
+ajm
+ajm
+aik
+ayo
+aik
+aik
+azV
+aAo
+aAJ
+aAo
+aBY
+aCB
+aDh
+aDJ
+aEm
+aFf
+aFf
+aGF
+aHh
+aHh
+aHh
+aIL
+aJs
+aKl
+aLb
+aMe
+aNo
+aOn
+aPl
+aPM
+aOj
+aOj
+aRU
+aOj
+aOj
+aTZ
+aUU
+aQp
+aWo
+akG
+akG
+aSD
+aZA
+aSD
+bbq
+bcF
+bcF
+bcF
+bgb
+bgb
+bih
+bji
+bje
+blw
+bmS
+bij
+bpz
+bpy
+brU
+bte
+bpB
+bvg
+bwr
+bwr
+bwr
+bwr
+bwr
+bwr
+bwr
+bwr
+bFy
+bFy
+bHY
+bFy
+bJZ
+bLg
+bMx
+bNL
+bMx
+bMx
+bMx
+bOX
+bSE
+bTx
+bNO
+bUO
+bVI
+bWp
+bXg
+bXV
+bYT
+bZq
+bYV
+caC
+cbv
+ccx
+cdk
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+ciU
+ciS
+ckq
+clj
+cmc
+cng
+cnL
+ciX
+adj
+aaT
+aaT
+aaT
+adj
+cqn
+crD
+cdk
+csZ
+css
+ctP
+css
+css
+css
+css
+cwZ
+cdU
+cxC
+cdk
+cxU
+cye
+cxZ
+cyo
+cyx
+cyH
+cyH
+cyH
+cyH
+cyH
+cyH
+cyW
+cyX
+cza
+cyk
+cye
+cye
+cyl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(128,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+agH
+ahl
+ahK
+ahl
+aiK
+aiL
+aik
+aik
+aik
+ail
+aik
+aik
+amP
+ahk
+aik
+aik
+aik
+aik
+ahk
+ahk
+ahk
+ahk
+ahk
+ahk
+ahk
+ahk
+ahk
+atV
+ahk
+ahk
+aik
+awg
+aik
+ajm
+aik
+ayo
+aik
+azs
+azV
+aAr
+aAJ
+aBs
+aBZ
+aCC
+azV
+aDK
+aEl
+aBX
+aFI
+aGG
+aHi
+aHN
+aIq
+aIJ
+akI
+aKm
+aKm
+aMf
+aKh
+aKm
+aPe
+aPN
+aQr
+aRf
+aRT
+aOj
+aTm
+aTY
+aKk
+akG
+akG
+aHU
+akq
+aSD
+aZA
+aSD
+bbq
+bcF
+bcF
+bcF
+bcF
+bhc
+bii
+bjj
+bks
+blx
+bmT
+bom
+bpA
+bqM
+brV
+btf
+bpB
+bvh
+bwu
+bpC
+bpC
+bpC
+bpC
+bpC
+bpC
+bpC
+bpC
+bpC
+bHZ
+bIX
+bpC
+bLj
+bon
+bNM
+bNM
+bNM
+bQT
+bNM
+bSF
+bNQ
+adj
+bUN
+bVJ
+bWq
+bXg
+bXW
+bYU
+bZr
+bZY
+caE
+cbw
+ccx
+cdm
+cdX
+ceS
+cfv
+ceS
+ceS
+cia
+ciV
+cjH
+ckr
+clk
+cmd
+clg
+cnM
+ciX
+adj
+aaT
+aaT
+aaT
+adj
+cqn
+crE
+csq
+cta
+css
+ctP
+css
+css
+css
+css
+cwZ
+cdU
+cxD
+cdk
+cxV
+cyf
+cyj
+cyk
+cyy
+cyk
+cyk
+cyk
+cyk
+cyk
+cyk
+cyk
+cyy
+cyk
+cyk
+cyk
+cye
+cyl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(129,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+agH
+ahk
+ahk
+ahk
+ahk
+ajl
+aik
+ajm
+aik
+ahk
+alD
+aik
+amQ
+ahk
+aik
+ahk
+ail
+ahk
+ahk
+aik
+aik
+aik
+aik
+aik
+aik
+amv
+ahk
+aik
+aik
+ahk
+aqS
+awh
+awE
+ajm
+aik
+ayo
+aik
+azt
+azV
+azV
+aAK
+azV
+azV
+aCD
+azV
+aDL
+aEn
+aBX
+aFJ
+azV
+aHf
+aHO
+aIr
+aIM
+akI
+aKm
+aLc
+aMg
+aNp
+aOo
+aPe
+aPO
+aQs
+aRg
+aRT
+aOj
+aTl
+aTY
+aKk
+aJr
+akG
+akq
+akq
+aYD
+aZz
+aYA
+bbp
+bbp
+bbp
+bbp
+bbp
+bbp
+bid
+bid
+bje
+blt
+bmU
+bij
+bpB
+bpB
+bpB
+bpB
+bpB
+bvi
+bwv
+bww
+byO
+bxB
+bxB
+bxB
+bxB
+bxB
+bxB
+bxB
+bIa
+bIY
+bIY
+bLk
+bMA
+bNN
+bOW
+bQd
+bQU
+bRO
+bSG
+bNN
+bNP
+bUP
+bVK
+bWr
+bXh
+bXX
+bYT
+bZq
+bYV
+caC
+cbx
+ccz
+cdn
+cdY
+ceT
+cfw
+cgs
+chl
+cib
+ciU
+ciS
+ciS
+ciS
+cme
+cnh
+ciS
+ciX
+adj
+aaT
+aaT
+aaT
+adj
+cqn
+crF
+csr
+csr
+ctO
+cuu
+cuX
+cvG
+cwl
+cwH
+cwZ
+cdU
+cdk
+cdk
+cxW
+cxW
+cxW
+cxW
+cyz
+cxW
+cxW
+cxW
+cxW
+cxW
+cxW
+cxW
+cyz
+cxW
+cxW
+cxW
+cye
+cyl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(130,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+agc
+agc
+agc
+ahk
+aii
+aik
+aik
+aik
+ajm
+aik
+ahk
+ahk
+ahk
+ahk
+ahk
+aik
+ahk
+aik
+aik
+aik
+aik
+aik
+arq
+ajm
+aik
+aik
+ahk
+ahk
+atW
+atW
+ahk
+ahk
+ahk
+ahk
+ahk
+aik
+ayo
+aik
+azu
+azV
+aAs
+aAL
+aBt
+aCa
+aCE
+azV
+aAO
+aEl
+aBX
+aFK
+aGH
+aHj
+aHf
+aIs
+aIJ
+akI
+aKm
+aLd
+aMh
+aNq
+aOp
+aPm
+aPP
+aQs
+aRh
+aRT
+aOj
+aOj
+aTX
+aKm
+aVF
+aNh
+aNh
+aXS
+aSD
+aZA
+aSD
+bbs
+bcH
+bcH
+bcH
+bcH
+bcH
+bcH
+bcH
+bbs
+blt
+bmV
+bon
+bpC
+bpC
+bpC
+bpC
+bon
+bvj
+bww
+bxA
+bxB
+bxB
+bxB
+bxB
+bxB
+bxB
+bxB
+bxB
+bxB
+bIZ
+bIY
+bLl
+bMB
+adj
+bOX
+bQe
+bQV
+bRP
+bSH
+bNQ
+adj
+bUN
+bVL
+bWs
+bXi
+bXY
+bUN
+adj
+bYV
+caC
+cbv
+ccx
+cdo
+cdZ
+cdZ
+cfx
+cdZ
+chm
+cib
+ciW
+cdW
+cks
+ciX
+cmf
+cni
+ciX
+adj
+adj
+adj
+adj
+adj
+adj
+cqn
+crG
+css
+css
+ctP
+cuv
+css
+css
+cwm
+css
+cwZ
+cxk
+cxE
+cdt
+cxX
+cxW
+cyi
+cyi
+cyz
+cyi
+cyi
+cyk
+cxW
+cyk
+cyi
+cyi
+cyz
+cyi
+cyi
+cxW
+cye
+cyl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(131,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+agc
+agc
+agc
+ahk
+aij
+aik
+ajm
+ajm
+ajm
+aik
+ail
+aik
+aik
+aik
+aik
+aik
+ahk
+ajp
+apz
+ajs
+aqA
+ajm
+ajm
+ajm
+aik
+aik
+aik
+aik
+aik
+aik
+aik
+aik
+aik
+aik
+ail
+aik
+ayo
+aik
+azv
+azV
+aAt
+aAM
+aBu
+aCb
+aCF
+aDi
+aDM
+aEo
+aFg
+aFL
+aCb
+aCb
+aHP
+aIt
+aIN
+aJq
+aKm
+aLe
+aMi
+aNr
+aOj
+aPn
+aPQ
+aQs
+aRg
+aRT
+aOj
+aOj
+aOj
+aRa
+amT
+amT
+amT
+amT
+aSD
+aZA
+aSD
+bbt
+bbt
+bbt
+bbt
+bbt
+bbt
+bij
+bij
+bij
+bij
+bmW
+bij
+bij
+bqN
+brW
+brW
+bqN
+brW
+brW
+bxB
+bxB
+bxB
+bAU
+bxB
+bDm
+bxB
+bAU
+bxB
+bxB
+bxB
+bKa
+bLl
+bMB
+adj
+bOX
+bNQ
+bNQ
+bNQ
+bOX
+bOX
+adj
+bUN
+bUN
+bUN
+bUN
+bUN
+bUN
+adj
+bYV
+caC
+cby
+ccA
+cdp
+cea
+ceU
+cfy
+cgt
+cdZ
+cic
+aaT
+aaT
+ciU
+ceR
+cmf
+cni
+ceR
+adj
+aaT
+aaT
+aaT
+aaT
+adj
+cqn
+crH
+css
+ctb
+ctP
+css
+css
+css
+css
+css
+cwZ
+cxl
+cxE
+cdt
+cxW
+cxW
+cyi
+cyp
+cyA
+cyI
+cyM
+cyM
+cyI
+cyM
+cyM
+cyI
+cyA
+czb
+cyi
+cxW
+cye
+cyl
+cyl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(132,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+agc
+agc
+agc
+ahk
+aik
+aik
+ajm
+ajT
+ajT
+ajT
+ajT
+ajT
+ajT
+ajT
+ajT
+ajT
+ajT
+ajT
+ajT
+ajT
+ajT
+ajT
+ajT
+ajT
+ajT
+ajT
+ajT
+ajT
+ajT
+ajT
+ajT
+ajT
+ajT
+ajT
+ajT
+axJ
+ahk
+ahk
+ahk
+azV
+aAu
+aAN
+aBv
+aCc
+aCG
+azV
+aAO
+aAO
+aAO
+aAO
+aAO
+aAO
+aHf
+aIm
+aIO
+akG
+aKm
+aLf
+aMj
+aNs
+aOq
+aPe
+aPR
+aQt
+aRi
+aRT
+aOj
+aOj
+aUa
+aKm
+aVG
+aHN
+aHN
+aXT
+aSD
+aZA
+aSD
+bbu
+bcI
+bdS
+beZ
+bgc
+bhd
+bik
+bjk
+bkt
+bly
+bmX
+boo
+bpD
+bqN
+bqN
+bqN
+bqN
+bqN
+bqN
+bxB
+bxB
+byQ
+byQ
+byQ
+bzW
+byQ
+byQ
+byQ
+bxB
+bxB
+bxB
+bLl
+bMB
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+bYV
+caC
+cbv
+ccu
+cdo
+cdZ
+cdZ
+cdZ
+cgu
+chn
+cid
+aaT
+aaT
+ciU
+ceR
+cmf
+cni
+ceR
+adj
+aaT
+aaT
+aaT
+aaT
+adj
+cqn
+crI
+ceY
+ctc
+ctQ
+cuw
+cuY
+cvH
+cwn
+cwI
+cxa
+cxm
+cxE
+cdt
+cxW
+cxW
+cyk
+cyq
+cyB
+cyi
+cyi
+cyk
+cyk
+cyB
+cyi
+cyi
+cyB
+cyq
+cyk
+cxW
+cye
+cye
+cyl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(133,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+agc
+agc
+agc
+ahL
+aik
+aik
+ajm
+ajT
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+amT
+akG
+akG
+akG
+azV
+aAv
+aAO
+aBw
+aAO
+aCH
+azV
+aDN
+aEp
+aFh
+aFM
+aGI
+aHk
+aHf
+aIu
+aIP
+aJt
+aKm
+aKm
+aMf
+aKh
+aKm
+aPe
+aPS
+aQu
+aRj
+aPV
+aPV
+aPV
+aUb
+aKo
+aRp
+aRp
+aRp
+aKo
+aSD
+aZC
+bas
+bbu
+bcJ
+bdT
+bfa
+bgd
+bhe
+bil
+bjl
+bku
+blz
+bmY
+bop
+bpE
+bqO
+brX
+btg
+buj
+btg
+bwx
+bxC
+byP
+bzT
+bAV
+bAV
+bDn
+bAV
+bFz
+bGD
+byP
+bxC
+bxC
+bLm
+bMC
+bNO
+bOY
+bOY
+bOY
+bOY
+bSI
+bOY
+bOY
+bOY
+bOY
+bWt
+adj
+adj
+adj
+adj
+bYV
+caC
+cbv
+ccB
+cdo
+ceb
+ceV
+cfz
+cgv
+cho
+cie
+aaT
+aaT
+ciW
+cll
+cmg
+cnj
+cll
+cog
+cdW
+cdW
+cdW
+cdW
+cks
+cqn
+crJ
+cdt
+ctd
+ctR
+cux
+cdk
+cdk
+cdk
+cwJ
+cdk
+cdk
+cxF
+cdt
+cxX
+cxW
+cyi
+cyq
+cyi
+cyl
+cyl
+cyl
+cyi
+cyl
+cyl
+cyl
+cyi
+cyr
+cyi
+cxW
+cyk
+cye
+cyl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(134,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+agc
+agc
+ahM
+aik
+aik
+ajm
+ajT
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akH
+akq
+akq
+akq
+akq
+akq
+akG
+amT
+akG
+akG
+akG
+azV
+azV
+aAP
+azV
+aAP
+azV
+azV
+aDO
+azV
+azV
+azV
+azV
+azV
+azV
+aIl
+aIQ
+aJu
+aJu
+aLg
+aMk
+aNt
+aOr
+aPo
+aPT
+aPV
+aRk
+aRV
+aPV
+aTn
+aPq
+aUV
+aUX
+aWp
+aUX
+aXU
+aYE
+aZD
+bat
+bbv
+bcK
+bdU
+bfb
+bge
+bhf
+bim
+bjm
+bkv
+blA
+bmZ
+boq
+bpF
+bqN
+brY
+bth
+buk
+bvk
+bwy
+bxD
+byQ
+bzU
+bAW
+bAW
+bDo
+bAW
+bzU
+byQ
+bIb
+bxB
+bxB
+bLl
+bMB
+adj
+bOZ
+bQf
+bQf
+bQf
+bSJ
+bTy
+bUj
+bUQ
+bVM
+bWu
+bOY
+bOY
+bNO
+bNO
+bZZ
+caF
+cbz
+ccC
+cdq
+cdq
+cdq
+cfA
+cdq
+cdq
+cif
+ciX
+ciX
+ciX
+ciX
+cmh
+cnk
+ciX
+coh
+ceR
+ceR
+ceR
+ceR
+cqq
+cra
+crK
+cst
+cte
+ctS
+cuy
+cdk
+cvI
+cwo
+cwK
+cwK
+cwK
+cxG
+cdt
+cxW
+cxW
+cyi
+cyr
+cyi
+cyl
+cyl
+cyl
+cyi
+cyl
+cyl
+cyl
+cyi
+cyq
+cyi
+cxW
+cyk
+cye
+cyl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(135,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+agc
+agc
+ahN
+aik
+aik
+ajn
+ajT
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akH
+akq
+akq
+akG
+akG
+akG
+akG
+akI
+akI
+akG
+akG
+akG
+akG
+akI
+akI
+akI
+akI
+akI
+axK
+akG
+asg
+akG
+ava
+akG
+akI
+akI
+akI
+akI
+akG
+aDP
+akI
+akI
+akI
+ava
+akG
+akG
+aIm
+aIO
+akG
+aKn
+aKo
+aMl
+aNu
+aOs
+aPp
+aPU
+aPU
+aRl
+aRW
+aPU
+aPU
+aUc
+aPU
+aVH
+aWq
+aUf
+aKo
+aSD
+aZE
+bau
+bbt
+bcL
+bdV
+bfc
+bgc
+bhg
+bim
+bjn
+bkw
+blA
+bna
+bor
+bpG
+bqN
+brZ
+bti
+bti
+bvk
+btl
+bxB
+byR
+bzU
+bAX
+bxB
+bxB
+bEl
+bFA
+byQ
+byQ
+bxB
+bxB
+bLl
+bMB
+adj
+bPa
+bQf
+bQW
+bQX
+bQY
+bQf
+bUk
+bUR
+bVN
+bWv
+bXj
+bPa
+bYV
+bYV
+bYV
+caD
+cbA
+ccv
+cdr
+cec
+ceW
+cfB
+cfB
+cfB
+cig
+ceP
+ciQ
+ceP
+clm
+cmi
+cnl
+clm
+coi
+ceP
+ceP
+ceP
+cjF
+cqr
+cqn
+crL
+csu
+ctf
+ctT
+cuz
+cdk
+cvJ
+cwp
+cwL
+cvI
+cxn
+cxH
+cdt
+cxW
+cxW
+cyk
+cyq
+cyB
+cyl
+cyl
+cyk
+cyk
+cyk
+cyl
+cyl
+cyk
+cyq
+cyl
+cxW
+cyk
+cye
+cyl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(136,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+agc
+agc
+ahO
+ahk
+ail
+ahk
+ajT
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akG
+akG
+akI
+akI
+akG
+akI
+akG
+akI
+akG
+akG
+akG
+akG
+akG
+akG
+akG
+akG
+awF
+axl
+axl
+axl
+axl
+axl
+axl
+axl
+axl
+axl
+axl
+axl
+axl
+aDQ
+aEq
+axl
+axl
+axl
+aEq
+axl
+aIv
+aIO
+akI
+alh
+aKo
+aMm
+aNv
+aOt
+aPq
+aPV
+aQv
+aRm
+aRV
+aPV
+aPV
+aPq
+aPV
+aPV
+aPV
+aXb
+aXV
+aSD
+aZF
+bav
+bbw
+bcJ
+bdW
+bfd
+bgc
+bhh
+bim
+bjo
+bkx
+blB
+bnb
+bos
+bpH
+bqP
+bsa
+btj
+bul
+bvl
+bwz
+bxE
+byS
+bzV
+bAY
+bxB
+bDp
+bzW
+bFB
+bGE
+bzW
+bxB
+bxB
+bLn
+bMB
+adj
+bPa
+bQg
+bQX
+bQf
+bSK
+bQf
+bUl
+bUR
+bVN
+bWw
+bQf
+bXZ
+bYW
+bZs
+bZs
+caC
+cbB
+ccz
+cds
+ced
+ceX
+cfC
+cfC
+cfC
+cfC
+cfC
+cfC
+cfC
+cln
+cmj
+cnm
+cnN
+coj
+coA
+coA
+coA
+cpM
+cqs
+crb
+crM
+csv
+ctg
+ctU
+cuA
+cuZ
+cvK
+cwq
+cwM
+cxb
+cxo
+cxI
+cxQ
+cxY
+cxY
+cxY
+cys
+cyk
+cyi
+cyi
+cyk
+cyS
+cyk
+cyi
+cyi
+cyk
+cyr
+cxW
+cxW
+cyk
+cye
+cyl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(137,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+agc
+agc
+ahP
+aik
+aik
+ajm
+ajT
+akq
+akq
+akq
+akq
+akq
+akq
+akG
+akG
+akG
+akI
+akI
+akI
+akG
+akI
+akG
+akG
+asg
+akG
+asW
+akI
+akI
+akI
+akI
+akI
+akG
+awG
+anY
+akI
+akI
+akG
+aoF
+akG
+aAw
+akG
+akI
+akI
+akI
+arr
+akI
+aDP
+akG
+akG
+akG
+aDP
+akG
+aIw
+aIO
+akI
+aKo
+aKo
+aMn
+aNw
+aOu
+aPr
+aPW
+aPW
+aRn
+aRX
+aPW
+aTo
+aUd
+aUW
+aPV
+aPV
+aPV
+aKo
+aYC
+aZG
+baw
+bbt
+bcM
+bdV
+bfe
+bgc
+bhi
+bim
+bjp
+bky
+blA
+bnc
+bot
+bpI
+bqN
+bsb
+bti
+bti
+bvk
+bwA
+bxB
+byQ
+bzW
+bAZ
+bxB
+bxB
+bEm
+bzW
+byQ
+byQ
+bxB
+bxB
+bLo
+bMB
+adj
+bPa
+bQf
+bQY
+bQX
+bQW
+bQf
+bUk
+bUR
+bVN
+bWx
+bXk
+bPa
+bYV
+bYV
+bYV
+caC
+cbC
+ccx
+cdt
+cdV
+ceY
+cfD
+cfD
+cfD
+cfD
+cfD
+cfD
+cfD
+clo
+cmk
+cnn
+clo
+cok
+cfD
+cfD
+cfD
+cpN
+cqt
+cqn
+crN
+csw
+cth
+ctP
+cuB
+cdk
+cvI
+cvI
+cvI
+cvI
+cxp
+cxJ
+cdt
+cxW
+cxW
+cyl
+cyq
+cyk
+cyl
+cyl
+cyk
+cyk
+cyk
+cyl
+cyl
+cyB
+cyq
+cyl
+cxW
+cyk
+cye
+cyl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(138,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+agc
+agc
+ahQ
+aik
+aik
+ajm
+ajT
+akq
+akq
+akq
+akq
+akq
+akq
+akI
+akG
+akI
+akI
+akG
+akG
+akI
+akG
+akG
+akG
+akG
+asy
+asy
+asy
+asy
+asy
+asy
+asy
+asy
+awG
+axm
+axm
+ayp
+ayp
+axm
+axm
+aAx
+aAQ
+aAQ
+aAR
+aAR
+aAR
+aAR
+aEr
+aAR
+aAQ
+aAR
+aEr
+aHQ
+aIw
+aIO
+aJr
+aKp
+aLh
+aMo
+aNx
+aKo
+aPs
+aPX
+aQw
+aRo
+aRY
+aSL
+aPX
+aUe
+aUX
+aPV
+aPV
+aPV
+aKo
+aYF
+aZH
+bax
+bbx
+bcN
+bdX
+bff
+bgf
+bhj
+bim
+bjq
+bkz
+blA
+bnd
+bou
+bpJ
+bqN
+brY
+btk
+bum
+bvk
+bwB
+bxD
+byQ
+bzW
+bAW
+bAW
+bDq
+bAW
+bzW
+byQ
+bIb
+bxB
+bxB
+bLo
+bMB
+adj
+bPb
+bQf
+bQf
+bQf
+bSL
+bTz
+bUm
+bUS
+bVO
+bWy
+bPc
+bPc
+bNP
+bNP
+caa
+caG
+cbD
+ccD
+cdk
+cdk
+cdt
+ceR
+ceR
+ceR
+ceR
+ciX
+ciX
+ciX
+ciX
+cml
+cni
+ciX
+coh
+ceR
+ceR
+ceR
+ceR
+ciX
+cqn
+crO
+csx
+cte
+ctV
+cuC
+cdk
+cvI
+cwr
+cvI
+cvI
+cvI
+cxK
+cdt
+cxW
+cxW
+cyi
+cyr
+cyi
+cyl
+cyl
+cyl
+cyi
+cyl
+cyl
+cyl
+cyi
+cyq
+cyi
+cxW
+cyk
+cye
+cyl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(139,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+agc
+agc
+ahR
+aik
+aik
+ajm
+ajT
+akq
+akq
+akq
+akq
+akq
+ajT
+akG
+anV
+anV
+anV
+anV
+anV
+anV
+anV
+anV
+akG
+ans
+asy
+asX
+atw
+atw
+auA
+auY
+avF
+asy
+awG
+axm
+axL
+ayq
+ayO
+azw
+axm
+aAw
+aAQ
+aBx
+aBz
+aBz
+aBz
+aBz
+aEs
+aFi
+aFN
+aFi
+aHl
+aAQ
+aIx
+aIR
+aJv
+aKq
+aKq
+aMp
+aNy
+aOv
+aPt
+aPY
+aKo
+aRp
+aKo
+aKo
+aTp
+aUf
+aUf
+aPV
+aPV
+aPV
+aKo
+aSD
+aZI
+bay
+bbu
+bcJ
+bdY
+bfg
+bgg
+bhk
+bin
+bjr
+bkA
+blC
+bne
+bov
+bpK
+bqN
+bsc
+btl
+bun
+bvm
+bwC
+bxF
+byT
+bzX
+bzX
+bzX
+bDr
+bzX
+bzX
+bGF
+byT
+bxF
+bxF
+bLp
+bMA
+bNP
+bPc
+bPc
+bPc
+bPc
+bSM
+bPc
+bPc
+bPc
+bPc
+bWz
+adj
+adj
+adj
+adj
+bYV
+caC
+cbC
+ccu
+bYV
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+ciX
+cmm
+cni
+ciX
+ciU
+adj
+adj
+adj
+adj
+adj
+cqn
+crP
+cdt
+ctd
+ctR
+cux
+cdk
+cdk
+cdk
+cwJ
+cdk
+cdk
+cxF
+cdt
+cxX
+cxW
+cyi
+cyq
+cyi
+cyl
+cyl
+cyl
+cyi
+cyl
+cyl
+cyl
+cyi
+cyr
+cyi
+cxW
+cyk
+cye
+cyl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(140,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+agc
+agc
+ahR
+aik
+aik
+ajm
+ajT
+akq
+akq
+akq
+akq
+akG
+akI
+ans
+anV
+aoy
+aoZ
+aoZ
+apX
+aqB
+aqT
+anV
+akG
+akG
+asz
+asY
+atw
+atX
+asy
+auZ
+avG
+asy
+awG
+axn
+axM
+ayr
+ayP
+azx
+axm
+aAw
+aAR
+aBy
+aCd
+aCI
+aDj
+aCd
+aEt
+aBy
+aFO
+aBy
+aBz
+aAR
+aIm
+aIO
+akG
+akG
+aLi
+aMq
+aNz
+aOw
+aPu
+aPZ
+aQx
+aPZ
+aPZ
+aSM
+aPV
+aPV
+aPV
+aPV
+aWr
+aXc
+aKo
+aSD
+aZA
+aSD
+bbu
+bcO
+bdZ
+bfh
+bgh
+bhl
+bio
+bjs
+bkB
+blD
+bnf
+bow
+bpL
+bqN
+bsd
+bqN
+bqN
+bqN
+bqN
+bxB
+bxB
+byQ
+byQ
+byQ
+bzW
+byQ
+byQ
+byQ
+bxB
+bxB
+bxB
+bww
+bMB
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+bOX
+bOX
+bOX
+caH
+cbC
+ccx
+cab
+cab
+cdu
+cfE
+cgw
+chp
+cdu
+aaT
+aaT
+adj
+ceR
+cmn
+cni
+ceR
+ciU
+aaT
+cnO
+cnO
+cnO
+cnO
+cqn
+crQ
+csy
+cti
+ctW
+cuD
+cva
+cvL
+cws
+cwN
+cxc
+cxq
+cxE
+cdt
+cxW
+cxW
+cyk
+cyq
+cyB
+cyi
+cyi
+cyB
+cyk
+cyk
+cyi
+cyi
+cyB
+cyq
+cyk
+cxW
+cye
+cye
+cyl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(141,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+agc
+agc
+ahR
+aik
+aik
+ajm
+ajT
+akq
+akq
+akq
+akq
+akG
+akI
+akG
+anW
+aoz
+aoZ
+apA
+anV
+aqC
+aqU
+anV
+akG
+akI
+asz
+asZ
+atw
+atY
+asy
+asy
+asy
+asy
+awG
+axm
+axN
+ays
+ayQ
+azy
+axm
+aAw
+aAR
+aBy
+aCe
+aCJ
+aDk
+aDR
+aEu
+aCM
+aFP
+aCN
+aCd
+aAQ
+aIm
+aIS
+alE
+alE
+aLj
+aMr
+aNA
+aOx
+aPv
+aQa
+aQa
+aQa
+aQa
+aSN
+aTq
+aTq
+aTq
+aTq
+aWs
+aXd
+aXW
+aYG
+aZB
+aSD
+bbt
+bbt
+bbt
+bbt
+bbt
+bbt
+bij
+bij
+bij
+bij
+bng
+bij
+bij
+bqN
+bse
+brW
+bqN
+brW
+brW
+bxB
+bxB
+bxB
+bAU
+bxB
+bDm
+bxB
+bAU
+bxB
+bxB
+bxB
+bKb
+bww
+bMB
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+bOX
+bPd
+bZt
+caC
+cbC
+ccx
+bZs
+cee
+cdu
+cfF
+cgx
+chq
+cdu
+aaT
+aaT
+adj
+ceR
+cmo
+cni
+ceR
+ciU
+aaT
+coU
+cpo
+cpO
+cqu
+cqn
+crR
+css
+ctj
+ctP
+css
+css
+css
+css
+css
+cwZ
+cxr
+cxE
+cdt
+cxW
+cxW
+cyi
+cyt
+cyA
+cyI
+cyM
+cyM
+cyI
+cyM
+cyM
+cyI
+cyA
+czc
+cyi
+cxW
+cye
+cyl
+cyl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(142,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+agc
+agc
+ahR
+aik
+aik
+ajo
+ajT
+akq
+akq
+akH
+akI
+akI
+akI
+akG
+anW
+aoA
+aoZ
+apB
+anV
+anV
+anV
+anV
+akG
+alh
+asy
+ata
+atw
+atZ
+auB
+atw
+avH
+asy
+awG
+axm
+axO
+ayt
+axm
+azy
+axm
+aAy
+aAR
+aBy
+aBy
+aBy
+aDl
+aBy
+aEv
+aBy
+aBy
+aGJ
+aHm
+aAQ
+aIm
+aIO
+akG
+akG
+aLi
+aMs
+aNB
+aOy
+aPw
+aPZ
+aPZ
+aPZ
+aPZ
+aSM
+aTr
+aPV
+aPV
+aPV
+aWr
+aUX
+aKo
+aSD
+aZA
+aSD
+bbs
+bcH
+bcH
+bcH
+bcH
+bcH
+bcH
+bcH
+bbs
+blt
+bnh
+bon
+bpC
+bpC
+bsf
+bpC
+bon
+bvn
+bww
+bxA
+bxB
+bxB
+bxB
+bxB
+bxB
+bxB
+bxB
+bxB
+bxB
+bIY
+bIY
+bww
+bMB
+adj
+bOX
+bOX
+bQZ
+bQZ
+bQZ
+bQZ
+bQZ
+bQZ
+bQZ
+bQZ
+bQZ
+bQZ
+bQZ
+bPd
+cab
+caC
+cbC
+ccx
+bZs
+cee
+cdu
+cfG
+cel
+cfe
+cdu
+aaT
+aaT
+adj
+ceR
+cmp
+cno
+ceR
+ciU
+aaT
+coU
+cpp
+cpP
+cqv
+crc
+crS
+csz
+ctk
+ctX
+cuv
+cvb
+cvM
+cwt
+css
+cwZ
+cxs
+cxE
+cdt
+cxX
+cxW
+cyi
+cyi
+cyz
+cyi
+cyi
+cyk
+cxW
+cyk
+cyi
+cyi
+cyz
+cyi
+cyi
+cxW
+cye
+cyl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(143,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+agc
+agc
+ahR
+aik
+aik
+ajp
+ajT
+akq
+akq
+akG
+akI
+akG
+akI
+alh
+anV
+aoB
+aoZ
+apC
+apY
+aoZ
+aqV
+anV
+akI
+ash
+asy
+atb
+atx
+aua
+asy
+asy
+asy
+asy
+awG
+axm
+axP
+ayu
+axm
+azz
+axm
+aAw
+aAR
+aBz
+aBy
+aCK
+aDm
+aDS
+aEw
+aFj
+aFQ
+aBy
+aCe
+aAR
+aIm
+aIO
+akG
+akI
+aLi
+aMt
+aNC
+aOz
+aPw
+aQb
+aQy
+aRq
+aRZ
+aLi
+aLi
+aRp
+aRp
+aRp
+aRp
+aRp
+aKo
+aYD
+aZz
+aYA
+bby
+bby
+bby
+bby
+bby
+bby
+bid
+bid
+bje
+blt
+bni
+bij
+bpM
+bpM
+bsg
+bpM
+bpM
+bvo
+bww
+bww
+byU
+bxB
+bxB
+bxB
+bxB
+bxB
+bxB
+bxB
+bIa
+bIY
+bIY
+bww
+bMB
+bNQ
+bOX
+bPd
+bRa
+bRQ
+bRQ
+bTA
+bTA
+bUT
+bVP
+bTA
+bRQ
+bRQ
+bRa
+bPd
+cab
+caD
+cbE
+ccx
+cdu
+cdu
+cdu
+cdu
+cgy
+cdu
+cdu
+cdu
+aaT
+adj
+ceR
+cmo
+cni
+ceR
+ciU
+aaT
+coU
+cpq
+cpQ
+cqw
+crd
+crT
+csr
+csr
+ctY
+csr
+cvc
+css
+css
+css
+cwZ
+cdU
+cdk
+cdk
+cxW
+cxW
+cxW
+cxW
+cyz
+cxW
+cxW
+cxW
+cxW
+cxW
+cxW
+cxW
+cyz
+cxW
+cxW
+cxW
+cye
+cyl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(144,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+agc
+agc
+ahR
+ahk
+ahk
+ahk
+ajT
+akq
+akG
+akG
+akI
+akI
+akI
+ant
+anV
+aoC
+apa
+apD
+anV
+anV
+anV
+anV
+akG
+alf
+akG
+amo
+amT
+anx
+akG
+ava
+akI
+akI
+awG
+axm
+axQ
+ayv
+axm
+azA
+axm
+aAw
+aAQ
+aBA
+aCf
+aBy
+aDn
+aDT
+aEx
+aFk
+aBy
+aBy
+aHn
+aAQ
+aIm
+aIO
+akG
+akG
+aLi
+aMu
+aNC
+aOA
+aPx
+aQc
+aPZ
+aPZ
+aPZ
+aPZ
+aLi
+aUg
+aUY
+aVI
+aUY
+aXe
+akq
+aSD
+aZA
+aSD
+bbz
+bcP
+bcP
+bcP
+bcP
+bhm
+bii
+bjt
+bkC
+blE
+bnj
+bij
+bpN
+bqQ
+bsh
+btm
+bpM
+bvp
+bpC
+bpC
+bpC
+bpC
+bwu
+bpC
+bpC
+bpC
+bpC
+bpC
+bpC
+bpC
+bKc
+bpC
+bon
+bNR
+bPd
+bPd
+bRa
+bRR
+bSN
+bTB
+bTA
+bUU
+bTA
+bWA
+bXl
+bYa
+bRa
+bPd
+cab
+caC
+cbC
+ccx
+cdu
+cef
+ceZ
+cfH
+cfM
+chr
+cih
+cdu
+aaT
+adj
+ceR
+cmo
+cni
+ceR
+ciU
+aaT
+coU
+cpr
+cpR
+cqx
+cqn
+crU
+ceY
+ceY
+ctZ
+cuE
+cvd
+cvN
+cwu
+cwO
+cxd
+cdU
+cxL
+cdk
+cxZ
+cyf
+cym
+cyk
+cyC
+cyk
+cyk
+cyk
+cyk
+cyk
+cyk
+cyk
+cyC
+cyk
+cyk
+cyk
+cye
+cyl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(145,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+agc
+agc
+ahR
+ahk
+aiL
+ajq
+ajT
+akq
+akH
+akG
+akI
+akG
+akG
+anu
+akI
+aoD
+amT
+anx
+akG
+akG
+akI
+akG
+akG
+alf
+akG
+amo
+amT
+anx
+akI
+akI
+akI
+akG
+awH
+axm
+axm
+ayt
+axm
+azB
+axm
+aAw
+aAQ
+aAQ
+aAR
+aCL
+aDo
+aAQ
+aEr
+aFl
+aFR
+aFR
+aAQ
+aAQ
+aIm
+aIO
+akI
+akG
+aLi
+aMv
+aND
+aOB
+aPy
+aQd
+aQz
+aRr
+aPZ
+aPZ
+aPY
+akG
+akG
+akG
+akG
+akG
+aJr
+aYH
+aZA
+aSD
+bbz
+bcP
+bcQ
+bcQ
+bgi
+bgi
+bip
+bju
+bje
+blw
+bnk
+bij
+bpO
+bqR
+bsi
+btn
+buo
+buo
+buo
+buo
+buo
+bzY
+bBa
+bCg
+bCg
+bCg
+bCg
+bCg
+bIc
+bIc
+bIc
+bIc
+bIc
+bNS
+bPd
+bPd
+bRa
+bRS
+bSO
+bTC
+bUn
+bUV
+bRQ
+bWB
+bXm
+bYb
+bRa
+bPd
+cab
+caI
+cbC
+ccx
+cdu
+ceg
+cen
+cfI
+cen
+cen
+cii
+cdu
+aaT
+adj
+ceR
+cmo
+cni
+ceR
+ciU
+aaT
+cnO
+cnO
+cpR
+cnO
+cqn
+cqn
+csA
+csA
+cqn
+cqn
+cqn
+cqn
+cqn
+cwP
+cxe
+cxt
+cdU
+cdk
+cxU
+cqn
+cxV
+cyu
+cyD
+cyH
+cyH
+cyH
+cyH
+cyH
+cyH
+cyW
+cyY
+czd
+cyk
+cye
+cye
+cyl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(146,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+agc
+agc
+ahR
+ail
+aik
+ajr
+ajT
+ajT
+ajT
+ald
+akI
+amm
+amR
+anv
+amR
+aoE
+apb
+apE
+amR
+amR
+amR
+amR
+amR
+anv
+amR
+aoE
+aty
+apE
+amR
+avb
+avI
+awi
+awI
+amR
+amR
+ayw
+amR
+azC
+amR
+amR
+amR
+aBB
+aCg
+aBy
+aDl
+aAQ
+aEy
+aFm
+aFS
+aFS
+aHo
+aHR
+aIm
+aIO
+akG
+akI
+aLi
+aMw
+aNE
+aOC
+aLi
+aQe
+aPZ
+aRs
+aPZ
+aSO
+aLi
+aUh
+aUZ
+aUY
+aWt
+akG
+akG
+aSD
+aZA
+aSD
+bbz
+bcP
+bcP
+bea
+bcP
+bgi
+big
+bjh
+bkr
+blt
+bnl
+box
+bpP
+bqS
+bsj
+bto
+bup
+bvq
+bwD
+bxG
+byV
+bzY
+bBb
+bCh
+bDs
+bEn
+bFC
+bGG
+bIc
+bJa
+bKd
+bLq
+bIc
+bNS
+bPd
+bPd
+bRa
+bRT
+bSP
+bSP
+bUo
+bUW
+bRQ
+bRQ
+bRQ
+bYc
+bRa
+bPd
+cab
+caC
+cbC
+ccx
+cdu
+ceh
+cen
+cfJ
+cgz
+chs
+cij
+cdu
+aaT
+adj
+ceR
+cmo
+cni
+ceR
+ciU
+aaT
+aaT
+coU
+cpR
+cqy
+cqn
+crV
+csB
+csB
+cua
+cuF
+cve
+cvO
+cqn
+cqn
+cqn
+cxu
+cdU
+cdk
+cxT
+cqn
+cye
+cye
+cye
+cye
+cye
+cye
+cye
+cye
+cye
+cye
+cye
+cye
+cye
+cye
+cye
+cyl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(147,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+agc
+agc
+agc
+ahR
+ahk
+aik
+ajs
+ajT
+akq
+akG
+ale
+alE
+amn
+amS
+anw
+anX
+anX
+anX
+apF
+apZ
+anX
+anX
+anX
+anX
+asi
+anX
+anX
+atz
+aub
+anX
+avc
+anX
+awj
+awJ
+anX
+apZ
+ayx
+ayR
+azD
+anX
+anX
+aAS
+aBC
+aCh
+aCM
+aDp
+aDU
+aEz
+aFn
+aFT
+aFS
+aFS
+aCL
+amT
+aIT
+aJw
+aKr
+aLk
+aMx
+aNF
+aOD
+aPz
+aQf
+aQA
+aPZ
+aSa
+aLi
+aLi
+aQp
+akG
+akG
+akG
+akG
+aXX
+aSD
+aZA
+aSD
+bbz
+bcP
+bcP
+bcQ
+bgi
+bgi
+biq
+bjv
+bje
+blt
+bnm
+bij
+bpQ
+bqT
+bsk
+btp
+buo
+bvr
+bwE
+bxG
+byW
+bzY
+bBc
+bCi
+bDt
+bEo
+bFD
+bGH
+bIc
+bJb
+bKe
+bLr
+bIc
+bNS
+bPd
+bPd
+bRa
+bRU
+bSQ
+bTD
+bUp
+bUX
+bRQ
+bWC
+bXn
+bYd
+bRa
+bPd
+cab
+caD
+cbF
+ccE
+cdv
+cei
+cfa
+cfK
+cgA
+cen
+cik
+cdu
+aaT
+adj
+ceR
+cmq
+cni
+ceR
+ciU
+aaT
+aaT
+coU
+cpR
+cqy
+cqn
+crW
+csB
+csB
+csB
+cuG
+cuG
+cvO
+cqn
+aab
+cqn
+cxv
+cxM
+cdk
+cxU
+cqn
+cyi
+cyl
+cyl
+cyl
+cyl
+cyl
+cyl
+cyl
+cyl
+cyl
+cyl
+cyl
+cyl
+cyl
+cyl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(148,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+agc
+agc
+agc
+ahR
+ahk
+ahk
+ahk
+ajT
+akq
+akG
+alf
+akG
+amo
+amT
+anx
+anY
+aoF
+akG
+akG
+aqa
+akI
+akI
+akI
+akG
+akI
+akI
+akG
+amo
+aqa
+akG
+avd
+akI
+awk
+awK
+awk
+axR
+ayy
+awk
+awk
+awk
+awk
+aAT
+aBD
+aBy
+aCN
+aDq
+aAR
+aEA
+aFm
+aFU
+aFS
+aHp
+aAQ
+aIm
+aIO
+akI
+aKs
+aLi
+aMy
+aNG
+aOC
+aLi
+aQg
+aNC
+aPZ
+aSb
+aSP
+aTs
+akG
+akG
+akG
+akG
+aXf
+aXY
+aSD
+aZA
+aSD
+bbz
+bcP
+bea
+bcQ
+bcP
+bhm
+bie
+bjw
+bkD
+blF
+bnn
+bom
+bpR
+bqU
+bsl
+btq
+buq
+bvs
+bwF
+bxG
+byX
+bzY
+bBd
+bCj
+bDu
+bEp
+bFD
+bGI
+bIc
+bJc
+bKf
+bLs
+bIc
+bNS
+bPd
+bPd
+bRa
+bRV
+bSR
+bTA
+bTA
+bUY
+bTA
+bTA
+bXo
+bYe
+bRa
+bPd
+cab
+caC
+cbC
+ccx
+cdu
+cej
+cen
+cfI
+cgB
+cen
+cen
+cdu
+aaT
+adj
+ciX
+cmr
+cnp
+ciX
+ciU
+aaT
+aaT
+coU
+cpR
+cqy
+cqn
+crX
+csB
+csB
+csB
+csB
+csB
+cvO
+cqn
+aab
+cqn
+cxw
+cxN
+cxP
+cya
+cqn
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(149,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+agc
+agc
+agc
+ahR
+aik
+aik
+aik
+ajT
+akq
+akI
+alg
+alF
+amp
+amU
+any
+alF
+alF
+alF
+alF
+aqa
+akI
+akG
+akI
+akI
+akG
+all
+all
+atA
+auc
+auC
+ave
+all
+awk
+awL
+axo
+axS
+ayy
+ayS
+azE
+axr
+awk
+aAU
+aBD
+aBy
+aCN
+aDq
+aAR
+aEB
+aFm
+aFV
+aFS
+aHq
+aAR
+aIm
+aIO
+akG
+akI
+aLi
+aMz
+aNH
+aOC
+aLi
+aQh
+aQB
+aRt
+aSc
+aSP
+akG
+akG
+aVa
+aUY
+aWu
+akG
+akG
+aSD
+aZA
+aSD
+bbz
+bcP
+bcQ
+bcP
+bgi
+bgi
+bid
+bje
+bkE
+blu
+bno
+bij
+bpS
+bqV
+bsm
+btr
+buo
+bvt
+bwG
+bxH
+byY
+bzY
+bBe
+bCk
+bDv
+bEq
+bFD
+bGJ
+bIc
+bJd
+bKg
+bLt
+bIc
+bNS
+bPd
+bPd
+bRa
+bRQ
+bRQ
+bTA
+bUq
+bUZ
+bVQ
+bTA
+bRQ
+bRQ
+bRa
+bPd
+cab
+caC
+cbG
+ccA
+cdw
+cek
+cfb
+cfL
+cgC
+cht
+cen
+cdu
+ceR
+ceR
+ciX
+cms
+cni
+ciX
+ciU
+aaT
+aaT
+coU
+cpR
+cqy
+cqn
+crY
+csB
+ctl
+ctl
+csB
+csB
+cvO
+cqn
+aab
+cqn
+cxx
+cqn
+cqn
+cqn
+cqn
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(150,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+agc
+agc
+agc
+ahk
+ahk
+ahk
+ail
+ajT
+akq
+akq
+akG
+alF
+amq
+amV
+anz
+amV
+amV
+apc
+alF
+aqa
+akq
+akq
+akG
+akI
+akG
+asA
+atc
+atB
+aud
+alN
+avf
+avJ
+awk
+awM
+axp
+axS
+ayy
+awk
+awk
+axr
+awk
+aAT
+aBD
+aBy
+aBy
+aDr
+aAR
+aEC
+aFo
+aFW
+aFS
+aHr
+aHS
+aIy
+aIU
+akI
+akG
+aLi
+aMA
+aNI
+aOE
+aLi
+aQi
+aNC
+aPZ
+aSd
+aSP
+aTt
+akG
+akG
+akG
+akG
+akG
+aHU
+aSD
+aZA
+aSD
+bbz
+bcQ
+bcQ
+bcQ
+bcQ
+bgi
+bcP
+bgi
+bkF
+blt
+bnp
+bij
+bpM
+bpM
+bpM
+bts
+buo
+buo
+buo
+buo
+buo
+bzY
+bBf
+bCl
+bCl
+bEr
+bFE
+bGK
+bIc
+bJe
+bKh
+bLu
+bIc
+bNS
+bPe
+bQh
+bRb
+bRW
+bSS
+bSS
+bUr
+bVa
+bVR
+bWD
+bWD
+bYf
+bVf
+bPd
+cab
+caC
+cbC
+ccx
+cdu
+cel
+cfc
+cfI
+cen
+chu
+cen
+cdu
+cjI
+ceP
+ceP
+cmt
+cnk
+ciX
+ciU
+aaT
+aaT
+coU
+cpR
+cnO
+cqn
+cqn
+csC
+ctl
+cub
+cuH
+csB
+cvP
+cqn
+aab
+cqn
+cxy
+cqn
+aab
+aab
+aab
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(151,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+agc
+agc
+agc
+ahk
+aim
+aik
+aik
+ajT
+akq
+akq
+akG
+alF
+amr
+amW
+amV
+amV
+aoG
+amV
+alF
+aqa
+akH
+akq
+akG
+akI
+akG
+asA
+atd
+atC
+aud
+auD
+avg
+avJ
+awk
+awN
+axq
+axT
+ayz
+ayT
+axr
+axr
+awk
+aAT
+aBE
+aCg
+aBy
+aBy
+aAQ
+aED
+aFm
+aFS
+aFS
+aHs
+aAQ
+aIm
+aIO
+akG
+akI
+aLi
+aMB
+aNJ
+aOE
+aPA
+aPZ
+aNC
+aRu
+aSe
+aSP
+aTu
+akG
+aUY
+aVJ
+aUY
+akG
+akq
+aYC
+aZA
+aSD
+bbz
+bcQ
+bcQ
+bcP
+bcQ
+bcQ
+bcP
+bcP
+bkF
+blt
+bnm
+bij
+bcP
+bgi
+bcP
+btt
+bcP
+bgi
+bcP
+bgi
+byZ
+bzZ
+bBg
+bCm
+bDw
+bEs
+bFF
+bGL
+bId
+bJf
+bKi
+bLv
+bIc
+bNT
+bPf
+bQi
+bRb
+bRX
+bST
+bTE
+bUs
+bVb
+bVS
+bWE
+bXp
+bYg
+bVf
+bPd
+cab
+caC
+cbH
+ccF
+cdx
+cem
+cfd
+cfM
+cen
+chv
+cen
+ciY
+cjJ
+ckt
+ckt
+cmu
+cni
+ciX
+ciU
+aaT
+aaT
+coU
+cpR
+cnO
+adj
+cqn
+cqn
+cqn
+cqn
+cqn
+cqn
+cqn
+cqn
+aab
+cqn
+cxz
+cqn
+aab
+aab
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(152,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+agc
+agc
+agc
+ahk
+aim
+aik
+aik
+ajT
+akq
+akq
+akG
+alG
+ams
+amV
+anA
+alF
+alF
+alF
+alF
+aqa
+akG
+akG
+akG
+akI
+akG
+asA
+ate
+atC
+aue
+auE
+avf
+avK
+awk
+awK
+awl
+awk
+ayy
+awk
+awk
+axU
+awk
+aAT
+aBE
+aCi
+aCO
+aDs
+aDV
+aEE
+aFp
+aFX
+aAR
+aAR
+aAQ
+aIm
+aIO
+aHU
+akI
+aLi
+aMC
+aNK
+aOF
+aLi
+aQj
+aQC
+aLi
+aLi
+aLi
+ajT
+aUi
+akG
+akG
+akG
+akq
+akq
+aSD
+aZA
+aSD
+bbA
+bcP
+bcQ
+bfi
+bcP
+bcQ
+bcQ
+bcP
+bkF
+blt
+bnm
+boj
+bcP
+bqW
+bcQ
+btu
+bcP
+bcP
+bcP
+bcP
+byZ
+bAa
+bBh
+bCn
+bDx
+bEt
+bFG
+bGM
+bIc
+bIc
+bIc
+bIc
+bIc
+bNS
+bPd
+bPd
+bRb
+bRY
+bSU
+bTF
+bUt
+bVc
+bVT
+bWF
+bXq
+bYh
+bVf
+bPd
+cab
+caC
+cbC
+ccx
+cdu
+cen
+cfe
+cfN
+cen
+cfe
+cen
+cdu
+cjK
+cku
+cfD
+cmv
+cni
+ciX
+ciU
+aaT
+aaT
+coU
+cpR
+coU
+adj
+adj
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+cui
+cxA
+cvZ
+cvZ
+cyb
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(153,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+agc
+agc
+agc
+ahk
+aik
+aik
+ajt
+ajT
+akq
+akq
+akG
+alG
+amt
+amV
+anB
+alF
+aoH
+apd
+alF
+aqa
+akI
+akI
+arr
+aoF
+akG
+asA
+atf
+atC
+auf
+auF
+avh
+all
+awk
+awO
+axr
+axr
+ayy
+ayU
+azF
+axr
+awk
+aAT
+aBF
+amR
+amR
+aDt
+amR
+amR
+aFq
+aFY
+amR
+amR
+aHT
+aIz
+aIV
+amR
+amR
+aLl
+aMD
+aFq
+avb
+amR
+amR
+aQD
+aFY
+amR
+amR
+amR
+aUj
+aNh
+aNh
+aNh
+aNh
+aXZ
+aSD
+aZA
+aSD
+bbz
+bcP
+bcQ
+bcP
+bcP
+bcP
+bcQ
+bcP
+bkF
+blr
+bnq
+boj
+bcP
+bqX
+bcP
+btv
+bcQ
+bvu
+bcQ
+bcQ
+byZ
+bAb
+bBg
+bCo
+bDy
+bEu
+bFH
+bGN
+bIe
+bJg
+bKj
+bLw
+byZ
+bNS
+bPd
+bPd
+bRb
+bRZ
+bSV
+bTG
+bUu
+bVd
+bVU
+bWG
+bXr
+bYi
+bVf
+bPd
+cab
+caC
+cbC
+ccu
+cdu
+cdu
+cdu
+cdu
+cdu
+cdu
+cdu
+cdu
+ceR
+ceR
+ciX
+cmw
+cni
+cnO
+col
+cnO
+cnO
+cnO
+cpR
+cnO
+cnO
+cnO
+cnO
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aab
+cvj
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(154,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+agc
+agc
+agc
+ahk
+aik
+aik
+ajs
+ajT
+akq
+akH
+akG
+alF
+amu
+amV
+amV
+anZ
+aoI
+ape
+alF
+aqa
+all
+all
+all
+all
+all
+all
+all
+atC
+aug
+auG
+avf
+alN
+awl
+awP
+axs
+axU
+ayy
+awk
+awk
+axr
+awk
+aAV
+aBG
+aCj
+aBG
+aDu
+aDW
+aBG
+aFr
+aFZ
+aBG
+aHt
+aHt
+aHt
+aIW
+aJx
+aKt
+aLm
+aME
+aNL
+aOG
+aPB
+aPB
+aQE
+aRv
+aPB
+aSQ
+aTv
+aBD
+aVb
+aVD
+aWv
+aXg
+aYa
+aSD
+aZA
+aSD
+bbz
+bcP
+bcP
+bcP
+bcQ
+bcQ
+bcQ
+bcP
+bkF
+bls
+bno
+boj
+bcP
+bcP
+bcP
+btw
+bcP
+bcP
+bcQ
+bcP
+byZ
+bAc
+bBi
+bCp
+bDz
+bEv
+bFI
+bGO
+bIf
+bJh
+bJg
+bLx
+byZ
+bNU
+bby
+bby
+bRb
+bRb
+bSW
+bTH
+bUv
+bVe
+bVV
+bWH
+bXs
+bYj
+bVf
+bPd
+cab
+caC
+cbC
+ccG
+cdy
+ceo
+ceo
+ceo
+ceo
+ceo
+ceo
+ciZ
+cjL
+cjL
+clp
+cmx
+cnq
+clp
+com
+cjL
+cjL
+cjL
+cpS
+cqz
+cre
+crZ
+cnO
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aab
+cvj
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(155,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+agc
+agc
+agc
+ahS
+aik
+aik
+aju
+ajT
+akq
+akq
+alh
+alF
+alF
+alF
+alF
+alF
+alF
+alF
+alF
+aqa
+all
+aqW
+ars
+all
+asj
+aqW
+all
+atD
+auh
+auH
+avi
+avL
+awk
+awQ
+axt
+axt
+ayy
+ayU
+azG
+axr
+awk
+aqc
+ahk
+aCk
+aCk
+aDv
+aCk
+aCk
+aFs
+aCk
+aCk
+abl
+akI
+akI
+akG
+aIw
+aKu
+aLn
+aMF
+aBD
+aOH
+akI
+akG
+akG
+ajT
+ajT
+aSR
+aTw
+aUk
+ajT
+aVK
+aWw
+aXh
+aRN
+aYI
+aZz
+aYA
+bbB
+bbz
+bbz
+bbz
+bbz
+bbz
+bbz
+bbz
+bkG
+blG
+bnr
+boj
+bbz
+bbz
+bbz
+btx
+bbz
+bby
+bbz
+bbz
+byZ
+bAd
+bBj
+bAd
+byZ
+bEw
+bFJ
+bGP
+byZ
+bAd
+bAd
+bAd
+byZ
+bNV
+bPg
+bQj
+bRc
+bRb
+bRb
+bRb
+bRb
+bVf
+bVf
+bWI
+bXt
+bVf
+bVf
+bZt
+cac
+caJ
+cbI
+ccH
+bZK
+bZK
+bZK
+bZK
+bZK
+bZK
+bZK
+cja
+bZK
+bZK
+clq
+cmy
+cnr
+clq
+clq
+clq
+clq
+cps
+cpT
+cqA
+crf
+csa
+cnO
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aab
+cvj
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(156,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+agc
+agc
+agc
+ahR
+aik
+aik
+ajm
+ajT
+akq
+akq
+akG
+akG
+akG
+akG
+akG
+akG
+akG
+apf
+apG
+aqb
+all
+aqX
+art
+all
+ask
+asB
+all
+atE
+aui
+auI
+avf
+avM
+avQ
+awR
+avQ
+avQ
+ayA
+avQ
+avQ
+avQ
+avQ
+aqd
+aBH
+aCk
+aCP
+aDw
+aDX
+aEF
+aFt
+aGa
+aCk
+abl
+abl
+akI
+akG
+aJy
+aKv
+aLo
+aHN
+aNM
+aOH
+akI
+akI
+akG
+akI
+aSf
+aSS
+aTx
+aUl
+aVc
+aVL
+aVC
+aXi
+aYb
+aSF
+aZJ
+aSF
+bbC
+bcR
+beb
+bcR
+bcR
+bcR
+bcR
+bcR
+bcR
+blH
+bns
+bcR
+bcR
+beb
+bcR
+bty
+bcR
+bvv
+bcR
+bxI
+bza
+bAe
+bBk
+bAe
+bAe
+bEx
+bFK
+bGQ
+bIg
+bIg
+bIg
+bIg
+bMD
+bNW
+bPh
+bPh
+bRd
+bSa
+bSa
+bSa
+bSa
+bSa
+bSa
+bWJ
+bXu
+bSa
+bYX
+bZu
+bZu
+caK
+cbJ
+ccI
+cdz
+cep
+cff
+cfO
+cgD
+cgD
+cil
+cjb
+cjM
+ckv
+clr
+cmz
+cns
+cnP
+con
+coB
+coV
+cpt
+cpU
+cqB
+crg
+csa
+cnO
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aab
+cvj
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(157,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+agc
+agc
+agc
+ahR
+aik
+aik
+ajm
+ajT
+akq
+akq
+akq
+akq
+akH
+akq
+akq
+akq
+akq
+akq
+ajT
+aqc
+all
+aqY
+aru
+all
+aru
+asC
+all
+atF
+auj
+auJ
+avj
+avN
+avQ
+awS
+axu
+axV
+ayB
+ayV
+azH
+azX
+avQ
+aqd
+apg
+aCk
+aCQ
+aDw
+aDy
+aDy
+aFt
+aGb
+aCk
+abl
+abl
+akG
+aIX
+aJz
+aKw
+aLp
+aMG
+aNN
+aOI
+aIX
+akI
+akI
+akG
+aSf
+aSS
+aSD
+aUm
+aSD
+aVM
+aWx
+aSS
+aYc
+aYJ
+aZK
+baz
+bbD
+bcS
+bec
+bfj
+bfj
+bfj
+bfj
+bfj
+bfj
+blI
+bnt
+boy
+bfj
+bqY
+bfj
+btz
+bur
+bvw
+bfj
+bxJ
+bzb
+bfj
+bBl
+bCq
+bCq
+bEy
+bFL
+bGR
+bCq
+bCq
+bCq
+bCq
+bCq
+bNX
+bCq
+bCq
+bCq
+bCq
+bCq
+bCq
+bCq
+bCq
+bCq
+bEy
+bGR
+bCq
+bYY
+bZv
+bZv
+caL
+cbK
+ccJ
+bZG
+bZG
+cae
+bZG
+cae
+cae
+cim
+cjc
+cbe
+ckw
+cls
+cmA
+cnt
+ckn
+ckn
+coC
+coW
+cps
+cpV
+cqC
+cpO
+csa
+cnO
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aab
+cvj
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(158,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+agc
+agc
+agc
+ahR
+aik
+aik
+ajm
+ajT
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+ajT
+aqd
+all
+aqZ
+arv
+all
+asl
+aqZ
+atg
+atC
+alN
+auK
+avk
+avO
+avQ
+awT
+axv
+awW
+ayC
+awW
+awW
+awW
+avQ
+aqd
+apg
+aCk
+aCR
+aDx
+aDY
+aDy
+aFu
+aGc
+aCk
+abl
+aHU
+akG
+aIY
+aJA
+aKx
+aLq
+aMH
+aNO
+aOJ
+aPC
+akG
+akI
+akG
+aSf
+aST
+aTy
+aUn
+aSH
+aVN
+aSH
+aUn
+aSH
+aYK
+aZL
+baA
+bbE
+bcT
+bed
+bfk
+bgj
+bfk
+bfk
+bfk
+bfk
+bfk
+bnu
+bcT
+bpT
+bqZ
+bfk
+btA
+bus
+bvx
+bwH
+bxK
+bzc
+bAf
+bBm
+bAf
+bwH
+bEz
+bFM
+bGS
+bIh
+bxL
+bxL
+bxL
+bME
+bNY
+bxL
+bxL
+bxL
+bxL
+bxL
+bTI
+bAf
+bVg
+bVW
+bWK
+bXv
+bAf
+bYZ
+bZw
+cad
+caM
+cbL
+ccK
+cdA
+ceq
+cfg
+cfP
+cgE
+chw
+cin
+cjd
+cjN
+ckx
+clq
+cmB
+cnu
+ckn
+ckn
+coC
+coX
+cps
+cpW
+cqD
+cpO
+csb
+cnO
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+cvj
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(159,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+agc
+agc
+agc
+ahR
+aik
+aik
+ajm
+ahk
+ahk
+ahk
+ahk
+ahk
+ahk
+ahk
+ahk
+ahk
+ahk
+ahk
+ahk
+aqc
+all
+ara
+arw
+arN
+asm
+asD
+arN
+atG
+arN
+auL
+avk
+alN
+awm
+awU
+axw
+axW
+ayD
+ayW
+awW
+azY
+avQ
+aqd
+aik
+aCk
+aCS
+aDy
+aDZ
+aDy
+aDy
+aGd
+aCk
+abl
+abl
+abl
+aIY
+aJB
+aKy
+aLr
+aKA
+aNP
+aOJ
+aPC
+akG
+akI
+alh
+aRN
+aSD
+aTz
+aUo
+aVd
+aVO
+aVd
+aVd
+aVd
+aYL
+aTz
+baB
+bbF
+bcU
+bee
+bfl
+bgk
+bfl
+bbF
+bfl
+bfl
+bfl
+bbF
+boz
+bpU
+bra
+bsn
+bby
+but
+bby
+bwI
+bxL
+bzd
+bvy
+bBn
+bwJ
+bDA
+bEA
+bFN
+bGT
+bDG
+bDG
+bDG
+bDG
+bMF
+bMF
+bPi
+bQk
+bRe
+bMF
+bMF
+bMF
+bUw
+bUw
+bVX
+bWL
+bXw
+bYk
+bUw
+bZx
+cae
+caN
+cbM
+caR
+ccf
+cer
+cfh
+cfh
+cgF
+chx
+cgF
+cje
+cjO
+cfl
+clq
+cmC
+ckn
+cnQ
+cnQ
+coC
+coX
+cps
+cpX
+cqD
+cpO
+csb
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aab
+cvj
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(160,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+agc
+agc
+agc
+ahT
+ahk
+aiM
+aik
+aik
+ail
+akJ
+ali
+ali
+ali
+ali
+ali
+ali
+ali
+ali
+apH
+aqe
+aqD
+arb
+arx
+arO
+arx
+asE
+ath
+atH
+auk
+arx
+avl
+avP
+awn
+awV
+axx
+axX
+ayE
+ayX
+awW
+azZ
+avQ
+aqd
+aik
+aCk
+aCT
+aDz
+aEa
+aEG
+aFv
+aGe
+aCk
+abl
+abl
+abl
+aIY
+aJC
+aKz
+aLs
+aMI
+aNP
+aOK
+aIY
+akI
+akI
+aHU
+aRN
+aSD
+aTA
+aUp
+aUp
+aVP
+aUp
+aUp
+aUp
+aYM
+aTz
+baC
+bbF
+bcV
+bee
+bfm
+bgl
+bfm
+bir
+bjx
+bkH
+blJ
+bfl
+boA
+bpV
+brb
+bso
+bbF
+buu
+bvy
+bwJ
+bxM
+bwJ
+bvy
+bBo
+bCr
+bDB
+bEB
+bFO
+bGU
+byZ
+bJi
+bKk
+bLy
+bMG
+bNZ
+bPj
+bQl
+bRf
+bSb
+bSX
+bTJ
+bUx
+bVh
+bVY
+bWM
+bXx
+bYl
+bUw
+bZx
+cae
+caO
+cbN
+ccL
+ccf
+cer
+cfh
+cfQ
+cfQ
+cgI
+cio
+cjf
+cjP
+cky
+clq
+cmD
+ckn
+cnR
+cnR
+coD
+coY
+cpu
+cpY
+cqE
+crh
+csb
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aab
+cvj
+aab
+aaa
+aaa
+aaa
+aaa
+acf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(161,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+agc
+agc
+agc
+ads
+ahk
+aiN
+ajv
+aiN
+ahk
+aik
+alj
+alH
+alH
+alH
+anC
+aoa
+aik
+aik
+ahk
+aqf
+all
+aqZ
+ary
+all
+asn
+aqZ
+all
+aqZ
+aul
+atA
+avm
+aqZ
+avQ
+awW
+awW
+axY
+ayF
+ayY
+awW
+aAa
+avQ
+aqd
+aik
+aCk
+aCU
+aCk
+aCk
+aCk
+aFw
+aCk
+aCk
+abl
+abl
+abl
+aIY
+aJD
+aKA
+aLt
+aMJ
+aNP
+aOL
+aIY
+akI
+abl
+abl
+aRN
+aSD
+aTB
+aUq
+aVe
+aVQ
+aVe
+aVe
+aVe
+aYN
+aTB
+baC
+bbF
+bcW
+bef
+bfm
+bgm
+bhn
+bfm
+bfm
+bkI
+blK
+bfl
+boB
+bpW
+brc
+bsp
+bbF
+buu
+bvy
+bwK
+bxN
+bze
+bAg
+bBp
+bCs
+bDC
+bEC
+bFP
+bGV
+bIi
+bJj
+bKl
+bLz
+bMH
+bOa
+bPk
+bQm
+bRg
+bRg
+bRg
+bTK
+bUy
+bVi
+bVZ
+bWN
+bXy
+bYm
+bZa
+bZx
+cae
+caP
+cbO
+ccM
+ccf
+cer
+cfh
+cfR
+cgG
+cgI
+cip
+cgI
+ciq
+chz
+clq
+cmE
+ckn
+ckn
+ckn
+coE
+coZ
+cpv
+cpX
+cqD
+cri
+csb
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aab
+cvj
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(162,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+agc
+agc
+agc
+ads
+ahk
+aiO
+aik
+ajU
+ahk
+aik
+alk
+alI
+amv
+ajs
+anD
+aob
+aik
+apg
+ahk
+alN
+all
+arc
+aru
+all
+aru
+arc
+all
+arc
+asB
+atA
+avn
+arc
+avQ
+awX
+awW
+awW
+ayG
+awW
+awW
+awW
+avQ
+aAW
+aBI
+aBI
+aCV
+aCV
+aEb
+atj
+aFx
+ahk
+abl
+abl
+abl
+abl
+aIY
+aJE
+aKA
+aLu
+aMK
+aNP
+aOM
+aIY
+abl
+abl
+abl
+aRN
+aSU
+aTC
+aUr
+aUr
+aVR
+aWy
+aXj
+aYd
+aYO
+aTB
+baC
+bbF
+bcW
+beg
+bfm
+bgm
+bfm
+bfm
+bfm
+bfm
+blL
+bbF
+boC
+bfm
+brc
+bsq
+bbF
+buu
+bvy
+bwL
+bxO
+bzf
+bAh
+bBq
+bCt
+bDD
+bED
+bFQ
+bGW
+bIj
+bDw
+bJg
+bDw
+bMI
+bOb
+bPl
+bQn
+bRh
+bSc
+bSY
+bTL
+bUy
+bVj
+bWa
+bWO
+bXz
+bYm
+bZa
+bZx
+caf
+caO
+cbP
+ccN
+ccf
+cer
+cfh
+cfS
+cgH
+chy
+ciq
+cgI
+ciq
+chz
+clt
+cmF
+cnv
+cnv
+coo
+coF
+cpa
+cfh
+cfh
+cqF
+cjO
+cfl
+cfh
+cfh
+cfh
+aaa
+aab
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aab
+cvj
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(163,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+agc
+agc
+agc
+ads
+ahk
+ahk
+ajv
+ahk
+ahk
+aik
+alk
+alJ
+aik
+amX
+aik
+aik
+aik
+aph
+ahk
+alN
+all
+aqX
+arz
+all
+aso
+asB
+all
+aqX
+aum
+auM
+avo
+asB
+avQ
+awY
+awW
+awW
+ayH
+awW
+awW
+awW
+avQ
+aAX
+amX
+aCl
+aCW
+aDA
+aDA
+aEH
+aFy
+ahk
+abl
+abl
+abl
+abl
+aIY
+aJD
+aKA
+aLs
+aKA
+aNP
+aOM
+aIY
+abl
+abl
+abl
+aRN
+aRN
+aTB
+aUs
+aUr
+aVS
+aUr
+aUr
+aYe
+aYP
+aTB
+baD
+bbF
+bcX
+beh
+bfn
+bgn
+bho
+bis
+bhn
+bfm
+blM
+bnv
+boD
+bpX
+brc
+bsr
+bbF
+buu
+bvy
+bwM
+bxN
+bzg
+bAi
+bBr
+bCu
+bDE
+bEE
+bFR
+bGX
+bIk
+bJk
+bKm
+bDw
+bMI
+bOc
+bPm
+bQn
+bRh
+bSc
+bSZ
+bTM
+bUy
+bVk
+bWb
+bWN
+bXA
+bYn
+bZa
+bZx
+bZG
+caP
+cbQ
+ccM
+ccf
+ces
+cfh
+cfT
+cgI
+chz
+cir
+cgI
+ciq
+ckz
+clq
+cmG
+cmG
+cnS
+clq
+coG
+cpb
+cfh
+cpZ
+cqG
+crj
+csc
+csD
+ctm
+cfh
+aaa
+aab
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aab
+cvj
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(164,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+agc
+agc
+agc
+ads
+aaT
+aiP
+ajw
+aiP
+akr
+aik
+alk
+alK
+aik
+aik
+anE
+aob
+aik
+ajs
+ahk
+alN
+all
+ard
+arA
+all
+asp
+asF
+all
+ard
+aun
+all
+avp
+ard
+avQ
+awZ
+axy
+axZ
+ayI
+ayZ
+azI
+aAb
+avQ
+aAY
+aik
+aCl
+aCX
+abL
+abL
+aEI
+aFy
+ahk
+abl
+abl
+abl
+abl
+aIY
+aJD
+aKA
+aLv
+aML
+aNQ
+aOM
+aIY
+aQk
+aQk
+abl
+abl
+abl
+aTB
+aUt
+aUr
+aVT
+aWz
+aXk
+aUr
+aYQ
+aTB
+aZO
+bbF
+bcY
+bei
+bfo
+bgm
+bhp
+bit
+bfm
+bfm
+blN
+bbF
+boE
+bfm
+brc
+bss
+bbF
+buu
+bvy
+bwN
+bxP
+bzh
+bzh
+bBs
+bCv
+bDB
+bEF
+bFG
+bGY
+bIl
+bIn
+bKn
+bIn
+bIl
+bIl
+bPn
+bQo
+bRi
+bSd
+bMG
+bMG
+bUy
+bUy
+bUy
+bWP
+bXB
+bYo
+bUw
+bZy
+bZG
+caO
+cbR
+ccN
+ccf
+cer
+cfh
+cfU
+cgJ
+chA
+cis
+cjg
+ciq
+chz
+cfh
+cfh
+cnw
+cfh
+cfh
+cfh
+cfh
+cfh
+cqa
+cfV
+crk
+csd
+csE
+ctn
+cfh
+aaa
+aab
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aab
+cvj
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cql
+cql
+cql
+cql
+cql
+cql
+cql
+cql
+cql
+cql
+cql
+cql
+cql
+cql
+cql
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(165,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+agc
+agc
+agc
+aaT
+aaT
+aiQ
+ajx
+aiQ
+akr
+aik
+all
+all
+all
+all
+all
+all
+all
+all
+all
+aqg
+all
+all
+all
+all
+all
+all
+all
+all
+all
+all
+avq
+avQ
+avQ
+axa
+axa
+aya
+axa
+aya
+axa
+axa
+avQ
+avQ
+aik
+aCl
+aCX
+abL
+abL
+aEI
+aFy
+ahk
+abl
+abl
+abl
+abl
+aIY
+aJF
+aKA
+aLw
+aMM
+aNR
+aOJ
+aPD
+aQk
+aQk
+aRw
+abl
+abl
+aTB
+aUu
+aUr
+aVU
+aWA
+aXl
+aYf
+aTB
+aTB
+baE
+bbF
+bcW
+bej
+bfp
+bgo
+bbF
+bbF
+bfm
+bfm
+bfm
+bfl
+boF
+bfm
+brd
+bst
+bbF
+buu
+bvy
+bwO
+bxQ
+bxQ
+bAj
+bBt
+bCw
+bDB
+bEG
+bFS
+bGZ
+bIm
+bJl
+bKo
+bLA
+bMJ
+bIl
+bPo
+bQp
+bRj
+bQq
+bTa
+bTN
+bUz
+bVl
+bUy
+bWQ
+bXC
+bYp
+bUw
+bZx
+bZG
+caP
+cbS
+ccM
+ccf
+cer
+cfh
+cfh
+cfZ
+chB
+cit
+cfZ
+cjO
+ckA
+cfh
+cfV
+cfV
+cfV
+cfh
+coH
+cpc
+cpw
+cpw
+cqH
+crl
+cse
+cgI
+cgI
+cfh
+aaa
+aab
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aab
+cvj
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(166,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+agc
+agc
+agc
+aaT
+aaT
+aiQ
+ajy
+aiQ
+akr
+aik
+all
+alL
+all
+amY
+all
+aoc
+all
+api
+all
+alN
+all
+are
+all
+arP
+all
+asG
+all
+atI
+all
+auN
+avq
+avR
+avR
+avR
+avR
+avR
+avR
+avR
+avR
+avR
+avR
+avQ
+aiM
+aCl
+aCX
+abL
+abL
+aEI
+aFy
+ahk
+abl
+abl
+abl
+abl
+aIY
+aJG
+aKB
+aLx
+aJD
+aNS
+aON
+aIY
+aQl
+aQk
+aRw
+abl
+abl
+aTB
+aUv
+aVf
+aVV
+aWB
+aXm
+aUr
+aYR
+aZM
+aZP
+bbF
+bcZ
+bek
+bfq
+bgp
+bhq
+biu
+bfm
+bfm
+bfm
+bfl
+boG
+bpY
+bre
+bsu
+bbF
+buu
+bvy
+bwP
+bxR
+bzi
+bAk
+bBu
+bCx
+bDB
+bEH
+bFT
+bGY
+bIn
+bJm
+bKp
+bLB
+bMK
+bIl
+bPp
+bQq
+bRk
+bQq
+bQq
+bTO
+bQq
+bVm
+bUy
+bWR
+bXC
+bYq
+bUw
+bZz
+bZG
+caQ
+cbS
+ccN
+ccf
+cer
+cfh
+cfV
+cfV
+chC
+ciu
+cfV
+cjQ
+ckB
+clu
+cfV
+cgI
+cfV
+cop
+coI
+cpd
+cfV
+cfV
+cfV
+cgP
+cgI
+cgI
+cgI
+cfh
+adj
+cgU
+cgU
+cgU
+cgU
+cgU
+aab
+aab
+aab
+cvj
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+coP
+aaa
+czf
+czh
+czn
+aaa
+czf
+czh
+czn
+aaa
+czf
+czh
+czn
+aaa
+coP
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(167,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+agc
+agc
+agc
+aaT
+aaT
+aiQ
+ajz
+aiQ
+akr
+aik
+all
+alM
+all
+amZ
+all
+aod
+all
+apj
+all
+alN
+all
+arf
+all
+arQ
+all
+asH
+all
+atJ
+all
+auO
+avq
+avR
+avR
+avR
+avR
+avR
+avR
+avR
+avR
+avR
+avR
+avQ
+aik
+aCl
+aCX
+abL
+aEc
+aEI
+aFz
+ahk
+abl
+abl
+abl
+abl
+aIY
+aIY
+aIY
+aLy
+aIY
+aNT
+aIY
+aIY
+aQk
+aQk
+aRw
+abl
+abl
+aTB
+aUw
+aVg
+aVg
+aVg
+aVg
+aVg
+aVg
+aZN
+aGK
+bbG
+bda
+bel
+bda
+bgq
+bda
+biv
+bbF
+bkJ
+bbF
+bbF
+boH
+bpZ
+boS
+bsv
+bbF
+buu
+bvy
+bwQ
+bvy
+bvy
+bvy
+bvy
+bvy
+bvy
+bEI
+bFG
+bGY
+bIn
+bJn
+bKq
+bLC
+bML
+bIl
+bPq
+bQr
+bRl
+bSe
+bTb
+bTP
+bQq
+bVn
+bUy
+bWS
+bXD
+bYr
+bUw
+bZA
+cag
+caR
+cbM
+caR
+cdB
+cet
+cfi
+cfW
+cgK
+chD
+civ
+cjh
+cjR
+ckC
+clv
+clv
+cnx
+cnT
+cnT
+coJ
+cpe
+cpx
+cqb
+cgI
+cgI
+ciB
+csF
+cto
+cuc
+cuI
+cvf
+cvQ
+cwv
+cwv
+cgU
+aaa
+aaa
+aab
+cvj
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+cyZ
+aab
+czf
+czi
+czn
+aaa
+czf
+czi
+czn
+aaa
+czf
+czi
+czn
+aab
+coP
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(168,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+agc
+agc
+agc
+aaT
+aaT
+aaT
+ajA
+aaT
+akr
+aik
+all
+alN
+amw
+alN
+alN
+alN
+amw
+alN
+apI
+alN
+amw
+alN
+alN
+alN
+amw
+alN
+alN
+alN
+amw
+alN
+avq
+avR
+avR
+avR
+avR
+avR
+avR
+avR
+avR
+avR
+avR
+avQ
+aik
+aCl
+aCX
+abL
+abL
+aEI
+aFy
+ahk
+abl
+abl
+abl
+abl
+aIY
+aJH
+aKC
+aLz
+aMN
+aNU
+aOO
+aIY
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+aeu
+aeu
+aeu
+aeu
+aGK
+aYS
+aZO
+baF
+bbH
+bdb
+bem
+bfr
+bgr
+bhr
+biw
+bjy
+bkK
+blO
+bfl
+boI
+bqa
+brf
+bsw
+bbF
+buv
+bvz
+bvz
+bvz
+bzj
+buL
+buL
+bxS
+bDF
+bEF
+bFG
+bGY
+bIl
+bIn
+bKr
+bIn
+bIn
+bIl
+bPr
+bPi
+bRm
+bPi
+bMG
+bMG
+bMG
+bMG
+bUy
+bUy
+bXE
+bYs
+bUw
+bZx
+cah
+caS
+cbT
+ccO
+cdC
+ceu
+cfj
+cfX
+cgL
+chE
+ciw
+cji
+cgf
+ckD
+cgI
+cmH
+cny
+cnU
+coq
+cnU
+cny
+cpy
+cqc
+cpx
+cpx
+csf
+cjn
+ctp
+cfZ
+adj
+ciG
+cvR
+cww
+cwQ
+cgU
+aaa
+aaa
+aab
+cvj
+aab
+aaa
+aab
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+czf
+czi
+czn
+aab
+czf
+czi
+czn
+aab
+czf
+czi
+czn
+aaa
+coP
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(169,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+acg
+abL
+agc
+agc
+agc
+ads
+aaT
+aaT
+aaT
+aaT
+ahk
+ail
+all
+alO
+all
+ana
+all
+aoe
+all
+apk
+all
+alN
+all
+arg
+all
+arR
+all
+asI
+all
+atK
+all
+auP
+avq
+avR
+avR
+avR
+avR
+avR
+avR
+avR
+avR
+avR
+avR
+avQ
+aik
+aCl
+aCX
+abL
+abL
+aEI
+aFy
+ahk
+abl
+abl
+abl
+abl
+aIY
+aJI
+aKD
+aLA
+aMO
+aNV
+aOP
+aIY
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+aeu
+aVW
+aeu
+aeu
+aGK
+aYT
+aZO
+baF
+bbI
+bdc
+ben
+bfs
+bgs
+bhs
+bix
+bjz
+bkL
+blP
+bbF
+boF
+bfm
+bfm
+bsx
+btB
+btB
+btB
+btB
+btB
+bzk
+bAl
+bBv
+bCy
+bDG
+bEF
+bFU
+bHa
+bIo
+bJo
+bKs
+bJo
+bMM
+bOd
+bPs
+bJo
+bRn
+bSf
+bJo
+bJo
+bUA
+bVo
+bWc
+bMM
+bXF
+bYt
+bZb
+bZB
+cai
+caT
+cbU
+cbe
+cdD
+cev
+cfk
+cfY
+cgM
+chF
+cix
+cji
+cgI
+ckE
+cgI
+cmI
+cny
+cny
+cor
+cny
+cny
+cpz
+cji
+cqf
+crm
+crm
+csG
+ctq
+cud
+cuJ
+cvf
+cvS
+cwv
+cwv
+cgU
+aab
+aab
+aab
+cvj
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+czf
+czi
+czn
+aaa
+czf
+czi
+czn
+aaa
+czf
+czi
+czn
+aab
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(170,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+acg
+abL
+agc
+agc
+agc
+ads
+aaT
+aaT
+aaT
+aaT
+ahk
+akK
+all
+alP
+all
+anb
+all
+aof
+all
+apl
+all
+alN
+all
+arh
+all
+arS
+all
+asJ
+all
+atL
+all
+auQ
+avq
+avR
+avR
+avR
+avR
+avR
+avR
+avR
+avR
+avR
+avR
+avQ
+aik
+aCl
+aCX
+abL
+abL
+aEI
+aFy
+ahk
+abl
+abl
+abl
+abl
+aIY
+aJI
+aKD
+aLB
+aMP
+aIY
+aOQ
+aIY
+abl
+abl
+abl
+abl
+abl
+abl
+aeu
+aeu
+aeu
+aeu
+aeu
+aGK
+aYU
+aZO
+baF
+bbJ
+bdd
+beo
+bft
+bgt
+bht
+biy
+bjA
+bkM
+blQ
+bnw
+boJ
+bqb
+brg
+bsy
+btC
+buw
+bvA
+bwR
+btB
+bzk
+baJ
+aEI
+bCy
+bDG
+bEJ
+bFV
+bHb
+bIp
+bHb
+bHb
+bHb
+bMN
+bOe
+bPt
+bHb
+bIp
+bSg
+bHb
+bHb
+bPt
+bVp
+bHb
+bMN
+bXG
+bYu
+bZc
+bZC
+caj
+caU
+cbV
+cbV
+cdE
+cew
+cfl
+cfZ
+cgN
+chG
+cfZ
+cjj
+cfZ
+ckE
+clw
+cmJ
+cny
+cnV
+cnV
+cnV
+cny
+cpA
+cqd
+cqI
+crn
+cpB
+csH
+ctr
+cue
+cuK
+cgU
+cgU
+cgU
+cgU
+cgU
+aaa
+aaa
+aab
+cvj
+aab
+aaa
+cyg
+cyg
+cyg
+cyg
+cyQ
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+czf
+czi
+czn
+aaa
+czf
+czi
+czn
+aaa
+czf
+czi
+czn
+aaa
+aab
+coP
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(171,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+acg
+abL
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+akK
+all
+all
+all
+all
+all
+all
+all
+all
+all
+aqh
+all
+all
+all
+all
+all
+all
+all
+all
+all
+all
+avq
+avQ
+avQ
+avQ
+avQ
+aya
+axa
+axa
+avQ
+avQ
+avQ
+avQ
+aik
+aCl
+aCY
+aDB
+aDB
+aEJ
+aFy
+ahk
+aGK
+aGK
+aGK
+aGK
+aGK
+aGK
+aKE
+aGK
+aGK
+aGK
+aOR
+aGK
+aGK
+aGK
+aGK
+aGK
+aGK
+aGK
+aGK
+aGK
+aGK
+aGK
+aGK
+aGK
+aQF
+aZO
+baF
+bbK
+bde
+bep
+bft
+bgu
+bfl
+biz
+bjB
+bkN
+blR
+bbF
+boK
+bgm
+bfm
+bsx
+btD
+bux
+bvB
+bwS
+btB
+bzl
+baJ
+aEI
+bCy
+bDH
+bEK
+bEK
+bEK
+bEK
+bEK
+bDH
+bKw
+bMO
+bOf
+bPu
+bPu
+bKw
+bPH
+bPH
+bPH
+bKw
+bVq
+bWd
+bWT
+bWd
+bYv
+bVz
+bZx
+cak
+bZG
+cbW
+bZG
+cdF
+cex
+cfm
+cga
+cgO
+chH
+ciy
+cjk
+cjS
+ckF
+clx
+cmK
+cnz
+cmM
+cos
+coK
+cpf
+cpB
+cqe
+cqJ
+cgI
+csg
+csI
+cts
+cuf
+cuI
+cvf
+cvT
+cwx
+cwx
+cgU
+aaa
+aaa
+aab
+cvj
+cyg
+cyg
+cyg
+cyE
+cyJ
+cyN
+cyQ
+cyQ
+cyQ
+aaa
+aaa
+aab
+aaa
+aaa
+czj
+aaa
+aaa
+aaa
+czj
+aaa
+aaa
+aaa
+czp
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(172,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+akK
+ajm
+ajm
+amx
+anc
+ajn
+ajm
+ajm
+ajm
+apJ
+aik
+ahk
+ari
+aik
+aik
+aik
+aik
+aik
+aik
+aik
+aik
+avr
+avS
+awo
+axb
+axz
+ayb
+ayJ
+aza
+axz
+aAc
+aAz
+aAZ
+avS
+aAZ
+aCZ
+aCZ
+aCZ
+aCZ
+aFA
+aGf
+aGL
+aGL
+aGL
+aGL
+aGL
+aGL
+aGL
+aGL
+aGL
+aGL
+aGL
+aGL
+aGL
+aGL
+aGL
+aGL
+aSV
+aGL
+aGL
+aGL
+aGL
+aGL
+aGL
+aGL
+aGL
+aZP
+baF
+bbL
+bdf
+beq
+bfu
+bgv
+bhu
+bhu
+bjC
+bkO
+bhv
+bhu
+boL
+bqc
+bfm
+bsz
+btB
+buy
+bvC
+bwT
+btB
+bzk
+baJ
+aEI
+bCy
+bDH
+bEL
+bFW
+bHc
+bIq
+bJp
+bDH
+bLD
+bMP
+bOg
+bPv
+bQs
+bKw
+bSh
+bSh
+bSh
+bKw
+bVr
+bWe
+bWU
+bXH
+bXH
+bVz
+bZx
+cak
+caV
+caV
+caV
+cdG
+cev
+cfn
+cgb
+cgP
+chI
+ciz
+chJ
+cjT
+ckG
+cly
+cmL
+cnA
+cgI
+cgI
+cgI
+cgI
+cpC
+cqf
+cqK
+cgI
+cgI
+csJ
+ctt
+cfZ
+adj
+ciG
+cvU
+cwy
+cwR
+cgU
+aaa
+aaa
+aab
+cyc
+cyh
+cyn
+cyv
+cyF
+cyK
+cyO
+cyR
+cyT
+cyU
+cyV
+cyV
+cyV
+cze
+czg
+czg
+czg
+czg
+czg
+czg
+czg
+czo
+cyV
+czq
+cyV
+cyV
+cyV
+czs
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(173,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+acg
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+akK
+aik
+aik
+aik
+aik
+aik
+aik
+aik
+aik
+aik
+aik
+ahk
+aik
+aik
+ahk
+asq
+asK
+ati
+ahk
+auo
+auR
+avs
+avT
+awp
+aik
+avQ
+ayc
+ayK
+ayK
+azJ
+aik
+aik
+ahk
+aik
+azJ
+aik
+aDC
+aEd
+ahk
+aik
+ahk
+aGM
+aHu
+aHV
+aHV
+aHV
+aHV
+aHV
+aHV
+aHV
+aHV
+aHV
+aHV
+aHV
+aQF
+aQF
+aQF
+aQF
+aQF
+aQF
+aQF
+aHV
+aHV
+aHV
+aHV
+aHV
+aQF
+baF
+bbL
+bdg
+bep
+bfv
+bgw
+bhu
+biA
+bjD
+bkP
+blS
+bhu
+boM
+bgm
+bfm
+bsA
+btB
+buz
+bvD
+bvD
+btB
+bzk
+baJ
+aEI
+bCz
+bDH
+bEL
+bFX
+bHd
+bIr
+bJq
+bKt
+bLE
+bMQ
+bOh
+bNa
+bQt
+bKw
+bSi
+bSi
+bSi
+bKw
+bVs
+bWf
+bWV
+bXI
+bYw
+bYv
+bZx
+cak
+caW
+cbX
+ccP
+cdF
+cey
+cfo
+cgc
+cgI
+chJ
+ciA
+cjl
+cjU
+ckH
+clz
+cmM
+cly
+cmK
+cmK
+coL
+cpg
+cpD
+cqg
+cqL
+crm
+cgR
+csG
+ctu
+cud
+cuJ
+cvf
+cvV
+cwx
+cwx
+cgU
+aaa
+aaa
+aab
+cvj
+cyg
+cyg
+cyw
+cyG
+cyL
+cyP
+cyQ
+cyQ
+cyQ
+aaa
+aaa
+aab
+aaa
+aaa
+czk
+aaa
+aaa
+aaa
+czk
+aaa
+aaa
+aaa
+czp
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(174,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+acg
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+akK
+aik
+aik
+aik
+aik
+aik
+aik
+aik
+aik
+aik
+aik
+ail
+aik
+aik
+ahk
+ahk
+ahk
+ahk
+ahk
+ahk
+ahk
+ahk
+ahk
+ahk
+ail
+avQ
+avQ
+avQ
+avQ
+avQ
+aiM
+aik
+ahk
+aik
+ahk
+aik
+aik
+aik
+azJ
+aik
+ahk
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+aGK
+aQG
+aQG
+aQG
+aQG
+aQG
+aQG
+aQG
+aGK
+ads
+ads
+ads
+ads
+aZQ
+baF
+bbL
+bdg
+bep
+bdd
+bgx
+bhv
+biB
+bjE
+bkQ
+blT
+bhv
+boN
+bgm
+bfm
+bsB
+btE
+buA
+bvE
+bwU
+btF
+bzm
+baJ
+aEI
+bCy
+bDH
+bEM
+bFY
+bHe
+bIs
+bJr
+bKu
+bLF
+bMR
+bOi
+bNa
+bQu
+bPH
+bSj
+bSj
+bSj
+bPH
+bVt
+bWg
+bWW
+bXJ
+bYx
+bYv
+bZx
+cak
+caX
+cbY
+ccQ
+cdF
+cex
+cfh
+cgd
+cgQ
+chK
+ciB
+cjm
+cjV
+chK
+cgI
+cgI
+cgI
+cnW
+cnW
+cnW
+cph
+cpE
+ckI
+cqM
+crm
+csh
+csK
+cgI
+cfZ
+adj
+cgU
+cgU
+cgU
+cgU
+cgU
+aaa
+aaa
+aab
+cvj
+aab
+aaa
+cyg
+cyg
+cyg
+cyg
+cyQ
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+czf
+czl
+czn
+aaa
+czf
+czl
+czn
+aaa
+czf
+czl
+czn
+aaa
+aab
+coP
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(175,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+abL
+acg
+abL
+abL
+acg
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+akL
+alm
+alQ
+ahk
+ahk
+ahk
+ahk
+ahk
+ahk
+ahk
+ahk
+ahk
+arj
+arB
+arT
+asr
+asL
+atj
+atj
+atj
+atj
+atj
+atj
+atj
+atj
+atj
+atj
+atj
+atj
+atj
+aik
+aik
+azJ
+aik
+ahk
+aDa
+aDD
+ahk
+ahk
+ahk
+ahk
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+aaT
+aQH
+aQH
+aQI
+aQH
+aQI
+aQH
+aQH
+aaT
+aaT
+aaT
+ads
+ads
+aZQ
+baF
+bbM
+bdh
+beo
+bdd
+bgy
+bhv
+biC
+bjF
+bkR
+blT
+bhv
+boO
+bgn
+bis
+bsC
+btF
+buB
+bvF
+bwV
+btF
+bzk
+baJ
+aEI
+bCy
+bDH
+bEN
+bFZ
+bHf
+bHf
+bHf
+bKv
+bLG
+bMS
+bOj
+bPw
+bQv
+bKw
+bSk
+bTc
+bTQ
+bKw
+bVu
+bVz
+bWX
+bVz
+bYy
+bVz
+bZx
+cak
+caW
+cbZ
+ccR
+cdF
+cex
+cfh
+cge
+cgI
+chL
+ciC
+cjn
+cjW
+ckI
+clA
+clA
+clA
+cnX
+clA
+clA
+clA
+cnX
+cjl
+cgf
+crm
+crm
+csG
+ctv
+cug
+cuL
+cvg
+cvW
+cwz
+cwB
+cgU
+aab
+aab
+aab
+cvj
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+czf
+czl
+czn
+aaa
+czf
+czl
+czn
+aaa
+czf
+czl
+czn
+aab
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(176,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abL
+abl
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+abL
+abL
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ahk
+ahk
+ahk
+ahk
+ahk
+ahk
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+aaT
+aaT
+aQH
+aRx
+aSg
+aSg
+aSh
+aUx
+aQH
+aaT
+aaT
+aaT
+aaT
+ads
+aZQ
+baF
+bbN
+bdi
+ber
+bdd
+bgy
+bhv
+biD
+bjG
+bkS
+blU
+bhv
+boP
+bqd
+bho
+bsD
+btG
+buC
+bvG
+bwW
+btF
+bzn
+baJ
+aEI
+bCy
+bDH
+bEO
+bGa
+bEO
+bEO
+bEO
+bDH
+bLH
+bMP
+bOi
+bPx
+bQw
+bKw
+bSl
+bTd
+bSl
+bKw
+bVv
+bVz
+bWY
+bVz
+bYz
+bVz
+bZy
+cak
+caX
+cca
+ccQ
+cdH
+cew
+cfh
+cgf
+cgR
+chM
+ciD
+cjo
+cjX
+ckJ
+clB
+cmN
+clB
+ckJ
+clB
+coM
+clB
+ckJ
+clB
+cqN
+clB
+clB
+csL
+ctw
+cfZ
+adj
+ciG
+cvX
+cwA
+cwS
+cgU
+aaa
+aaa
+aab
+cvj
+aab
+aaa
+aab
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+czf
+czl
+czn
+aab
+czf
+czl
+czn
+aab
+czf
+czl
+czn
+aaa
+coP
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(177,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abL
+abL
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+abL
+abL
+abL
+acg
+abL
+abL
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+aaT
+aaT
+aQI
+aRy
+aSh
+aSg
+aSh
+aUy
+aVh
+aaT
+aaT
+aaT
+aaT
+ads
+aZQ
+baF
+bbO
+bdj
+bes
+bdd
+bgz
+bhv
+biE
+bjH
+bkS
+blU
+bhv
+boQ
+bfm
+bfm
+bsE
+btF
+buD
+bvH
+bwX
+btF
+bxT
+baJ
+aEI
+bCy
+bDH
+bDH
+bDH
+bDH
+bDH
+bDH
+bDH
+bLI
+bMP
+bOk
+bPy
+bQx
+bKw
+bSm
+bTe
+bTR
+bKw
+bVw
+bVz
+bWX
+bVz
+bYA
+bVz
+bZD
+cak
+caW
+ccb
+ccR
+cdF
+cez
+cfh
+cgg
+cgS
+chN
+ciE
+cjp
+cjW
+ckK
+clC
+cmO
+cnB
+cnY
+cot
+coN
+cgI
+cpF
+cqh
+cqO
+cro
+crm
+crm
+ctx
+cuh
+cuL
+cvh
+cvY
+cwB
+cwB
+cgU
+aaa
+aaa
+aab
+cvj
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+czf
+czl
+czn
+aaa
+czf
+czl
+czn
+aaa
+czf
+czl
+czn
+aab
+coP
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(178,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abL
+abL
+abL
+abL
+abl
+abl
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+agc
+agc
+agc
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+aaT
+aaT
+aaT
+aQH
+aRz
+aSg
+aSg
+aSh
+aUz
+aQH
+aaT
+aaT
+aaT
+ads
+ads
+aZQ
+baF
+bbP
+bdk
+bet
+bfw
+bgA
+bhw
+biF
+bjI
+bkT
+blV
+bhw
+boR
+bqe
+bqe
+bsF
+btH
+buE
+bvI
+bwY
+btF
+bxT
+baJ
+aEI
+bCy
+buL
+buL
+bxS
+bxS
+bxS
+bxS
+bKw
+bLJ
+bMT
+bOl
+bPz
+bQy
+bKw
+bSl
+bTf
+bSl
+bKw
+bVw
+bVy
+bWY
+bXK
+bVy
+bVz
+bZx
+cak
+caX
+ccc
+ccQ
+cdF
+cex
+cfh
+cfh
+cgT
+chO
+ciF
+cjq
+cjY
+chO
+ciF
+cjq
+ciF
+chO
+ciF
+cjq
+ciF
+chO
+ciF
+cjq
+crp
+cfh
+cfh
+cty
+cfh
+adj
+cgU
+cgU
+cgU
+cgU
+cgU
+aab
+aab
+aab
+cvj
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cyZ
+aaa
+czf
+czm
+czn
+aaa
+czf
+czm
+czn
+aaa
+czf
+czm
+czn
+aaa
+coP
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(179,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abL
+abL
+abL
+abL
+abl
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+acg
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+aaT
+aaT
+aQH
+aQH
+aQI
+aSW
+aQI
+aQH
+aQH
+aaT
+aaT
+aaT
+ads
+ads
+aZQ
+baF
+bbQ
+baF
+beu
+bfx
+baF
+bhu
+bhu
+bjC
+bhu
+bhv
+bhu
+boS
+bqf
+bbF
+bbF
+btF
+btE
+btE
+btF
+btF
+bxT
+baK
+bBw
+bCA
+bzp
+bzp
+bsJ
+bsJ
+bsJ
+bxS
+bKw
+bLK
+bMU
+bOm
+bPA
+bQu
+bRo
+bSn
+bTg
+bTS
+bKw
+bVx
+bVy
+bWZ
+bVy
+bVy
+bZd
+bZx
+cak
+caY
+ccd
+ccR
+cdF
+ceA
+bZK
+adj
+adj
+chP
+adj
+cjr
+adj
+chP
+adj
+cjr
+adj
+chP
+adj
+cjr
+adj
+chP
+adj
+cjr
+adj
+adj
+cfh
+ctz
+cfh
+adj
+aaa
+aaa
+aab
+aaa
+aab
+aaa
+aaa
+aab
+cvj
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(180,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+acg
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+acg
+acg
+acg
+ads
+ads
+ads
+ads
+aaT
+aaT
+aaT
+aaT
+aSi
+aSX
+aQJ
+aaT
+aaT
+aaT
+aaT
+ads
+aOS
+aOS
+aZR
+baF
+bbR
+bdl
+bev
+bfy
+bgB
+bhx
+biG
+bjJ
+bkU
+bkU
+bkU
+bkU
+bkU
+brh
+bsG
+btI
+bkU
+bvJ
+bwZ
+bxS
+bxS
+bAm
+bAm
+bxT
+bzp
+bzp
+bsJ
+bHg
+bsJ
+bxS
+bKw
+bLL
+bMV
+bOn
+bOj
+bQz
+bRp
+bSo
+bTh
+bTT
+bKw
+bVy
+bVy
+bXa
+bVy
+bVy
+bZd
+bZA
+cal
+caV
+caV
+caV
+cdI
+ceB
+bZK
+adj
+cgU
+chQ
+ciG
+chQ
+cgU
+chQ
+ciG
+chQ
+cgU
+chQ
+ciG
+chQ
+cgU
+chQ
+ciG
+chQ
+cgU
+adj
+cfh
+cty
+cfh
+adj
+aaa
+aaa
+aab
+aaa
+aab
+aaa
+aaa
+aab
+cvj
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cql
+cql
+cql
+cql
+cql
+cql
+cql
+cql
+cql
+cql
+cql
+cql
+cql
+cql
+cql
+aaa
+aaa
+aaa
+aaa
+aaa
+acf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(181,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+acg
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+acg
+acg
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+ads
+ads
+ads
+ads
+ads
+aOS
+aQJ
+aQJ
+aQJ
+aSY
+aQJ
+aUA
+aQJ
+aOS
+aOS
+aOS
+aOS
+aYV
+aZS
+baF
+bbS
+bdc
+bew
+bfz
+bgB
+bhy
+biH
+bjK
+bkV
+bjN
+bjN
+bjN
+bjN
+bjN
+bjN
+bjN
+buF
+bvK
+bgB
+bxS
+bxS
+bAn
+bAn
+bxT
+bzp
+bzp
+bsJ
+bsJ
+bsJ
+bxS
+bKw
+bLK
+bMW
+bOo
+bPB
+bQA
+bRo
+bSp
+bTi
+bSp
+bKw
+bVy
+bVy
+bXb
+bVy
+bVy
+bVz
+bZx
+cak
+caZ
+bZG
+bZG
+cdF
+cae
+bZK
+adj
+cgU
+chR
+ciH
+cjs
+cgU
+ckL
+clD
+cmP
+cgU
+cnZ
+cou
+coO
+cgU
+cpG
+cqi
+cqP
+cgU
+adj
+adj
+cgV
+adj
+adj
+aaa
+aaa
+aab
+aab
+aab
+aaa
+aaa
+aab
+cvj
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(182,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abL
+abL
+abL
+abL
+abL
+abL
+acg
+acg
+acg
+acg
+aeu
+aeu
+abL
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+aMQ
+aNW
+aOS
+aOS
+aOS
+aQK
+aRA
+aSj
+aSZ
+aSj
+aUB
+aVi
+aVX
+aVX
+aXn
+aYg
+aYW
+aZT
+baG
+bbT
+bdm
+bex
+bfA
+bgC
+bhz
+biI
+bjL
+bkW
+blW
+bnx
+bnx
+blW
+bnx
+bnx
+bnx
+buG
+bvL
+bgB
+bxS
+bzo
+bzo
+bzo
+bzo
+bDI
+bDI
+bzo
+bzo
+bzo
+bxS
+bKw
+bKw
+bKw
+bOp
+bOf
+bKw
+bKw
+bKw
+bKw
+bKw
+bKw
+bVz
+bVz
+bVz
+bVz
+bVz
+bVz
+bZE
+cam
+cba
+cce
+ccS
+cdJ
+ceC
+bZK
+adj
+cgU
+chS
+chT
+chT
+cgU
+ckM
+clE
+ckM
+cgU
+coa
+cov
+coa
+cgU
+cpH
+cqj
+cpH
+cgU
+adj
+adj
+cgV
+aab
+aab
+aaa
+aaa
+aab
+aab
+aab
+aaa
+aaa
+aab
+cvj
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(183,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abL
+abL
+abL
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+acg
+acg
+acg
+acg
+abL
+abL
+acg
+acg
+agc
+agc
+acg
+abL
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+abL
+abL
+aNX
+aOT
+aPE
+aOT
+aQL
+aRB
+aRB
+aRB
+aRB
+aRB
+aRB
+aRB
+aRB
+aXo
+aOS
+aYX
+aZU
+baF
+bbU
+bdj
+bey
+bfB
+bgD
+bhA
+biJ
+bjM
+bkX
+blX
+blX
+blX
+blX
+blX
+blX
+blX
+buH
+bvK
+bgB
+bxT
+bzp
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+bzp
+bJs
+bxS
+bKw
+bMX
+bOq
+bPC
+bKw
+bRq
+bRq
+bxS
+bTU
+bUB
+bVA
+bWh
+bXc
+bXL
+bYB
+bsJ
+bZF
+cak
+bZG
+ccf
+bZG
+bZG
+ceD
+bZK
+adj
+cgU
+chT
+ciI
+chT
+cgU
+ckM
+clF
+ckM
+cgU
+cob
+cow
+coa
+cgU
+cpH
+cqk
+cpH
+cgU
+adj
+adj
+cgV
+aab
+aab
+aaa
+aaa
+aab
+aaa
+aab
+aaa
+aaa
+aab
+cvj
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(184,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abL
+abL
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+acg
+acg
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+abL
+aNY
+aOS
+aOS
+aOS
+aQM
+aRC
+aSk
+aTa
+aTD
+aTa
+aSk
+aTa
+aWC
+aXp
+aOS
+aOS
+aZR
+baF
+bbV
+bdn
+bez
+bfC
+bgB
+bhB
+biK
+bjN
+bjN
+bjN
+bny
+boT
+bjN
+bjN
+bsH
+bjN
+buI
+bvK
+bgB
+bxT
+bzp
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+bzp
+bJs
+bxS
+bLM
+bMX
+bOq
+bPD
+bLM
+bxS
+bxS
+bxS
+bxS
+bxS
+bxS
+bxS
+bxS
+bxS
+bxS
+bZe
+bZG
+cak
+bZG
+ccf
+bZG
+bZG
+ceD
+bZK
+adj
+cgU
+cgU
+cgU
+cgU
+cgU
+cgU
+cgU
+cgU
+cgU
+cgU
+cgU
+cgU
+cgU
+cgU
+cgU
+cgU
+cgU
+adj
+adj
+cgV
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
+aaa
+aab
+cyd
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(185,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abL
+abL
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+ads
+ads
+ads
+ads
+ads
+aOS
+aOS
+aOS
+aOS
+aOS
+aOS
+aOS
+aOS
+aOS
+aOS
+aOS
+aOS
+ads
+aZQ
+baF
+bbW
+baF
+baF
+baF
+bgB
+bhC
+biL
+bjN
+bjN
+blY
+bjN
+bjN
+blY
+bjN
+bjN
+bjN
+buI
+bvM
+bgB
+bxT
+bzp
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+bzp
+bJt
+buL
+bKw
+bMY
+bOq
+bPD
+bKw
+bRr
+bSq
+buL
+bTV
+bUC
+buL
+buL
+buL
+buL
+bYC
+bsJ
+bZH
+cak
+bZG
+ccf
+bZG
+cdK
+ceE
+bZK
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+cgV
+aab
+aaa
+aab
+aaa
+aab
+aaa
+aab
+aaa
+aaa
+aab
+cui
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(186,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abL
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+aZQ
+baH
+bbX
+bdo
+baH
+aQF
+bgB
+bhD
+biL
+bjN
+bjN
+blZ
+bjN
+bjN
+bjN
+bri
+bjN
+bjN
+buI
+bvN
+bgB
+bxT
+bzp
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+bzp
+bzp
+bzp
+bKw
+bKw
+bOr
+bOf
+bKw
+bKw
+bzp
+bzp
+bzp
+bzp
+bzp
+bzp
+bzp
+bzp
+bzp
+bsJ
+bZI
+cak
+bZG
+ccg
+bZG
+cae
+bZK
+bZK
+adj
+aaT
+aaT
+aaT
+aaT
+adj
+aaT
+aaT
+aaT
+aaT
+aaT
+adj
+adj
+aaT
+aaT
+aaT
+aaT
+adj
+aaT
+adj
+cgV
+aab
+aaa
+aab
+aaa
+aab
+aaa
+aab
+aab
+aab
+aab
+cui
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(187,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abL
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+agI
+agI
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+aZV
+baI
+bbY
+bdp
+beA
+bfD
+bgB
+bhy
+biM
+bjN
+bjN
+bma
+bnz
+boU
+bqg
+bma
+bjN
+bjN
+buJ
+bvO
+bgB
+bxT
+bzp
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+bKw
+bMZ
+bOs
+bPE
+bQB
+bKw
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+bZI
+cak
+cbb
+ccf
+bZG
+cae
+bZK
+bZK
+bZK
+aaT
+aaT
+aaT
+aaT
+adj
+aaT
+aaT
+aaT
+aaT
+aaT
+cgV
+cgV
+cgV
+cgV
+cgV
+cgV
+cgV
+cgV
+cgV
+cgV
+cui
+cuM
+cvi
+cvZ
+cvZ
+cvZ
+cxf
+cui
+cui
+cui
+cui
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(188,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abL
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+agI
+agI
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+aZV
+baJ
+abL
+abL
+aEI
+bfE
+bgB
+bhE
+biN
+bjO
+bkY
+bmb
+bkY
+boV
+bqh
+brj
+bsI
+btJ
+buK
+bvP
+bgB
+bxT
+bzp
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+bKx
+bKw
+bNa
+bOs
+bPF
+bQC
+bKw
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+bZI
+cak
+bZG
+ccf
+bZG
+cae
+ceF
+ccW
+ceF
+cgV
+cgV
+cgV
+cgV
+cgV
+cgV
+cgV
+cgV
+cgV
+cgV
+cgV
+coP
+coP
+coP
+coP
+coP
+coP
+coP
+coQ
+coP
+coP
+coP
+cvj
+coP
+coP
+coP
+coP
+aab
+aab
+aab
+aab
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(189,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+aZV
+baK
+bbZ
+aDB
+aEJ
+bfD
+bgB
+bgB
+bgB
+bgB
+bgB
+bmc
+bnA
+bgB
+bnA
+brk
+bgB
+bgB
+bgB
+bgB
+bgB
+bxT
+bzp
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+bKx
+bKw
+bNb
+bOt
+bPF
+bQD
+bKw
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+bZJ
+can
+cbc
+cch
+cbc
+cdL
+bZK
+bZK
+bZK
+bZK
+bZK
+bZK
+bZK
+bZK
+bZK
+bZK
+bZK
+bZK
+adj
+adj
+coP
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aab
+aab
+aab
+cvj
+aab
+aab
+aab
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(190,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+aZW
+baL
+bca
+baL
+baL
+baH
+baH
+baH
+baH
+bjP
+aGK
+bmd
+bnB
+bgB
+bnB
+brl
+bsJ
+btK
+buL
+buL
+buL
+bxU
+bzp
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+bKx
+bKw
+bNc
+bOu
+bOf
+bQE
+bKw
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+bZI
+cao
+cbd
+cci
+ccT
+cdM
+ccT
+cfp
+cbd
+cgW
+chU
+ciJ
+cjt
+bZI
+ckN
+ckN
+cmQ
+bZK
+adj
+adj
+coP
+aaa
+aaa
+aaa
+aaa
+aab
+aab
+aab
+aab
+aab
+cuj
+cvk
+cuj
+aab
+aab
+aab
+aab
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(191,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+agc
+abl
+abl
+abl
+abl
+abl
+abl
+aGK
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+bgB
+bmd
+bnC
+bgB
+bqi
+brl
+bgB
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+bKx
+bKw
+bNd
+bOv
+bPG
+aaT
+bKw
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+bTX
+bZK
+cap
+bZG
+bZG
+bZG
+cae
+ceG
+ceG
+bZG
+bZG
+bZG
+bZG
+cju
+bZI
+ckN
+ckN
+cmQ
+bZK
+adj
+adj
+coQ
+aaa
+acf
+aaa
+aaa
+aab
+aaa
+aaa
+aab
+aab
+cuj
+cvl
+cuj
+aab
+aab
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(192,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+agc
+abl
+abl
+abl
+abl
+abl
+abl
+aGK
+abl
+abl
+abl
+abl
+abl
+abL
+abL
+bkZ
+bme
+bnB
+bgB
+bnB
+brm
+bkZ
+abL
+abL
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+bKx
+bKw
+bNe
+bOw
+bPH
+aaT
+bKw
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+bZI
+caq
+bZG
+ccj
+bZG
+cae
+bZG
+bZG
+bZG
+ceG
+ceG
+bZG
+cju
+bZI
+ckN
+clG
+cmQ
+bZK
+adj
+adj
+coP
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aab
+cuj
+cuj
+cvm
+cuj
+cuj
+aab
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(193,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+aAd
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+agc
+abl
+abl
+abl
+abl
+abl
+abl
+aGK
+abl
+abl
+abL
+abL
+aaa
+aaa
+aaa
+bkZ
+bmc
+bnD
+bgB
+bnD
+brk
+bkZ
+btL
+btL
+btL
+abL
+abL
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+bKx
+bKw
+bKw
+bKw
+bKw
+aaT
+bKw
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+bZI
+car
+bZG
+cck
+ccU
+cdN
+ceH
+ceH
+cbV
+cbV
+cbV
+cbV
+cjv
+cjZ
+ckO
+clH
+cmR
+bZK
+adj
+adj
+coP
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aab
+cuj
+cuN
+cvn
+cwa
+cuj
+aab
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(194,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+agc
+abl
+abl
+abl
+abl
+abl
+abl
+aGK
+abl
+abl
+abL
+aaa
+aaa
+aaa
+bjQ
+bjQ
+bmf
+bnE
+bjQ
+bqj
+brn
+bjQ
+bjQ
+bjQ
+aaa
+aaa
+abL
+abL
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+buN
+aaT
+buN
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+bZI
+caq
+bZG
+ccl
+bZG
+bZG
+bZG
+bZG
+bZG
+cgX
+ceG
+bZG
+cju
+bZI
+ckN
+clI
+cmQ
+bZK
+adj
+adj
+coP
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aab
+cuj
+cuO
+cvo
+cwb
+cuj
+aab
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(195,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+abl
+aGK
+abl
+abL
+abL
+aaa
+aaa
+aaa
+bjQ
+bla
+bla
+bla
+boW
+bla
+bla
+bla
+btM
+bjQ
+bvQ
+aaa
+abL
+abL
+abL
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+buN
+aaT
+buN
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+bZI
+cas
+cbe
+cbe
+cbe
+cbe
+ceI
+ceI
+cbe
+cgY
+cbe
+cbe
+cjw
+cka
+ckP
+clJ
+cmS
+bZK
+adj
+adj
+coP
+aaa
+aaa
+acf
+aaa
+aab
+aaa
+aaa
+aab
+cuj
+cuP
+cvp
+cwc
+cuj
+aab
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(196,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+abl
+abl
+abl
+aGK
+bdq
+abL
+abL
+aaa
+aaa
+aaa
+bjQ
+bla
+bla
+bla
+bla
+bla
+bla
+bla
+bla
+buM
+bvR
+aaa
+aaa
+abL
+abL
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+buN
+aaT
+buN
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+abL
+bZI
+cat
+cbf
+cbf
+cbf
+cdO
+cbf
+cbf
+cgh
+cgZ
+cgZ
+cbf
+cjx
+bZI
+ckN
+ckN
+cmQ
+bZK
+adj
+adj
+coP
+aaa
+aaa
+aaa
+aaa
+aab
+aab
+aab
+aab
+cuk
+cuk
+cvq
+cuk
+cuk
+aab
+aab
+aab
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(197,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+abl
+abL
+baM
+bcb
+bdq
+abL
+abL
+aaa
+aaa
+aaa
+bjQ
+blb
+bla
+bla
+bla
+bla
+bla
+bla
+bla
+buM
+bvR
+aaa
+aaa
+abL
+abL
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+buN
+aaT
+buN
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+abL
+bZK
+bZI
+bZI
+bZI
+ccV
+bZK
+ccV
+bZI
+bZI
+bZI
+bZI
+bZI
+ccV
+bZK
+ccV
+bZI
+bZI
+bZI
+adj
+adj
+coP
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aab
+aaa
+cuk
+cvl
+cuk
+aaa
+aab
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(198,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+abl
+abL
+baN
+bcc
+bdr
+abL
+aaa
+aaa
+aaa
+aaa
+bjQ
+bla
+bla
+bla
+bla
+bla
+bla
+bla
+bla
+buM
+bvR
+aaa
+aaa
+abL
+abL
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+buN
+aaT
+buN
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+abL
+abL
+adj
+adj
+adj
+bZI
+ccW
+bZI
+ccW
+bZI
+adj
+adj
+adj
+bZI
+ccW
+bZI
+ccW
+bZI
+adj
+adj
+adj
+adj
+coP
+aaa
+aaa
+aab
+aab
+aab
+aaa
+aaa
+aab
+aaa
+cuk
+cvr
+cuk
+aaa
+aab
+aaa
+aaa
+aab
+aab
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(199,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+acf
+aaa
+aaa
+bjQ
+bla
+bla
+bla
+boX
+bla
+bla
+bla
+btM
+bjQ
+bvS
+aaa
+aaa
+abL
+abL
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+ads
+buN
+aaT
+buN
+ads
+ads
+ads
+ads
+abL
+abL
+abL
+abL
+abL
+aaa
+aaT
+aaT
+aaT
+bZI
+ccV
+bZI
+ccV
+bZI
+aaT
+aaT
+aaT
+bZI
+ccV
+bZI
+ccV
+bZI
+aaT
+aaT
+aaT
+adj
+coP
+aaa
+aaa
+aab
+aaa
+aab
+aaa
+aaa
+aab
+aaa
+aaa
+cvs
+aaa
+aaa
+aab
+aaa
+aaa
+aab
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(200,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bjQ
+bjQ
+bjQ
+bjQ
+bjQ
+bjQ
+bjQ
+bjQ
+bjQ
+bjQ
+aaa
+aaa
+aaa
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+ads
+ads
+ads
+ads
+ads
+buN
+buN
+aaT
+buN
+buN
+abL
+abL
+abL
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+bXM
+bXM
+bXM
+ccX
+bXM
+ceJ
+bXM
+bXN
+bXN
+bXN
+bXM
+cjy
+bXM
+ccX
+bXM
+bXM
+bXM
+aaa
+aab
+coP
+aaa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+cvs
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(201,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+agI
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+agc
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aab
+aab
+aaa
+aab
+aab
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+bXM
+bXM
+bXM
+bXM
+cbg
+ccm
+cbh
+bXM
+ceK
+cda
+cda
+cda
+cda
+cda
+cjz
+bXM
+ckQ
+clK
+cmT
+bXM
+bXM
+aaa
+coP
+aaa
+aaa
+cql
+aaa
+crq
+crq
+crq
+crq
+crq
+aaa
+cvt
+aaa
+crq
+crq
+crq
+crq
+crq
+aaa
+cql
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(202,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+agc
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aab
+aaa
+aab
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bXM
+bYD
+bZf
+bZL
+bXM
+cbg
+cbh
+ccY
+bXM
+ceL
+bZh
+bZh
+bZh
+bZh
+bZh
+cjA
+bXM
+ckR
+ckQ
+cmT
+cnC
+coc
+aaa
+aab
+aaa
+aaa
+cql
+aab
+crr
+csi
+csi
+csi
+csi
+cuQ
+cvt
+cwd
+cwC
+cwC
+cwC
+cwC
+cxO
+aab
+cql
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(203,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+agc
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aab
+aaa
+aab
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bXN
+bYE
+bZg
+bZM
+bXM
+cbh
+cbh
+ccY
+bXM
+bZh
+cfq
+cfq
+cfq
+cfq
+cfq
+bZh
+ckb
+ckQ
+ckQ
+cmT
+cnC
+coc
+aaa
+aaa
+aaa
+aaa
+cql
+aaa
+crs
+crs
+crs
+crs
+crs
+aaa
+cvu
+aaa
+crs
+crs
+crs
+crs
+crs
+aaa
+cql
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(204,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aab
+aaa
+aab
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bXN
+bYF
+bZh
+bZN
+bXM
+bXN
+ccn
+bXN
+cdP
+bZh
+cfr
+cfr
+cfr
+cfr
+cfr
+bZh
+bXM
+ckS
+clL
+cmT
+cnC
+coc
+aaa
+aaa
+aaa
+aaa
+cql
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+cvv
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+cql
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(205,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aab
+aaa
+aab
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bXN
+bYG
+bZh
+bZO
+bXM
+cbi
+bZh
+ccZ
+cdQ
+bZh
+bZh
+bZh
+bZh
+bZh
+bZh
+cjB
+cav
+bXM
+bXM
+bXM
+cnC
+coc
+aaa
+aaa
+aaa
+aaa
+cql
+aaa
+crq
+crq
+crq
+crq
+crq
+aaa
+cvv
+aaa
+crq
+crq
+crq
+crq
+crq
+aaa
+cql
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(206,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aab
+aaa
+aab
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bXN
+bYF
+bZh
+bZh
+cau
+bZh
+bZh
+cda
+cdb
+bZh
+cfq
+cfq
+cfq
+cfq
+cfq
+bZh
+bXN
+cbk
+clM
+cbk
+cnC
+coc
+aaa
+aaa
+aaa
+aaa
+cql
+aab
+crr
+csi
+csi
+csi
+csi
+cuQ
+cvv
+cwd
+cwC
+cwC
+cwC
+cwC
+cxO
+aab
+cql
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(207,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aab
+aaa
+aab
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bXN
+bYH
+bZi
+bZi
+cav
+cbj
+bZh
+cdb
+cdb
+bZh
+cfr
+cfr
+cfr
+cfr
+cfr
+bZh
+ckc
+cbj
+cbj
+cbj
+cnC
+coc
+aaa
+aaa
+aaa
+aaa
+cql
+aaa
+crs
+crs
+crs
+crs
+crs
+aaa
+cvv
+aaa
+crs
+crs
+crs
+crs
+crs
+aaa
+cql
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(208,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aab
+aaa
+aab
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bXM
+bYD
+bZj
+bZP
+bXM
+cbk
+bZh
+bZh
+bZh
+bZh
+bZh
+bZh
+bZh
+bZh
+bZh
+bZh
+bXN
+cbj
+cbj
+cbj
+cnC
+coc
+aaa
+aaa
+aaa
+aaa
+cql
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+cvv
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+cql
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(209,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aab
+aaa
+aab
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bXM
+bXM
+bXM
+bXM
+cbl
+cco
+cbj
+cbj
+ceM
+cfs
+cfs
+cfs
+cfs
+cfs
+ceM
+bXN
+ckT
+clN
+ckT
+bXM
+bXM
+aaa
+aaa
+aaa
+aaa
+cql
+aaa
+crq
+crq
+crq
+crq
+crq
+aaa
+cvv
+aaa
+crq
+crq
+crq
+crq
+crq
+aaa
+cql
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(210,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bDJ
+bDJ
+aaT
+bDJ
+bDJ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bXM
+bXN
+bXM
+bXN
+bXM
+bXM
+bXM
+bXN
+bXN
+bXN
+bXM
+bXM
+bXM
+bXN
+bXM
+bXN
+bXM
+aaa
+aaa
+aaa
+aaa
+aaa
+cql
+aab
+crr
+csi
+csi
+csi
+csi
+cuQ
+cvv
+cwd
+cwC
+cwC
+cwC
+cwC
+cxO
+aab
+cql
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(211,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+agI
+agI
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bDJ
+bDJ
+bDJ
+aaT
+bDJ
+bDJ
+bDJ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cql
+aaa
+crs
+crs
+crs
+crs
+crs
+aaa
+cvv
+aaa
+crs
+crs
+crs
+crs
+crs
+aaa
+cql
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(212,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+agI
+agI
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bDJ
+bDJ
+bGb
+bLO
+aaT
+bRs
+bGb
+bDJ
+bDJ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cql
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+cvv
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cql
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(213,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bDJ
+bDJ
+bGb
+bGb
+bLO
+aaT
+bRs
+bGb
+bGb
+bDJ
+bDJ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cql
+aaa
+crq
+crq
+crq
+crq
+crq
+aaa
+cvv
+aaa
+crq
+crq
+crq
+crq
+crq
+aaa
+cql
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(214,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bDJ
+bDJ
+bGb
+bGb
+bGb
+bLO
+aaT
+bRs
+bGb
+bGb
+bGb
+bDJ
+bDJ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cql
+aab
+crr
+csi
+csi
+csi
+csi
+cuQ
+cvv
+cwd
+cwC
+cwC
+cwC
+cwC
+cxO
+aab
+cql
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(215,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bDJ
+bDJ
+bGb
+bGb
+bGb
+bGb
+bLO
+aaT
+bRs
+bGb
+bGb
+bGb
+bGb
+bDJ
+bDJ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cql
+aaa
+crs
+crs
+crs
+crs
+crs
+aaa
+cvv
+aaa
+crs
+crs
+crs
+crs
+crs
+aaa
+cql
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(216,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+agI
+agI
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bDJ
+bDJ
+bGb
+bGb
+bGb
+bGb
+bGb
+bLO
+aaT
+bRs
+bGb
+bGb
+bGb
+bGb
+bGb
+bDJ
+bDJ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acf
+aaa
+aaa
+cql
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+cvv
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+cql
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(217,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+agI
+agI
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bDJ
+bDJ
+bGb
+bGb
+bGb
+bGb
+bGb
+bGb
+bLO
+bNg
+bRs
+bGb
+bGb
+bGb
+bGb
+bGb
+bGb
+bDJ
+bDJ
+aaa
+aaa
+acf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cql
+aaa
+crq
+crq
+crq
+crq
+crq
+aaa
+cvv
+aaa
+crq
+crq
+crq
+crq
+crq
+aaa
+cql
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(218,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bDJ
+bDJ
+bGb
+bGb
+bGb
+bGb
+bGb
+bGb
+bGb
+bLO
+bNg
+bRs
+bGb
+bGb
+bGb
+bGb
+bGb
+bGb
+bGb
+bDJ
+bDJ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cql
+aab
+crr
+csi
+csi
+csi
+csi
+cuQ
+cvv
+cwd
+cwC
+cwC
+cwC
+cwC
+cxO
+aab
+cql
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(219,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bDJ
+bDJ
+bGb
+bGb
+bGb
+bGb
+bGb
+bLN
+bNf
+bNf
+bLO
+bQF
+bRs
+bNf
+bNf
+bTW
+bGb
+bGb
+bGb
+bGb
+bGb
+bDJ
+bDJ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cql
+aaa
+crs
+crs
+crs
+crs
+crs
+aaa
+cvv
+aaa
+crs
+crs
+crs
+crs
+crs
+aaa
+cql
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(220,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bDJ
+bDJ
+bGb
+bGb
+bGb
+bGb
+bGb
+bLO
+bNg
+bNg
+bLO
+bQG
+bRs
+bNg
+bNg
+bRs
+bGb
+bGb
+bGb
+bGb
+bGb
+bDJ
+bDJ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cql
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+cvv
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+cql
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(221,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bDJ
+bDJ
+bGb
+bGb
+bGb
+bGb
+bGb
+bLP
+bNh
+bNh
+bLO
+bQH
+bRs
+bNh
+bNh
+bRt
+bGb
+bGb
+bGb
+bGb
+bGb
+bDJ
+bDJ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cql
+aaa
+crq
+crq
+crq
+crq
+crq
+aaa
+cvv
+aaa
+crq
+crq
+crq
+crq
+crq
+aaa
+cql
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(222,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+agI
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bDJ
+bDJ
+bGb
+bGb
+bGb
+bGb
+bGb
+bGb
+bGb
+bLO
+bNg
+bRs
+bGb
+bGb
+bGb
+bGb
+bGb
+bGb
+bGb
+bDJ
+bDJ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cql
+aab
+crr
+csi
+csi
+csi
+csi
+cuR
+cvw
+cuR
+cwC
+cwC
+cwC
+cwC
+cxO
+aab
+cql
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(223,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bDJ
+bDJ
+bGb
+bGb
+bGb
+bGb
+bGb
+bGb
+bLO
+bNg
+bRs
+bGb
+bGb
+bGb
+bGb
+bGb
+bGb
+bDJ
+bDJ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cql
+aaa
+crs
+crs
+crs
+crs
+crs
+aaa
+cvv
+aaa
+crs
+crs
+crs
+crs
+crs
+aaa
+cql
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(224,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+agI
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bDJ
+bDJ
+bGb
+bGb
+bGb
+bGb
+bGb
+bLP
+bNh
+bRt
+bGb
+bGb
+bGb
+bGb
+bGb
+bDJ
+bDJ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cql
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+cvx
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+cql
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(225,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bDJ
+bDJ
+bGb
+bGb
+bGb
+bGb
+bGb
+bGb
+bGb
+bGb
+bGb
+bGb
+bGb
+bDJ
+bDJ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cql
+cql
+cql
+cql
+cql
+cql
+cql
+aab
+cvv
+aab
+cql
+cql
+cql
+cql
+cql
+cql
+cql
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(226,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bDJ
+bDJ
+bGb
+bGb
+bGb
+bGb
+bGb
+bGb
+bGb
+bGb
+bGb
+bDJ
+bDJ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+cvy
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(227,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bDJ
+bDJ
+bGb
+bGb
+bGb
+bGb
+bGb
+bGb
+bGb
+bDJ
+bDJ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cql
+aaa
+aab
+aaa
+cql
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(228,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bDJ
+bDJ
+bGb
+bGb
+bGb
+bGb
+bGb
+bDJ
+bDJ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cql
+cql
+cql
+cql
+cql
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(229,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bDJ
+bDJ
+bGb
+bGb
+bGb
+bDJ
+bDJ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(230,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bDJ
+bDJ
+bDJ
+bDJ
+bDJ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(231,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bDJ
+bDJ
+bDJ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(232,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abL
+abL
+abL
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(233,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abl
+abl
+abl
+abl
+abl
+abL
+abL
+abL
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(234,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abl
+abl
+abl
+abl
+abL
+abL
+abL
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(235,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+acg
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abL
+abL
+abL
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(236,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abL
+abL
+abL
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(237,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abL
+abL
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(238,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(239,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+abl
+abl
+abl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abl
+abl
+abl
+abl
+abl
+abl
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+abL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(240,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(241,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(242,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(243,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(244,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(245,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(246,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ach
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(247,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(248,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(249,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(250,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(251,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(252,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(253,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(254,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(255,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm
index 3c7218915c..62311b4885 100644
--- a/_maps/map_files/Deltastation/DeltaStation2.dmm
+++ b/_maps/map_files/Deltastation/DeltaStation2.dmm
@@ -49,17 +49,16 @@
d2 = 2
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/auxstarboard)
+/area/solar/starboard/fore)
"aah" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxstarboard)
+/area/solar/starboard/fore)
"aai" = (
/obj/structure/cable{
icon_state = "0-2";
@@ -70,7 +69,7 @@
name = "Fore-Starboard Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/auxstarboard)
+/area/solar/starboard/fore)
"aaj" = (
/obj/structure/cable{
d1 = 2;
@@ -85,12 +84,11 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxstarboard)
+/area/solar/starboard/fore)
"aak" = (
/obj/structure/cable{
d2 = 8;
@@ -98,7 +96,7 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxstarboard)
+/area/solar/starboard/fore)
"aal" = (
/obj/structure/cable{
icon_state = "0-4";
@@ -106,7 +104,7 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxstarboard)
+/area/solar/starboard/fore)
"aam" = (
/obj/structure/cable{
d1 = 1;
@@ -121,12 +119,11 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxstarboard)
+/area/solar/starboard/fore)
"aan" = (
/obj/structure/cable,
/obj/machinery/power/solar{
@@ -134,12 +131,12 @@
name = "Fore-Starboard Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/auxstarboard)
+/area/solar/starboard/fore)
"aao" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable,
/turf/open/space,
-/area/solar/auxstarboard)
+/area/solar/starboard/fore)
"aap" = (
/obj/docking_port/stationary/random{
id = "pod_lavaland1";
@@ -158,7 +155,7 @@
/obj/structure/lattice/catwalk,
/obj/effect/landmark/xeno_spawn,
/turf/open/space,
-/area/solar/auxstarboard)
+/area/solar/starboard/fore)
"aas" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/pod_1)
@@ -178,19 +175,15 @@
"aaw" = (
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxstarboard)
+/area/solar/starboard/fore)
"aax" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aay" = (
/turf/closed/wall/mineral/plastitanium,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aaz" = (
/obj/structure/chair{
dir = 1
@@ -198,8 +191,7 @@
/obj/machinery/status_display{
density = 0;
layer = 3;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/computer/shuttle/pod{
pixel_x = -32;
@@ -221,8 +213,7 @@
/obj/machinery/status_display{
density = 0;
layer = 3;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/computer/shuttle/pod{
pixel_x = -32;
@@ -239,18 +230,15 @@
/area/shuttle/pod_2)
"aaB" = (
/turf/closed/wall/mineral/plastitanium,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"aaC" = (
/obj/effect/turf_decal/delivery,
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aaD" = (
/turf/closed/wall,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aaE" = (
/obj/structure/chair{
dir = 1
@@ -295,7 +283,7 @@
/area/shuttle/pod_2)
"aaG" = (
/turf/closed/wall,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"aaH" = (
/obj/structure/lattice/catwalk,
/turf/open/space,
@@ -307,17 +295,13 @@
},
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aaJ" = (
/obj/machinery/light/small{
dir = 4
@@ -326,9 +310,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aaK" = (
/obj/structure/shuttle/engine/propulsion/burst,
/turf/closed/wall/mineral/titanium,
@@ -365,23 +347,19 @@
/obj/item/stack/cable_coil,
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxstarboard)
+/area/solar/starboard/fore)
"aaP" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aaQ" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aaR" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small{
@@ -391,18 +369,14 @@
dir = 1
},
/turf/open/floor/plating,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aaS" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aaT" = (
/obj/machinery/light/small{
dir = 4
@@ -411,9 +385,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aaU" = (
/obj/machinery/door/airlock/external{
name = "External Airlock";
@@ -423,7 +395,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"aaV" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/external{
@@ -433,9 +405,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aaW" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/external{
@@ -445,9 +415,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aaX" = (
/obj/machinery/light/small{
dir = 8
@@ -460,28 +428,26 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"aaY" = (
/obj/structure/fans/tiny,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"aaZ" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"aba" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"abb" = (
/obj/structure/sign/pods{
pixel_x = -32
@@ -490,31 +456,22 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"abc" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"abd" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"abe" = (
/obj/machinery/door/airlock/external{
name = "External Airlock";
@@ -530,47 +487,42 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"abf" = (
/turf/closed/wall/r_wall,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"abg" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"abh" = (
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"abi" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/yellow/side{
dir = 9;
initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"abj" = (
/turf/open/floor/plasteel/yellow/side{
dir = 1;
icon_state = "yellow";
initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"abk" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/yellow/side{
dir = 5
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"abl" = (
/obj/structure/sign/electricshock,
/turf/closed/wall/r_wall,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"abm" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -582,7 +534,7 @@
dir = 9
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"abn" = (
/obj/machinery/power/smes,
/obj/structure/cable/white{
@@ -592,7 +544,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"abo" = (
/obj/item/device/radio/intercom{
name = "Station Intercom";
@@ -606,7 +558,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"abp" = (
/obj/structure/shuttle/engine/propulsion{
icon_state = "propulsion";
@@ -627,7 +579,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 8
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"abs" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -638,7 +590,7 @@
dir = 6
},
/turf/open/floor/plasteel/neutral,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"abt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -649,10 +601,10 @@
/turf/open/floor/plasteel/yellow/side{
dir = 4
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"abu" = (
/obj/machinery/door/airlock/engineering{
- name = "Fore Starboard Solar Access";
+ name = "Starboard Bow Solar Access";
req_access_txt = "10"
},
/obj/structure/cable/white{
@@ -665,7 +617,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"abv" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -681,7 +633,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"abw" = (
/obj/machinery/power/terminal{
icon_state = "term";
@@ -693,13 +645,12 @@
},
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"abx" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
@@ -710,13 +661,12 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"aby" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/door/airlock/external{
name = "External Solar Access";
@@ -726,29 +676,27 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"abz" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/fans/tiny,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"abA" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/open/space,
-/area/solar/auxstarboard)
+/area/solar/starboard/fore)
"abB" = (
/obj/machinery/status_display{
pixel_x = -32
@@ -764,9 +712,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"abC" = (
/obj/machinery/status_display{
pixel_x = 32
@@ -788,9 +734,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"abD" = (
/obj/machinery/status_display{
pixel_x = -32
@@ -802,9 +746,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"abE" = (
/obj/machinery/status_display{
pixel_x = 32
@@ -822,9 +764,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"abF" = (
/obj/structure/window/reinforced,
/obj/structure/shuttle/engine/heater{
@@ -852,9 +792,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"abH" = (
/obj/machinery/status_display{
pixel_x = 32
@@ -867,9 +805,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"abI" = (
/obj/structure/table/reinforced,
/obj/item/weapon/clipboard,
@@ -885,52 +821,51 @@
/turf/open/floor/plasteel/yellow/side{
dir = 8
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"abJ" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"abK" = (
/turf/open/floor/plasteel/yellow/side{
dir = 4
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"abL" = (
/obj/structure/sign/directions/engineering{
desc = "A sign that shows there are doors here. There are doors everywhere!";
icon_state = "doors";
- name = "WARNING: EXTERNAL AIRLOCK";
- pixel_x = 0
+ name = "WARNING: EXTERNAL AIRLOCK"
},
/turf/closed/wall/r_wall,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"abM" = (
/obj/structure/cable/white,
/obj/machinery/power/apc{
cell_type = 10000;
dir = 2;
- name = "Fore Starboard Solar APC";
+ name = "Starboard Bow Solar APC";
pixel_y = -26
},
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"abN" = (
/obj/structure/chair/office/dark{
dir = 4
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/aft)
"abO" = (
/obj/machinery/power/solar_control{
id = "forestarboard";
- name = "Fore Starboard Solar Control";
+ name = "Starboard Bow Solar Control";
track = 0
},
/obj/structure/cable,
@@ -938,46 +873,37 @@
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"abP" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/sign/directions/engineering{
desc = "A sign that shows there are doors here. There are doors everywhere!";
icon_state = "doors";
- name = "WARNING: EXTERNAL AIRLOCK";
- pixel_x = 0
+ name = "WARNING: EXTERNAL AIRLOCK"
},
/turf/open/floor/plating,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"abQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"abR" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/sign/vacuum,
/turf/open/floor/plating,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"abS" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"abT" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -987,9 +913,7 @@
name = "WARNING: EXTERNAL AIRLOCK"
},
/turf/open/floor/plating,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"abU" = (
/turf/closed/wall/mineral/titanium/nodiagonal,
/area/shuttle/arrival)
@@ -1010,7 +934,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 8
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"abY" = (
/obj/item/clothing/suit/hazardvest{
desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";
@@ -1128,24 +1052,24 @@
/turf/open/floor/plasteel/yellow/side{
dir = 10
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"ace" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/yellow/side,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"acf" = (
/turf/open/floor/plasteel/yellow/side{
dir = 6
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"acg" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"ach" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/external{
@@ -1155,17 +1079,13 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aci" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/fans/tiny,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"acj" = (
/obj/machinery/door/airlock/external{
name = "External Docking Port"
@@ -1174,16 +1094,12 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"ack" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"acl" = (
/obj/machinery/door/airlock/shuttle{
name = "Arrival Shuttle Airlock";
@@ -1222,7 +1138,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"acq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
@@ -1232,28 +1148,21 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"acr" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"acs" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
/obj/machinery/status_display{
pixel_x = -32
},
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
/turf/open/floor/plasteel/neutral/side{
dir = 8;
heat_capacity = 1e+006
@@ -1266,15 +1175,12 @@
/turf/open/floor/plasteel,
/area/shuttle/arrival)
"acu" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
/obj/machinery/ai_status_display{
pixel_x = 32
},
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
@@ -1282,24 +1188,20 @@
"acv" = (
/obj/machinery/status_display,
/turf/closed/wall,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"acw" = (
/obj/machinery/requests_console{
department = "Construction";
departmentType = 0;
name = "Construction RC";
- pixel_x = 0;
pixel_y = 32
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/yellow/side{
dir = 9;
initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"acx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/white{
@@ -1310,20 +1212,18 @@
icon_state = "yellow";
initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"acy" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/device/radio/intercom{
name = "Station Intercom";
pixel_y = 26
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/yellow/side{
dir = 5
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"acz" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
@@ -1347,58 +1247,45 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"acD" = (
/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
/obj/machinery/light{
dir = 1
},
/obj/effect/turf_decal/delivery,
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"acE" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
/obj/machinery/light{
dir = 1
},
/obj/effect/turf_decal/delivery,
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"acF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"acG" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
/obj/machinery/light{
dir = 1
},
/obj/effect/turf_decal/delivery,
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"acH" = (
/obj/structure/chair{
dir = 4
@@ -1428,9 +1315,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"acL" = (
/obj/machinery/door/poddoor/shutters{
id = "construction";
@@ -1440,7 +1325,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"acM" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -1450,7 +1335,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 8
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"acN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
@@ -1460,7 +1345,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/neutral,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"acO" = (
/obj/structure/table/reinforced,
/obj/item/stack/packageWrap,
@@ -1473,7 +1358,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 4
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"acP" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -1497,9 +1382,7 @@
/obj/structure/closet/emcloset,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"acU" = (
/obj/structure/chair{
dir = 8
@@ -1508,27 +1391,21 @@
/obj/effect/landmark/start/assistant,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"acV" = (
/obj/structure/chair{
dir = 4
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"acW" = (
/obj/structure/chair{
dir = 8
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"acX" = (
/turf/closed/wall/mineral/titanium/nodiagonal,
/area/shuttle/arrival)
@@ -1536,9 +1413,7 @@
/obj/machinery/vending/cola/random,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"acZ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -1548,17 +1423,13 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"ada" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"adb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -1567,9 +1438,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"adc" = (
/obj/machinery/door/poddoor/shutters{
id = "construction";
@@ -1582,13 +1451,13 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"add" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plasteel/yellow/side{
dir = 8
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"ade" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -1598,7 +1467,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/neutral,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"adf" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/table/reinforced,
@@ -1608,7 +1477,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 4
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"adg" = (
/obj/structure/chair{
dir = 4
@@ -1616,9 +1485,7 @@
/obj/effect/landmark/start/assistant,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"adh" = (
/obj/structure/flora/ausbushes/grassybush,
/obj/structure/flora/ausbushes/lavendergrass,
@@ -1631,9 +1498,7 @@
/obj/item/device/radio/beacon,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"adj" = (
/obj/machinery/button/door{
id = "construction";
@@ -1653,20 +1518,20 @@
/turf/open/floor/plasteel/yellow/side{
dir = 8
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"adk" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plasteel/neutral,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"adl" = (
/obj/machinery/computer/camera_advanced/base_construction,
/turf/open/floor/plasteel/yellow/side{
dir = 4
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"adm" = (
/turf/open/space,
/obj/machinery/porta_turret/syndicate{
@@ -1704,35 +1569,24 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"adr" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
/obj/effect/turf_decal/delivery,
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"ads" = (
+/obj/effect/turf_decal/delivery,
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
},
-/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"adt" = (
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- pixel_x = 0;
- pixel_y = 0;
req_access_txt = "0";
use_power = 0
},
@@ -1755,7 +1609,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 8
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"adv" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -1767,7 +1621,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/neutral,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"adw" = (
/obj/machinery/door/airlock/external{
name = "Auxiliary Base Airlock"
@@ -1776,7 +1630,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"adx" = (
/obj/machinery/light{
icon_state = "tube1";
@@ -1793,9 +1647,7 @@
width = 9
},
/obj/machinery/bluespace_beacon,
-/obj/docking_port/mobile/auxillary_base{
- pixel_y = 0
- },
+/obj/docking_port/mobile/auxillary_base,
/obj/machinery/computer/auxillary_base,
/turf/closed/wall,
/area/shuttle/auxillary_base)
@@ -1871,33 +1723,25 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"adI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"adJ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"adK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -1907,19 +1751,14 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"adL" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall/mineral/titanium,
/area/shuttle/arrival)
"adM" = (
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
+ icon_state = "plant-21"
},
/turf/open/floor/plasteel/neutral/side{
dir = 8;
@@ -1942,10 +1781,7 @@
/area/shuttle/arrival)
"adP" = (
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
+ icon_state = "plant-21"
},
/turf/open/floor/plasteel/neutral/side{
dir = 4
@@ -1956,22 +1792,19 @@
/turf/open/floor/plasteel/yellow/side{
dir = 8
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"adR" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plasteel/neutral,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"adS" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/yellow/side{
dir = 4
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"adT" = (
/obj/structure/table/reinforced,
/obj/machinery/status_display{
@@ -2037,18 +1870,14 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aea" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aeb" = (
/obj/effect/landmark{
name = "Observer-Start"
@@ -2064,9 +1893,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aed" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering{
@@ -2081,7 +1908,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"aee" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -2090,18 +1917,17 @@
/turf/open/floor/plasteel/yellow/side{
dir = 8
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"aef" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"aeg" = (
/obj/structure/table/reinforced,
/obj/item/stack/sheet/metal{
@@ -2114,7 +1940,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 4
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"aeh" = (
/turf/open/floor/plasteel/vault,
/area/shuttle/syndicate)
@@ -2164,7 +1990,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"aep" = (
/obj/structure/table/reinforced,
/obj/item/stack/sheet/plasteel{
@@ -2177,7 +2003,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 4
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"aeq" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -2223,9 +2049,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aex" = (
/obj/machinery/status_display,
/turf/closed/wall/mineral/titanium,
@@ -2247,16 +2071,13 @@
"aeA" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 5
@@ -2265,7 +2086,7 @@
dir = 10;
initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"aeB" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -2275,11 +2096,10 @@
dir = 10
},
/turf/open/floor/plasteel/yellow/side,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"aeC" = (
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/structure/rack,
@@ -2292,7 +2112,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 6
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"aeD" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
@@ -2353,9 +2173,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aeK" = (
/obj/machinery/status_display{
pixel_x = 32
@@ -2374,9 +2192,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aeL" = (
/obj/machinery/status_display{
pixel_x = -32
@@ -2389,9 +2205,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aeM" = (
/obj/machinery/status_display{
pixel_x = 32
@@ -2410,9 +2224,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aeN" = (
/obj/machinery/light/small{
dir = 1
@@ -2453,9 +2265,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aeR" = (
/obj/machinery/status_display{
pixel_x = 32
@@ -2469,9 +2279,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aeS" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -2487,7 +2295,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"aeT" = (
/obj/structure/chair{
dir = 4;
@@ -2516,12 +2324,12 @@
/area/shuttle/arrival)
"aeX" = (
/turf/closed/wall,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aeY" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aeZ" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -2529,14 +2337,14 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afa" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afb" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -2546,27 +2354,27 @@
dir = 5;
initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afc" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/barricade/wooden,
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afd" = (
/obj/machinery/vending/snack/random,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plasteel/vault{
dir = 4
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afe" = (
/obj/machinery/vending/cola/random,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/vault{
dir = 4
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afg" = (
/obj/structure/chair/stool,
/obj/machinery/light/small{
@@ -2576,7 +2384,7 @@
pixel_y = 23
},
/turf/open/floor/plasteel/vault,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afh" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
@@ -2584,22 +2392,17 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plasteel/vault,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afi" = (
/obj/structure/chair/stool,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/vault,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afj" = (
/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/vault,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afk" = (
/obj/machinery/porta_turret/syndicate{
dir = 4
@@ -2613,9 +2416,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"afm" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -2626,28 +2427,28 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afn" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afo" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/blobstart,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afp" = (
/mob/living/simple_animal/cockroach,
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afq" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afr" = (
/obj/structure/door_assembly/door_assembly_mhatch,
/obj/effect/decal/cleanable/dirt,
@@ -2655,19 +2456,19 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afs" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/redyellow,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aft" = (
/turf/open/floor/plasteel/redyellow,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afu" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afv" = (
/obj/machinery/suit_storage_unit/syndicate,
/turf/open/floor/plasteel/podhatch{
@@ -2686,42 +2487,32 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"afy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"afz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"afA" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"afB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"afC" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small,
@@ -2729,7 +2520,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afD" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -2740,7 +2531,7 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afE" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -2751,7 +2542,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afF" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -2769,27 +2560,27 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/redyellow,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afH" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/redyellow,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afI" = (
/obj/effect/landmark/blobstart,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/redyellow,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -2797,7 +2588,7 @@
on = 1
},
/turf/open/floor/plasteel/redyellow,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afK" = (
/obj/machinery/suit_storage_unit/syndicate,
/turf/open/floor/plasteel/podhatch{
@@ -2820,7 +2611,6 @@
id = "smindicate";
name = "external door control";
pixel_x = -26;
- pixel_y = 0;
req_access_txt = "150"
},
/obj/docking_port/mobile{
@@ -2855,8 +2645,7 @@
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0
+ name = "EXTERNAL AIRLOCK"
},
/turf/closed/wall/mineral/plastitanium,
/area/shuttle/syndicate)
@@ -2867,9 +2656,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"afP" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -2877,9 +2664,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"afQ" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/cleanable/dirt,
@@ -2888,15 +2673,11 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"afR" = (
/obj/structure/sign/pods,
/turf/closed/wall,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"afS" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/cleanable/dirt,
@@ -2905,15 +2686,13 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"afT" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afU" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -2921,12 +2700,12 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afV" = (
/obj/structure/table_frame/wood,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/redyellow,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afW" = (
/obj/item/chair/stool/bar{
pixel_y = -8
@@ -2934,26 +2713,26 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/vomit/old,
/turf/open/floor/plasteel/redyellow,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afX" = (
/obj/structure/chair/stool/bar,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/redyellow,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afY" = (
/obj/machinery/light/small,
/turf/open/floor/plasteel/redyellow,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"afZ" = (
/obj/structure/chair/stool/bar,
/turf/open/floor/plasteel/redyellow,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aga" = (
/obj/structure/table/wood,
/obj/effect/decal/cleanable/dirt,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plasteel/redyellow,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"agb" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -3001,26 +2780,20 @@
/obj/item/weapon/storage/briefcase,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agi" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/arrival{
icon_state = "arrival";
dir = 9
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/arrival{
dir = 1
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agk" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -3029,9 +2802,7 @@
/turf/open/floor/plasteel/arrival{
dir = 1
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -3039,18 +2810,14 @@
/turf/open/floor/plasteel/arrival{
dir = 1
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/obj/item/device/radio/intercom{
name = "Station Intercom";
@@ -3059,9 +2826,7 @@
/turf/open/floor/plasteel/arrival{
dir = 1
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agn" = (
/obj/machinery/light{
dir = 1
@@ -3075,9 +2840,7 @@
/turf/open/floor/plasteel/arrival{
dir = 1
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"ago" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -3086,9 +2849,7 @@
/turf/open/floor/plasteel/arrival{
dir = 1
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agp" = (
/obj/machinery/light{
dir = 1
@@ -3099,19 +2860,15 @@
/turf/open/floor/plasteel/arrival{
dir = 1
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agq" = (
/obj/structure/cable/white{
icon_state = "0-4"
},
/obj/machinery/power/apc{
- cell_type = 5000;
dir = 1;
- name = "Arrivals APC";
- pixel_x = 0;
- pixel_y = 25
+ name = "Arrivals Hallway APC";
+ pixel_y = 24
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -3124,9 +2881,7 @@
/turf/open/floor/plasteel/arrival{
dir = 1
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agr" = (
/obj/structure/cable/white{
icon_state = "2-8"
@@ -3135,9 +2890,7 @@
/turf/open/floor/plasteel/arrival{
dir = 1
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"ags" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -3146,25 +2899,19 @@
/turf/open/floor/plasteel/arrival{
dir = 1
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/turf/open/floor/plasteel/arrival{
dir = 1
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agu" = (
/obj/machinery/light{
dir = 1
@@ -3179,9 +2926,7 @@
/turf/open/floor/plasteel/arrival{
dir = 1
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agv" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -3190,17 +2935,13 @@
/turf/open/floor/plasteel/arrival{
dir = 1
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agw" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/arrival{
dir = 1
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
@@ -3209,36 +2950,27 @@
/turf/open/floor/plasteel/arrival{
dir = 1
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agy" = (
/turf/open/floor/plasteel/arrival{
icon_state = "arrival";
dir = 5
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agz" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
/obj/machinery/light/small{
dir = 4
},
/obj/effect/turf_decal/delivery,
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"agB" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -3248,7 +2980,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 5
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"agC" = (
/obj/structure/table/reinforced,
/obj/effect/decal/cleanable/dirt,
@@ -3259,17 +2991,17 @@
/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"agD" = (
/obj/structure/table/reinforced,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"agE" = (
/obj/structure/sign/nosmoking_2,
/turf/closed/wall,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"agF" = (
/obj/structure/table/reinforced,
/obj/item/weapon/reagent_containers/food/condiment/saltshaker{
@@ -3281,7 +3013,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"agG" = (
/turf/open/floor/plasteel/vault{
dir = 8
@@ -3304,62 +3036,46 @@
/area/shuttle/syndicate)
"agJ" = (
/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
/obj/effect/turf_decal/delivery,
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agK" = (
/turf/open/floor/plasteel/arrival{
icon_state = "arrival";
dir = 10
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
dir = 5
},
/turf/open/floor/plasteel/arrival,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/arrival,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/arrival,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agO" = (
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/arrival,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -3370,9 +3086,7 @@
name = "arrivals camera"
},
/turf/open/floor/plasteel/arrival,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -3380,9 +3094,7 @@
dir = 1
},
/turf/open/floor/plasteel/arrival,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -3392,9 +3104,7 @@
on = 1
},
/turf/open/floor/plasteel/arrival,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agS" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -3404,16 +3114,12 @@
dir = 4
},
/turf/open/floor/plasteel/arrival,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agT" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/arrival,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agU" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -3423,50 +3129,38 @@
icon_state = "arrivalcorner";
dir = 8
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agW" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agY" = (
/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"agZ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
dir = 1
},
/turf/open/floor/plasteel/arrival/corner,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aha" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -3477,9 +3171,7 @@
name = "arrivals camera"
},
/turf/open/floor/plasteel/arrival,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"ahb" = (
/obj/structure/extinguisher_cabinet{
pixel_y = -32
@@ -3492,13 +3184,10 @@
on = 1
},
/turf/open/floor/plasteel/arrival,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"ahc" = (
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -3506,17 +3195,13 @@
dir = 9
},
/turf/open/floor/plasteel/arrival,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"ahd" = (
/turf/open/floor/plasteel/arrival{
icon_state = "arrival";
dir = 6
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"ahe" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/table,
@@ -3526,9 +3211,7 @@
/obj/item/weapon/storage/toolbox/emergency,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"ahf" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -3536,17 +3219,17 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"ahg" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"ahh" = (
/turf/open/floor/plasteel/red/side,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"ahi" = (
/obj/machinery/light/small{
dir = 1
@@ -3557,10 +3240,10 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"ahj" = (
/turf/open/floor/plasteel/white/side,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"ahk" = (
/obj/structure/sink/kitchen{
desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
@@ -3570,7 +3253,7 @@
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/red/side,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"ahl" = (
/obj/structure/closet/crate/freezer/blood,
/obj/effect/decal/cleanable/dirt,
@@ -3578,7 +3261,7 @@
/obj/effect/decal/cleanable/cobweb,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"ahm" = (
/obj/structure/sink/kitchen{
desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
@@ -3587,7 +3270,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/white/side,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"ahn" = (
/obj/structure/table,
/obj/item/clothing/gloves/color/latex,
@@ -3596,7 +3279,7 @@
/turf/open/floor/plasteel/red/corner{
dir = 8
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aho" = (
/obj/machinery/suit_storage_unit/syndicate,
/turf/open/floor/plasteel/podhatch{
@@ -3644,9 +3327,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"ahu" = (
/turf/closed/wall,
/area/security/vacantoffice)
@@ -3687,18 +3368,14 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"ahA" = (
/turf/closed/wall,
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"ahB" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall,
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"ahC" = (
/obj/structure/cable/white{
d2 = 2;
@@ -3707,83 +3384,59 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"ahD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/arrival{
icon_state = "arrival";
dir = 8
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"ahE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"ahF" = (
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
+ icon_state = "plant-21"
},
/turf/open/floor/plasteel/neutral/corner,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"ahG" = (
/obj/machinery/vending/cigarette,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"ahH" = (
/obj/machinery/vending/clothing,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"ahI" = (
/obj/machinery/vending/coffee,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"ahJ" = (
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
+ icon_state = "plant-21"
},
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"ahK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/arrival{
icon_state = "arrival";
dir = 4
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"ahL" = (
/turf/closed/wall,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"ahM" = (
/obj/structure/cable/white{
d2 = 2;
@@ -3792,11 +3445,11 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"ahN" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"ahO" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -3806,7 +3459,7 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"ahP" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -3818,7 +3471,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"ahQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/maintenance_hatch{
@@ -3834,7 +3487,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"ahR" = (
/obj/effect/decal/cleanable/blood/old,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -3842,7 +3495,7 @@
dir = 4
},
/turf/open/floor/plasteel/red,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"ahS" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -3850,18 +3503,18 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"ahT" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/red,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"ahU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"ahV" = (
/obj/machinery/newscaster{
pixel_x = 32;
@@ -3873,7 +3526,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"ahW" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -3889,12 +3542,12 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"ahX" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"ahY" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -3902,7 +3555,7 @@
on = 1
},
/turf/open/floor/plasteel/red,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"ahZ" = (
/obj/structure/table/optable,
/obj/effect/decal/cleanable/blood/old,
@@ -3911,28 +3564,28 @@
icon_state = "whitehall";
dir = 8
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aia" = (
/obj/machinery/ai_status_display,
/turf/closed/wall/mineral/plastitanium,
/area/shuttle/syndicate)
"aib" = (
/turf/closed/wall,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aic" = (
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aid" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aie" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/emergency,
/obj/item/weapon/tank/internals/oxygen,
/obj/item/weapon/wrench,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aif" = (
/obj/structure/table/wood,
/obj/item/weapon/folder,
@@ -3970,10 +3623,7 @@
/turf/open/floor/plasteel/grimy,
/area/security/vacantoffice)
"aik" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/firealarm{
pixel_y = 24
},
@@ -4009,16 +3659,14 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aiq" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/box/ids,
/turf/open/floor/plasteel/blue/side{
dir = 9
},
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"air" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -4027,9 +3675,7 @@
/turf/open/floor/plasteel/blue/side{
dir = 1
},
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"ais" = (
/obj/machinery/firealarm{
pixel_y = 26
@@ -4038,31 +3684,20 @@
pixel_x = 26;
pixel_y = 26
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/blue/side{
icon_state = "blue";
dir = 5
},
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"ait" = (
/obj/machinery/ai_status_display,
/turf/closed/wall,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aiu" = (
/obj/machinery/status_display,
/turf/closed/wall,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aiv" = (
/obj/structure/filingcabinet/security,
/obj/machinery/firealarm{
@@ -4071,7 +3706,7 @@
/turf/open/floor/plasteel/red/side{
dir = 9
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"aiw" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -4082,7 +3717,7 @@
/turf/open/floor/plasteel/red/side{
dir = 1
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"aix" = (
/obj/structure/table/reinforced,
/obj/item/weapon/book/manual/wiki/security_space_law,
@@ -4093,14 +3728,14 @@
/turf/open/floor/plasteel/red/side{
dir = 5
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"aiy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aiz" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -4111,7 +3746,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aiA" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -4122,7 +3757,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aiB" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -4132,7 +3767,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aiC" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -4142,7 +3777,7 @@
dir = 9
},
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aiD" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -4150,7 +3785,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aiE" = (
/obj/structure/table,
/obj/effect/decal/cleanable/dirt,
@@ -4161,17 +3796,17 @@
/obj/item/weapon/reagent_containers/blood/random,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aiF" = (
/obj/structure/closet/secure_closet/freezer/fridge,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aiG" = (
/obj/structure/closet/secure_closet/freezer/kitchen,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aiH" = (
/obj/structure/rack,
/obj/effect/decal/cleanable/dirt,
@@ -4180,7 +3815,7 @@
/obj/item/stack/packageWrap,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aiI" = (
/obj/structure/table,
/obj/effect/decal/cleanable/dirt,
@@ -4188,7 +3823,7 @@
/obj/item/clothing/head/chefhat,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aiJ" = (
/obj/structure/table,
/obj/machinery/microwave{
@@ -4198,22 +3833,20 @@
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aiK" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aiL" = (
/obj/structure/table_frame,
/obj/effect/decal/cleanable/dirt,
@@ -4221,7 +3854,7 @@
/turf/open/floor/plasteel/white/side{
dir = 1
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aiM" = (
/obj/structure/table,
/obj/effect/decal/cleanable/dirt,
@@ -4230,7 +3863,7 @@
/turf/open/floor/plasteel/red/corner{
dir = 1
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aiN" = (
/obj/machinery/sleeper/syndie{
dir = 4
@@ -4241,8 +3874,7 @@
/area/shuttle/syndicate)
"aiO" = (
/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{
- pixel_x = 6;
- pixel_y = 0
+ pixel_x = 6
},
/obj/item/weapon/reagent_containers/glass/bottle/charcoal{
pixel_x = -3
@@ -4353,12 +3985,10 @@
d2 = 2
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/auxport)
+/area/solar/port/fore)
"aiW" = (
/turf/closed/wall/r_wall,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aiX" = (
/turf/closed/wall,
/area/crew_quarters/electronic_marketing_den)
@@ -4379,28 +4009,27 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aja" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"ajb" = (
/obj/structure/closet/firecloset,
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"ajd" = (
/turf/open/floor/plasteel/grimy,
/area/security/vacantoffice)
"aje" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/grimy,
/area/security/vacantoffice)
@@ -4450,7 +4079,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"ajm" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -4458,20 +4087,16 @@
/obj/machinery/power/apc{
dir = 8;
name = "Customs Desk APC";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/blue/side{
dir = 8
},
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"ajn" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -4485,9 +4110,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"ajo" = (
/obj/machinery/light_switch{
pixel_x = 26;
@@ -4500,9 +4123,7 @@
icon_state = "blue";
dir = 4
},
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"ajp" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_command{
@@ -4517,9 +4138,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"ajq" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -4529,9 +4148,7 @@
icon_state = "bluecorner";
dir = 8
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"ajr" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
@@ -4541,46 +4158,32 @@
name = "arrivals camera"
},
/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"ajs" = (
/obj/structure/chair/comfy/brown,
/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"ajt" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-18"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aju" = (
/obj/structure/chair/comfy/brown,
/obj/effect/landmark/start/assistant,
/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"ajv" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/fancy/donut_box,
/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"ajw" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
dir = 8
},
/turf/open/floor/plasteel/red/corner,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"ajx" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_security{
@@ -4594,7 +4197,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"ajy" = (
/obj/machinery/light_switch{
pixel_x = -26;
@@ -4606,7 +4209,7 @@
/turf/open/floor/plasteel/red/side{
dir = 8
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"ajz" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -4620,7 +4223,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"ajA" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -4628,35 +4231,33 @@
/obj/machinery/power/apc{
dir = 4;
name = "Security Checkpoint APC";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/red/side{
dir = 4
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"ajB" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"ajC" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"ajD" = (
/obj/structure/girder,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"ajE" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance{
@@ -4664,14 +4265,14 @@
name = "2maintenance loot spawner"
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"ajF" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/rack,
/obj/item/weapon/crowbar/red,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"ajG" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/crate{
@@ -4683,7 +4284,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 6
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"ajI" = (
/obj/structure/bed/roller,
/obj/machinery/iv_drip,
@@ -4695,12 +4296,11 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxport)
+/area/solar/port/fore)
"ajK" = (
/obj/structure/reflector/single{
anchored = 1
@@ -4708,16 +4308,12 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"ajL" = (
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"ajM" = (
/obj/structure/reflector/box{
anchored = 1;
@@ -4727,9 +4323,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"ajN" = (
/obj/machinery/light/small{
dir = 1
@@ -4737,9 +4331,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"ajO" = (
/obj/machinery/camera{
c_tag = "Supermatter Engine - Fore";
@@ -4749,9 +4341,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"ajP" = (
/obj/structure/reflector/single{
anchored = 1;
@@ -4761,16 +4351,9 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"ajR" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/vault{
dir = 5
},
@@ -4793,9 +4376,7 @@
/turf/open/floor/wood,
/area/crew_quarters/electronic_marketing_den)
"ajU" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/wood,
/area/crew_quarters/electronic_marketing_den)
"ajV" = (
@@ -4820,10 +4401,7 @@
/area/crew_quarters/electronic_marketing_den)
"ajY" = (
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
+ icon_state = "plant-21"
},
/turf/open/floor/wood,
/area/crew_quarters/electronic_marketing_den)
@@ -4834,9 +4412,7 @@
/obj/machinery/light/small{
dir = 1
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/wood,
/area/crew_quarters/electronic_marketing_den)
"aka" = (
@@ -4853,7 +4429,7 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"akc" = (
/obj/structure/cable/white{
icon_state = "2-8"
@@ -4863,7 +4439,7 @@
dir = 8
},
/turf/open/floor/plasteel/neutral,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"akd" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
icon_state = "connector_map";
@@ -4871,7 +4447,7 @@
},
/obj/machinery/portable_atmospherics/canister/air,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"ake" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -26
@@ -4920,7 +4496,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"akn" = (
/obj/machinery/computer/crew,
/obj/machinery/ai_status_display{
@@ -4929,17 +4505,13 @@
/turf/open/floor/plasteel/blue/side{
dir = 10
},
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"ako" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plasteel/neutral,
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"akp" = (
/obj/structure/table/reinforced,
/obj/item/stack/packageWrap,
@@ -4948,9 +4520,7 @@
icon_state = "blue";
dir = 4
},
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"akq" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -4959,50 +4529,37 @@
icon_state = "0-2"
},
/turf/open/floor/plating,
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"akr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/blue/corner{
icon_state = "bluecorner";
dir = 8
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aks" = (
/obj/structure/chair/comfy/brown{
icon_state = "comfychair";
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"akt" = (
/turf/open/floor/carpet,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aku" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/carpet,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"akv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/carpet,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"akw" = (
/obj/structure/chair/comfy/brown{
icon_state = "comfychair";
@@ -5012,27 +4569,21 @@
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"akx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aky" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
dir = 4
},
/turf/open/floor/plasteel/red/corner,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"akz" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -5041,7 +4592,7 @@
icon_state = "0-2"
},
/turf/open/floor/plating,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"akA" = (
/obj/structure/table/reinforced,
/obj/item/weapon/paper_bin,
@@ -5049,13 +4600,13 @@
/turf/open/floor/plasteel/red/side{
dir = 8
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"akB" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plasteel/neutral,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"akC" = (
/obj/machinery/computer/prisoner,
/obj/machinery/status_display{
@@ -5069,63 +4620,56 @@
/turf/open/floor/plasteel/red/side{
dir = 6
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"akD" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"akE" = (
/obj/machinery/computer/arcade,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"akF" = (
/obj/structure/cable/white{
icon_state = "0-2"
},
/obj/machinery/power/apc{
- cell_type = 5000;
dir = 1;
- name = "Fore Starboard Maintenance APC";
- pixel_x = 0;
- pixel_y = 25
+ name = "Starboard Bow Maintenance APC";
+ pixel_y = 24
},
/obj/effect/decal/cleanable/dirt,
/obj/structure/chair/stool/bar,
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"akG" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"akH" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
/turf/open/floor/plasteel/redyellow,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"akI" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/redyellow,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"akJ" = (
/obj/structure/table/wood,
/obj/item/clothing/suit/syndicatefake,
/obj/item/clothing/head/syndicatefake,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/redyellow,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"akK" = (
/turf/open/floor/plasteel/podhatch{
dir = 9
@@ -5160,9 +4704,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"akQ" = (
/obj/structure/reflector/double{
anchored = 1
@@ -5170,9 +4712,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"akR" = (
/obj/structure/reflector/double{
anchored = 1;
@@ -5182,9 +4722,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"akS" = (
/turf/open/floor/plasteel/vault{
dir = 5
@@ -5250,7 +4788,7 @@
dir = 8
},
/turf/open/floor/plasteel/neutral,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"ald" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
icon_state = "connector_map";
@@ -5260,13 +4798,11 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"ale" = (
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/open/floor/plasteel/grimy,
/area/security/vacantoffice)
@@ -5342,7 +4878,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"alm" = (
/obj/machinery/computer/card,
/obj/machinery/light{
@@ -5350,8 +4886,7 @@
},
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/machinery/camera{
c_tag = "Arrivals Customs";
@@ -5359,9 +4894,7 @@
name = "customs camera"
},
/turf/open/floor/plasteel/blue,
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"aln" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -5373,9 +4906,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"alo" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -5387,9 +4918,7 @@
icon_state = "blue";
dir = 4
},
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"alp" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -5407,35 +4936,25 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"alq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"alr" = (
/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"als" = (
/obj/machinery/holopad,
/turf/open/floor/carpet,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"alt" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"alu" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -5448,7 +4967,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"alv" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -5465,7 +4984,7 @@
/turf/open/floor/plasteel/red/side{
dir = 8
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"alw" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -5477,7 +4996,7 @@
dir = 8
},
/turf/open/floor/plasteel/neutral,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"alx" = (
/obj/machinery/computer/security,
/obj/machinery/light{
@@ -5486,17 +5005,16 @@
},
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/turf/open/floor/plasteel/red,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"aly" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"alz" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -5504,7 +5022,7 @@
},
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"alA" = (
/obj/structure/table/wood,
/obj/item/toy/carpplushie,
@@ -5512,34 +5030,34 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"alB" = (
/obj/machinery/computer/arcade,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"alC" = (
/obj/machinery/computer/arcade,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"alD" = (
/obj/structure/table/wood,
/obj/item/weapon/coin/antagtoken,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"alE" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/structure/chair/stool/bar,
/turf/open/floor/plasteel/black,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"alF" = (
/obj/structure/table/wood,
/obj/item/weapon/clipboard,
@@ -5548,20 +5066,20 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/redyellow,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"alG" = (
/obj/structure/chair/office/dark{
dir = 8
},
/turf/open/floor/plasteel/redyellow,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"alH" = (
/obj/structure/table/wood,
/obj/item/weapon/clipboard,
/obj/item/toy/syndicateballoon,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/redyellow,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"alI" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -5606,7 +5124,7 @@
name = "Fore-Port Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/auxport)
+/area/solar/port/fore)
"alP" = (
/obj/structure/reflector/double{
anchored = 1;
@@ -5616,9 +5134,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"alQ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -5627,26 +5143,18 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"alR" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"alS" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/black,
/area/crew_quarters/electronic_marketing_den)
"alT" = (
@@ -5725,7 +5233,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"amd" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -5734,11 +5242,11 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"ame" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"amf" = (
/obj/structure/chair/office/dark,
/turf/open/floor/plasteel/grimy,
@@ -5773,7 +5281,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"amk" = (
/obj/machinery/computer/med_data,
/obj/machinery/status_display{
@@ -5782,9 +5290,7 @@
/turf/open/floor/plasteel/blue/side{
dir = 9
},
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"aml" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -5794,9 +5300,7 @@
on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"amm" = (
/obj/structure/table/reinforced,
/obj/item/weapon/paper_bin,
@@ -5805,33 +5309,25 @@
icon_state = "blue";
dir = 4
},
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"amn" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable/white,
/turf/open/floor/plating,
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"amo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"amp" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
dir = 8
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"amq" = (
/obj/structure/chair/comfy/brown{
icon_state = "comfychair";
@@ -5841,48 +5337,40 @@
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"amr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/carpet,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"ams" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
on = 1
},
/turf/open/floor/carpet,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"amt" = (
/obj/structure/chair/comfy/brown{
icon_state = "comfychair";
dir = 8
},
/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"amu" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable/white,
/turf/open/floor/plating,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"amv" = (
/obj/structure/table/reinforced,
/obj/machinery/recharger,
/turf/open/floor/plasteel/red/side{
dir = 8
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"amw" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -5892,7 +5380,7 @@
on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"amx" = (
/obj/machinery/computer/secure_data,
/obj/machinery/ai_status_display{
@@ -5901,7 +5389,7 @@
/turf/open/floor/plasteel/red/side{
dir = 5
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"amy" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -5910,37 +5398,34 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"amz" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"amA" = (
/obj/structure/chair/stool/bar,
/turf/open/floor/plasteel/black,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"amB" = (
/obj/structure/chair/stool/bar,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/black,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"amC" = (
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"amD" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plasteel/black,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"amE" = (
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"amF" = (
/obj/structure/table/wood,
/obj/effect/decal/cleanable/dirt,
@@ -5960,13 +5445,13 @@
pixel_y = 6
},
/turf/open/floor/plasteel/redyellow,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"amG" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/blue,
/obj/item/clothing/head/collectable/HoP,
/turf/open/floor/plasteel/redyellow,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"amH" = (
/obj/effect/decal/cleanable/cobweb,
/obj/effect/decal/cleanable/dirt,
@@ -6162,12 +5647,11 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxport)
+/area/solar/port/fore)
"amX" = (
/obj/structure/cable{
d2 = 8;
@@ -6175,7 +5659,7 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxport)
+/area/solar/port/fore)
"amY" = (
/obj/structure/cable{
icon_state = "0-4";
@@ -6183,7 +5667,7 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxport)
+/area/solar/port/fore)
"amZ" = (
/obj/structure/cable{
d1 = 1;
@@ -6198,20 +5682,17 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxport)
+/area/solar/port/fore)
"ana" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"anb" = (
/obj/structure/reflector/box{
anchored = 1
@@ -6219,17 +5700,13 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"anc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"and" = (
/obj/structure/table/wood,
/obj/item/weapon/circuitboard/computer/arcade,
@@ -6307,14 +5784,14 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"ann" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plasteel/neutral/side{
dir = 6;
initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"ano" = (
/obj/structure/table/wood,
/obj/item/weapon/phone{
@@ -6323,7 +5800,6 @@
pixel_y = 3
},
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -32
},
/turf/open/floor/plasteel/grimy,
@@ -6348,9 +5824,7 @@
/turf/open/floor/plasteel/grimy,
/area/security/vacantoffice)
"ans" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/wood,
/area/security/vacantoffice)
"ant" = (
@@ -6365,8 +5839,7 @@
/area/security/vacantoffice)
"anu" = (
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
+ icon_state = "plant-21"
},
/turf/open/floor/wood,
/area/security/vacantoffice)
@@ -6395,25 +5868,20 @@
},
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/item/weapon/storage/secure/briefcase,
/turf/open/floor/plasteel/blue/side{
dir = 10
},
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"any" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/blue/side,
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"anz" = (
/obj/structure/filingcabinet/medical,
/obj/machinery/newscaster{
@@ -6423,16 +5891,12 @@
icon_state = "blue";
dir = 6
},
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"anA" = (
/obj/structure/table/wood,
/obj/item/weapon/reagent_containers/food/snacks/chips,
/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"anB" = (
/obj/structure/chair/comfy/brown{
buildstackamount = 0;
@@ -6441,45 +5905,33 @@
/obj/effect/landmark/start/assistant,
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"anC" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
/obj/machinery/light,
/obj/machinery/newscaster{
pixel_y = -32
},
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"anD" = (
/obj/structure/chair/comfy/brown{
buildstackamount = 0;
dir = 1
},
/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"anE" = (
/obj/structure/table/wood,
/obj/item/weapon/folder,
/obj/item/weapon/pen,
/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"anF" = (
/obj/structure/closet/wardrobe/red,
/obj/machinery/newscaster{
@@ -6488,32 +5940,31 @@
/turf/open/floor/plasteel/red/side{
dir = 10
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"anG" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"anH" = (
/obj/structure/closet/secure_closet/security,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/open/floor/plasteel/red/side{
dir = 6
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"anI" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"anJ" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -6526,7 +5977,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"anK" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -6538,7 +5989,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"anL" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -6547,7 +5998,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"anM" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -6558,7 +6009,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"anN" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -6570,7 +6021,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"anO" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -6579,13 +6030,13 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"anP" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"anQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -6684,9 +6135,7 @@
"anX" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/structure/mirror{
pixel_x = 30
@@ -6711,7 +6160,7 @@
name = "Fore-Port Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/auxport)
+/area/solar/port/fore)
"aoa" = (
/obj/structure/reflector/single{
anchored = 1;
@@ -6721,16 +6170,12 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aob" = (
/obj/structure/table/wood,
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/light_switch{
pixel_y = -26
@@ -6773,12 +6218,7 @@
},
/area/crew_quarters/electronic_marketing_den)
"aoi" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/structure/cable/white,
/obj/machinery/power/apc{
dir = 2;
@@ -6801,7 +6241,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aol" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -6815,7 +6255,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aom" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -6823,7 +6263,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aon" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -6838,9 +6278,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"aoo" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -6855,7 +6293,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"aop" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -6863,27 +6301,27 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aoq" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
},
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aor" = (
/obj/structure/chair/stool/bar,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/black,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aos" = (
/turf/open/floor/plasteel/black,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aot" = (
/obj/structure/table/wood,
/obj/item/toy/talking/AI,
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aou" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -6949,8 +6387,7 @@
/obj/machinery/mineral/stacking_unit_console{
dir = 2;
machinedir = 8;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
@@ -7007,7 +6444,7 @@
/obj/structure/lattice/catwalk,
/obj/effect/landmark/xeno_spawn,
/turf/open/space,
-/area/solar/auxport)
+/area/solar/port/fore)
"aoH" = (
/obj/structure/cable{
icon_state = "0-2";
@@ -7020,15 +6457,11 @@
state = 2
},
/turf/open/floor/circuit/green,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aoI" = (
/obj/structure/sign/electricshock,
/turf/closed/wall/r_wall,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aoJ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/atmos{
@@ -7041,16 +6474,12 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aoK" = (
/obj/structure/grille,
/obj/structure/window/reinforced/highpressure/fulltile,
/turf/open/floor/plating,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aoL" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/atmos{
@@ -7063,9 +6492,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aoN" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -7097,13 +6524,13 @@
"aoP" = (
/obj/structure/closet/firecloset,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aoQ" = (
/obj/structure/girder,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aoR" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/rack,
@@ -7112,29 +6539,29 @@
name = "2maintenance loot spawner"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aoS" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aoT" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aoU" = (
/obj/structure/cable/white{
icon_state = "2-4"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aoV" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aoW" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -7143,7 +6570,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aoX" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -7151,14 +6578,14 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aoY" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aoZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -7172,7 +6599,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"apa" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -7181,7 +6608,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"apb" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -7193,14 +6620,14 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"apc" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/space_heater,
/turf/open/floor/plasteel/neutral/side{
dir = 5
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"apd" = (
/obj/machinery/light{
dir = 8
@@ -7209,31 +6636,22 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"ape" = (
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
+ icon_state = "plant-21"
},
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"apf" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"apg" = (
/obj/machinery/vending/cola/random,
/obj/effect/decal/cleanable/dirt,
@@ -7244,9 +6662,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aph" = (
/obj/machinery/vending/snack/random,
/obj/item/device/radio/intercom{
@@ -7255,22 +6671,15 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"api" = (
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
+ icon_state = "plant-21"
},
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"apj" = (
/obj/machinery/light{
dir = 4;
@@ -7278,16 +6687,14 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"apk" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/firecloset,
/turf/open/floor/plasteel/neutral/side{
dir = 9
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"apl" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -7295,7 +6702,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"apm" = (
/obj/machinery/light/small{
dir = 1
@@ -7306,7 +6713,7 @@
name = "3maintenance loot spawner"
},
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"apn" = (
/obj/structure/table/wood,
/obj/effect/decal/cleanable/dirt,
@@ -7315,34 +6722,33 @@
name = "arcade coin"
},
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"apo" = (
/obj/machinery/computer/arcade,
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"app" = (
/obj/structure/table/wood,
/obj/item/toy/talking/codex_gigas,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"apq" = (
/obj/structure/table/wood,
/obj/item/clothing/glasses/regular/hipster,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"apr" = (
/obj/machinery/computer/arcade,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aps" = (
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/structure/table/wood,
@@ -7352,14 +6758,14 @@
name = "arcade coin"
},
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"apt" = (
/obj/structure/table/wood,
/obj/item/weapon/gun/ballistic/automatic/toy/pistol/unrestricted,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"apu" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -7452,11 +6858,11 @@
d2 = 2
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/auxport)
+/area/solar/port/fore)
"apE" = (
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxport)
+/area/solar/port/fore)
"apF" = (
/obj/item/clothing/gloves/color/black,
/obj/item/clothing/glasses/meson/engine,
@@ -7467,9 +6873,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"apG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -7478,9 +6882,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"apH" = (
/obj/structure/cable{
d1 = 1;
@@ -7496,15 +6898,12 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"apI" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 2;
@@ -7524,9 +6923,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"apJ" = (
/obj/structure/cable{
d1 = 1;
@@ -7540,9 +6937,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"apK" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small{
@@ -7555,18 +6950,14 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"apL" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"apM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -7574,17 +6965,13 @@
/turf/open/floor/plasteel/caution{
dir = 4
},
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"apN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/circuit/green,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"apO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -7593,9 +6980,7 @@
icon_state = "caution";
dir = 8
},
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"apP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -7605,9 +6990,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"apQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -7616,9 +6999,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"apR" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -7629,26 +7010,20 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"apS" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"apT" = (
/obj/structure/table/reinforced,
/obj/item/clothing/suit/radiation,
/obj/item/clothing/head/radiation,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"apU" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/sign/barsign{
@@ -7657,14 +7032,14 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"apV" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
icon_state = "2-4"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"apW" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -7673,7 +7048,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 5
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"apX" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -7682,13 +7057,13 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"apY" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"apZ" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -7697,7 +7072,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aqa" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -7708,7 +7083,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aqb" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -7717,7 +7092,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aqc" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -7727,7 +7102,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aqd" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -7740,7 +7115,7 @@
dir = 10;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aqe" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -7750,7 +7125,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aqf" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -7760,7 +7135,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aqg" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -7769,7 +7144,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aqh" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -7782,20 +7157,20 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aqi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral/corner,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aqj" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aqk" = (
/obj/structure/closet/crate{
icon_state = "crateopen";
@@ -7809,7 +7184,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aql" = (
/obj/structure/girder,
/obj/effect/decal/cleanable/dirt,
@@ -7818,7 +7193,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aqm" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance{
@@ -7829,19 +7204,19 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aqn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aqo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aqp" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -7853,14 +7228,14 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aqq" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aqr" = (
/turf/open/floor/plating{
icon_state = "panelscorched"
@@ -7875,7 +7250,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg2"
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aqs" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -7885,7 +7260,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aqt" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -7895,7 +7270,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aqu" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -7907,7 +7282,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aqv" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -7927,7 +7302,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aqw" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -7942,9 +7317,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aqx" = (
/obj/structure/cable/white{
icon_state = "2-8"
@@ -7954,9 +7327,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aqy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -7965,9 +7336,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aqz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -7977,9 +7346,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aqA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -7992,9 +7359,7 @@
location = "hall15"
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aqB" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -8004,18 +7369,14 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aqC" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aqD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -8025,9 +7386,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/corner,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aqE" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -8043,7 +7402,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aqF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -8053,7 +7412,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aqG" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -8063,7 +7422,7 @@
},
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aqH" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -8073,7 +7432,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aqI" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -8087,7 +7446,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aqJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -8096,7 +7455,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aqK" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/maintenance_hatch{
@@ -8108,20 +7467,20 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aqL" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
/turf/closed/wall,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aqM" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/closed/wall,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"aqN" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -8246,7 +7605,7 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxport)
+/area/solar/port/fore)
"aqY" = (
/obj/structure/table/reinforced,
/obj/item/device/analyzer{
@@ -8266,26 +7625,20 @@
pixel_y = 1
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aqZ" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"ara" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"arb" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
@@ -8294,25 +7647,19 @@
icon_state = "1-4"
},
/turf/open/floor/plasteel/yellow,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"arc" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/open/floor/plasteel/neutral,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"ard" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -8320,13 +7667,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/open/floor/plasteel/yellow,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"are" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -8335,16 +7679,13 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"arf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -8352,15 +7693,12 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/open/floor/plasteel/caution{
dir = 4
},
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"arg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -8368,13 +7706,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/open/floor/circuit/green,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"arh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -8382,49 +7717,39 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/open/floor/plasteel/caution{
icon_state = "caution";
dir = 8
},
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"ari" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"arj" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/yellow,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"ark" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"arl" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -8434,35 +7759,28 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/open/floor/plasteel/yellow,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"arm" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"arn" = (
/obj/structure/table/reinforced,
/obj/item/weapon/tank/internals/emergency_oxygen/engi{
pixel_x = -5
},
/obj/item/weapon/tank/internals/emergency_oxygen/engi{
- pixel_x = 5;
- pixel_y = 0
+ pixel_x = 5
},
/obj/item/device/geiger_counter,
/obj/item/device/geiger_counter,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/structure/cable{
@@ -8472,15 +7790,13 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"arp" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"arq" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -8492,7 +7808,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"arr" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -8503,13 +7819,13 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"ars" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"art" = (
/turf/closed/wall,
/area/janitor)
@@ -8517,26 +7833,22 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"arv" = (
/turf/closed/wall,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"arw" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
dir = 5
},
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"arx" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -8547,9 +7859,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"ary" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -8557,9 +7867,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"arz" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -8570,9 +7878,7 @@
icon_state = "neutralcorner";
dir = 1
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"arA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -8581,32 +7887,26 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"arB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral/corner,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"arC" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
},
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"arD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"arE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -8616,7 +7916,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"arF" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -8630,7 +7930,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"arG" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -8641,13 +7941,13 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"arH" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"arI" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -8660,7 +7960,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"arJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -8675,7 +7975,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 6
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"arK" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -8689,7 +7989,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"arL" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -8703,7 +8003,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"arM" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -8715,7 +8015,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"arN" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -8728,7 +8028,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"arO" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -8743,7 +8043,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"arP" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -8758,7 +8058,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"arQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -8774,7 +8074,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"arR" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -8788,7 +8088,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"arS" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/maintenance_hatch{
@@ -8895,7 +8195,6 @@
/obj/machinery/power/apc{
dir = 2;
name = "Disposal APC";
- pixel_x = 0;
pixel_y = -24
},
/obj/structure/disposalpipe/segment{
@@ -8932,9 +8231,7 @@
dir = 8
},
/turf/closed/wall/r_wall,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"asd" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
@@ -8942,9 +8239,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"ase" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
@@ -8954,27 +8249,21 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"asf" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 1
},
/obj/machinery/meter,
/turf/open/floor/plasteel/yellow,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"asg" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
/obj/effect/turf_decal/stripes/corner,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"ash" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
@@ -8982,18 +8271,14 @@
/obj/machinery/light,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"asi" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"asj" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
@@ -9005,9 +8290,7 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"ask" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
@@ -9018,17 +8301,13 @@
/turf/open/floor/plasteel/caution{
dir = 4
},
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"asl" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
/turf/open/floor/circuit/green,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"asm" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
@@ -9037,9 +8316,7 @@
icon_state = "caution";
dir = 8
},
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"asn" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
@@ -9051,9 +8328,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aso" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
@@ -9061,14 +8336,11 @@
/obj/effect/decal/cleanable/dirt,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = -26
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"asp" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
@@ -9078,9 +8350,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"asq" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 4;
@@ -9088,9 +8358,7 @@
on = 1
},
/turf/open/floor/plasteel/yellow,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"asr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 10
@@ -9099,16 +8367,9 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"ass" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/structure/sign/nosmoking_2{
pixel_x = 32
},
@@ -9119,19 +8380,17 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"ast" = (
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"asu" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/grille,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"asv" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance{
@@ -9139,7 +8398,7 @@
name = "2maintenance loot spawner"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"asw" = (
/obj/structure/closet/crate{
icon_state = "crateopen";
@@ -9150,7 +8409,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"asx" = (
/obj/structure/table/wood,
/obj/effect/decal/cleanable/dirt,
@@ -9158,7 +8417,7 @@
/obj/item/clothing/gloves/color/white,
/obj/item/clothing/head/rabbitears,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"asy" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -9166,19 +8425,22 @@
icon_state = "redblue";
dir = 8
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"asz" = (
/obj/structure/table_frame/wood,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"asA" = (
/obj/structure/easel,
/obj/item/weapon/canvas/twentythreeXtwentythree,
/obj/item/weapon/canvas/twentythreeXtwentythree,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"asB" = (
/obj/structure/easel,
/obj/item/weapon/canvas/twentythreeXtwentythree,
@@ -9186,19 +8448,22 @@
/turf/open/floor/wood{
icon_state = "wood-broken7"
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"asC" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/wood{
icon_state = "wood-broken"
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"asD" = (
/obj/structure/table/wood,
/obj/item/device/camera_film,
/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
/turf/open/floor/wood,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"asE" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -9207,7 +8472,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"asF" = (
/obj/structure/table/reinforced,
/obj/machinery/light/small{
@@ -9248,11 +8513,9 @@
"asH" = (
/obj/structure/closet/jcloset,
/obj/machinery/power/apc{
- cell_type = 5000;
dir = 1;
name = "Custodial Closet APC";
- pixel_x = 0;
- pixel_y = 25
+ pixel_y = 24
},
/obj/structure/cable/white{
icon_state = "0-2"
@@ -9268,7 +8531,6 @@
department = "Custodial Closet";
departmentType = 0;
name = "Custodial RC";
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/decal/cleanable/dirt,
@@ -9307,16 +8569,17 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"asM" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular,
/obj/effect/turf_decal/bot,
+/obj/machinery/light_switch{
+ pixel_x = -26
+ },
/turf/open/floor/plasteel,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"asN" = (
/obj/structure/urinal{
pixel_y = 28
@@ -9324,18 +8587,14 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"asO" = (
/obj/structure/urinal{
pixel_y = 28
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"asP" = (
/obj/structure/urinal{
pixel_y = 28
@@ -9345,9 +8604,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"asQ" = (
/obj/machinery/door/airlock{
name = "Auxiliary Restroom"
@@ -9359,9 +8616,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"asR" = (
/obj/structure/sign/directions/evac{
pixel_y = -8
@@ -9374,9 +8629,7 @@
pixel_y = 8
},
/turf/closed/wall,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"asS" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
@@ -9422,14 +8675,10 @@
pixel_y = 8
},
/turf/closed/wall,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"asW" = (
/turf/closed/wall,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"asX" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -9444,26 +8693,20 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"asY" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
dir = 8
},
/turf/closed/wall,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"asZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"ata" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -9500,7 +8743,7 @@
/obj/structure/lattice/catwalk,
/obj/structure/cable,
/turf/open/space,
-/area/solar/auxport)
+/area/solar/port/fore)
"atf" = (
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
dir = 5
@@ -9530,9 +8773,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"atj" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
@@ -9540,23 +8781,18 @@
name = "Gas to Loop"
},
/turf/open/floor/plasteel/neutral,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"atk" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"atl" = (
/obj/machinery/ai_status_display,
/turf/closed/wall/r_wall,
@@ -9571,15 +8807,11 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"ato" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/open/floor/plasteel/neutral,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"atp" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
dir = 8;
@@ -9591,9 +8823,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"atq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
icon_state = "intact";
@@ -9606,9 +8836,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"atr" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
@@ -9617,9 +8845,7 @@
},
/obj/structure/window/reinforced/highpressure/fulltile,
/turf/open/floor/plating,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"ats" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
@@ -9628,13 +8854,11 @@
id = "n2_in"
},
/turf/open/space,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"att" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"atu" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/blobstart,
@@ -9642,11 +8866,11 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"atv" = (
/obj/structure/grille,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"atw" = (
/obj/structure/mirror{
desc = "Mirror mirror on the wall, who is the most robust of them all?";
@@ -9657,7 +8881,7 @@
/obj/item/clothing/suit/suspenders,
/obj/effect/spawner/lootdrop/costume,
/turf/open/floor/plasteel/redblue,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"atx" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -9667,47 +8891,46 @@
icon_state = "redblue";
dir = 8
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aty" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/weapon/melee/skateboard,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/cafeteria,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"atz" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/wood{
icon_state = "wood-broken2"
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"atA" = (
/mob/living/simple_animal/cockroach,
/turf/open/floor/wood,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"atB" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
},
/turf/open/floor/wood,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"atC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/wood,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"atD" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/wood,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"atE" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -9720,14 +8943,14 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"atF" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"atG" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -9739,7 +8962,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"atH" = (
/obj/structure/mirror{
desc = "Mirror mirror on the wall, who is the most robust of them all?";
@@ -9797,8 +9020,7 @@
/obj/effect/landmark/start/janitor,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/whitegreen/side{
icon_state = "whitegreen";
@@ -9820,7 +9042,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"atO" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/mirror{
@@ -9829,42 +9051,30 @@
},
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"atP" = (
/turf/open/floor/plasteel/neutral/side{
dir = 1;
heat_capacity = 1e+006
},
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"atQ" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral/side{
dir = 1;
heat_capacity = 1e+006
},
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"atR" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"atS" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/camera{
c_tag = "Auxiliary Restroom";
dir = 2;
@@ -9874,9 +9084,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"atT" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/device/radio/intercom{
@@ -9887,9 +9095,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"atU" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -9897,9 +9103,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 5
},
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"atV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
@@ -9932,22 +9136,16 @@
/obj/effect/decal/cleanable/dirt,
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"atZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aua" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aub" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -9955,9 +9153,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"auc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/light/small{
@@ -9967,9 +9163,7 @@
icon_state = "brown";
dir = 1
},
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aud" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -9979,25 +9173,19 @@
name = "cargo camera"
},
/turf/open/floor/plating,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aue" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/brown{
icon_state = "brown";
dir = 1
},
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"auf" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plating,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aug" = (
/obj/item/stack/packageWrap,
/obj/item/weapon/hand_labeler,
@@ -10056,7 +9244,6 @@
/obj/item/weapon/storage/box/lights/mixed,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = 26
},
/turf/open/floor/plasteel/brown{
@@ -10108,8 +9295,6 @@
/obj/machinery/status_display{
density = 0;
name = "cargo display";
- pixel_x = 0;
- pixel_y = 0;
supply_display = 1
},
/turf/closed/wall,
@@ -10118,7 +9303,7 @@
/obj/item/stack/cable_coil,
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxport)
+/area/solar/port/fore)
"auv" = (
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
icon_state = "intact";
@@ -10136,13 +9321,9 @@
"aux" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/bot,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"auy" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
icon_state = "intact";
@@ -10153,9 +9334,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"auz" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 4
@@ -10163,9 +9342,7 @@
/obj/machinery/meter,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/yellow,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"auA" = (
/obj/structure/cable{
d1 = 2;
@@ -10175,22 +9352,18 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"auB" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/door/poddoor/shutters/preopen{
id = "engsm";
@@ -10224,8 +9397,7 @@
"auE" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/engine,
/area/engine/supermatter)
@@ -10263,8 +9435,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/door/poddoor/shutters/preopen{
id = "engsm";
@@ -10286,28 +9457,20 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"auK" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/open/floor/plasteel/yellow,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"auL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"auM" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -10315,12 +9478,10 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"auN" = (
/turf/open/floor/plasteel/neutral,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"auO" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -10328,40 +9489,40 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/neutral,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"auP" = (
/obj/structure/rack,
/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"auQ" = (
/obj/structure/table_frame/wood,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/redblue,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"auR" = (
/turf/open/floor/plasteel/redblue,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"auS" = (
/turf/open/floor/plasteel/redblue/redside{
icon_state = "redblue";
dir = 8
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"auT" = (
/obj/structure/dresser,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/cafeteria,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"auU" = (
/obj/structure/table/wood,
/obj/item/device/camera,
/turf/open/floor/wood{
icon_state = "wood-broken3"
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"auV" = (
/obj/structure/chair/comfy/brown{
icon_state = "comfychair";
@@ -10370,18 +9531,18 @@
/turf/open/floor/wood{
icon_state = "wood-broken3"
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"auW" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/sign/nosmoking_2{
pixel_y = -32
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"auY" = (
/obj/machinery/photocopier,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"auZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -10391,14 +9552,12 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/mob/living/simple_animal/cockroach,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"ava" = (
/obj/structure/table/reinforced,
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/item/weapon/storage/box/lights/mixed{
pixel_x = 3;
@@ -10449,35 +9608,27 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"avh" = (
/obj/machinery/light/small,
/obj/structure/extinguisher_cabinet{
pixel_y = -32
},
/turf/open/floor/plating,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"avi" = (
/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"avj" = (
/obj/machinery/status_display{
pixel_y = -32
},
/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"avk" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"avl" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -10489,13 +9640,10 @@
pixel_y = -26
},
/turf/open/floor/plating,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"avm" = (
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/structure/cable/white{
@@ -10505,9 +9653,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 6
},
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"avn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
@@ -10562,9 +9708,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"avr" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -10579,17 +9723,13 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"avs" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/crate/secure/loot,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"avt" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/old,
@@ -10601,9 +9741,7 @@
dir = 8
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"avu" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/crate,
@@ -10614,9 +9752,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"avv" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -10624,9 +9760,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"avw" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/cardboard,
@@ -10639,9 +9773,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"avx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -10650,9 +9782,7 @@
icon_state = "brown";
dir = 4
},
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"avy" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining{
@@ -10666,9 +9796,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"avz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -10777,15 +9905,10 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/bot,
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
+ icon_state = "plant-21"
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"avN" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
@@ -10797,9 +9920,7 @@
name = "Thermo to Gas"
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"avO" = (
/obj/structure/cable{
d1 = 2;
@@ -10809,17 +9930,14 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"avP" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/manifold/general/visible{
@@ -10845,8 +9963,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/door/poddoor/shutters/preopen{
id = "engsm";
@@ -10867,8 +9984,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -10878,21 +9994,16 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"avU" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"avV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 5
@@ -10901,14 +10012,12 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"avW" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"avX" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance{
@@ -10916,17 +10025,17 @@
name = "2maintenance loot spawner"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"avY" = (
/obj/machinery/light/small,
/obj/machinery/power/apc{
dir = 2;
- name = "Fore Port Maintenance APC";
+ name = "Port Bow Maintenance APC";
pixel_y = -26
},
/obj/structure/cable/white,
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"awa" = (
/obj/machinery/vending/autodrobe{
req_access_txt = "0"
@@ -10937,7 +10046,7 @@
icon_state = "redblue";
dir = 8
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"awc" = (
/obj/structure/table/wood,
/obj/item/weapon/lipstick/random{
@@ -10954,7 +10063,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/cafeteria,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"awd" = (
/obj/structure/table/wood,
/obj/item/weapon/canvas/twentythreeXnineteen,
@@ -10966,7 +10075,7 @@
/turf/open/floor/wood{
icon_state = "wood-broken6"
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"awf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/white{
@@ -11022,17 +10131,13 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"awl" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"awm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
@@ -11067,30 +10172,22 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"awq" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/open/floor/plasteel/brown{
icon_state = "brown";
dir = 8
},
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"awr" = (
/obj/item/weapon/storage/box/lights/mixed,
/turf/open/floor/plating,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aws" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -11098,9 +10195,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"awt" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -11109,9 +10204,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"awu" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/spawner/lootdrop/maintenance,
@@ -11120,9 +10213,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"awv" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/crate/internals,
@@ -11131,18 +10222,14 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aww" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"awx" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -11152,9 +10239,7 @@
icon_state = "brown";
dir = 4
},
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"awy" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining{
@@ -11168,9 +10253,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"awz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -11287,7 +10370,7 @@
d2 = 2
},
/turf/open/space,
-/area/solar/auxport)
+/area/solar/port/fore)
"awQ" = (
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
dir = 9
@@ -11312,9 +10395,7 @@
on = 1
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"awS" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
icon_state = "manifold";
@@ -11324,22 +10405,17 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"awT" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/yellow,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"awU" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/door/poddoor/shutters/preopen{
id = "engsm";
@@ -11359,28 +10435,23 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"awW" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/sign/securearea{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/camera{
c_tag = "Supermatter Engine - Starboard";
@@ -11395,28 +10466,26 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"awX" = (
/turf/closed/wall,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"awY" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral/side{
dir = 9
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"awZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"axa" = (
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"axb" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -11426,7 +10495,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"axc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
@@ -11477,12 +10546,11 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"axh" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/vomit/old,
/obj/structure/toilet{
- icon_state = "toilet00";
dir = 8
},
/obj/machinery/newscaster{
@@ -11490,13 +10558,10 @@
},
/obj/machinery/light/small,
/turf/open/floor/plating,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"axi" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/toilet{
- icon_state = "toilet00";
dir = 8
},
/obj/machinery/newscaster{
@@ -11505,13 +10570,10 @@
/obj/machinery/light/small,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"axj" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/toilet{
- icon_state = "toilet00";
dir = 8
},
/obj/machinery/newscaster{
@@ -11521,17 +10583,13 @@
/obj/effect/landmark/start/assistant,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"axk" = (
/obj/machinery/vending/cigarette,
/obj/machinery/light/small,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"axl" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -11552,18 +10610,14 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"axo" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
},
/turf/open/floor/plating,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"axp" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -11573,9 +10627,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"axq" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/start/cargo_technician,
@@ -11584,9 +10636,7 @@
dir = 8
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"axr" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/blobstart,
@@ -11594,36 +10644,27 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"axs" = (
/obj/effect/decal/cleanable/oil,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"axt" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"axu" = (
/turf/open/floor/plasteel/brown{
icon_state = "brown";
dir = 4
},
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"axv" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=4";
@@ -11756,14 +10797,12 @@
icon_state = "1-2"
},
/turf/open/space,
-/area/solar/auxport)
+/area/solar/port/fore)
"axL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"axM" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -11773,22 +10812,17 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"axN" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"axO" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/light{
dir = 4;
@@ -11798,9 +10832,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"axP" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
icon_state = "intact";
@@ -11842,8 +10874,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light{
@@ -11854,9 +10885,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"axV" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
@@ -11864,9 +10893,7 @@
/obj/machinery/meter,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"axW" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
@@ -11877,9 +10904,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"axX" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
icon_state = "intact";
@@ -11892,9 +10917,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"axY" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
@@ -11903,9 +10926,7 @@
},
/obj/structure/window/reinforced/highpressure/fulltile,
/turf/open/floor/plating,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"axZ" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
@@ -11920,33 +10941,28 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"ayb" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/light/small{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"ayc" = (
/obj/structure/table,
/obj/item/clothing/suit/apron/overalls,
/obj/item/weapon/cultivator,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"ayd" = (
/obj/machinery/biogenerator,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"aye" = (
/obj/structure/table,
/obj/item/seeds/poppy/lily{
@@ -11959,28 +10975,26 @@
/obj/item/weapon/reagent_containers/food/snacks/grown/corn,
/obj/item/weapon/reagent_containers/food/snacks/grown/apple,
/obj/effect/turf_decal/bot,
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
/turf/open/floor/plasteel,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"ayf" = (
/obj/machinery/hydroponics/soil,
/obj/item/seeds/tea,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"ayg" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/status_display{
pixel_y = 32
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"ayh" = (
/obj/structure/table,
/obj/item/stack/packageWrap,
@@ -11991,14 +11005,14 @@
/obj/item/weapon/reagent_containers/food/snacks/grown/cherries,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"ayi" = (
/obj/machinery/hydroponics/soil,
/obj/item/seeds/poppy,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"ayj" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -12008,7 +11022,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"ayk" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -12022,7 +11036,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"ayl" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -12035,7 +11049,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aym" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -12047,7 +11061,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"ayn" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -12060,7 +11074,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"ayo" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -12072,7 +11086,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"ayp" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -12088,7 +11102,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"ayq" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -12102,7 +11116,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 9
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"ayr" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -12123,7 +11137,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"ays" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -12134,7 +11148,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"ayt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -12144,7 +11158,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"ayu" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -12158,7 +11172,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"ayv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -12170,7 +11184,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"ayw" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -12182,7 +11196,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"ayx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -12195,21 +11209,19 @@
/turf/open/floor/plasteel/neutral/side{
dir = 5
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"ayy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/crew_quarters/toilet/auxiliary)
"ayz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"ayA" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -12227,39 +11239,29 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"ayC" = (
/turf/open/floor/plating,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"ayD" = (
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"ayE" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"ayF" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/deadcockroach,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"ayG" = (
/obj/structure/closet/crate{
icon_state = "crateopen";
@@ -12270,24 +11272,18 @@
name = "2maintenance loot spawner"
},
/turf/open/floor/plating,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"ayH" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/weapon/storage/box/mousetraps,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"ayI" = (
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"ayJ" = (
/obj/structure/plasticflaps{
opacity = 1
@@ -12295,9 +11291,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"ayK" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/navbeacon{
@@ -12427,15 +11421,12 @@
name = "nitrogen filter"
},
/turf/open/floor/plasteel/yellow,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"azb" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 9
@@ -12444,23 +11435,17 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"azc" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/machinery/portable_atmospherics/scrubber,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"azd" = (
/obj/structure/sign/radiation,
/turf/closed/wall/r_wall,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aze" = (
/obj/machinery/atmospherics/components/binary/pump{
name = "Gas to Filter"
@@ -12482,23 +11467,18 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"azh" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"azi" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -12506,18 +11486,14 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"azj" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/yellow,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"azk" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
icon_state = "intact";
@@ -12527,9 +11503,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"azl" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
icon_state = "connector_map";
@@ -12545,9 +11519,7 @@
icon_state = "escape";
dir = 4
},
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"azm" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
@@ -12556,10 +11528,10 @@
"azn" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"azo" = (
/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"azp" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -12570,24 +11542,24 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"azq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"azr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"azs" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/closed/wall,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"azt" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -12596,7 +11568,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"azu" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -12608,7 +11580,7 @@
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"azv" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -12619,14 +11591,14 @@
},
/obj/machinery/light/small,
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"azw" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"azx" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -12639,7 +11611,7 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"azy" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -12651,7 +11623,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"azz" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/maintenance_hatch{
@@ -12668,7 +11640,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"azA" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -12717,9 +11689,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"azE" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/cleanable/dirt,
@@ -12740,9 +11710,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"azF" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -12760,9 +11728,7 @@
icon_state = "brown";
dir = 8
},
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"azG" = (
/obj/effect/decal/cleanable/oil,
/obj/structure/cable/white{
@@ -12780,9 +11746,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"azH" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -12799,9 +11763,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"azI" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -12814,9 +11776,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"azJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -12824,18 +11784,14 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"azK" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"azL" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/crate,
@@ -12848,9 +11804,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"azM" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -12859,16 +11813,13 @@
/obj/machinery/power/apc{
dir = 4;
name = "Cargo Warehouse APC";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/turf/open/floor/plasteel/brown{
icon_state = "brown";
dir = 4
},
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"azN" = (
/obj/machinery/light{
icon_state = "tube1";
@@ -12920,8 +11871,7 @@
"azT" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
/area/quartermaster/storage)
@@ -12977,9 +11927,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aAa" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
@@ -12987,9 +11935,7 @@
name = "Gas to Thermo"
},
/turf/open/floor/plasteel/neutral,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aAb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 5
@@ -12997,9 +11943,7 @@
/obj/item/weapon/wrench,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aAc" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
name = "scrubbers pipe";
@@ -13008,9 +11952,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aAd" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/closed/wall/r_wall,
@@ -13019,9 +11961,7 @@
/obj/machinery/atmospherics/components/binary/pump,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aAf" = (
/obj/machinery/atmospherics/components/binary/pump{
name = "External Gas to Loop"
@@ -13029,17 +11969,13 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aAg" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
},
/turf/open/floor/plasteel/neutral,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aAh" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
icon_state = "intact";
@@ -13050,9 +11986,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aAi" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
icon_state = "connector_map";
@@ -13067,9 +12001,7 @@
/turf/open/floor/plasteel/arrival{
dir = 4
},
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aAj" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
@@ -13077,7 +12009,6 @@
/area/space)
"aAk" = (
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
@@ -13087,14 +12018,14 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"aAl" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
},
/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"aAm" = (
/obj/structure/sink{
dir = 4;
@@ -13105,7 +12036,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"aAn" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -13117,26 +12048,23 @@
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aAo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aAp" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aAq" = (
/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aAr" = (
/obj/structure/bed,
/obj/machinery/status_display{
@@ -13144,38 +12072,25 @@
},
/obj/item/weapon/bedsheet/rainbow,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aAs" = (
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aAt" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/structure/sign/nanotrasen{
pixel_x = 32
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aAu" = (
/turf/closed/wall,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aAv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
/turf/closed/wall,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aAw" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -13190,9 +12105,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aAx" = (
/turf/closed/wall,
/area/crew_quarters/bar)
@@ -13219,16 +12132,12 @@
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/firecloset,
/turf/open/floor/plasteel/brown,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aAB" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aAC" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -13236,9 +12145,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/brown,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aAD" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -13246,9 +12153,7 @@
dir = 6
},
/turf/open/floor/plasteel/brown,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aAE" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -13257,37 +12162,27 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aAF" = (
/obj/machinery/light/small,
/turf/open/floor/plating,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aAG" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/brown,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aAH" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/brown,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aAI" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/brown{
icon_state = "brown";
dir = 6
},
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aAJ" = (
/obj/machinery/camera{
c_tag = "Cargo Bay - Port";
@@ -13423,16 +12318,12 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aAW" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/obj/machinery/meter,
/turf/open/floor/plasteel/yellow,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aAX" = (
/obj/structure/cable{
d1 = 1;
@@ -13447,9 +12338,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aAY" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
@@ -13457,22 +12346,18 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aAZ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/structure/sign/fire{
pixel_x = 32;
@@ -13487,16 +12372,13 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aBa" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/button/door{
id = "engsm";
@@ -13508,9 +12390,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aBb" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
@@ -13520,23 +12400,19 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aBc" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/camera{
c_tag = "Supermatter Engine - Aft";
@@ -13547,9 +12423,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aBd" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
@@ -13557,12 +12431,12 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/airalarm{
locked = 0;
+ name = "Engine Air Alarm";
pixel_y = 23;
req_access = null;
req_one_access_txt = "24;10"
@@ -13578,32 +12452,26 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aBf" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aBg" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
@@ -13616,8 +12484,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 2;
@@ -13629,9 +12496,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aBh" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 9
@@ -13640,9 +12505,7 @@
icon_state = "2-4"
},
/turf/open/floor/plasteel/yellow,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aBi" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -13651,15 +12514,12 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aBj" = (
/obj/machinery/power/apc{
dir = 4;
name = "Atmospherics Engine APC";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/structure/cable/white{
icon_state = "0-8"
@@ -13667,22 +12527,20 @@
/obj/structure/cable,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aBk" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
icon_state = "2-4"
},
/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"aBl" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"aBm" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -13690,13 +12548,13 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"aBn" = (
/obj/structure/cable/white{
icon_state = "2-8"
},
/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"aBo" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -13705,7 +12563,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aBp" = (
/obj/structure/table/wood,
/obj/item/weapon/folder,
@@ -13714,34 +12572,26 @@
pixel_x = -32
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aBq" = (
/obj/structure/chair/office/dark{
dir = 8
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aBr" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aBs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aBt" = (
/obj/machinery/door/airlock{
id_tag = "AuxCabinA";
@@ -13752,9 +12602,7 @@
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aBu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -13767,9 +12615,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aBv" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -13782,15 +12628,12 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aBw" = (
/obj/structure/table/wood,
/obj/structure/reagent_dispensers/beerkeg,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = 26
},
/turf/open/floor/plasteel/vault{
@@ -13800,11 +12643,9 @@
"aBx" = (
/obj/structure/closet/secure_closet/bar,
/obj/machinery/power/apc{
- cell_type = 5000;
dir = 1;
name = "Bar APC";
- pixel_x = 0;
- pixel_y = 25
+ pixel_y = 24
},
/obj/machinery/light/small{
dir = 1
@@ -13824,9 +12665,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/obj/machinery/camera{
c_tag = "Bar Backroom";
@@ -13890,7 +12729,6 @@
department = "Bar Counter";
departmentType = 0;
name = "Bar RC";
- pixel_x = 0;
pixel_y = 32;
receive_ore_updates = 1
},
@@ -13921,7 +12759,6 @@
/obj/item/weapon/storage/fancy/cigarettes/cigars/havana,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = 26
},
/turf/open/floor/plasteel/vault{
@@ -13963,7 +12800,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/open/floor/plasteel/neutral/corner{
@@ -13972,15 +12808,11 @@
/area/hallway/primary/fore)
"aBM" = (
/turf/closed/wall,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aBN" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aBO" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/cleanable/dirt,
@@ -13996,20 +12828,14 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aBP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aBQ" = (
/turf/closed/wall,
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aBR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/corner{
@@ -14064,18 +12890,18 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"aBY" = (
/turf/closed/wall/r_wall,
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"aBZ" = (
/turf/closed/wall/r_wall,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aCa" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aCb" = (
/obj/structure/table/reinforced,
/obj/item/weapon/tank/internals/plasma,
@@ -14092,16 +12918,9 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aCc" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -14109,9 +12928,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aCd" = (
/obj/item/device/radio/intercom{
name = "Station Intercom";
@@ -14126,38 +12943,28 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aCe" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/yellow,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aCf" = (
/turf/open/floor/plasteel/neutral,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aCg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
dir = 6
},
/turf/open/floor/plasteel/yellow,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aCh" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
dir = 1
},
/turf/open/floor/plasteel/yellow,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aCi" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -14165,9 +12972,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aCj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -14177,9 +12982,7 @@
on = 1
},
/turf/open/floor/plasteel/yellow,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aCk" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -14188,15 +12991,12 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aCl" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/cable/white{
icon_state = "4-8"
@@ -14206,9 +13006,7 @@
dir = 9
},
/turf/open/floor/plasteel/yellow,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aCm" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -14216,20 +13014,14 @@
},
/obj/effect/turf_decal/stripes/corner,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aCn" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aCo" = (
/obj/structure/table/reinforced,
/obj/item/weapon/crowbar/red,
@@ -14238,24 +13030,20 @@
/obj/machinery/light/small,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aCp" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"aCq" = (
/obj/machinery/hydroponics/soil,
/obj/item/seeds/harebell,
/obj/machinery/light/small,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"aCr" = (
/obj/structure/table,
/obj/item/weapon/shovel/spade,
@@ -14275,7 +13063,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"aCs" = (
/obj/machinery/seed_extractor,
/obj/machinery/status_display{
@@ -14284,7 +13072,7 @@
/obj/item/weapon/reagent_containers/glass/bucket,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"aCt" = (
/obj/structure/table,
/obj/item/device/plant_analyzer,
@@ -14292,12 +13080,12 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"aCu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"aCv" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -14305,7 +13093,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"aCw" = (
/obj/structure/table,
/obj/item/weapon/crowbar,
@@ -14313,7 +13101,7 @@
/obj/item/weapon/reagent_containers/glass/bucket,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"aCx" = (
/obj/machinery/hydroponics/soil,
/obj/item/seeds/tower,
@@ -14322,7 +13110,7 @@
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"aCy" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -14330,7 +13118,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aCz" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
@@ -14344,50 +13132,37 @@
specialfunctions = 4
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aCA" = (
/obj/structure/table/wood,
/obj/item/device/paicard,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aCB" = (
/obj/machinery/light,
/obj/structure/closet/wardrobe/mixed,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aCC" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aCD" = (
/obj/structure/dresser,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aCE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aCF" = (
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
@@ -14397,9 +13172,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aCG" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -14414,9 +13187,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aCH" = (
/obj/structure/plasticflaps{
opacity = 1
@@ -14531,8 +13302,7 @@
"aCQ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -14566,9 +13336,7 @@
opacity = 1
},
/turf/open/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aCU" = (
/obj/machinery/conveyor{
dir = 4;
@@ -14576,9 +13344,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aCV" = (
/obj/machinery/conveyor{
dir = 2;
@@ -14586,9 +13352,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aCW" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/trunk{
@@ -14604,9 +13368,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aCX" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -14616,9 +13378,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aCY" = (
/obj/structure/window/reinforced{
dir = 4
@@ -14634,9 +13394,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aCZ" = (
/obj/structure/disposalpipe/trunk{
icon_state = "pipe-t";
@@ -14644,9 +13402,7 @@
},
/obj/structure/disposaloutlet,
/turf/open/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aDa" = (
/obj/machinery/status_display{
pixel_y = 32
@@ -14668,9 +13424,7 @@
/turf/open/floor/plasteel/red/side{
dir = 9
},
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aDb" = (
/obj/structure/table/reinforced,
/obj/machinery/recharger,
@@ -14679,24 +13433,19 @@
},
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = 26
},
/turf/open/floor/plasteel/red/side{
dir = 1
},
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aDc" = (
/obj/machinery/ai_status_display{
pixel_y = 32
},
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/obj/machinery/light_switch{
pixel_x = 38
@@ -14708,9 +13457,7 @@
/turf/open/floor/plasteel/red/side{
dir = 5
},
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aDd" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -14941,7 +13688,6 @@
pixel_y = 3
},
/obj/structure/sign/electricshock{
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/decal/cleanable/cobweb/cobweb2,
@@ -14957,7 +13703,7 @@
dir = 9
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"aDt" = (
/obj/machinery/power/smes,
/obj/structure/cable/white{
@@ -14970,7 +13716,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"aDu" = (
/obj/structure/cable/white{
icon_state = "2-8"
@@ -14989,7 +13735,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"aDv" = (
/obj/machinery/disposal/bin,
/obj/structure/sign/deathsposal{
@@ -14999,7 +13745,7 @@
dir = 4
},
/turf/open/floor/plasteel/vault,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aDw" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -15007,7 +13753,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/vault,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aDx" = (
/obj/machinery/atmospherics/components/unary/tank/toxins,
/obj/structure/sign/nosmoking_2{
@@ -15015,7 +13761,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/vault,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aDy" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/machinery/light{
@@ -15026,7 +13772,7 @@
},
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/plasteel/vault,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aDz" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/structure/extinguisher_cabinet{
@@ -15038,14 +13784,14 @@
name = "atmospherics camera"
},
/turf/open/floor/plasteel/vault,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aDA" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 6
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/vault,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aDB" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 10
@@ -15054,7 +13800,7 @@
icon_state = "2-4"
},
/turf/open/floor/plasteel/vault,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aDC" = (
/obj/machinery/power/smes{
charge = 1e+006
@@ -15066,11 +13812,9 @@
icon_state = "0-8"
},
/turf/open/floor/plasteel/vault,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aDD" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -15078,9 +13822,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aDE" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -15092,9 +13834,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aDF" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -15104,9 +13844,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aDG" = (
/obj/machinery/status_display{
pixel_y = -32
@@ -15120,18 +13858,14 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aDH" = (
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/obj/structure/cable/white{
@@ -15142,9 +13876,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aDI" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -15157,9 +13889,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aDJ" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -15171,9 +13901,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aDK" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -15184,9 +13912,7 @@
},
/obj/effect/turf_decal/stripes/corner,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aDL" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -15199,9 +13925,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aDM" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -15213,9 +13937,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aDN" = (
/obj/structure/cable/white{
icon_state = "2-8"
@@ -15228,42 +13950,30 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aDO" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aDP" = (
/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aDQ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/barricade/wooden,
/turf/open/floor/plating,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"aDR" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -15277,7 +13987,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"aDS" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -15292,7 +14002,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"aDT" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -15301,14 +14011,9 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aDU" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/newscaster{
pixel_x = -32
},
@@ -15321,9 +14026,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aDV" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -15341,9 +14044,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aDW" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -15402,12 +14103,7 @@
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/bar)
"aEb" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -15458,9 +14154,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aEl" = (
/obj/structure/window/reinforced{
dir = 8
@@ -15471,18 +14165,14 @@
/obj/machinery/door/window,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aEm" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aEn" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -15490,9 +14180,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aEo" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/conveyor{
@@ -15500,9 +14188,7 @@
id = "cargodisposals"
},
/turf/open/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aEp" = (
/obj/structure/cable/white{
icon_state = "0-2"
@@ -15510,27 +14196,21 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aEq" = (
/obj/machinery/computer/secure_data,
/turf/open/floor/plasteel/red/side{
icon_state = "red";
dir = 6
},
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aEr" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aEs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -15539,9 +14219,7 @@
icon_state = "red";
dir = 4
},
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aEt" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
@@ -15555,9 +14233,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aEu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -15684,9 +14360,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/turf/open/floor/plasteel/neutral,
/area/security/prison)
@@ -15732,8 +14406,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/door/airlock/external{
name = "External Solar Access";
@@ -15745,20 +14418,19 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"aEO" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/fans/tiny,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"aEP" = (
/obj/structure/cable{
d1 = 2;
@@ -15768,15 +14440,14 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"aEQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/power/terminal{
@@ -15789,7 +14460,7 @@
},
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"aER" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -15806,12 +14477,12 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"aES" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/atmos{
- name = "Fore Port Solar Access";
+ name = "Port Bow Solar Access";
req_access_txt = "0";
req_one_access = null;
req_one_access_txt = "13; 24"
@@ -15827,14 +14498,14 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"aET" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/vault{
icon_state = "vault";
dir = 8
},
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aEU" = (
/obj/structure/cable{
d1 = 2;
@@ -15847,7 +14518,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aEV" = (
/obj/machinery/atmospherics/components/binary/pump{
name = "Gas to Turbine"
@@ -15855,15 +14526,14 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aEW" = (
/obj/machinery/atmospherics/components/binary/pump{
name = "Gas to Turbine"
@@ -15871,34 +14541,31 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aEX" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aEY" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/structure/cable/white{
icon_state = "1-2"
@@ -15908,7 +14575,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aEZ" = (
/obj/machinery/power/terminal{
icon_state = "term";
@@ -15923,17 +14590,15 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aFa" = (
/obj/machinery/light{
dir = 1
},
/obj/machinery/power/apc{
- cell_type = 5000;
dir = 1;
name = "Turbine Generator APC";
- pixel_x = 0;
- pixel_y = 25
+ pixel_y = 24
},
/obj/structure/cable/white{
icon_state = "0-2"
@@ -15943,13 +14608,11 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aFb" = (
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/obj/machinery/light_switch{
pixel_x = 24;
@@ -15959,7 +14622,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aFc" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/cleanable/dirt,
@@ -15976,22 +14639,16 @@
req_one_access_txt = "24;10"
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aFd" = (
/obj/structure/sign/securearea,
/turf/closed/wall/r_wall,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aFe" = (
/obj/structure/sign/biohazard,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aFf" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -16007,16 +14664,12 @@
req_one_access_txt = "24;10"
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aFg" = (
/obj/structure/sign/radiation,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aFh" = (
/obj/structure/grille,
/obj/structure/cable/white{
@@ -16031,9 +14684,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/window/reinforced/highpressure/fulltile,
/turf/open/floor/plating,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aFi" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -16042,8 +14693,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/door/airlock/glass_atmos{
name = "Power Monitoring";
@@ -16055,9 +14705,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aFj" = (
/obj/structure/grille,
/obj/structure/cable/white{
@@ -16066,9 +14714,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/structure/window/reinforced/highpressure/fulltile,
/turf/open/floor/plating,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aFk" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -16076,7 +14722,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aFl" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -16085,7 +14731,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aFm" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -16097,7 +14743,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aFn" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -16113,24 +14759,23 @@
/turf/open/floor/plasteel/neutral/side{
dir = 5
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aFo" = (
/obj/structure/table/wood,
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/turf/open/floor/wood,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aFp" = (
/obj/structure/table/wood,
/obj/structure/table/wood,
/obj/item/weapon/folder,
/obj/item/weapon/pen,
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
/turf/open/floor/wood,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aFq" = (
/obj/structure/bed,
/obj/machinery/status_display{
@@ -16138,28 +14783,21 @@
},
/obj/item/weapon/bedsheet/orange,
/turf/open/floor/wood,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aFr" = (
/obj/structure/dresser,
/turf/open/floor/wood{
icon_state = "wood-broken6"
},
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aFs" = (
/obj/structure/closet/secure_closet/personal/cabinet,
/turf/open/floor/wood,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aFt" = (
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -16168,9 +14806,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aFu" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -16181,13 +14817,10 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/loadingarea,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aFv" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/bot,
@@ -16262,8 +14895,7 @@
/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/white{
icon_state = "1-2"
@@ -16277,9 +14909,7 @@
/obj/item/weapon/pen,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aFH" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/conveyor_switch/oneway{
@@ -16289,9 +14919,7 @@
pixel_x = -12
},
/turf/open/floor/plasteel/loadingarea,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aFI" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -16299,9 +14927,7 @@
dir = 6
},
/turf/open/floor/plasteel/loadingarea,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aFJ" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -16311,18 +14937,14 @@
dir = 9
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aFK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aFL" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/conveyor{
@@ -16331,9 +14953,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aFM" = (
/obj/structure/cable/white{
icon_state = "0-2"
@@ -16345,18 +14965,14 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aFN" = (
/obj/machinery/computer/security,
/obj/structure/cable/white{
icon_state = "4-8"
},
/turf/open/floor/plasteel/red,
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aFO" = (
/obj/structure/chair/office/dark{
dir = 8
@@ -16368,9 +14984,7 @@
icon_state = "2-4"
},
/turf/open/floor/plasteel/neutral,
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aFP" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -16379,9 +14993,7 @@
icon_state = "red";
dir = 4
},
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aFQ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -16389,9 +15001,7 @@
icon_state = "0-8"
},
/turf/open/floor/plating,
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aFR" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/red/side{
@@ -16401,8 +15011,7 @@
"aFS" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
/area/quartermaster/storage)
@@ -16485,7 +15094,7 @@
"aGf" = (
/obj/machinery/power/solar_control{
id = "foreport";
- name = "Fore Port Solar Control";
+ name = "Port Bow Solar Control";
track = 0
},
/obj/structure/cable,
@@ -16493,37 +15102,36 @@
dir = 10
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"aGg" = (
/obj/structure/chair/office/dark{
dir = 8
},
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"aGh" = (
/obj/structure/cable/white,
/obj/machinery/power/apc{
cell_type = 10000;
dir = 2;
- name = "Fore Port Solar APC";
+ name = "Port Bow Solar APC";
pixel_y = -26
},
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"aGi" = (
/obj/structure/sign/electricshock,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"aGj" = (
/obj/structure/rack,
/obj/item/weapon/storage/toolbox/emergency,
@@ -16533,44 +15141,43 @@
/turf/open/floor/plasteel/caution{
dir = 9
},
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aGk" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aGl" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
icon_state = "intact";
dir = 5
},
/turf/open/floor/plasteel/neutral,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aGm" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/obj/machinery/meter,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aGn" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/turf/open/floor/plasteel/neutral,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aGo" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 9
},
/turf/open/floor/plasteel/neutral,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aGp" = (
/obj/machinery/atmospherics/components/binary/pump{
name = "Mix to Turbine"
@@ -16580,7 +15187,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aGq" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -16590,7 +15197,7 @@
on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aGr" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -16606,7 +15213,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aGs" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -16618,7 +15225,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aGt" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/cleanable/dirt,
@@ -16636,7 +15243,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aGu" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -16649,9 +15256,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aGv" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -16664,21 +15269,16 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aGw" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/secure_closet/atmospherics,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aGy" = (
/obj/machinery/shower{
dir = 4;
- icon_state = "shower";
name = "emergency shower"
},
/obj/effect/decal/cleanable/dirt,
@@ -16690,9 +15290,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aGz" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -16700,18 +15298,14 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aGA" = (
/obj/machinery/shower{
dir = 8;
- icon_state = "shower";
name = "emergency shower"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -16719,17 +15313,13 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aGB" = (
/obj/structure/closet/radiation,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aGC" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -16737,8 +15327,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -16748,9 +15337,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aGD" = (
/obj/structure/cable,
/obj/machinery/power/terminal,
@@ -16761,9 +15348,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aGE" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 26
@@ -16777,13 +15362,11 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aGF" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aGG" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/rack,
@@ -16792,18 +15375,18 @@
name = "2maintenance loot spawner"
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aGH" = (
/obj/structure/closet,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aGI" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aGJ" = (
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aGK" = (
/obj/structure/table/wood,
/obj/item/device/camera,
@@ -16811,34 +15394,26 @@
pixel_x = -32
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aGL" = (
/obj/structure/chair/office/dark{
dir = 1
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aGM" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aGN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aGO" = (
/obj/machinery/door/airlock{
id_tag = "AuxCabinB";
@@ -16848,9 +15423,7 @@
dir = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aGP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -16859,9 +15432,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aGQ" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -16873,13 +15444,10 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aGR" = (
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/newscaster{
@@ -16954,8 +15522,7 @@
/obj/structure/chair/stool/bar,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/turf/open/floor/plasteel/redyellow,
/area/crew_quarters/bar/atrium)
@@ -16974,9 +15541,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aHd" = (
/obj/structure/chair/office/dark{
dir = 8
@@ -16986,22 +15551,17 @@
icon_state = "brown";
dir = 9
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aHe" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/brown{
icon_state = "brown";
dir = 1
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aHf" = (
/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -17012,9 +15572,7 @@
icon_state = "brown";
dir = 1
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aHg" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -17027,9 +15585,7 @@
icon_state = "brown";
dir = 5
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aHh" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -17039,32 +15595,25 @@
/obj/machinery/conveyor_switch/oneway{
id = "cargodisposals";
name = "Trash Filter Switch";
- pixel_x = -1;
- pixel_y = 0
+ pixel_x = -1
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aHi" = (
/obj/structure/cable/white,
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aHj" = (
/obj/machinery/computer/cargo,
/turf/open/floor/plasteel/red/side{
dir = 5
},
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aHk" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -17075,9 +15624,7 @@
dir = 6
},
/turf/open/floor/plasteel/neutral,
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aHl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -17086,9 +15633,7 @@
icon_state = "red";
dir = 4
},
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aHm" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
@@ -17107,9 +15652,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aHn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -17208,9 +15751,7 @@
/area/security/prison)
"aHy" = (
/turf/closed/wall/r_wall,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aHz" = (
/obj/machinery/door/poddoor{
id = "justiceblast";
@@ -17222,9 +15763,7 @@
/turf/open/floor/plasteel/black{
icon_state = "black_warn_side"
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aHA" = (
/obj/structure/lattice/catwalk,
/obj/item/weapon/wrench,
@@ -17243,13 +15782,12 @@
/turf/open/floor/plasteel/caution{
dir = 8
},
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aHC" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/oil,
@@ -17257,31 +15795,29 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aHD" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 6
},
/turf/open/floor/plasteel/caution/corner,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aHE" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
/turf/open/floor/plasteel/caution,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aHF" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/turf/open/floor/plasteel/caution,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aHG" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
@@ -17289,32 +15825,32 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aHH" = (
/obj/machinery/meter,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/turf/open/floor/plasteel/caution,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aHI" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
name = "Port to Turbine"
},
/turf/open/floor/plasteel/caution,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aHJ" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 10
},
/turf/open/floor/plasteel/caution,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aHK" = (
/obj/structure/reagent_dispensers/watertank,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aHL" = (
/obj/structure/sign/vacuum{
pixel_x = -32
@@ -17331,9 +15867,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aHM" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -17344,9 +15878,7 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aHN" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 26
@@ -17356,9 +15888,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aHO" = (
/obj/structure/closet/radiation,
/obj/effect/decal/cleanable/dirt,
@@ -17367,13 +15897,10 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aHP" = (
/obj/machinery/shower{
dir = 4;
- icon_state = "shower";
name = "emergency shower"
},
/obj/machinery/light/small,
@@ -17382,9 +15909,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aHQ" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -17395,13 +15920,10 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aHR" = (
/obj/machinery/shower{
dir = 8;
- icon_state = "shower";
name = "emergency shower"
},
/obj/effect/decal/cleanable/dirt,
@@ -17414,27 +15936,21 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aHS" = (
/obj/structure/closet/radiation,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aHT" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -17447,9 +15963,7 @@
pixel_y = -32
},
/turf/open/floor/plasteel/vault,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aHU" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -17462,9 +15976,7 @@
icon_state = "0-4"
},
/turf/open/floor/circuit/green,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aHV" = (
/obj/structure/sign/nosmoking_2{
pixel_x = 32
@@ -17477,13 +15989,10 @@
},
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = -24
},
/turf/open/floor/plasteel/vault,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"aHW" = (
/turf/closed/wall,
/area/crew_quarters/abandoned_gambling_den)
@@ -17496,7 +16005,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aHY" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
@@ -17510,19 +16019,14 @@
specialfunctions = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aHZ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aIa" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -17530,9 +16034,7 @@
},
/obj/structure/closet/wardrobe/mixed,
/turf/open/floor/wood,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aIb" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/briefcase,
@@ -17540,23 +16042,14 @@
dir = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aIc" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aId" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -26
@@ -17568,25 +16061,20 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aIe" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aIf" = (
/obj/machinery/light{
dir = 8
@@ -17599,7 +16087,6 @@
"aIg" = (
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/light{
@@ -17613,28 +16100,19 @@
/turf/open/floor/plasteel/loadingarea,
/area/hallway/primary/fore)
"aIi" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/brown{
icon_state = "brown";
dir = 8
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aIj" = (
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aIk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aIl" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -17644,9 +16122,7 @@
icon_state = "brown";
dir = 4
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aIm" = (
/obj/structure/window/reinforced{
dir = 4
@@ -17660,9 +16136,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aIn" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -17676,16 +16150,13 @@
/obj/machinery/power/apc{
dir = 8;
name = "Security Post - Cargo APC";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/turf/open/floor/plasteel/red/side{
icon_state = "red";
dir = 10
},
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aIo" = (
/obj/structure/cable/white{
icon_state = "2-8"
@@ -17695,21 +16166,14 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aIp" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/light{
@@ -17725,9 +16189,7 @@
icon_state = "red";
dir = 6
},
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aIq" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment,
@@ -17774,7 +16236,6 @@
/area/shuttle/supply)
"aIw" = (
/obj/machinery/shower{
- icon_state = "shower";
dir = 4
},
/obj/item/weapon/soap/nanotrasen,
@@ -17894,7 +16355,6 @@
},
/obj/item/toy/figure/syndie,
/obj/structure/sign/electricshock{
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/plasteel/red/corner{
@@ -17908,10 +16368,7 @@
/obj/structure/cable/white{
icon_state = "4-8"
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
@@ -17947,16 +16404,12 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aIL" = (
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aIM" = (
/obj/machinery/light/small{
dir = 4
@@ -17970,26 +16423,24 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aIN" = (
/obj/structure/sign/fire,
/turf/closed/wall/r_wall,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aIO" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
},
/turf/open/floor/engine/vacuum,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aIP" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
/turf/closed/wall/r_wall,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aIQ" = (
/obj/machinery/doorButtons/access_button{
idDoor = "incinerator_airlock_exterior";
@@ -18014,7 +16465,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/engine,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aIR" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/obj/effect/decal/cleanable/dirt,
@@ -18022,7 +16473,7 @@
icon_state = "caution";
dir = 10
},
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aIS" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 10
@@ -18030,33 +16481,32 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aIT" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/caution{
dir = 4
},
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aIU" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"aIV" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"aIW" = (
/obj/machinery/door/airlock/atmos{
name = "Turbine Generator Access";
@@ -18066,20 +16516,20 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aIX" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"aIY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"aIZ" = (
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"aJa" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/cleanable/dirt,
@@ -18092,12 +16542,12 @@
req_one_access_txt = "24;10"
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aJb" = (
/obj/structure/sign/radiation,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"aJc" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -18112,16 +16562,16 @@
req_one_access_txt = "24;10"
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aJd" = (
/obj/structure/sign/fire,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"aJe" = (
/obj/structure/sign/electricshock,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"aJf" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
@@ -18160,12 +16610,7 @@
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/abandoned_gambling_den)
"aJk" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/abandoned_gambling_den)
"aJl" = (
@@ -18175,9 +16620,7 @@
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/abandoned_gambling_den)
"aJm" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/crew_quarters/abandoned_gambling_den)
@@ -18186,11 +16629,9 @@
icon_state = "0-2"
},
/obj/machinery/power/apc{
- cell_type = 5000;
dir = 1;
name = "Abandoned Gambling Den APC";
- pixel_x = 0;
- pixel_y = 25
+ pixel_y = 24
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood{
@@ -18198,12 +16639,7 @@
},
/area/crew_quarters/abandoned_gambling_den)
"aJo" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/wood,
/area/crew_quarters/abandoned_gambling_den)
"aJp" = (
@@ -18221,9 +16657,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aJs" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -18232,9 +16666,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aJt" = (
/obj/structure/table/wood,
/obj/machinery/status_display{
@@ -18257,11 +16689,9 @@
dir = 1
},
/obj/machinery/power/apc{
- cell_type = 5000;
dir = 1;
name = "Atrium APC";
- pixel_x = 0;
- pixel_y = 25
+ pixel_y = 24
},
/obj/machinery/camera{
c_tag = "Theatre Stage";
@@ -18272,18 +16702,12 @@
/area/crew_quarters/bar/atrium)
"aJx" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/machinery/status_display{
pixel_y = 32
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/bar/atrium)
"aJy" = (
@@ -18312,8 +16736,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/turf/open/floor/plasteel/neutral/corner{
dir = 4
@@ -18329,29 +16752,21 @@
icon_state = "brown";
dir = 8
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aJE" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aJF" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aJG" = (
/obj/machinery/status_display,
/turf/closed/wall,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aJH" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/conveyor{
@@ -18360,9 +16775,7 @@
},
/obj/structure/plasticflaps,
/turf/open/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aJI" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -18370,9 +16783,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aJJ" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -18389,9 +16800,7 @@
req_access_txt = "63"
},
/turf/open/floor/plasteel/red,
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aJK" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -18399,9 +16808,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aJL" = (
/obj/machinery/light{
icon_state = "tube1";
@@ -18455,9 +16862,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -18542,7 +16947,6 @@
"aKb" = (
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/effect/decal/cleanable/dirt,
@@ -18556,26 +16960,20 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/turf/open/floor/plasteel/darkred/corner{
icon_state = "darkredcorners";
dir = 1
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aKd" = (
/obj/structure/chair,
/obj/effect/decal/cleanable/blood/splatter,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aKe" = (
/obj/machinery/flasher{
id = "justiceflash";
@@ -18590,16 +16988,14 @@
icon_state = "darkredcorners";
dir = 4
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aKf" = (
/obj/machinery/door/poddoor{
id = "turbinevent";
name = "Turbine Vent"
},
/turf/open/floor/engine/vacuum,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aKg" = (
/obj/machinery/power/turbine{
icon_state = "turbine";
@@ -18614,7 +17010,7 @@
d2 = 4
},
/turf/open/floor/engine/vacuum,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aKh" = (
/obj/machinery/power/compressor{
icon_state = "compressor";
@@ -18632,7 +17028,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/engine/vacuum,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aKi" = (
/obj/machinery/igniter{
icon_state = "igniter0";
@@ -18643,11 +17039,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/open/floor/engine/vacuum,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aKj" = (
/obj/machinery/door/airlock/glass{
autoclose = 0;
@@ -18662,12 +17057,11 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/engine,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aKk" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -18676,12 +17070,11 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/engine,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aKl" = (
/obj/machinery/door/airlock/glass{
autoclose = 0;
@@ -18696,18 +17089,16 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/engine,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aKm" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -18716,7 +17107,7 @@
icon_state = "vault";
dir = 8
},
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aKn" = (
/obj/structure/cable{
d1 = 1;
@@ -18732,7 +17123,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aKo" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -18740,20 +17131,20 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aKp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/vault,
-/area/atmos)
+/area/engine/atmos)
"aKq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/vault,
-/area/atmos)
+/area/engine/atmos)
"aKr" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/general/visible,
@@ -18761,7 +17152,7 @@
dir = 4
},
/turf/open/floor/plasteel/vault,
-/area/atmos)
+/area/engine/atmos)
"aKs" = (
/obj/machinery/light{
dir = 1
@@ -18774,18 +17165,17 @@
dir = 9
},
/turf/open/floor/plasteel/vault,
-/area/atmos)
+/area/engine/atmos)
"aKt" = (
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = 26
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 6
},
/turf/open/floor/plasteel/vault,
-/area/atmos)
+/area/engine/atmos)
"aKu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
icon_state = "intact";
@@ -18794,7 +17184,7 @@
/turf/open/floor/plasteel/vault{
dir = 10
},
-/area/atmos)
+/area/engine/atmos)
"aKv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
icon_state = "intact";
@@ -18802,7 +17192,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aKw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
icon_state = "intact";
@@ -18811,7 +17201,7 @@
/turf/open/floor/plasteel/vault{
dir = 6
},
-/area/atmos)
+/area/engine/atmos)
"aKx" = (
/obj/machinery/status_display{
pixel_y = 32
@@ -18824,14 +17214,14 @@
dir = 8
},
/turf/open/floor/plasteel/vault,
-/area/atmos)
+/area/engine/atmos)
"aKy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
icon_state = "intact";
dir = 8
},
/turf/open/floor/plasteel/vault,
-/area/atmos)
+/area/engine/atmos)
"aKz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
icon_state = "intact";
@@ -18841,7 +17231,7 @@
/turf/open/floor/plasteel/vault{
dir = 10
},
-/area/atmos)
+/area/engine/atmos)
"aKA" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -18852,7 +17242,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aKB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
icon_state = "intact";
@@ -18862,7 +17252,7 @@
/turf/open/floor/plasteel/vault{
dir = 6
},
-/area/atmos)
+/area/engine/atmos)
"aKC" = (
/obj/machinery/light{
dir = 1
@@ -18871,19 +17261,14 @@
dir = 10
},
/turf/open/floor/plasteel/vault,
-/area/atmos)
+/area/engine/atmos)
"aKD" = (
/turf/open/floor/plasteel/vault,
-/area/atmos)
+/area/engine/atmos)
"aKE" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/vault,
-/area/atmos)
+/area/engine/atmos)
"aKF" = (
/obj/machinery/light/small{
dir = 8
@@ -18941,11 +17326,9 @@
dir = 1
},
/obj/machinery/power/apc{
- cell_type = 5000;
dir = 1;
name = "Theatre Backstage APC";
- pixel_x = 0;
- pixel_y = 25
+ pixel_y = 24
},
/turf/open/floor/plasteel/redblue,
/area/crew_quarters/theatre)
@@ -18961,7 +17344,6 @@
},
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = 26
},
/turf/open/floor/plasteel/redblue,
@@ -18971,9 +17353,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aKS" = (
/obj/structure/table/wood,
/obj/item/device/instrument/guitar,
@@ -18999,12 +17379,9 @@
/area/crew_quarters/bar/atrium)
"aKW" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
+ dir = 4
},
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/bar/atrium)
"aKX" = (
@@ -19060,9 +17437,7 @@
icon_state = "brown";
dir = 8
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aLd" = (
/obj/structure/chair/office/dark{
dir = 8
@@ -19072,9 +17447,7 @@
},
/obj/effect/landmark/start/cargo_technician,
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aLe" = (
/obj/structure/cable/white{
icon_state = "2-8"
@@ -19087,9 +17460,7 @@
dir = 8
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aLf" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -19103,17 +17474,13 @@
icon_state = "brown";
dir = 4
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aLg" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/plasticflaps,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aLh" = (
/obj/structure/cable/white{
d2 = 2;
@@ -19125,9 +17492,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aLi" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -19139,9 +17504,7 @@
/turf/open/floor/plasteel/red/side{
dir = 9
},
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aLj" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -19152,9 +17515,7 @@
/turf/open/floor/plasteel/red/side{
dir = 1
},
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aLk" = (
/obj/structure/chair{
dir = 8
@@ -19162,9 +17523,7 @@
/turf/open/floor/plasteel/red/side{
dir = 5
},
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aLl" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/stripes/line{
@@ -19342,15 +17701,11 @@
"aLK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/vault,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aLL" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on,
/turf/open/floor/plasteel/vault,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aLN" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 4;
@@ -19360,21 +17715,21 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/engine/vacuum,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aLO" = (
/obj/structure/sign/fire,
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
/turf/closed/wall/r_wall,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aLP" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8
},
/obj/machinery/light/small,
/turf/open/floor/engine,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aLQ" = (
/obj/machinery/doorButtons/airlock_controller{
idExterior = "incinerator_airlock_exterior";
@@ -19415,7 +17770,7 @@
icon_state = "caution";
dir = 10
},
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aLR" = (
/obj/structure/table/reinforced,
/obj/machinery/atmospherics/pipe/simple/general/visible{
@@ -19428,7 +17783,7 @@
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/caution,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aLS" = (
/obj/structure/table/reinforced,
/obj/machinery/atmospherics/pipe/simple/general/visible{
@@ -19440,7 +17795,7 @@
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
/turf/open/floor/plasteel/caution,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aLT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -19449,7 +17804,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"aLU" = (
/obj/structure/window/reinforced{
dir = 8
@@ -19467,7 +17822,7 @@
/turf/open/floor/plasteel/caution{
dir = 9
},
-/area/atmos)
+/area/engine/atmos)
"aLV" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -19480,7 +17835,7 @@
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"aLW" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -19493,7 +17848,7 @@
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"aLX" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -19507,7 +17862,7 @@
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"aLY" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -19523,7 +17878,7 @@
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"aLZ" = (
/obj/structure/table/reinforced,
/obj/item/weapon/tank/internals/emergency_oxygen{
@@ -19548,22 +17903,17 @@
/turf/open/floor/plasteel/caution{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"aMa" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"aMb" = (
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aMc" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
@@ -19571,7 +17921,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"aMd" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -19592,7 +17942,7 @@
/turf/open/floor/plasteel/caution{
dir = 9
},
-/area/atmos)
+/area/engine/atmos)
"aMe" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -19610,14 +17960,9 @@
/turf/open/floor/plasteel/caution{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"aMf" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
dir = 9
@@ -19625,7 +17970,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"aMg" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -19633,16 +17978,14 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aMh" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-18"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"aMi" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -19660,7 +18003,7 @@
/turf/open/floor/plasteel/caution{
dir = 9
},
-/area/atmos)
+/area/engine/atmos)
"aMj" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -19672,7 +18015,7 @@
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"aMk" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -19690,7 +18033,7 @@
/turf/open/floor/plasteel/caution{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"aMl" = (
/obj/structure/window/reinforced{
dir = 8
@@ -19698,19 +18041,19 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"aMm" = (
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"aMn" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aMp" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/briefcase,
@@ -19720,7 +18063,6 @@
/obj/structure/table/wood,
/obj/item/toy/cards/deck/syndicate{
icon_state = "deck_syndicate_full";
- pixel_x = 0;
pixel_y = 6
},
/turf/open/floor/plasteel/grimy,
@@ -19746,7 +18088,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aMv" = (
/obj/structure/mirror{
desc = "Mirror mirror on the wall, who is the most robust of them all?";
@@ -19790,9 +18132,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aMB" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -19804,15 +18144,12 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aMC" = (
/obj/structure/table/wood,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/item/device/camera,
/turf/open/floor/plasteel/vault{
@@ -19832,8 +18169,7 @@
/area/crew_quarters/bar/atrium)
"aMF" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/bar/atrium)
@@ -19945,7 +18281,6 @@
/obj/item/weapon/storage/box/lights/mixed,
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/obj/machinery/light_switch{
@@ -19959,35 +18294,25 @@
icon_state = "brown";
dir = 10
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aMS" = (
/obj/structure/table,
/obj/item/weapon/folder/yellow,
/obj/item/device/destTagger,
/turf/open/floor/plasteel/brown,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aMT" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/brown,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aMU" = (
/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -19995,9 +18320,7 @@
icon_state = "brown";
dir = 6
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aMV" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/trunk,
@@ -20006,17 +18329,13 @@
dir = 1
},
/turf/open/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aMW" = (
/turf/open/floor/plasteel/red/side{
icon_state = "red";
dir = 10
},
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aMX" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -20025,9 +18344,7 @@
icon_state = "2-4"
},
/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aMY" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -20039,9 +18356,7 @@
icon_state = "red";
dir = 6
},
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aMZ" = (
/obj/structure/cable/white{
icon_state = "0-2"
@@ -20053,9 +18368,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aNa" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/brown{
@@ -20091,8 +18404,6 @@
/obj/machinery/status_display{
density = 0;
name = "cargo display";
- pixel_x = 0;
- pixel_y = 0;
supply_display = 1
},
/turf/closed/wall,
@@ -20200,10 +18511,7 @@
/area/security/prison)
"aNr" = (
/obj/machinery/light/small,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/red/corner{
dir = 8
@@ -20237,7 +18545,6 @@
desc = "Talk through this. It looks like it has been modified to not broadcast.";
dir = 2;
name = "Prison Intercom";
- pixel_x = 0;
pixel_y = -28;
prison_radio = 1
},
@@ -20246,10 +18553,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aNw" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small,
/turf/open/floor/plating{
@@ -20277,9 +18581,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aNA" = (
/obj/machinery/door/poddoor/preopen{
id = "justicechamber";
@@ -20304,9 +18606,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aNB" = (
/obj/structure/cable/white{
d2 = 2;
@@ -20323,9 +18623,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aNC" = (
/obj/structure/lattice/catwalk,
/obj/structure/disposaloutlet{
@@ -20354,14 +18652,14 @@
name = "Incineration Chamber Vent"
},
/turf/open/floor/engine/vacuum,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aNF" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/general/visible,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"aNG" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 6
@@ -20369,7 +18667,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"aNH" = (
/obj/structure/window/reinforced{
dir = 8
@@ -20387,7 +18685,7 @@
/turf/open/floor/plasteel/caution{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"aNI" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -20396,7 +18694,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aNJ" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -20407,7 +18705,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aNK" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -20418,7 +18716,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aNL" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -20427,7 +18725,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aNM" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -20437,7 +18735,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aNN" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -20447,7 +18745,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aNO" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -20457,7 +18755,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aNP" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -20469,7 +18767,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aNQ" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -20479,7 +18777,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aNR" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -20492,7 +18790,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aNS" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -20500,7 +18798,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"aNT" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 10;
@@ -20509,15 +18807,15 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"aNU" = (
/obj/structure/lattice,
/turf/open/space,
-/area/atmos)
+/area/engine/atmos)
"aNV" = (
/obj/structure/grille,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"aNW" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -20576,7 +18874,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aOd" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -20606,9 +18904,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -20704,9 +19000,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aOl" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -20720,9 +19014,7 @@
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aOm" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -20818,34 +19110,26 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aOv" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aOw" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
/turf/closed/wall,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"aOx" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/closed/wall,
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aOy" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -20856,9 +19140,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aOz" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -20882,9 +19164,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aOA" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -20895,9 +19175,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aOB" = (
/obj/structure/cable/white{
d2 = 2;
@@ -20990,10 +19268,8 @@
icon_state = "0-2"
},
/obj/machinery/power/apc{
- cell_type = 10000;
dir = 1;
name = "Quartermaster's Office APC";
- pixel_x = 0;
pixel_y = 28
},
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -21147,9 +19423,7 @@
/obj/structure/table/reinforced,
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/status_display{
pixel_y = 32
@@ -21178,9 +19452,7 @@
icon_state = "darkred";
dir = 9
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aOZ" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -21224,9 +19496,7 @@
/turf/open/floor/plasteel/darkred/side{
dir = 1
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aPa" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -21241,9 +19511,7 @@
/turf/open/floor/plasteel/darkred/side{
dir = 1
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aPb" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -21255,9 +19523,7 @@
/turf/open/floor/plasteel/darkred/side{
dir = 1
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aPc" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -21273,9 +19539,7 @@
/turf/open/floor/plasteel/darkred/side{
dir = 5
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aPd" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/structure/window/reinforced{
@@ -21285,18 +19549,14 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aPe" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aPf" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/general/visible{
@@ -21345,7 +19605,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"aPk" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -21358,7 +19618,7 @@
icon_state = "caution";
dir = 10
},
-/area/atmos)
+/area/engine/atmos)
"aPl" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 6
@@ -21367,13 +19627,13 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aPm" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aPn" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
@@ -21385,7 +19645,7 @@
name = "Port to Turbine"
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aPo" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
@@ -21396,7 +19656,7 @@
name = "Port to Filter"
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aPp" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
@@ -21404,7 +19664,7 @@
/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aPq" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
@@ -21413,7 +19673,7 @@
icon_state = "1-4"
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aPr" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
@@ -21423,7 +19683,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aPs" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
@@ -21434,7 +19694,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aPt" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 1
@@ -21444,11 +19704,10 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aPu" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 1;
@@ -21461,13 +19720,13 @@
/turf/open/floor/plasteel/arrival{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"aPv" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"aPw" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -21475,14 +19734,14 @@
dir = 4
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"aPx" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
/turf/open/space,
-/area/atmos)
+/area/engine/atmos)
"aPy" = (
/obj/machinery/meter{
name = "Mixed Air Tank Out"
@@ -21492,7 +19751,7 @@
dir = 4
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"aPz" = (
/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{
dir = 8;
@@ -21506,17 +19765,17 @@
pump_direction = 0
},
/turf/open/floor/engine/air,
-/area/atmos)
+/area/engine/atmos)
"aPA" = (
/obj/machinery/camera{
c_tag = "Atmospherics - Air Supply";
name = "atmospherics camera"
},
/turf/open/floor/engine/air,
-/area/atmos)
+/area/engine/atmos)
"aPB" = (
/turf/open/floor/engine/air,
-/area/atmos)
+/area/engine/atmos)
"aPC" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -21599,7 +19858,7 @@
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aPK" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -21631,9 +19890,7 @@
"aPO" = (
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/obj/machinery/light_switch{
pixel_x = 26;
@@ -21663,9 +19920,7 @@
"aPQ" = (
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
/turf/open/floor/plasteel/loadingarea,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aPR" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -21680,9 +19935,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aPS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -21785,9 +20038,7 @@
icon_state = "brown";
dir = 9
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aQe" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder/yellow,
@@ -21801,9 +20052,7 @@
icon_state = "brown";
dir = 1
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aQf" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -21816,9 +20065,7 @@
icon_state = "brown";
dir = 1
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aQg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -21828,9 +20075,7 @@
icon_state = "brown";
dir = 1
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aQh" = (
/obj/machinery/photocopier,
/obj/machinery/ai_status_display{
@@ -21840,9 +20085,7 @@
icon_state = "brown";
dir = 1
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aQi" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular,
@@ -21850,7 +20093,6 @@
department = "Cargo Office";
departmentType = 0;
name = "Cargo Office RC";
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/camera{
@@ -21862,17 +20104,13 @@
icon_state = "brown";
dir = 1
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aQj" = (
/obj/structure/table,
/obj/item/weapon/paper_bin,
/obj/machinery/power/apc{
- cell_type = 10000;
dir = 1;
name = "Cargo Office APC";
- pixel_x = 0;
pixel_y = 28
},
/obj/structure/cable/white{
@@ -21882,17 +20120,13 @@
icon_state = "brown";
dir = 1
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aQk" = (
/turf/open/floor/plasteel/brown{
icon_state = "brown";
dir = 1
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aQl" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -21901,14 +20135,9 @@
icon_state = "brown";
dir = 1
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aQm" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -21920,9 +20149,7 @@
icon_state = "brown";
dir = 5
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aQn" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -22135,9 +20362,7 @@
"aQI" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/turf/open/floor/plasteel/whitered/side{
dir = 4
@@ -22164,7 +20389,6 @@
id = "permabolt3";
name = "Cell Bolt Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = 25;
req_access_txt = "0";
specialfunctions = 4
@@ -22208,7 +20432,6 @@
id = "permabolt2";
name = "Cell Bolt Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = 25;
req_access_txt = "0";
specialfunctions = 4
@@ -22242,7 +20465,6 @@
id = "permabolt1";
name = "Cell Bolt Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = 25;
req_access_txt = "0";
specialfunctions = 4
@@ -22279,9 +20501,7 @@
/turf/open/floor/plasteel/darkred/side{
dir = 8
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aQS" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -22293,9 +20513,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aQT" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -22304,22 +20522,17 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aQU" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/atmospherics/pipe/simple/general/hidden,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aQV" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -22327,9 +20540,7 @@
/turf/open/floor/plasteel/darkred/side{
dir = 4
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aQW" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 5
@@ -22339,9 +20550,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aQX" = (
/obj/structure/closet/crate{
icon_state = "crateopen";
@@ -22367,9 +20576,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aQY" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 2;
@@ -22391,7 +20598,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"aRa" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 6
@@ -22400,7 +20607,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"aRb" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/machinery/atmospherics/pipe/simple/green/visible{
@@ -22411,14 +20618,14 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aRc" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
icon_state = "intact";
dir = 8
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aRd" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
icon_state = "intact";
@@ -22426,7 +20633,7 @@
},
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aRe" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
icon_state = "intact";
@@ -22434,7 +20641,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/caution,
-/area/atmos)
+/area/engine/atmos)
"aRf" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
icon_state = "intact";
@@ -22442,7 +20649,6 @@
},
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/camera{
@@ -22451,14 +20657,14 @@
name = "atmospherics camera"
},
/turf/open/floor/plasteel/caution,
-/area/atmos)
+/area/engine/atmos)
"aRg" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
icon_state = "intact";
dir = 8
},
/turf/open/floor/plasteel/caution,
-/area/atmos)
+/area/engine/atmos)
"aRh" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
icon_state = "intact";
@@ -22467,7 +20673,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/caution,
-/area/atmos)
+/area/engine/atmos)
"aRi" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
icon_state = "intact";
@@ -22475,7 +20681,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aRj" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
icon_state = "intact";
@@ -22486,7 +20692,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aRk" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/machinery/atmospherics/pipe/simple/green/visible{
@@ -22497,7 +20703,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aRl" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
@@ -22507,8 +20713,7 @@
sensors = list("air_sensor" = "Tank")
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 10
@@ -22516,30 +20721,27 @@
/turf/open/floor/plasteel/arrival{
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"aRn" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "air_sensor"
},
/turf/open/floor/engine/air,
-/area/atmos)
+/area/engine/atmos)
"aRo" = (
/obj/machinery/portable_atmospherics/canister/air,
/turf/open/floor/engine/air,
-/area/atmos)
+/area/engine/atmos)
"aRp" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/engine/air,
-/area/atmos)
+/area/engine/atmos)
"aRq" = (
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
+ icon_state = "plant-21"
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
@@ -22569,8 +20771,7 @@
department = "Theatre Backstage";
departmentType = 0;
name = "Theatre RC";
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/item/weapon/lipstick/random{
pixel_x = 3;
@@ -22590,7 +20791,6 @@
/obj/machinery/vending/autodrobe,
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/light,
@@ -22606,9 +20806,7 @@
/obj/structure/cable/white{
icon_state = "1-2"
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/camera{
c_tag = "Service Hallway - Aft";
@@ -22618,9 +20816,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aRB" = (
/obj/structure/table/wood,
/obj/item/device/instrument/violin,
@@ -22631,8 +20827,7 @@
"aRC" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/carpet,
/area/crew_quarters/bar/atrium)
@@ -22697,9 +20892,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aRM" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/structure/disposalpipe/segment{
@@ -22709,9 +20902,7 @@
icon_state = "brown";
dir = 8
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aRN" = (
/obj/structure/chair/office/dark{
dir = 1
@@ -22722,9 +20913,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aRO" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -22738,9 +20927,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aRP" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -22753,9 +20940,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aRQ" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -22767,9 +20952,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aRR" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -22784,9 +20967,7 @@
icon_state = "1-8"
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aRS" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -22802,9 +20983,7 @@
icon_state = "1-8"
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aRT" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -22819,9 +20998,7 @@
icon_state = "brown";
dir = 4
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aRU" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -23081,8 +21258,7 @@
icon_state = "tube1"
},
/obj/machinery/ai_status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/open/floor/plasteel/brown{
icon_state = "brown";
@@ -23113,9 +21289,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/turf/open/floor/plasteel/red/side{
dir = 8
@@ -23144,9 +21318,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/turf/open/floor/plating{
icon_state = "platingdmg3"
@@ -23167,9 +21339,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/turf/open/floor/plating{
icon_state = "platingdmg1"
@@ -23213,9 +21383,7 @@
icon_state = "darkred";
dir = 10
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aSA" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -23225,13 +21393,10 @@
dir = 8
},
/turf/open/floor/plasteel/darkred/side,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aSB" = (
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -23240,9 +21405,7 @@
on = 1
},
/turf/open/floor/plasteel/darkred/side,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aSC" = (
/obj/machinery/newscaster/security_unit{
pixel_y = -32
@@ -23252,14 +21415,12 @@
dir = 5
},
/turf/open/floor/plasteel/darkred/side,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aSD" = (
/obj/structure/cable/white,
/obj/machinery/power/apc{
dir = 2;
- name = "Education Chamer APC";
+ name = "Education Chamber APC";
pixel_y = -26
},
/obj/machinery/atmospherics/pipe/simple/general/hidden{
@@ -23270,9 +21431,7 @@
icon_state = "darkred";
dir = 6
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aSE" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
@@ -23283,9 +21442,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aSF" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 9
@@ -23294,9 +21451,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aSG" = (
/obj/structure/sign/securearea{
pixel_x = 32
@@ -23310,14 +21465,14 @@
/area/security/prison)
"aSH" = (
/turf/open/floor/engine/co2,
-/area/atmos)
+/area/engine/atmos)
"aSI" = (
/obj/machinery/camera{
c_tag = "Atmospherics - co2 Cell";
name = "atmospherics camera"
},
/turf/open/floor/engine/co2,
-/area/atmos)
+/area/engine/atmos)
"aSJ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -23332,7 +21487,7 @@
pump_direction = 0
},
/turf/open/floor/engine/co2,
-/area/atmos)
+/area/engine/atmos)
"aSK" = (
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
@@ -23340,14 +21495,14 @@
},
/obj/structure/grille,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"aSL" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
},
/turf/open/space,
-/area/atmos)
+/area/engine/atmos)
"aSM" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -23355,7 +21510,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"aSN" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
@@ -23365,7 +21520,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"aSO" = (
/obj/structure/window/reinforced{
dir = 8
@@ -23381,14 +21536,14 @@
on = 0
},
/turf/open/floor/plasteel/vault,
-/area/atmos)
+/area/engine/atmos)
"aSP" = (
/obj/machinery/atmospherics/pipe/manifold4w/yellow/visible,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aSQ" = (
/obj/machinery/atmospherics/components/unary/thermomachine/heater{
dir = 8
@@ -23396,20 +21551,20 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aSR" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aSS" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
/obj/machinery/meter,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aST" = (
/obj/machinery/light{
dir = 4;
@@ -23420,14 +21575,14 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aSU" = (
/obj/machinery/ai_status_display,
/turf/closed/wall,
-/area/atmos)
+/area/engine/atmos)
"aSV" = (
/turf/closed/wall,
-/area/atmos)
+/area/engine/atmos)
"aSW" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_atmos{
@@ -23441,22 +21596,22 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aSX" = (
/obj/structure/sign/nosmoking_2,
/turf/closed/wall,
-/area/atmos)
+/area/engine/atmos)
"aSY" = (
/obj/machinery/status_display,
/turf/closed/wall,
-/area/atmos)
+/area/engine/atmos)
"aSZ" = (
/obj/machinery/light{
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aTa" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -23464,13 +21619,13 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aTb" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 6
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aTc" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -23480,11 +21635,10 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aTd" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/green/visible,
@@ -23494,7 +21648,7 @@
/turf/open/floor/plasteel/arrival{
dir = 6
},
-/area/atmos)
+/area/engine/atmos)
"aTe" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -23502,7 +21656,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"aTf" = (
/obj/machinery/meter{
name = "Mixed Air Tank In"
@@ -23512,7 +21666,7 @@
dir = 4
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"aTg" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 8;
@@ -23520,7 +21674,7 @@
id = "air_in"
},
/turf/open/floor/engine/air,
-/area/atmos)
+/area/engine/atmos)
"aTh" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -23539,9 +21693,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aTi" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -23559,9 +21711,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aTj" = (
/obj/structure/table/wood,
/obj/structure/extinguisher_cabinet{
@@ -23580,7 +21730,6 @@
},
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/light,
@@ -23611,8 +21760,7 @@
"aTq" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/redyellow,
/area/crew_quarters/bar/atrium)
@@ -23646,9 +21794,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aTu" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment{
@@ -23656,27 +21802,21 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aTv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aTw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aTx" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -23686,18 +21826,14 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aTy" = (
/obj/effect/decal/cleanable/oil,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aTz" = (
/obj/machinery/holopad,
/obj/structure/disposalpipe/segment{
@@ -23705,32 +21841,24 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aTA" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aTB" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aTC" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -23739,9 +21867,7 @@
icon_state = "brown";
dir = 4
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aTD" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining{
@@ -23784,9 +21910,7 @@
"aTH" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/turf/open/floor/plasteel/neutral,
/area/quartermaster/storage)
@@ -23872,6 +21996,9 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/machinery/light_switch{
+ pixel_x = 23
+ },
/turf/open/floor/plasteel/brown{
icon_state = "brown";
dir = 4
@@ -23903,8 +22030,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -24000,7 +22126,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/security/prison)
+/area/prison/execution_room)
"aUe" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
@@ -24033,25 +22159,25 @@
dir = 8
},
/turf/open/floor/engine/co2,
-/area/atmos)
+/area/engine/atmos)
"aUi" = (
/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
/turf/open/floor/engine/co2,
-/area/atmos)
+/area/engine/atmos)
"aUj" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "co2_sensor"
},
/turf/open/floor/engine/co2,
-/area/atmos)
+/area/engine/atmos)
"aUk" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"aUl" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
@@ -24065,14 +22191,14 @@
},
/obj/machinery/atmospherics/pipe/simple/green/visible,
/turf/open/floor/plasteel/vault,
-/area/atmos)
+/area/engine/atmos)
"aUm" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aUn" = (
/obj/machinery/atmospherics/components/unary/thermomachine/heater{
dir = 4;
@@ -24080,28 +22206,27 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aUo" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aUp" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aUq" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aUr" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder/yellow,
@@ -24113,13 +22238,13 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aUs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
-/area/atmos)
+/area/engine/atmos)
"aUt" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/disposal/bin,
@@ -24137,7 +22262,7 @@
icon_state = "caution";
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"aUu" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -24146,7 +22271,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aUv" = (
/obj/structure/table/reinforced,
/obj/item/weapon/wrench,
@@ -24157,7 +22282,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aUw" = (
/obj/structure/table/reinforced,
/obj/item/clothing/gloves/color/black,
@@ -24170,7 +22295,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aUx" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -24178,7 +22303,7 @@
dir = 8
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aUy" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -24189,11 +22314,11 @@
on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aUz" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aUA" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 8
@@ -24202,7 +22327,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aUB" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/components/binary/pump{
@@ -24212,7 +22337,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"aUC" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
icon_state = "intact";
@@ -24233,12 +22358,12 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"aUD" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/space_heater,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aUE" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -24254,7 +22379,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 5
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aUF" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -24270,7 +22395,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aUG" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -24279,7 +22404,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aUH" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -24294,7 +22419,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aUI" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -24312,7 +22437,7 @@
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aUJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -24323,7 +22448,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aUK" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -24333,7 +22458,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aUL" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -24344,7 +22469,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aUM" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -24360,9 +22485,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aUN" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -24374,9 +22497,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aUO" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -24395,9 +22516,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aUP" = (
/turf/closed/wall,
/area/crew_quarters/kitchen)
@@ -24419,9 +22538,7 @@
"aUS" = (
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/obj/machinery/light{
icon_state = "tube1";
@@ -24467,50 +22584,38 @@
icon_state = "brown";
dir = 8
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aUX" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
dir = 8
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aUY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aUZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aVa" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aVb" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aVc" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder,
@@ -24526,14 +22631,9 @@
icon_state = "brown";
dir = 4
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aVd" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24;
@@ -24565,10 +22665,7 @@
/turf/open/floor/plasteel/purple/side,
/area/quartermaster/storage)
"aVg" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/brown,
/area/quartermaster/storage)
@@ -24576,7 +22673,6 @@
/obj/structure/closet/wardrobe/cargotech,
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -24660,10 +22756,7 @@
/turf/open/floor/plasteel/brown,
/area/quartermaster/qm)
"aVp" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/light,
/obj/machinery/newscaster{
pixel_y = -32
@@ -24673,13 +22766,11 @@
"aVq" = (
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/camera{
c_tag = "Cargo - Quartermaster's Office";
@@ -24731,10 +22822,7 @@
/turf/open/floor/plating,
/area/quartermaster/qm)
"aVw" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/structure/cable/white{
icon_state = "2-8"
},
@@ -25118,7 +23206,7 @@
pixel_y = 1
},
/turf/open/floor/engine/co2,
-/area/atmos)
+/area/engine/atmos)
"aWc" = (
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/simple/green/visible{
@@ -25126,14 +23214,14 @@
},
/obj/structure/grille,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"aWd" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
/turf/open/space,
-/area/atmos)
+/area/engine/atmos)
"aWe" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -25141,7 +23229,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"aWf" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
@@ -25150,7 +23238,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"aWg" = (
/obj/structure/window/reinforced{
dir = 8
@@ -25163,7 +23251,7 @@
on = 1
},
/turf/open/floor/plasteel/vault,
-/area/atmos)
+/area/engine/atmos)
"aWh" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
@@ -25171,18 +23259,18 @@
/obj/machinery/portable_atmospherics/canister,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aWi" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aWj" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aWk" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
@@ -25190,7 +23278,7 @@
/obj/machinery/meter,
/obj/item/weapon/wrench,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aWl" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
icon_state = "connector_map";
@@ -25201,19 +23289,18 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aWm" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/caution{
icon_state = "caution";
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"aWn" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -25222,7 +23309,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aWo" = (
/obj/structure/closet/secure_closet/atmospherics,
/obj/effect/decal/cleanable/dirt,
@@ -25230,25 +23317,25 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aWp" = (
/obj/machinery/pipedispenser/disposal/transit_tube,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aWq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aWr" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aWs" = (
/obj/machinery/atmospherics/components/trinary/mixer{
dir = 1;
@@ -25256,16 +23343,13 @@
node1_concentration = 0.8;
node2_concentration = 0.2;
on = 1;
- pixel_x = 0;
- pixel_y = 0;
target_pressure = 4500
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aWt" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 1;
@@ -25280,13 +23364,13 @@
/turf/open/floor/plasteel/blue/side{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"aWu" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"aWv" = (
/obj/machinery/meter,
/obj/structure/grille,
@@ -25295,7 +23379,7 @@
dir = 4
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"aWw" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -25310,20 +23394,20 @@
pump_direction = 0
},
/turf/open/floor/engine/o2,
-/area/atmos)
+/area/engine/atmos)
"aWx" = (
/obj/machinery/camera{
c_tag = "Atmospherics - Oxygen Supply";
name = "atmospherics camera"
},
/turf/open/floor/engine/o2,
-/area/atmos)
+/area/engine/atmos)
"aWy" = (
/turf/open/floor/engine/o2,
-/area/atmos)
+/area/engine/atmos)
"aWz" = (
/turf/open/floor/plasteel/neutral/corner,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aWA" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -25331,7 +23415,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aWB" = (
/turf/closed/wall,
/area/hydroponics)
@@ -25369,8 +23453,7 @@
"aWG" = (
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -25381,9 +23464,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aWH" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -25394,9 +23475,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aWI" = (
/obj/structure/kitchenspike,
/obj/effect/turf_decal/bot,
@@ -25446,12 +23525,7 @@
/obj/machinery/newscaster{
pixel_x = -32
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/redyellow,
/area/crew_quarters/bar/atrium)
"aWO" = (
@@ -25485,7 +23559,6 @@
/obj/machinery/autolathe,
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/firealarm{
@@ -25504,69 +23577,48 @@
icon_state = "brown";
dir = 10
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aWS" = (
/obj/machinery/disposal/bin,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/trunk,
/turf/open/floor/plasteel/brown,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aWT" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/brown,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aWU" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/brown,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aWV" = (
/obj/structure/table,
/obj/item/weapon/clipboard,
/obj/item/toy/figure/cargotech,
/turf/open/floor/plasteel/brown,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aWW" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-18";
layer = 4.1
},
/turf/open/floor/plasteel/brown,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aWX" = (
/obj/structure/filingcabinet/filingcabinet,
/turf/open/floor/plasteel/brown,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aWY" = (
/obj/machinery/computer/cargo,
/turf/open/floor/plasteel/brown,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aWZ" = (
/obj/structure/chair/office/dark,
/obj/effect/landmark/start/cargo_technician,
/turf/open/floor/plasteel/brown,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aXa" = (
/obj/structure/table/reinforced,
/obj/machinery/computer/stockexchange,
@@ -25586,28 +23638,20 @@
icon_state = "brown";
dir = 6
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aXb" = (
/turf/closed/wall,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aXc" = (
/obj/machinery/status_display,
/turf/closed/wall,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aXd" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aXe" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_mining{
@@ -25619,16 +23663,12 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aXf" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aXg" = (
/obj/structure/plasticflaps{
opacity = 1
@@ -25637,9 +23677,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aXh" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/firedoor,
@@ -25655,9 +23693,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aXi" = (
/obj/machinery/status_display,
/turf/closed/wall,
@@ -25705,7 +23741,6 @@
"aXm" = (
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -26
},
/obj/machinery/light,
@@ -25762,7 +23797,6 @@
"aXr" = (
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -25784,8 +23818,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/red/corner{
dir = 1
@@ -25840,10 +23873,7 @@
},
/area/security/prison)
"aXy" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/structure/sign/pods{
dir = 8;
pixel_y = -32
@@ -25941,7 +23971,7 @@
dir = 4
},
/obj/item/device/radio/intercom{
- pixel_y = 25
+ pixel_y = 24
},
/obj/item/weapon/storage/pod{
pixel_x = 6;
@@ -25963,7 +23993,6 @@
/obj/machinery/status_display{
density = 0;
layer = 3;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/computer/shuttle/pod{
@@ -26008,13 +24037,13 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"aXN" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"aXO" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/general/visible{
@@ -26022,19 +24051,19 @@
},
/obj/machinery/meter,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aXP" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/start/atmospheric_technician,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aXQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/trinary/filter{
dir = 1
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aXR" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -26044,7 +24073,7 @@
icon_state = "caution";
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"aXS" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/start/atmospheric_technician,
@@ -26054,7 +24083,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aXT" = (
/obj/machinery/suit_storage_unit/atmos,
/obj/effect/decal/cleanable/dirt,
@@ -26062,14 +24091,14 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aXU" = (
/obj/machinery/pipedispenser/disposal,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aXV" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -26078,21 +24107,21 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/effect/landmark/start/atmospheric_technician,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aXW" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
icon_state = "intact";
dir = 1
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aXX" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aXY" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
@@ -26102,38 +24131,37 @@
sensors = list("o2_sensor" = "Tank")
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/green/visible,
/turf/open/floor/plasteel/blue/side{
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"aXZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"aYa" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "o2_sensor"
},
/turf/open/floor/engine/o2,
-/area/atmos)
+/area/engine/atmos)
"aYb" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/engine/o2,
-/area/atmos)
+/area/engine/atmos)
"aYc" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/engine/o2,
-/area/atmos)
+/area/engine/atmos)
"aYd" = (
/obj/structure/reagent_dispensers/watertank,
/obj/structure/window/reinforced{
@@ -26183,7 +24211,6 @@
/obj/structure/closet/wardrobe/botanist,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = 26
},
/obj/effect/turf_decal/bot,
@@ -26202,9 +24229,7 @@
},
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/obj/machinery/chem_master/condimaster{
name = "BrewMaster 3000"
@@ -26221,9 +24246,7 @@
icon_state = "loadingarea";
dir = 1
},
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aYn" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -26234,9 +24257,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aYo" = (
/obj/structure/plasticflaps{
opacity = 1
@@ -26269,8 +24290,7 @@
"aYq" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/kitchen)
@@ -26368,9 +24388,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aYC" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_mining{
@@ -26383,9 +24401,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aYD" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
@@ -26397,9 +24413,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aYE" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/light{
@@ -26414,9 +24428,7 @@
icon_state = "brown";
dir = 9
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aYF" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -26424,18 +24436,14 @@
icon_state = "purple";
dir = 1
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aYG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/brown{
icon_state = "brown";
dir = 1
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aYH" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/belt/utility,
@@ -26443,9 +24451,7 @@
icon_state = "purple";
dir = 1
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aYI" = (
/obj/structure/table/reinforced,
/obj/machinery/computer/stockexchange,
@@ -26453,9 +24459,7 @@
icon_state = "brown";
dir = 5
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aYJ" = (
/obj/structure/table,
/obj/effect/decal/cleanable/dirt,
@@ -26463,25 +24467,23 @@
/obj/item/toy/figure/miner,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/light{
dir = 1
},
/obj/effect/turf_decal/bot,
+/obj/machinery/light_switch{
+ pixel_x = -38
+ },
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aYK" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aYL" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -26489,24 +24491,18 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aYM" = (
/obj/structure/closet/secure_closet/miner,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aYN" = (
/obj/structure/closet/secure_closet/miner,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aYO" = (
/obj/machinery/mineral/equipment_vendor,
/obj/effect/decal/cleanable/dirt,
@@ -26515,9 +24511,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aYP" = (
/obj/structure/table,
/obj/machinery/microwave{
@@ -26528,17 +24522,13 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aYQ" = (
/obj/structure/table,
/obj/item/weapon/storage/box/donkpockets,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aYR" = (
/obj/structure/cable/white{
d2 = 2;
@@ -26548,9 +24538,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aYS" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/mining)
@@ -26699,14 +24687,14 @@
/area/security/prison)
"aZi" = (
/turf/open/floor/engine/plasma,
-/area/atmos)
+/area/engine/atmos)
"aZj" = (
/obj/machinery/camera{
c_tag = "Atmospherics - Plasma Cell";
name = "atmospherics camera"
},
/turf/open/floor/engine/plasma,
-/area/atmos)
+/area/engine/atmos)
"aZk" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -26721,7 +24709,7 @@
pump_direction = 0
},
/turf/open/floor/engine/plasma,
-/area/atmos)
+/area/engine/atmos)
"aZl" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
@@ -26730,7 +24718,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"aZm" = (
/obj/structure/window/reinforced{
dir = 8
@@ -26749,7 +24737,7 @@
icon_state = "purple";
dir = 9
},
-/area/atmos)
+/area/engine/atmos)
"aZn" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 4
@@ -26759,7 +24747,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aZo" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
@@ -26768,24 +24756,24 @@
/obj/machinery/portable_atmospherics/canister,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aZp" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 4;
initialize_directions = 11
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aZq" = (
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aZr" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
},
/obj/machinery/meter,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aZs" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -26795,28 +24783,27 @@
icon_state = "caution";
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"aZt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aZu" = (
/obj/structure/closet/secure_closet/atmospherics,
/obj/effect/turf_decal/stripes/end,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aZv" = (
/obj/machinery/pipedispenser,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aZw" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/components/trinary/filter{
@@ -26828,7 +24815,7 @@
/turf/open/floor/plasteel/blue/side{
dir = 6
},
-/area/atmos)
+/area/engine/atmos)
"aZx" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
@@ -26836,7 +24823,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"aZy" = (
/obj/machinery/meter,
/obj/structure/grille,
@@ -26844,7 +24831,7 @@
dir = 4
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"aZz" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 8;
@@ -26852,11 +24839,11 @@
id = "o2_in"
},
/turf/open/floor/engine/o2,
-/area/atmos)
+/area/engine/atmos)
"aZA" = (
/mob/living/simple_animal/cockroach,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aZB" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -26866,7 +24853,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"aZD" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -26976,9 +24963,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aZL" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -26992,9 +24977,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aZM" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -27005,9 +24988,7 @@
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"aZN" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -27078,7 +25059,6 @@
/obj/item/weapon/hand_labeler,
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/effect/turf_decal/bot,
@@ -27147,12 +25127,11 @@
},
/area/hallway/primary/fore)
"bab" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
/turf/open/floor/plasteel/brown{
icon_state = "brown";
dir = 1
@@ -27204,9 +25183,7 @@
icon_state = "purple";
dir = 8
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"baj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -27214,47 +25191,34 @@
on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bak" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bal" = (
/obj/structure/chair/office/dark{
dir = 1
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bam" = (
/obj/structure/filingcabinet/filingcabinet,
/turf/open/floor/plasteel/purple/side{
icon_state = "purple";
dir = 4
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"ban" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/brown{
icon_state = "brown";
dir = 8
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bao" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -27264,52 +25228,40 @@
icon_state = "brown";
dir = 1
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bap" = (
/turf/open/floor/plasteel/loadingarea{
icon_state = "loadingarea";
dir = 1
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"baq" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/loadingarea{
icon_state = "loadingarea";
dir = 1
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bar" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/brown{
icon_state = "brown";
dir = 1
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bas" = (
/turf/open/floor/plasteel/purple/side{
icon_state = "purple";
dir = 1
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bat" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/brown{
icon_state = "brown";
dir = 5
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bau" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -27318,9 +25270,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bav" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -27331,9 +25281,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"baw" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -27345,9 +25293,7 @@
/obj/structure/window/reinforced/fulltile,
/obj/structure/sign/vacuum,
/turf/open/floor/plating,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bax" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -27359,9 +25305,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bay" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/toolbox/emergency,
@@ -27456,18 +25400,18 @@
dir = 8
},
/turf/open/floor/engine/plasma,
-/area/atmos)
+/area/engine/atmos)
"baH" = (
/obj/machinery/portable_atmospherics/canister/toxins,
/turf/open/floor/engine/plasma,
-/area/atmos)
+/area/engine/atmos)
"baI" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "tox_sensor"
},
/turf/open/floor/engine/plasma,
-/area/atmos)
+/area/engine/atmos)
"baJ" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
@@ -27485,18 +25429,18 @@
icon_state = "purple";
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"baK" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"baL" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"baM" = (
/obj/structure/table/reinforced,
/obj/item/device/analyzer{
@@ -27507,32 +25451,26 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"baN" = (
/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/caution{
icon_state = "caution";
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"baO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"baP" = (
/obj/structure/closet/wardrobe/atmospherics_yellow,
/obj/effect/decal/cleanable/dirt,
@@ -27543,11 +25481,11 @@
/obj/item/weapon/storage/backpack/satchel/eng,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"baQ" = (
/obj/structure/sign/atmosplaque,
/turf/closed/wall,
-/area/atmos)
+/area/engine/atmos)
"baR" = (
/obj/structure/table/reinforced,
/obj/item/stack/packageWrap,
@@ -27556,7 +25494,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"baS" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
@@ -27564,7 +25502,7 @@
dir = 1
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"baT" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
icon_state = "intact";
@@ -27574,7 +25512,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"baU" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/components/binary/pump{
@@ -27584,7 +25522,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"baV" = (
/obj/structure/sign/securearea{
pixel_x = 32
@@ -27599,7 +25537,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"baW" = (
/obj/structure/closet/firecloset,
/obj/machinery/light/small{
@@ -27607,7 +25545,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"baX" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -27618,7 +25556,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"baY" = (
/obj/structure/closet/crate/hydroponics,
/obj/item/weapon/cultivator,
@@ -27631,8 +25569,7 @@
"baZ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/greenblue/side,
/area/hydroponics)
@@ -27700,9 +25637,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"bbi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/white{
@@ -27710,29 +25645,19 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"bbj" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"bbk" = (
/obj/structure/kitchenspike,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/bot,
@@ -27741,7 +25666,6 @@
"bbl" = (
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/item/device/radio/intercom{
@@ -27858,9 +25782,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bbC" = (
/obj/structure/chair/office/dark{
dir = 8
@@ -27869,35 +25791,25 @@
icon_state = "brown";
dir = 8
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bbD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bbE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bbF" = (
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bbG" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/brown{
icon_state = "brown";
dir = 4
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bbH" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/firedoor,
@@ -27909,24 +25821,18 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bbI" = (
/turf/open/floor/plasteel/purple/side{
icon_state = "purple";
dir = 8
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bbJ" = (
/obj/effect/decal/cleanable/oil,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bbK" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -27939,9 +25845,7 @@
dir = 8
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bbL" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/start/shaft_miner,
@@ -27949,9 +25853,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bbM" = (
/obj/effect/landmark/start/shaft_miner,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -27959,64 +25861,47 @@
on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bbN" = (
/obj/effect/landmark/start/shaft_miner,
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bbO" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bbP" = (
/turf/open/floor/plasteel/purple/side{
icon_state = "purple";
dir = 4
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bbQ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/sign/pods{
- name = "MINING POD";
- pixel_x = 0
+ name = "MINING POD"
},
/turf/open/floor/plating,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bbR" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/ore_box,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bbS" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/emcloset,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bbT" = (
/obj/structure/cable/white,
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bbU" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -28143,7 +26028,7 @@
pixel_y = 1
},
/turf/open/floor/engine/plasma,
-/area/atmos)
+/area/engine/atmos)
"bce" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
@@ -28153,7 +26038,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"bcf" = (
/obj/structure/window/reinforced{
dir = 8
@@ -28168,7 +26053,7 @@
/turf/open/floor/plasteel/purple/side{
dir = 10
},
-/area/atmos)
+/area/engine/atmos)
"bcg" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
@@ -28176,7 +26061,7 @@
on = 0
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bch" = (
/obj/machinery/light{
dir = 4;
@@ -28188,13 +26073,13 @@
on = 0
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bci" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bcj" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_atmos{
@@ -28209,14 +26094,14 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bck" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
icon_state = "intact";
dir = 5
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bcl" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -28225,11 +26110,10 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bcm" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 1;
@@ -28244,14 +26128,14 @@
/turf/open/floor/plasteel/red/side{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"bcn" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold4w/yellow/visible,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"bco" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -28266,23 +26150,23 @@
pump_direction = 0
},
/turf/open/floor/engine/n2,
-/area/atmos)
+/area/engine/atmos)
"bcp" = (
/obj/machinery/camera{
c_tag = "Atmospherics - Nitrogen Cell";
name = "atmospherics camera"
},
/turf/open/floor/engine/n2,
-/area/atmos)
+/area/engine/atmos)
"bcq" = (
/turf/open/floor/engine/n2,
-/area/atmos)
+/area/engine/atmos)
"bcr" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"bcs" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet,
@@ -28292,7 +26176,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"bct" = (
/obj/structure/sign/botany,
/turf/closed/wall,
@@ -28328,15 +26212,11 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"bcx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"bcy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
@@ -28482,14 +26362,9 @@
dir = 4
},
/turf/open/floor/plating,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bcP" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -28497,42 +26372,31 @@
icon_state = "purple";
dir = 8
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bcQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bcR" = (
/obj/machinery/holopad,
/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bcS" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bcT" = (
/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-18";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -28540,9 +26404,7 @@
icon_state = "purple";
dir = 4
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bcU" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -28552,9 +26414,7 @@
icon_state = "brown";
dir = 8
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bcV" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -28565,20 +26425,14 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bcW" = (
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bcX" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bcZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/firedoor,
@@ -28591,26 +26445,20 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bda" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bdb" = (
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bdc" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/old,
@@ -28624,9 +26472,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bdd" = (
/obj/machinery/door/airlock/shuttle{
name = "Mining Shuttle Airlock";
@@ -28707,9 +26553,7 @@
/obj/structure/sign/directions/engineering{
desc = "A sign that shows there are doors here. There are doors everywhere!";
icon_state = "doors";
- name = "WARNING: BLAST DOORS";
- pixel_x = 0;
- pixel_y = 0
+ name = "WARNING: BLAST DOORS"
},
/turf/open/floor/plating,
/area/security/brig)
@@ -28748,26 +26592,25 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"bdp" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 1
},
/obj/machinery/meter,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bdq" = (
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bdr" = (
/obj/machinery/power/apc{
cell_type = 5000;
dir = 1;
name = "Atmospherics APC";
- pixel_x = 0;
- pixel_y = 25
+ pixel_y = 24
},
/obj/structure/cable/white{
icon_state = "0-2"
@@ -28775,13 +26618,13 @@
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bds" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bdt" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -28792,7 +26635,7 @@
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bdu" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -28801,7 +26644,7 @@
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bdv" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 32
@@ -28816,7 +26659,7 @@
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bdw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -28824,14 +26667,14 @@
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bdx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bdy" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -28841,25 +26684,24 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bdz" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
dir = 1
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bdA" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bdB" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
@@ -28869,14 +26711,13 @@
sensors = list("n2_sensor" = "Tank")
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/green/visible,
/turf/open/floor/plasteel/red/side{
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"bdC" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/binary/valve/open{
@@ -28886,24 +26727,24 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"bdD" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "n2_sensor"
},
/turf/open/floor/engine/n2,
-/area/atmos)
+/area/engine/atmos)
"bdE" = (
/obj/machinery/portable_atmospherics/canister/nitrogen,
/turf/open/floor/engine/n2,
-/area/atmos)
+/area/engine/atmos)
"bdF" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/engine/n2,
-/area/atmos)
+/area/engine/atmos)
"bdG" = (
/obj/structure/reagent_dispensers/watertank,
/obj/item/weapon/reagent_containers/glass/bucket,
@@ -28917,8 +26758,7 @@
/obj/structure/reagent_dispensers/watertank,
/obj/item/weapon/reagent_containers/glass/bucket,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
@@ -28944,7 +26784,6 @@
/obj/structure/table/glass,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = 26
},
/obj/item/weapon/storage/box/beakers{
@@ -28993,9 +26832,7 @@
icon_state = "greenblue";
dir = 8
},
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"bdQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/white{
@@ -29005,25 +26842,20 @@
icon_state = "green";
dir = 1
},
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"bdR" = (
/obj/machinery/light/small{
dir = 1
},
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = 26
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/red/side{
dir = 4
},
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"bdS" = (
/obj/machinery/smartfridge,
/turf/closed/wall,
@@ -29052,7 +26884,6 @@
department = "Kitchen";
departmentType = 0;
name = "Kitchen RC";
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/plasteel/red,
@@ -29060,7 +26891,6 @@
"bdW" = (
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = 26
},
/turf/open/floor/plasteel/white,
@@ -29199,9 +27029,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bem" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -29210,24 +27038,18 @@
icon_state = "brown";
dir = 8
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"ben" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"beo" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
dir = 1
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bep" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -29237,9 +27059,7 @@
dir = 1
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"beq" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -29251,9 +27071,7 @@
icon_state = "brown";
dir = 4
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"ber" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -29270,9 +27088,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bes" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -29284,18 +27100,14 @@
icon_state = "purple";
dir = 8
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bet" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"beu" = (
/obj/structure/cable/white{
icon_state = "2-8"
@@ -29308,34 +27120,25 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bev" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bew" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bex" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bey" = (
/obj/structure/table/reinforced,
/obj/effect/decal/cleanable/dirt,
@@ -29344,24 +27147,18 @@
icon_state = "purple";
dir = 4
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bez" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"beA" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/oil,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"beB" = (
/obj/structure/cable/white{
d2 = 2;
@@ -29370,9 +27167,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"beC" = (
/obj/structure/chair{
dir = 1
@@ -29417,8 +27212,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/whitered/side{
dir = 1
@@ -29430,7 +27224,6 @@
/obj/item/weapon/bedsheet/medical,
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- pixel_x = 0;
pixel_y = 26;
req_access_txt = "0";
use_power = 0
@@ -29471,9 +27264,7 @@
},
/area/security/brig)
"beL" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/structure/cable/white{
icon_state = "1-2"
},
@@ -29494,12 +27285,7 @@
},
/area/security/brig)
"beN" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/red/side{
dir = 9
},
@@ -29560,9 +27346,7 @@
/obj/structure/cable/white{
icon_state = "1-8"
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/red/side{
dir = 1
},
@@ -29602,7 +27386,7 @@
/area/security/main)
"beW" = (
/turf/closed/wall/r_wall,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"beX" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -29614,7 +27398,7 @@
name = "HoS Space Blast door"
},
/turf/open/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"beY" = (
/obj/structure/cable/white{
icon_state = "0-2"
@@ -29632,7 +27416,7 @@
name = "HoS Space Blast door"
},
/turf/open/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"beZ" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -29644,17 +27428,17 @@
name = "HoS Space Blast door"
},
/turf/open/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bfa" = (
/turf/open/floor/engine/n2o,
-/area/atmos)
+/area/engine/atmos)
"bfb" = (
/obj/machinery/camera{
c_tag = "Atmospherics - n2o Cell";
name = "atmospherics camera"
},
/turf/open/floor/engine/n2o,
-/area/atmos)
+/area/engine/atmos)
"bfc" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -29669,7 +27453,7 @@
pump_direction = 0
},
/turf/open/floor/engine/n2o,
-/area/atmos)
+/area/engine/atmos)
"bfd" = (
/obj/structure/window/reinforced{
dir = 8
@@ -29687,7 +27471,7 @@
/turf/open/floor/plasteel/escape{
dir = 9
},
-/area/atmos)
+/area/engine/atmos)
"bfe" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 4
@@ -29696,13 +27480,13 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bff" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bfg" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
@@ -29713,7 +27497,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bfh" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
@@ -29724,7 +27508,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bfi" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
@@ -29735,13 +27519,13 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bfj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bfk" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -29750,14 +27534,14 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bfl" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bfm" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -29770,7 +27554,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bfn" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -29782,7 +27566,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bfo" = (
/obj/machinery/holopad,
/obj/effect/decal/cleanable/dirt,
@@ -29801,7 +27585,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bfp" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -29811,29 +27595,28 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bfq" = (
/obj/structure/cable/white{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bfr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bfs" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bft" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/components/trinary/filter{
@@ -29845,7 +27628,7 @@
/turf/open/floor/plasteel/red/side{
dir = 6
},
-/area/atmos)
+/area/engine/atmos)
"bfu" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
icon_state = "intact";
@@ -29855,7 +27638,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"bfv" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -29864,7 +27647,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bfw" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/green/visible{
@@ -29872,7 +27655,7 @@
dir = 8
},
/turf/open/space,
-/area/atmos)
+/area/engine/atmos)
"bfx" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 8;
@@ -29880,7 +27663,7 @@
id = "n2_in"
},
/turf/open/floor/engine/n2,
-/area/atmos)
+/area/engine/atmos)
"bfy" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/crate{
@@ -29891,16 +27674,14 @@
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"bfz" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12
},
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/effect/turf_decal/bot,
@@ -29984,9 +27765,7 @@
icon_state = "greenblue";
dir = 8
},
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"bfI" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
@@ -29995,9 +27774,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"bfJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -30010,9 +27787,7 @@
/turf/open/floor/plasteel/white/side{
dir = 4
},
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"bfK" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
@@ -30061,8 +27836,7 @@
"bfO" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -30158,8 +27932,7 @@
"bfZ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
/area/hallway/primary/fore)
@@ -30170,8 +27943,7 @@
"bgb" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
+ icon_state = "plant-21"
},
/turf/open/floor/plasteel/brown{
icon_state = "brown";
@@ -30185,17 +27957,13 @@
icon_state = "purple";
dir = 8
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bgd" = (
/obj/structure/chair/office/dark{
dir = 8
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bge" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -30203,13 +27971,10 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bgf" = (
/obj/machinery/photocopier,
/obj/effect/decal/cleanable/dirt,
@@ -30217,28 +27982,19 @@
icon_state = "purple";
dir = 4
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bgg" = (
/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/brown{
icon_state = "brown";
dir = 8
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bgh" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/purple/side,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bgi" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -30248,17 +28004,13 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/brown,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bgj" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/turf/open/floor/plasteel/purple/side,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bgk" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -30267,7 +28019,6 @@
department = "Mining";
departmentType = 0;
name = "Mining Dock RC";
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/camera{
@@ -30276,17 +28027,13 @@
name = "cargo camera"
},
/turf/open/floor/plasteel/brown,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bgl" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/turf/open/floor/plasteel/brown,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bgm" = (
/obj/structure/chair/office/dark{
dir = 4
@@ -30296,9 +28043,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/purple/side,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bgn" = (
/obj/structure/table/reinforced,
/obj/effect/decal/cleanable/dirt,
@@ -30311,9 +28056,7 @@
icon_state = "brown";
dir = 6
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bgo" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -30328,9 +28071,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bgp" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -30339,9 +28080,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bgq" = (
/obj/item/clothing/suit/hazardvest{
desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";
@@ -30476,7 +28215,6 @@
pixel_y = 2
},
/obj/item/weapon/reagent_containers/spray/cleaner{
- pixel_x = 0;
pixel_x = 5;
pixel_y = -1
},
@@ -30611,14 +28349,14 @@
/turf/open/floor/plasteel/vault{
dir = 4
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bgK" = (
/obj/structure/table/wood,
/obj/machinery/recharger,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bgL" = (
/obj/structure/table/wood,
/obj/structure/cable/white{
@@ -30632,7 +28370,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bgM" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/secure/briefcase,
@@ -30640,7 +28378,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bgN" = (
/obj/machinery/photocopier,
/obj/machinery/light{
@@ -30651,13 +28389,12 @@
department = "Head of Security's Desk";
departmentType = 5;
name = "Head of Security RC";
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bgO" = (
/obj/structure/window/reinforced,
/turf/open/space,
@@ -30672,20 +28409,20 @@
dir = 8
},
/turf/open/floor/engine/n2o,
-/area/atmos)
+/area/engine/atmos)
"bgR" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide{
valve_open = 1
},
/turf/open/floor/engine/n2o,
-/area/atmos)
+/area/engine/atmos)
"bgS" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "n2o_sensor"
},
/turf/open/floor/engine/n2o,
-/area/atmos)
+/area/engine/atmos)
"bgT" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
@@ -30701,7 +28438,7 @@
/turf/open/floor/plasteel/escape{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"bgU" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/effect/decal/cleanable/dirt,
@@ -30709,30 +28446,30 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bgV" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bgW" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/machinery/meter,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bgX" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/machinery/meter,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bgY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 6
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bgZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
icon_state = "intact";
@@ -30740,7 +28477,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bha" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
name = "scrubbers pipe";
@@ -30749,7 +28486,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bhb" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
@@ -30761,7 +28498,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bhc" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -30773,7 +28510,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bhd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
@@ -30781,13 +28518,13 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/corner,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bhe" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,
/obj/machinery/meter,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bhf" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
@@ -30797,7 +28534,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bhg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
icon_state = "intact";
@@ -30807,7 +28544,7 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bhh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
icon_state = "intact";
@@ -30816,7 +28553,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"bhi" = (
/obj/machinery/status_display{
pixel_x = 32
@@ -30828,20 +28565,20 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"bhj" = (
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/atmos)
+/area/engine/atmos)
"bhk" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"bhl" = (
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"bhm" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -30853,7 +28590,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"bhn" = (
/obj/machinery/hydroponics/constructable,
/obj/machinery/status_display{
@@ -30938,9 +28675,7 @@
icon_state = "greenblue";
dir = 8
},
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"bhx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -30950,18 +28685,14 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"bhy" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/red/side{
dir = 4
},
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"bhz" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
@@ -31147,11 +28878,10 @@
/turf/open/floor/plasteel/brown,
/area/hallway/primary/fore)
"bhT" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
/obj/machinery/light,
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
/turf/open/floor/plasteel/brown,
/area/hallway/primary/fore)
"bhU" = (
@@ -31189,38 +28919,29 @@
/obj/machinery/computer/stockexchange,
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/turf/open/floor/plasteel/brown{
icon_state = "brown";
dir = 10
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bhZ" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/loadingarea{
dir = 4
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bia" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bib" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -31230,9 +28951,7 @@
baseturf = /turf/open/space;
dir = 8
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bic" = (
/obj/structure/table,
/obj/structure/cable/white{
@@ -31243,8 +28962,7 @@
/obj/machinery/power/apc{
dir = 4;
name = "Mining Dock APC";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/machinery/camera{
c_tag = "Cargo - Mining Office";
@@ -31255,9 +28973,7 @@
icon_state = "brown";
dir = 6
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bid" = (
/obj/structure/rack,
/obj/effect/decal/cleanable/dirt,
@@ -31275,16 +28991,12 @@
/obj/item/weapon/pickaxe,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bie" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bif" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -31294,9 +29006,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"big" = (
/obj/structure/closet/wardrobe/miner,
/obj/effect/decal/cleanable/dirt,
@@ -31304,36 +29014,28 @@
/obj/item/device/radio/intercom{
dir = 8;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = -26
},
/obj/item/weapon/storage/backpack/satchel/explorer,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bih" = (
/obj/machinery/disposal/bin,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bii" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bij" = (
/obj/machinery/computer/security/mining,
/obj/machinery/newscaster{
@@ -31341,16 +29043,12 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bik" = (
/obj/machinery/computer/shuttle/mining,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bil" = (
/obj/structure/shuttle/engine/propulsion/burst,
/obj/structure/window/reinforced{
@@ -31385,7 +29083,6 @@
/obj/structure/bed/roller,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = -26
},
/turf/open/floor/plasteel/whitered/side,
@@ -31469,12 +29166,7 @@
/turf/open/floor/plasteel/neutral,
/area/security/main)
"biB" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/vault{
dir = 5
},
@@ -31490,14 +29182,14 @@
name = "HoS Privacy Blast door"
},
/turf/open/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"biD" = (
/obj/structure/reagent_dispensers/peppertank{
pixel_x = -32;
pixel_y = 32
},
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"biE" = (
/mob/living/simple_animal/hostile/carp/cayenne{
color = "";
@@ -31513,7 +29205,7 @@
name = "Lia"
},
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"biF" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -31523,10 +29215,10 @@
on = 1
},
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"biG" = (
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"biH" = (
/obj/machinery/ai_status_display{
pixel_x = 32;
@@ -31538,7 +29230,7 @@
pixel_y = 58
},
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"biI" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/red,
@@ -31567,17 +29259,17 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"biJ" = (
/turf/closed/wall,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"biK" = (
/obj/structure/dresser,
/obj/machinery/newscaster/security_unit{
pixel_y = 32
},
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"biL" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/hos,
@@ -31590,7 +29282,7 @@
name = "security camera"
},
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"biM" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/secure/safe/HoS{
@@ -31598,11 +29290,10 @@
},
/obj/item/device/flashlight/lamp,
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"biN" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/open/space,
/area/space)
@@ -31614,18 +29305,11 @@
/obj/structure/window/reinforced{
dir = 8
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"biP" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -31634,27 +29318,20 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"biQ" = (
/obj/structure/window/reinforced{
dir = 1;
layer = 2.9
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
+ dir = 4
},
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"biR" = (
/obj/structure/window/reinforced{
dir = 8
@@ -31669,7 +29346,7 @@
pixel_y = 1
},
/turf/open/floor/engine/n2o,
-/area/atmos)
+/area/engine/atmos)
"biT" = (
/obj/structure/window/reinforced{
dir = 8
@@ -31685,7 +29362,7 @@
/turf/open/floor/plasteel/escape{
dir = 10
},
-/area/atmos)
+/area/engine/atmos)
"biU" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
icon_state = "intact";
@@ -31693,7 +29370,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"biV" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
@@ -31701,7 +29378,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"biW" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
icon_state = "intact";
@@ -31709,12 +29386,12 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"biX" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"biY" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
dir = 8;
@@ -31722,14 +29399,14 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"biZ" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bja" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
@@ -31739,7 +29416,7 @@
icon_state = "caution";
dir = 9
},
-/area/atmos)
+/area/engine/atmos)
"bjb" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
dir = 1;
@@ -31748,7 +29425,7 @@
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bjc" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
@@ -31758,7 +29435,7 @@
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bjd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
@@ -31768,7 +29445,7 @@
icon_state = "caution";
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"bje" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
icon_state = "intact";
@@ -31781,7 +29458,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bjf" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -31792,14 +29469,14 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bjg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bjh" = (
/obj/structure/table/reinforced,
/obj/item/stack/sheet/glass{
@@ -31814,7 +29491,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bji" = (
/obj/structure/table/reinforced,
/obj/item/stack/sheet/metal{
@@ -31834,21 +29511,16 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bjk" = (
/obj/structure/window/reinforced{
dir = 8
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"bjl" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
icon_state = "intact";
@@ -31857,7 +29529,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"bjm" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -31866,7 +29538,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bjn" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
@@ -31884,7 +29556,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"bjp" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -31893,7 +29565,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"bjq" = (
/obj/machinery/hydroponics/constructable,
/obj/machinery/light{
@@ -31948,9 +29620,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"bjy" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
@@ -31964,18 +29634,14 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"bjz" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/crew_quarters/sleep{
- name = "Service Hall"
- })
+/area/hallway/secondary/service)
"bjA" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -32072,9 +29738,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bjK" = (
/obj/structure/plasticflaps{
opacity = 1
@@ -32082,7 +29746,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"bjL" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -32097,7 +29761,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"bjM" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -32105,9 +29769,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"bjN" = (
/obj/structure/cable/white{
icon_state = "0-2"
@@ -32150,9 +29812,7 @@
},
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -32190,8 +29850,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "Security Office APC";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/structure/cable/white{
icon_state = "0-4"
@@ -32304,13 +29963,13 @@
dir = 4
},
/turf/open/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bkf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bkg" = (
/obj/structure/chair/office/dark{
dir = 4
@@ -32322,20 +29981,20 @@
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bkh" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bki" = (
/obj/machinery/computer/secure_data,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bkj" = (
/obj/machinery/computer/card/minor/hos,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -32344,7 +30003,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bkk" = (
/obj/structure/cable/white{
icon_state = "0-2"
@@ -32355,18 +30014,18 @@
dir = 4
},
/turf/open/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bkl" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
on = 1
},
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bkm" = (
/obj/machinery/computer/prisoner,
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bkn" = (
/obj/structure/cable/white{
icon_state = "0-2"
@@ -32378,12 +30037,11 @@
name = "HoS Room Blast door"
},
/turf/open/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bko" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/open/space,
/area/space)
@@ -32393,16 +30051,12 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bkq" = (
/obj/structure/chair{
dir = 1
@@ -32410,21 +30064,16 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bkr" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bks" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -32433,9 +30082,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bkt" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -32454,7 +30101,7 @@
pixel_x = -32
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bkv" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -32463,7 +30110,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bkw" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -32472,7 +30119,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bkx" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
@@ -32487,7 +30134,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bky" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -32496,7 +30143,7 @@
dir = 9
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bkz" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/toolbox/mechanical,
@@ -32504,14 +30151,14 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bkA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
icon_state = "intact";
dir = 1
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bkB" = (
/obj/structure/table/reinforced,
/obj/item/weapon/clipboard,
@@ -32523,7 +30170,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bkC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
icon_state = "intact";
@@ -32533,7 +30180,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bkD" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -32549,7 +30196,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bkE" = (
/obj/machinery/light{
dir = 4;
@@ -32557,8 +30204,7 @@
},
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -32568,11 +30214,11 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bkF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bkG" = (
/obj/machinery/hydroponics/constructable,
/obj/structure/sign/botany{
@@ -32606,16 +30252,13 @@
/turf/closed/wall,
/area/hydroponics)
"bkM" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
dir = 6
},
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
@@ -32789,6 +30432,14 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Central Primary Hallway APC";
+ pixel_y = 24
+ },
+/obj/structure/cable/white{
+ icon_state = "0-2"
+ },
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
@@ -32821,7 +30472,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"blg" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -32834,7 +30485,7 @@
icon_state = "brown";
dir = 8
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"blh" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -32847,13 +30498,13 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"blj" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/effect/decal/cleanable/dirt,
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"blk" = (
/obj/structure/cable/white,
/obj/structure/grille,
@@ -32861,12 +30512,7 @@
/turf/open/floor/plating,
/area/security/transfer)
"bll" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
@@ -32884,7 +30530,6 @@
"bln" = (
/obj/machinery/computer/shuttle/labor,
/obj/machinery/status_display{
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/plasteel/red/side{
@@ -32898,7 +30543,6 @@
},
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = 26
},
/turf/open/floor/plasteel/red,
@@ -33030,7 +30674,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"blC" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -33042,7 +30686,7 @@
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"blD" = (
/obj/machinery/holopad,
/obj/structure/cable/white{
@@ -33058,7 +30702,7 @@
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"blE" = (
/obj/structure/table/wood,
/obj/structure/cable/white{
@@ -33070,7 +30714,7 @@
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"blF" = (
/obj/structure/chair/comfy/black{
dir = 8
@@ -33083,7 +30727,7 @@
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"blG" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -33093,7 +30737,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"blH" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -33101,7 +30745,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"blI" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -33120,27 +30764,27 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"blJ" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"blK" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/effect/landmark/start/head_of_security,
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"blL" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/machinery/computer/crew,
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"blM" = (
/obj/structure/cable/white{
icon_state = "0-2"
@@ -33156,11 +30800,10 @@
name = "HoS Room Blast door"
},
/turf/open/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"blN" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/lattice,
/turf/open/space,
@@ -33177,9 +30820,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"blP" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -33189,26 +30830,20 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"blQ" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"blR" = (
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"blS" = (
/obj/structure/window/reinforced,
/obj/machinery/camera{
@@ -33216,41 +30851,32 @@
dir = 1;
name = "ai camera";
network = list("Sat");
- pixel_x = 0;
- pixel_y = 0;
start_active = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"blT" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"blU" = (
/obj/structure/window/reinforced{
dir = 1;
layer = 2.9
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/machinery/door/window/southright,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"blV" = (
/obj/structure/window/reinforced{
dir = 8
@@ -33260,7 +30886,7 @@
/area/space)
"blW" = (
/turf/open/floor/engine/vacuum,
-/area/atmos)
+/area/engine/atmos)
"blX" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 4;
@@ -33269,7 +30895,7 @@
pixel_y = 1
},
/turf/open/floor/engine/vacuum,
-/area/atmos)
+/area/engine/atmos)
"blY" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
@@ -33278,7 +30904,7 @@
/turf/open/floor/plasteel/green/side{
dir = 9
},
-/area/atmos)
+/area/engine/atmos)
"blZ" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/components/binary/pump{
@@ -33289,7 +30915,7 @@
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bma" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
icon_state = "intact";
@@ -33299,7 +30925,7 @@
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bmb" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 2;
@@ -33310,7 +30936,7 @@
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bmc" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 6
@@ -33318,7 +30944,7 @@
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bmd" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
icon_state = "intact";
@@ -33327,7 +30953,7 @@
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bme" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 6
@@ -33335,7 +30961,7 @@
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bmf" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -33343,7 +30969,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bmg" = (
/obj/item/clothing/gloves/color/black,
/obj/structure/table/reinforced,
@@ -33354,7 +30980,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bmh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
icon_state = "intact";
@@ -33362,7 +30988,7 @@
},
/obj/effect/landmark/start/atmospheric_technician,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bmi" = (
/obj/item/weapon/weldingtool,
/obj/item/clothing/head/welding,
@@ -33374,7 +31000,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bmj" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -33385,14 +31011,14 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bml" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bmm" = (
/obj/machinery/space_heater,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -33400,7 +31026,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bmn" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -33408,7 +31034,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bmo" = (
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/machinery/light{
@@ -33419,7 +31045,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bmp" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/portable_atmospherics/canister/oxygen,
@@ -33428,7 +31054,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bmq" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/portable_atmospherics/canister/air,
@@ -33437,20 +31063,17 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bmr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 10
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bms" = (
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
+ icon_state = "plant-21"
},
/turf/open/floor/plasteel/yellow/corner{
dir = 1
@@ -33498,7 +31121,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"bmw" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -33509,7 +31132,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"bmx" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -33520,7 +31143,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"bmy" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -33531,7 +31154,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"bmz" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -33544,7 +31167,7 @@
dir = 10;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"bmA" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -33554,7 +31177,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"bmB" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -33565,7 +31188,7 @@
icon_state = "pipe-j2"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"bmC" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -33580,7 +31203,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"bmD" = (
/obj/machinery/hydroponics/constructable,
/obj/machinery/newscaster{
@@ -33637,8 +31260,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/white{
icon_state = "1-2"
@@ -33755,9 +31377,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/obj/structure/cable/white{
icon_state = "1-4"
@@ -33863,8 +31483,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=hall14";
@@ -33920,8 +31539,7 @@
"bnk" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
@@ -34104,7 +31722,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bnB" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -34113,7 +31731,7 @@
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bnC" = (
/obj/structure/chair/office/dark{
dir = 4
@@ -34125,7 +31743,7 @@
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bnD" = (
/obj/structure/table/wood,
/obj/item/weapon/phone{
@@ -34147,7 +31765,7 @@
dir = 1
},
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bnE" = (
/obj/machinery/computer/security,
/obj/structure/cable/white{
@@ -34157,14 +31775,14 @@
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bnF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bnG" = (
/obj/machinery/computer/prisoner,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -34173,7 +31791,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bnH" = (
/obj/structure/cable/white,
/obj/structure/grille,
@@ -34182,7 +31800,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bnI" = (
/obj/machinery/light_switch{
pixel_x = -26;
@@ -34192,7 +31810,7 @@
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bnJ" = (
/obj/machinery/button/door{
id = "hosroom";
@@ -34206,11 +31824,11 @@
dir = 10
},
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bnK" = (
/obj/machinery/computer/secure_data,
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bnL" = (
/obj/structure/cable/white,
/obj/structure/grille,
@@ -34220,11 +31838,10 @@
name = "HoS Room Blast door"
},
/turf/open/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bnM" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 8
@@ -34232,9 +31849,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bnN" = (
/obj/structure/lattice,
/obj/structure/window/reinforced{
@@ -34302,8 +31917,7 @@
layer = 2.9
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/open/space,
/area/space)
@@ -34312,14 +31926,14 @@
dir = 8
},
/turf/open/floor/engine/vacuum,
-/area/atmos)
+/area/engine/atmos)
"bnW" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "mix_sensor"
},
/turf/open/floor/engine/vacuum,
-/area/atmos)
+/area/engine/atmos)
"bnX" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
@@ -34332,7 +31946,7 @@
/turf/open/floor/plasteel/green/side{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"bnY" = (
/obj/machinery/atmospherics/pipe/manifold/green/visible{
icon_state = "manifold";
@@ -34342,7 +31956,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bnZ" = (
/obj/machinery/atmospherics/pipe/manifold/green/visible,
/obj/machinery/meter,
@@ -34350,7 +31964,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"boa" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
icon_state = "intact";
@@ -34360,7 +31974,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bob" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 8
@@ -34369,7 +31983,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"boc" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/binary/pump{
@@ -34381,7 +31995,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bod" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
name = "scrubbers pipe";
@@ -34392,7 +32006,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"boe" = (
/obj/structure/table/reinforced,
/obj/item/weapon/crowbar/red,
@@ -34404,7 +32018,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bof" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
@@ -34412,7 +32026,7 @@
initialize_directions = 11
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bog" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/belt/utility,
@@ -34423,7 +32037,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"boh" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
@@ -34433,7 +32047,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"boi" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -34444,7 +32058,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"boj" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/binary/pump{
@@ -34457,7 +32071,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bok" = (
/obj/structure/cable/white{
icon_state = "0-2"
@@ -34470,7 +32084,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bol" = (
/obj/machinery/space_heater,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -34478,7 +32092,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bom" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -34486,7 +32100,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bon" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/portable_atmospherics/canister/nitrogen,
@@ -34495,7 +32109,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"boo" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -34503,7 +32117,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bop" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -34511,7 +32125,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"boq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -34519,7 +32133,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/sign/nosmoking_2,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bor" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -34575,7 +32189,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"boy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
@@ -34591,8 +32205,7 @@
"boA" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
/area/hydroponics)
@@ -34655,7 +32268,6 @@
},
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/turf/open/floor/plasteel/neutral/corner,
@@ -34669,7 +32281,6 @@
},
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/open/floor/plasteel/neutral/corner,
@@ -34717,7 +32328,6 @@
},
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/turf/open/floor/plasteel{
@@ -34764,7 +32374,6 @@
},
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = -26
},
/obj/machinery/camera{
@@ -34816,7 +32425,6 @@
},
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/open/floor/plasteel/neutral/corner{
@@ -34831,7 +32439,6 @@
},
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/turf/open/floor/plasteel/neutral/corner{
@@ -34875,8 +32482,7 @@
"bpa" = (
/obj/machinery/computer/shuttle/labor,
/obj/structure/reagent_dispensers/peppertank{
- pixel_x = -31;
- pixel_y = 0
+ pixel_x = -31
},
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/labor)
@@ -35189,7 +32795,7 @@
name = "HoS Privacy Blast door"
},
/turf/open/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bpB" = (
/obj/machinery/firealarm{
dir = 8;
@@ -35200,18 +32806,17 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bpC" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bpD" = (
/obj/machinery/status_display{
pixel_x = 32;
@@ -35219,7 +32824,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/grimy,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bpE" = (
/obj/structure/table/wood,
/obj/machinery/computer/med_data/laptop,
@@ -35233,7 +32838,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bpF" = (
/obj/structure/closet/secure_closet/hos,
/obj/item/clothing/head/HoS/beret,
@@ -35243,7 +32848,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bpG" = (
/obj/machinery/light,
/obj/machinery/ai_status_display{
@@ -35256,21 +32861,20 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bpH" = (
/obj/machinery/suit_storage_unit/hos,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plasteel,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bpI" = (
/obj/structure/lattice,
/obj/structure/window/reinforced{
@@ -35292,8 +32896,7 @@
"bpM" = (
/obj/structure/lattice,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/open/space,
/area/space)
@@ -35304,7 +32907,7 @@
name = "atmospherics camera"
},
/turf/open/floor/engine/vacuum,
-/area/atmos)
+/area/engine/atmos)
"bpO" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -35319,7 +32922,7 @@
pump_direction = 0
},
/turf/open/floor/engine/vacuum,
-/area/atmos)
+/area/engine/atmos)
"bpP" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
@@ -35327,7 +32930,7 @@
dir = 8
},
/turf/open/space,
-/area/atmos)
+/area/engine/atmos)
"bpQ" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
@@ -35337,7 +32940,7 @@
/turf/open/floor/plasteel/green/side{
dir = 10
},
-/area/atmos)
+/area/engine/atmos)
"bpR" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
icon_state = "intact";
@@ -35350,7 +32953,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bpS" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
@@ -35358,30 +32961,28 @@
dir = 8
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bpT" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 1
},
/obj/effect/landmark/start/atmospheric_technician,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bpU" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
icon_state = "intact";
dir = 9
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bpV" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bpW" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light{
@@ -35396,14 +32997,13 @@
/turf/open/floor/plasteel/caution{
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"bpX" = (
/obj/machinery/light{
dir = 8
},
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
@@ -35412,7 +33012,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bpY" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
@@ -35420,7 +33020,7 @@
dir = 1
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bpZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
icon_state = "intact";
@@ -35428,13 +33028,13 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bqa" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bqb" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -35444,13 +33044,11 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bqc" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -35465,7 +33063,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bqd" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_atmos{
@@ -35490,7 +33088,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bqe" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -35502,7 +33100,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bqf" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -35514,7 +33112,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bqg" = (
/obj/structure/cable/white{
icon_state = "2-8"
@@ -35526,7 +33124,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bqh" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -35535,7 +33133,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bqi" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/machinery/camera{
@@ -35545,12 +33143,12 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bqj" = (
/obj/machinery/status_display,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bqk" = (
/turf/open/floor/plasteel/yellow/corner{
dir = 1
@@ -35562,6 +33160,9 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
+/obj/structure/cable/white{
+ icon_state = "2-4"
+ },
/turf/open/floor/plasteel/neutral,
/area/hallway/primary/port)
"bqm" = (
@@ -35573,7 +33174,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"bqn" = (
/obj/machinery/vending/hydroseeds,
/obj/effect/turf_decal/bot,
@@ -35662,7 +33263,6 @@
/obj/machinery/button/flasher{
id = "gulagshuttleflasher";
name = "Flash Control";
- pixel_x = 0;
pixel_y = -26;
req_access_txt = "1"
},
@@ -35852,8 +33452,7 @@
"bqT" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
/area/security/main)
@@ -35876,12 +33475,7 @@
},
/area/security/main)
"bqW" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/power/apc{
dir = 2;
name = "Head of Security's Office APC";
@@ -35891,7 +33485,7 @@
/turf/open/floor/plasteel/vault{
dir = 1
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bqX" = (
/obj/structure/table/wood,
/obj/item/weapon/clipboard,
@@ -35899,7 +33493,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bqY" = (
/obj/structure/table/wood,
/obj/structure/cable/white{
@@ -35909,7 +33503,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bqZ" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
@@ -35917,12 +33511,11 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bra" = (
/obj/machinery/disposal/bin,
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/light,
@@ -35936,7 +33529,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"brb" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
icon_state = "manifold";
@@ -35949,7 +33542,7 @@
icon_state = "arrival";
dir = 9
},
-/area/atmos)
+/area/engine/atmos)
"brc" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
icon_state = "manifold";
@@ -35960,7 +33553,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"brd" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 2;
@@ -35968,12 +33561,12 @@
on = 0
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bre" = (
/obj/machinery/atmospherics/components/unary/thermomachine/heater,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"brf" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
icon_state = "freezer";
@@ -35982,7 +33575,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"brg" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
@@ -35993,7 +33586,7 @@
/turf/open/floor/plasteel/caution{
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"brh" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
@@ -36006,7 +33599,7 @@
pixel_y = -32
},
/turf/open/floor/plasteel/arrival,
-/area/atmos)
+/area/engine/atmos)
"bri" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
@@ -36021,14 +33614,14 @@
name = "atmospherics camera"
},
/turf/open/floor/plasteel/arrival,
-/area/atmos)
+/area/engine/atmos)
"brj" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
},
/obj/machinery/portable_atmospherics/scrubber,
/turf/open/floor/plasteel/escape,
-/area/atmos)
+/area/engine/atmos)
"brk" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
@@ -36038,11 +33631,10 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/turf/open/floor/plasteel/escape,
-/area/atmos)
+/area/engine/atmos)
"brl" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small,
@@ -36054,7 +33646,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"brm" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -36067,14 +33659,9 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"brn" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/light/small,
/obj/machinery/light_switch{
pixel_x = 26;
@@ -36092,7 +33679,7 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bro" = (
/obj/structure/cable/white,
/obj/structure/grille,
@@ -36102,7 +33689,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"brp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -36115,7 +33702,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"brq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -36128,7 +33715,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"brr" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -36141,7 +33728,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"brs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
@@ -36151,7 +33738,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"brt" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -36159,7 +33746,7 @@
/turf/open/floor/plasteel/loadingarea{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bru" = (
/obj/structure/cable/white{
icon_state = "0-2"
@@ -36175,7 +33762,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"brv" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -36255,9 +33842,7 @@
"brF" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/machinery/requests_console{
department = "Hydroponics";
@@ -36367,9 +33952,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/turf/open/floor/plasteel/vault{
dir = 8
@@ -36455,15 +34038,9 @@
/turf/open/floor/plasteel/red/side,
/area/security/transfer)
"bse" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/obj/structure/reagent_dispensers/peppertank{
@@ -36474,19 +34051,13 @@
},
/area/security/transfer)
"bsf" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/red/side{
dir = 10
},
/area/security/main)
"bsg" = (
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = -32
},
/turf/open/floor/plasteel/red/corner{
@@ -36515,9 +34086,7 @@
/turf/open/floor/plasteel/red/side,
/area/security/main)
"bsk" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/red/side,
/area/security/main)
"bsl" = (
@@ -36553,7 +34122,7 @@
name = "HoS Space Blast door"
},
/turf/open/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bso" = (
/obj/machinery/ai_status_display,
/turf/closed/wall/r_wall,
@@ -36562,12 +34131,7 @@
/obj/structure/cable/white{
icon_state = "2-4"
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai)
@@ -36596,9 +34160,7 @@
/obj/structure/cable/white{
icon_state = "2-8"
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/structure/sign/nosmoking_2{
pixel_y = 32
},
@@ -36614,7 +34176,7 @@
icon_state = "arrival";
dir = 10
},
-/area/atmos)
+/area/engine/atmos)
"bst" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
@@ -36625,7 +34187,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bsu" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
@@ -36635,11 +34197,10 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/caution,
-/area/atmos)
+/area/engine/atmos)
"bsv" = (
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/atmospherics/pipe/manifold/supply/visible,
@@ -36649,7 +34210,7 @@
name = "atmospherics camera"
},
/turf/open/floor/plasteel/caution,
-/area/atmos)
+/area/engine/atmos)
"bsw" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/meter{
@@ -36659,7 +34220,7 @@
},
/obj/machinery/atmospherics/pipe/manifold4w/supply/visible,
/turf/open/floor/plasteel/caution,
-/area/atmos)
+/area/engine/atmos)
"bsx" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
@@ -36668,12 +34229,11 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/caution,
-/area/atmos)
+/area/engine/atmos)
"bsy" = (
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
name = "scrubbers pipe";
@@ -36688,16 +34248,16 @@
/turf/open/floor/plasteel/caution{
dir = 6
},
-/area/atmos)
+/area/engine/atmos)
"bsz" = (
/obj/machinery/status_display,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bsA" = (
/obj/structure/sign/securearea,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bsB" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -36712,7 +34272,7 @@
req_one_access_txt = "24;10"
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bsC" = (
/obj/machinery/disposal/bin,
/obj/machinery/light{
@@ -36720,8 +34280,7 @@
},
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/light_switch{
pixel_x = -38;
@@ -36733,18 +34292,17 @@
/turf/open/floor/plasteel/caution/corner{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"bsD" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bsE" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -36757,7 +34315,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bsF" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -36767,7 +34325,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bsG" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -36778,7 +34336,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bsH" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/plasticflaps{
@@ -36806,7 +34364,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bsI" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -36913,7 +34471,6 @@
/obj/machinery/hydroponics/constructable,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = -26
},
/obj/effect/turf_decal/delivery,
@@ -36922,7 +34479,6 @@
"bsQ" = (
/obj/machinery/hydroponics/constructable,
/obj/structure/sign/nanotrasen{
- pixel_x = 0;
pixel_y = -32
},
/obj/effect/turf_decal/delivery,
@@ -37131,8 +34687,7 @@
"btm" = (
/obj/machinery/mineral/labor_claim_console{
machinedir = 1;
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
@@ -37164,9 +34719,7 @@
/turf/open/floor/plating,
/area/security/transfer)
"btp" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/red/side{
dir = 8
@@ -37233,8 +34786,7 @@
/area/security/main)
"btv" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 8
@@ -37244,16 +34796,12 @@
dir = 8;
name = "ai camera";
network = list("Sat");
- pixel_x = 0;
- pixel_y = 0;
start_active = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"btw" = (
/obj/machinery/porta_turret/ai,
/turf/open/floor/plasteel/vault{
@@ -37299,8 +34847,7 @@
/area/ai_monitored/turret_protected/ai)
"btC" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 8
@@ -37310,16 +34857,12 @@
dir = 4;
name = "ai camera";
network = list("Sat");
- pixel_x = 0;
- pixel_y = 0;
start_active = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"btD" = (
/turf/closed/wall/r_wall,
/area/engine/gravity_generator)
@@ -37432,26 +34975,21 @@
/turf/open/floor/plasteel/caution{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"btS" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"btT" = (
/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/caution{
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"btU" = (
/obj/structure/cable/white{
icon_state = "0-2"
@@ -37464,7 +35002,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"btV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -37477,8 +35015,7 @@
"btW" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/white{
icon_state = "1-2"
@@ -37493,7 +35030,6 @@
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/item/weapon/wrench,
@@ -37542,7 +35078,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"bud" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/extinguisher_cabinet{
@@ -37761,8 +35297,7 @@
/obj/machinery/power/apc{
dir = 4;
name = "Vault APC";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/turf/open/floor/plasteel/vault{
dir = 5
@@ -37798,12 +35333,7 @@
/obj/machinery/gulag_item_reclaimer{
pixel_y = 28
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/structure/cable/white{
icon_state = "4-8"
},
@@ -37855,12 +35385,7 @@
},
/area/security/transfer)
"buH" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -37872,8 +35397,7 @@
"buI" = (
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/red/side{
@@ -37943,8 +35467,7 @@
/area/security/main)
"buR" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 8
@@ -37956,9 +35479,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"buS" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder/blue,
@@ -38056,12 +35577,7 @@
/turf/open/floor/circuit/green,
/area/ai_monitored/turret_protected/ai)
"bvb" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/vault{
dir = 5
},
@@ -38237,13 +35753,13 @@
/turf/open/floor/plasteel/caution{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"bvu" = (
/obj/structure/chair/office/dark{
dir = 8
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bvv" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -38255,14 +35771,14 @@
icon_state = "1-8"
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bvw" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bvx" = (
/obj/structure/chair/office/dark{
dir = 4
@@ -38273,7 +35789,7 @@
/turf/open/floor/plasteel/caution{
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"bvy" = (
/obj/structure/table/reinforced,
/obj/structure/cable/white{
@@ -38297,7 +35813,7 @@
/obj/machinery/door/window/eastright,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bvz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/yellow/corner{
@@ -38368,7 +35884,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"bvF" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -38381,7 +35897,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"bvG" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -38394,7 +35910,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"bvH" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -38411,7 +35927,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"bvI" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -38427,7 +35943,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"bvJ" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -38464,8 +35980,7 @@
/obj/structure/disposalpipe/segment,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/machinery/camera{
c_tag = "Central Hallway - Bridge Port";
@@ -38846,9 +36361,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
@@ -38888,7 +36401,6 @@
frequency = 1424;
listening = 1;
name = "Interrogation Intercom";
- pixel_x = 0;
pixel_y = -58
},
/turf/open/floor/plasteel/vault{
@@ -38913,8 +36425,7 @@
/area/security/main)
"bww" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 8
@@ -38923,9 +36434,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bwx" = (
/obj/machinery/status_display,
/turf/closed/wall/r_wall,
@@ -38939,9 +36448,7 @@
},
/area/ai_monitored/turret_protected/ai)
"bwz" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -39004,8 +36511,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
@@ -39071,8 +36577,7 @@
cell_type = 5000;
dir = 1;
name = "Gravity Generator APC";
- pixel_x = 0;
- pixel_y = 25
+ pixel_y = 24
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
@@ -39094,7 +36599,6 @@
},
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = 26
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -39241,18 +36745,17 @@
layer = 4;
name = "Engine Monitor";
network = list("Engine");
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/turf/open/floor/plasteel/caution{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"bxb" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/chair/office/dark,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bxc" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -39260,7 +36763,7 @@
on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"bxd" = (
/obj/structure/table/reinforced,
/obj/item/weapon/tank/internals/emergency_oxygen{
@@ -39274,7 +36777,7 @@
/turf/open/floor/plasteel/caution{
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"bxe" = (
/obj/structure/cable/white,
/obj/structure/grille,
@@ -39288,7 +36791,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bxf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -39341,12 +36844,7 @@
/turf/open/floor/plasteel,
/area/storage/tech)
"bxk" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/storage/tech)
@@ -39392,7 +36890,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"bxq" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -39463,9 +36961,6 @@
/turf/open/floor/plating,
/area/bridge)
"bxx" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
/obj/machinery/light/small{
dir = 1
},
@@ -39477,9 +36972,11 @@
desc = "A sign that shows there are doors here. There are doors everywhere!";
icon_state = "doors";
name = "WARNING: BLAST DOORS";
- pixel_x = 0;
pixel_y = 32
},
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
/turf/open/floor/plasteel/darkblue/side{
icon_state = "darkblue";
dir = 1
@@ -39495,10 +36992,7 @@
},
/area/bridge)
"bxz" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/darkblue/side{
icon_state = "darkblue";
dir = 1
@@ -39581,9 +37075,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
@@ -39605,7 +37097,6 @@
desc = "Used for watching the RD's goons and the AI's satellite from the safety of his office.";
name = "Research Monitor";
network = list("RD","Sat");
- pixel_x = 0;
pixel_y = 2
},
/turf/open/floor/plasteel/black,
@@ -39666,7 +37157,6 @@
/obj/item/weapon/storage/belt/champion,
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/light/small,
@@ -39740,16 +37230,14 @@
"bxZ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
/area/security/transfer)
"bya" = (
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -39787,7 +37275,6 @@
"bye" = (
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = -26
},
/obj/structure/extinguisher_cabinet{
@@ -39833,7 +37320,6 @@
frequency = 1424;
listening = 0;
name = "Interrogation Intercom";
- pixel_x = 0;
pixel_y = -24
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -39872,8 +37358,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
@@ -39982,8 +37467,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable/white{
icon_state = "1-2"
@@ -40201,12 +37685,7 @@
},
/area/engine/break_room)
"byS" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/light{
dir = 1
},
@@ -40214,8 +37693,7 @@
cell_type = 5000;
dir = 1;
name = "Engineering Foyer APC";
- pixel_x = 0;
- pixel_y = 25
+ pixel_y = 24
},
/obj/structure/cable/white{
icon_state = "0-4"
@@ -40259,7 +37737,6 @@
"byV" = (
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -40277,17 +37754,16 @@
icon_state = "caution";
dir = 10
},
-/area/atmos)
+/area/engine/atmos)
"byX" = (
/obj/machinery/computer/station_alert,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/open/floor/plasteel/caution,
-/area/atmos)
+/area/engine/atmos)
"byY" = (
/obj/machinery/computer/atmos_alert,
/obj/machinery/light,
@@ -40295,18 +37771,17 @@
pixel_y = -32
},
/turf/open/floor/plasteel/caution,
-/area/atmos)
+/area/engine/atmos)
"byZ" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder/yellow,
/obj/item/weapon/pen,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = -26
},
/turf/open/floor/plasteel/caution,
-/area/atmos)
+/area/engine/atmos)
"bza" = (
/obj/structure/table/reinforced,
/obj/effect/decal/cleanable/dirt,
@@ -40319,8 +37794,7 @@
department = "Atmospherics Office";
departmentType = 0;
name = "Atmospherics RC";
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/obj/structure/extinguisher_cabinet{
pixel_x = 26;
@@ -40329,7 +37803,7 @@
/turf/open/floor/plasteel/caution{
dir = 6
},
-/area/atmos)
+/area/engine/atmos)
"bzb" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -40413,7 +37887,6 @@
department = "Primary Tool Storage";
departmentType = 0;
name = "Primary Tool Storage RC";
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/disposalpipe/trunk,
@@ -40676,9 +38149,7 @@
},
/area/bridge)
"bzA" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/structure/cable/white{
icon_state = "4-8"
},
@@ -40948,10 +38419,7 @@
/obj/machinery/firealarm{
dir = 1;
pixel_x = -32;
- pixel_y = -26
- },
-/obj/structure/sign/electricshock{
- pixel_x = -32
+ pixel_y = 6
},
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -40963,7 +38431,7 @@
name = "Transfer Door Control";
normaldoorcontrol = 1;
pixel_x = -24;
- pixel_y = -40
+ pixel_y = -8
},
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -41000,18 +38468,12 @@
},
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/open/floor/plasteel/red/side,
/area/security/transfer)
"bzY" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/structure/extinguisher_cabinet{
pixel_x = 26
},
@@ -41044,8 +38506,7 @@
freerange = 1;
listening = 1;
name = "Common Channel";
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/item/device/radio/intercom{
anyai = 1;
@@ -41159,8 +38620,7 @@
freerange = 1;
listening = 1;
name = "Common Channel";
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/item/device/radio/intercom{
anyai = 1;
@@ -41479,13 +38939,13 @@
dir = 6
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bAK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bAL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -41506,9 +38966,7 @@
},
/area/hallway/primary/port)
"bAN" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/status_display{
pixel_x = -32
},
@@ -41546,12 +39004,7 @@
/turf/open/floor/plasteel,
/area/storage/tech)
"bAQ" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/ai_status_display{
pixel_x = 32
},
@@ -41741,8 +39194,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -41796,9 +39248,7 @@
},
/area/bridge)
"bBm" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/darkblue/side{
icon_state = "darkblue";
@@ -41855,9 +39305,7 @@
/turf/open/floor/plasteel/grimy,
/area/bridge)
"bBs" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -41940,6 +39388,9 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/disposalpipe/segment,
+/obj/structure/sign/electricshock{
+ pixel_x = -32
+ },
/turf/open/floor/plating,
/area/security/transfer)
"bBB" = (
@@ -42064,7 +39515,6 @@
freerange = 1;
listening = 0;
name = "Custom Channel";
- pixel_x = 0;
pixel_y = -27
},
/obj/item/device/radio/intercom{
@@ -42105,12 +39555,10 @@
/area/ai_monitored/turret_protected/ai)
"bBP" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 8
@@ -42119,9 +39567,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bBQ" = (
/obj/machinery/gravity_generator/main/station,
/turf/open/floor/plasteel/vault{
@@ -42131,9 +39577,7 @@
"bBR" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
@@ -42149,8 +39593,7 @@
"bBT" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
/area/engine/gravity_generator)
@@ -42224,15 +39667,9 @@
"bCa" = (
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
- },
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
+ pixel_x = -24
},
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/engine/break_room)
@@ -42255,26 +39692,20 @@
"bCd" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/caution,
/area/engine/break_room)
"bCe" = (
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/engine/break_room)
@@ -42360,14 +39791,10 @@
},
/area/engine/break_room)
"bCn" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/obj/machinery/light_switch{
pixel_y = 26
@@ -42514,8 +39941,7 @@
/obj/item/weapon/stock_parts/micro_laser,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/turf/open/floor/plasteel/vault{
dir = 8
@@ -42551,12 +39977,7 @@
},
/area/storage/primary)
"bCF" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/storage/primary)
@@ -42591,9 +40012,6 @@
/turf/open/floor/plating,
/area/bridge)
"bCJ" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
/obj/structure/sign/nanotrasen{
pixel_x = 32;
pixel_y = -32
@@ -42602,6 +40020,9 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
/turf/open/floor/plasteel/darkblue/side,
/area/bridge)
"bCK" = (
@@ -42754,7 +40175,6 @@
"bDc" = (
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -42778,7 +40198,6 @@
"bDf" = (
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -26
},
/turf/open/floor/plasteel/darkblue/side,
@@ -42791,14 +40210,14 @@
/turf/open/floor/plasteel/darkblue/side,
/area/bridge)
"bDh" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
/obj/structure/sign/nanotrasen{
pixel_x = -32;
pixel_y = -32
},
/obj/machinery/light/small,
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
/turf/open/floor/plasteel/darkblue/side,
/area/bridge)
"bDi" = (
@@ -42817,10 +40236,10 @@
/turf/open/floor/plating,
/area/security/detectives_office)
"bDk" = (
+/obj/structure/disposalpipe/segment,
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
},
-/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/red/corner{
dir = 1
},
@@ -42829,11 +40248,10 @@
/turf/open/floor/plasteel/neutral,
/area/hallway/primary/starboard)
"bDm" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
/obj/structure/disposalpipe/segment,
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
/turf/open/floor/plasteel/red/corner{
dir = 4
},
@@ -43077,7 +40495,6 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -43103,9 +40520,7 @@
"bDJ" = (
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/obj/machinery/light_switch{
pixel_y = -26
@@ -43146,7 +40561,7 @@
/area/engine/gravity_generator)
"bDM" = (
/turf/closed/wall/r_wall,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bDN" = (
/obj/structure/sign/directions/engineering{
desc = "A handy sign praising the engineering department.";
@@ -43160,12 +40575,7 @@
/turf/closed/wall,
/area/engine/break_room)
"bDP" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -43349,8 +40759,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral/side{
dir = 4
@@ -43414,7 +40823,6 @@
/obj/item/weapon/stock_parts/manipulator,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/open/floor/plasteel/vault{
@@ -43456,8 +40864,7 @@
/obj/effect/landmark/start/assistant,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
/area/storage/primary)
@@ -43503,22 +40910,16 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/primary/central)
"bEx" = (
/turf/closed/wall/r_wall,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bEy" = (
/turf/closed/wall,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bEz" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -43532,15 +40933,11 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/wood,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bEA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bEB" = (
/obj/structure/table/reinforced,
/obj/machinery/recharger,
@@ -43595,8 +40992,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/camera{
c_tag = "Bridge - Command Chair";
@@ -43663,11 +41059,11 @@
/area/bridge)
"bEL" = (
/turf/closed/wall/r_wall,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bEM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bEN" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
@@ -43680,11 +41076,11 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bEO" = (
/obj/machinery/computer/security/telescreen/entertainment,
/turf/closed/wall/r_wall,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bEP" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -43779,11 +41175,9 @@
icon_state = "0-2"
},
/obj/machinery/power/apc{
- cell_type = 5000;
dir = 1;
name = "Detective's Office APC";
- pixel_x = 0;
- pixel_y = 25
+ pixel_y = 24
},
/obj/item/device/taperecorder,
/obj/item/weapon/restraints/handcuffs,
@@ -43810,7 +41204,6 @@
"bFc" = (
/obj/machinery/photocopier,
/obj/machinery/ai_status_display{
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/plasteel/vault,
@@ -43993,8 +41386,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
@@ -44037,7 +41429,6 @@
dir = 6
},
/obj/machinery/power/apc{
- aidisabled = 0;
dir = 1;
name = "AI Chamber APC";
pixel_y = 24
@@ -44093,26 +41484,17 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bFF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bFG" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bFH" = (
/obj/machinery/disposal/bin,
/obj/structure/extinguisher_cabinet{
@@ -44124,7 +41506,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bFI" = (
/obj/machinery/cell_charger,
/obj/structure/table/reinforced,
@@ -44138,7 +41520,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bFJ" = (
/obj/structure/table/reinforced,
/obj/item/weapon/clipboard,
@@ -44154,7 +41536,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bFK" = (
/obj/structure/rack,
/obj/item/weapon/crowbar,
@@ -44172,11 +41554,9 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bFL" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/firealarm{
pixel_y = 24
},
@@ -44197,7 +41577,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bFM" = (
/obj/structure/cable/white{
icon_state = "0-2"
@@ -44212,7 +41592,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bFN" = (
/obj/machinery/door/poddoor/preopen{
id = "ceblast";
@@ -44332,8 +41712,7 @@
"bFZ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
@@ -44423,8 +41802,7 @@
/obj/machinery/vending/tool,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
@@ -44468,37 +41846,24 @@
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/turf/open/floor/wood,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bGp" = (
/obj/structure/bookcase/random,
/turf/open/floor/wood,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bGq" = (
/obj/machinery/light{
dir = 1
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/wood,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bGr" = (
/obj/machinery/firealarm{
pixel_y = 26
},
/turf/open/floor/wood,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bGs" = (
/obj/structure/cable/white{
d2 = 2;
@@ -44508,13 +41873,10 @@
cell_type = 10000;
dir = 1;
name = "Council Chambers APC";
- pixel_x = 0;
pixel_y = 26
},
/turf/open/floor/wood,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bGt" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -44524,9 +41886,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/wood,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bGu" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -44541,33 +41901,23 @@
icon_state = "pipe-c"
},
/turf/open/floor/wood,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bGv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bGw" = (
/obj/structure/table/wood,
/obj/item/device/paicard,
/turf/open/floor/wood,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bGx" = (
/turf/closed/wall/r_wall,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bGy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bGz" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -44581,27 +41931,23 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bGA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bGB" = (
/obj/structure/table/wood,
/obj/item/weapon/clipboard,
/obj/item/toy/figure/captain,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bGC" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/turf/open/floor/wood,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bGD" = (
/obj/machinery/light_switch{
pixel_x = -26;
@@ -44612,19 +41958,19 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bGE" = (
/obj/machinery/light{
dir = 1
},
/turf/open/floor/wood,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bGF" = (
/obj/machinery/firealarm{
pixel_y = 26
},
/turf/open/floor/wood,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bGG" = (
/obj/machinery/ai_status_display{
pixel_y = 32
@@ -44632,33 +41978,28 @@
/turf/open/floor/plasteel/vault{
dir = 6
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bGH" = (
/obj/structure/fireplace,
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bGI" = (
/obj/machinery/status_display{
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/plasteel/vault{
dir = 10
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bGJ" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/wood,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bGK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/turf/open/floor/plasteel/neutral/corner{
dir = 8
@@ -44669,8 +42010,7 @@
/obj/structure/disposalpipe/segment,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/turf/open/floor/plasteel/neutral/corner{
dir = 4
@@ -44846,8 +42186,7 @@
"bHb" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/red/side{
dir = 10
@@ -44876,8 +42215,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
@@ -44932,9 +42270,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bHk" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -44947,14 +42283,11 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bHl" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
@@ -44963,9 +42296,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bHm" = (
/obj/structure/window/reinforced{
dir = 8
@@ -45038,17 +42369,14 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bHu" = (
/obj/structure/window/reinforced{
dir = 1;
layer = 2.9
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
@@ -45057,14 +42385,10 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bHv" = (
/turf/closed/wall/r_wall,
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bHw" = (
/obj/structure/closet/emcloset{
anchored = 1
@@ -45072,57 +42396,40 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bHx" = (
/obj/machinery/status_display,
/turf/closed/wall,
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bHy" = (
/obj/machinery/power/apc{
cell_type = 5000;
dir = 1;
name = "Transit Tube Access APC";
- pixel_x = 0;
- pixel_y = 25
+ pixel_y = 24
},
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
},
/turf/open/floor/plasteel/vault,
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bHz" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/vault,
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bHA" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/obj/machinery/button/door{
id = "transitlock";
name = "Transit Tube Lockdown Control";
- pixel_x = 0;
pixel_y = 26;
req_access_txt = "39; 19"
},
@@ -45130,13 +42437,9 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bHB" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -45150,21 +42453,21 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bHC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 6
},
/turf/open/floor/plasteel/neutral/corner,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bHD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 8
},
/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bHE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
@@ -45175,7 +42478,7 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bHF" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -45187,7 +42490,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bHG" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -45211,7 +42514,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bHH" = (
/obj/machinery/door/poddoor/preopen{
id = "ceblast";
@@ -45275,8 +42578,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -45393,12 +42695,7 @@
},
/area/hallway/primary/port)
"bHW" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/ai_status_display{
pixel_x = -32
},
@@ -45440,9 +42737,7 @@
/turf/open/floor/plasteel,
/area/storage/tech)
"bHZ" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/status_display{
pixel_x = 32
},
@@ -45493,9 +42788,7 @@
name = "Council Chambers Blast door"
},
/turf/open/floor/plating,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bIe" = (
/obj/structure/table/wood,
/obj/item/clothing/mask/cigarette/cigar/cohiba{
@@ -45506,33 +42799,24 @@
},
/obj/item/clothing/mask/cigarette/cigar,
/turf/open/floor/wood,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bIf" = (
/turf/open/floor/plasteel/grimy,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bIg" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/carpet,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bIh" = (
/obj/structure/chair/comfy/black,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/carpet,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bIi" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -45542,9 +42826,7 @@
dir = 4
},
/turf/open/floor/carpet,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bIj" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -45555,9 +42837,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/carpet,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bIk" = (
/obj/structure/table/wood,
/obj/item/weapon/cigbutt/cigarbutt{
@@ -45573,35 +42853,27 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/grimy,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bIl" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
dir = 4
},
/turf/open/floor/wood,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bIm" = (
/obj/structure/sign/nanotrasen{
pixel_x = 32;
pixel_y = 32
},
/turf/open/floor/wood,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bIn" = (
/obj/machinery/vending/coffee,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bIo" = (
/obj/structure/table/wood,
/obj/machinery/light{
@@ -45611,9 +42883,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bIp" = (
/obj/structure/table/wood,
/obj/item/device/radio/intercom{
@@ -45623,20 +42893,15 @@
/obj/item/weapon/folder/blue,
/obj/item/weapon/pen,
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bIq" = (
/obj/machinery/power/apc{
cell_type = 10000;
dir = 1;
name = "Telecoms Monitoring APC";
- pixel_x = 0;
pixel_y = 28
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/structure/cable/white{
d2 = 2;
icon_state = "0-2"
@@ -45646,9 +42911,7 @@
dir = 5
},
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bIr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -45661,9 +42924,7 @@
network = list("SS13","tcomm")
},
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bIs" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -45673,33 +42934,25 @@
pixel_y = 26
},
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bIt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 6
},
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bIu" = (
/obj/machinery/airalarm{
pixel_y = 22
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 9
},
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bIv" = (
/obj/structure/table/wood,
/obj/item/device/radio/intercom{
@@ -45710,9 +42963,7 @@
pixel_y = 5
},
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bIw" = (
/obj/structure/table/wood,
/obj/machinery/light{
@@ -45722,15 +42973,13 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bIx" = (
/obj/machinery/vending/boozeomat,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bIy" = (
/obj/structure/sign/nanotrasen{
pixel_x = -32;
@@ -45738,7 +42987,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bIz" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -45749,7 +42998,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/wood,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bIA" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -45763,10 +43012,10 @@
icon_state = "pipe-c"
},
/turf/open/floor/wood,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bIB" = (
/turf/open/floor/wood,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bIC" = (
/obj/structure/chair/comfy/brown{
icon_state = "comfychair";
@@ -45774,27 +43023,26 @@
},
/obj/effect/landmark/start/captain,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bID" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/fancy/donut_box,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bIE" = (
/obj/structure/chair/comfy/brown{
icon_state = "comfychair";
dir = 8
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bIF" = (
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/open/floor/wood,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bIG" = (
/turf/closed/wall,
/area/storage/tools)
@@ -45817,8 +43065,7 @@
cell_type = 5000;
dir = 1;
name = "Auxiliary Tool Storage APC";
- pixel_x = 0;
- pixel_y = 25
+ pixel_y = 24
},
/turf/open/floor/plasteel/yellow/corner{
dir = 1
@@ -45834,6 +43081,9 @@
/obj/structure/closet/toolcloset,
/obj/effect/decal/cleanable/dirt,
/obj/effect/spawner/lootdrop/maintenance,
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
/turf/open/floor/plasteel/yellow/corner{
dir = 4
},
@@ -45919,8 +43169,7 @@
department = "Detective's Office";
departmentType = 0;
name = "Detective RC";
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -45959,7 +43208,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/open/floor/plasteel/red/corner{
@@ -45971,8 +43219,7 @@
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
name = "HIGH VOLTAGE";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/light{
dir = 4
@@ -45986,10 +43233,7 @@
/turf/closed/wall,
/area/security/brig)
"bJa" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/door_timer{
id = "brig1";
name = "Cell 1";
@@ -46048,8 +43292,7 @@
},
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/item/clothing/mask/gas/sechailer,
/obj/item/clothing/mask/gas/sechailer,
@@ -46151,7 +43394,6 @@
"bJm" = (
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -26
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -46195,8 +43437,7 @@
layer = 2.9
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/open/space,
/area/space)
@@ -46211,9 +43452,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bJt" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -46224,9 +43463,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bJu" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -46241,9 +43478,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bJv" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable/white{
@@ -46290,9 +43525,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bJz" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -46303,9 +43536,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bJA" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -46314,9 +43545,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bJB" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -46328,9 +43557,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bJC" = (
/obj/machinery/light/small{
dir = 4
@@ -46339,20 +43566,16 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bJD" = (
-/obj/machinery/computer/card/minor/ce{
- pixel_x = 0
- },
+/obj/machinery/computer/card/minor/ce,
/obj/machinery/status_display{
pixel_x = -32
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bJE" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -46362,25 +43585,25 @@
icon_state = "neutral";
dir = 4
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bJF" = (
/obj/structure/table/reinforced,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bJG" = (
/obj/structure/table/reinforced,
/obj/item/device/flashlight/lamp,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bJH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/side{
dir = 8;
heat_capacity = 1e+006
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bJI" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -46389,13 +43612,13 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bJJ" = (
/obj/structure/cable/white,
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bJK" = (
/obj/machinery/door/poddoor/preopen{
id = "ceblast";
@@ -46409,7 +43632,6 @@
"bJL" = (
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = -26
},
/turf/open/floor/plasteel/yellow/side{
@@ -46468,9 +43690,7 @@
/turf/open/floor/plasteel/yellow/side,
/area/engine/break_room)
"bJT" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/yellow/side{
dir = 6
},
@@ -46555,7 +43775,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"bKd" = (
/obj/structure/table/reinforced,
/obj/item/stack/sheet/metal{
@@ -46566,9 +43786,7 @@
},
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
@@ -46614,27 +43832,21 @@
name = "Council Chambers Blast door"
},
/turf/open/floor/plating,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bKk" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/machinery/photocopier,
/turf/open/floor/wood,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bKl" = (
/obj/machinery/holopad,
/obj/structure/cable/white{
icon_state = "4-8"
},
/turf/open/floor/plasteel/grimy,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bKm" = (
/obj/structure/chair/comfy/brown{
color = "#c45c57";
@@ -46645,9 +43857,7 @@
icon_state = "4-8"
},
/turf/open/floor/carpet,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bKn" = (
/obj/structure/table/wood,
/obj/structure/cable/white{
@@ -46656,9 +43866,7 @@
/obj/item/weapon/folder/blue,
/obj/item/weapon/pen,
/turf/open/floor/carpet,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bKo" = (
/obj/structure/table/wood,
/obj/structure/cable/white{
@@ -46670,9 +43878,7 @@
/obj/item/weapon/folder/red,
/obj/item/weapon/lighter,
/turf/open/floor/carpet,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bKp" = (
/obj/structure/table/wood,
/obj/structure/cable/white{
@@ -46684,9 +43890,7 @@
/obj/item/weapon/folder/yellow,
/obj/structure/disposalpipe/segment,
/turf/open/floor/carpet,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bKq" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/fancy/donut_box,
@@ -46695,27 +43899,21 @@
dir = 8
},
/turf/open/floor/plasteel/grimy,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bKr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/wood,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bKs" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
on = 1
},
/turf/open/floor/wood,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bKt" = (
/obj/machinery/vending/cigarette,
/obj/machinery/light{
@@ -46725,9 +43923,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bKu" = (
/obj/machinery/announcement_system,
/obj/machinery/ai_status_display{
@@ -46736,30 +43932,23 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bKv" = (
/obj/structure/chair/office/dark{
dir = 1
},
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bKw" = (
/obj/structure/cable/white{
icon_state = "1-4"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bKx" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -46769,9 +43958,7 @@
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bKy" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -46781,35 +43968,27 @@
icon_state = "2-8"
},
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bKz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 5
},
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bKA" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
on = 1
},
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bKB" = (
/obj/structure/chair/office/dark{
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bKC" = (
/obj/machinery/computer/telecomms/monitor,
/obj/machinery/status_display{
@@ -46818,19 +43997,17 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bKD" = (
/obj/machinery/vending/cigarette,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bKE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bKF" = (
/obj/machinery/holopad,
/obj/structure/cable/white{
@@ -46842,25 +44019,23 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/wood,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bKG" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/turf/open/floor/wood,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bKH" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/turf/open/floor/wood,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bKI" = (
/obj/structure/chair/comfy/brown{
icon_state = "comfychair";
@@ -46870,7 +44045,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bKJ" = (
/obj/structure/table/wood,
/obj/item/clothing/mask/cigarette/cigar/cohiba{
@@ -46884,7 +44059,7 @@
icon_state = "2-8"
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bKK" = (
/obj/machinery/light{
icon_state = "tube1";
@@ -46894,7 +44069,7 @@
pixel_x = 26
},
/turf/open/floor/wood,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bKL" = (
/obj/structure/rack,
/obj/item/clothing/gloves/color/fyellow,
@@ -46918,9 +44093,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
@@ -46941,8 +44114,7 @@
"bKP" = (
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/camera{
@@ -47118,9 +44290,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/turf/open/floor/plasteel/neutral,
/area/security/warden)
@@ -47147,9 +44317,7 @@
"bLl" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -47177,8 +44345,7 @@
/area/ai_monitored/security/armory)
"bLo" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 8
@@ -47189,16 +44356,12 @@
dir = 8;
name = "ai camera";
network = list("Sat");
- pixel_x = 0;
- pixel_y = 0;
start_active = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bLp" = (
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/aisat_interior)
@@ -47230,8 +44393,7 @@
frequency = 1447;
listening = 0;
name = "AI Intercom";
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/turf/open/floor/plasteel/vault{
dir = 8
@@ -47251,8 +44413,7 @@
/area/ai_monitored/turret_protected/aisat_interior)
"bLw" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 8
@@ -47263,16 +44424,12 @@
dir = 4;
name = "ai camera";
network = list("Sat");
- pixel_x = 0;
- pixel_y = 0;
start_active = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bLx" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable/white{
@@ -47289,26 +44446,15 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bLz" = (
/turf/closed/wall,
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bLA" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/flasher{
id = "AI";
@@ -47318,35 +44464,26 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bLB" = (
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bLC" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bLD" = (
/obj/machinery/requests_console{
announcementConsole = 1;
department = "Chief Engineer's Desk";
departmentType = 5;
name = "Chief Engineer's RC";
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/camera{
c_tag = "Engineering - Chief Engineer's Office";
@@ -47357,20 +44494,20 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bLE" = (
/turf/open/floor/plasteel/neutral/side{
icon_state = "neutral";
dir = 4
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bLF" = (
/obj/structure/chair/office/light{
dir = 4
},
/obj/effect/landmark/start/chief_engineer,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bLG" = (
/obj/structure/table/reinforced,
/obj/structure/cable/white{
@@ -47383,7 +44520,7 @@
/obj/item/weapon/folder/yellow,
/obj/item/weapon/lighter,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bLH" = (
/obj/structure/chair/office/light{
dir = 8
@@ -47396,7 +44533,7 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bLI" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -47412,15 +44549,15 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bLJ" = (
/obj/structure/sign/electricshock,
/turf/closed/wall/r_wall,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bLK" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall/r_wall,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bLL" = (
/obj/structure/sign/nosmoking_2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -47447,12 +44584,7 @@
/turf/closed/wall,
/area/engine/break_room)
"bLO" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/engine/break_room)
@@ -47532,12 +44664,9 @@
/turf/open/floor/plasteel,
/area/storage/tech)
"bLZ" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -47545,12 +44674,7 @@
/turf/open/floor/plasteel,
/area/storage/tech)
"bMa" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/light_switch{
pixel_y = -26
},
@@ -47618,7 +44742,6 @@
/obj/item/device/radio,
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/obj/machinery/light_switch{
@@ -47657,39 +44780,29 @@
name = "Council Chambers Blast door"
},
/turf/open/floor/plating,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bMl" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/red,
/obj/item/weapon/book/manual/wiki/security_space_law,
/turf/open/floor/wood,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bMm" = (
/turf/open/floor/carpet,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bMn" = (
/obj/structure/chair/comfy/brown{
buildstackamount = 0;
dir = 1
},
/turf/open/floor/carpet,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bMo" = (
/obj/structure/chair/comfy/black{
dir = 1
},
/turf/open/floor/carpet,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bMp" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -47699,17 +44812,13 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/carpet,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bMq" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/grimy,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bMr" = (
/obj/machinery/newscaster{
pixel_x = 32;
@@ -47717,25 +44826,16 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bMs" = (
/turf/open/floor/wood,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bMt" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bMu" = (
/obj/machinery/computer/message_monitor,
/obj/machinery/newscaster{
@@ -47745,42 +44845,30 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bMv" = (
/obj/structure/chair/office/dark{
dir = 8
},
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bMw" = (
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bMx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bMy" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bMA" = (
/obj/structure/chair/office/dark,
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bMB" = (
/obj/machinery/computer/telecomms/server,
/obj/machinery/newscaster{
@@ -47789,9 +44877,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bMC" = (
/obj/structure/bed/dogbed{
anchored = 1;
@@ -47803,7 +44889,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bMD" = (
/obj/machinery/newscaster{
pixel_x = -32;
@@ -47817,14 +44903,14 @@
dir = 5
},
/turf/open/floor/wood,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bME" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
dir = 1
},
/turf/open/floor/wood,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bMF" = (
/obj/structure/chair/comfy/brown,
/obj/structure/cable/white{
@@ -47836,20 +44922,20 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/wood,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bMG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bMH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
dir = 9
},
/turf/open/floor/wood,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bMI" = (
/obj/machinery/power/apc{
cell_type = 10000;
@@ -47859,14 +44945,14 @@
},
/obj/structure/cable/white,
/turf/open/floor/wood,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bMJ" = (
/obj/structure/sign/goldenplaque{
name = "The Most Robust Captain Award for Robustness";
pixel_x = 32
},
/turf/open/floor/wood,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bMK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/light{
@@ -47886,6 +44972,9 @@
/obj/item/weapon/storage/toolbox/emergency,
/obj/effect/decal/cleanable/dirt,
/obj/effect/spawner/lootdrop/maintenance,
+/obj/machinery/light_switch{
+ pixel_x = -26
+ },
/turf/open/floor/plasteel/yellow/side{
dir = 10
},
@@ -47936,21 +45025,16 @@
/area/security/detectives_office)
"bMR" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/open/floor/plasteel/black,
/area/security/detectives_office)
"bMS" = (
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -26
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/vault{
dir = 5
},
@@ -47958,13 +45042,11 @@
"bMT" = (
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
@@ -48045,13 +45127,10 @@
},
/area/security/detectives_office)
"bNa" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-18"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
@@ -48130,9 +45209,7 @@
pixel_x = -3;
pixel_y = 3
},
-/obj/item/clothing/suit/armor/vest{
- pixel_y = 0
- },
+/obj/item/clothing/suit/armor/vest,
/obj/item/clothing/suit/armor/vest{
pixel_x = 3;
pixel_y = -3
@@ -48236,12 +45313,7 @@
},
/area/ai_monitored/turret_protected/aisat_interior)
"bNr" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/vault,
/area/ai_monitored/turret_protected/aisat_interior)
"bNs" = (
@@ -48251,8 +45323,6 @@
dir = 2;
name = "ai camera";
network = list("Sat");
- pixel_x = 0;
- pixel_y = 0;
start_active = 1
},
/turf/open/floor/plasteel/vault,
@@ -48273,12 +45343,7 @@
/turf/open/floor/plasteel/vault,
/area/ai_monitored/turret_protected/aisat_interior)
"bNw" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/vault{
dir = 8
},
@@ -48315,8 +45380,7 @@
/obj/structure/lattice,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/open/space,
/area/space)
@@ -48376,9 +45440,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bNJ" = (
/obj/machinery/door/airlock/hatch{
name = "MiniSat Transit Tube Access";
@@ -48387,17 +45449,13 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bNK" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bNL" = (
/obj/machinery/keycard_auth{
pixel_x = -26
@@ -48420,12 +45478,12 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bNM" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bNN" = (
/obj/structure/table/reinforced,
/obj/structure/cable/white{
@@ -48434,7 +45492,7 @@
/obj/item/weapon/clipboard,
/obj/item/toy/figure/ce,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bNO" = (
/obj/structure/chair/office/light{
dir = 8
@@ -48444,7 +45502,7 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bNP" = (
/obj/structure/cable/white{
icon_state = "0-2"
@@ -48452,21 +45510,16 @@
/obj/structure/grille,
/obj/structure/window/reinforced/tinted/fulltile,
/turf/open/floor/plating,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bNQ" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/newscaster{
pixel_y = 32
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bNR" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
@@ -48474,7 +45527,7 @@
pixel_y = 32
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bNS" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/ce,
@@ -48482,14 +45535,14 @@
dir = 1
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bNT" = (
/obj/structure/dresser,
/obj/machinery/status_display{
pixel_y = 32
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bNU" = (
/obj/structure/closet/secure_closet/engineering_chief,
/obj/machinery/button/door{
@@ -48511,7 +45564,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bNV" = (
/obj/structure/closet/radiation,
/obj/structure/extinguisher_cabinet{
@@ -48673,9 +45726,7 @@
},
/obj/item/weapon/storage/secure/briefcase,
/turf/open/floor/wood,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bOl" = (
/obj/machinery/button/door{
id = "councilblast";
@@ -48685,30 +45736,19 @@
},
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = -26
},
/obj/structure/bookcase/random,
/turf/open/floor/wood,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bOm" = (
/obj/machinery/light,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/wood,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bOn" = (
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/camera{
@@ -48717,9 +45757,7 @@
name = "command camera"
},
/turf/open/floor/wood,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bOo" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -48730,15 +45768,11 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/wood,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bOp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood,
-/area/bridge/meeting_room{
- name = "Council Chamber"
- })
+/area/bridge/meeting_room/council)
"bOq" = (
/obj/structure/table/wood,
/obj/machinery/microwave{
@@ -48749,60 +45783,39 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bOr" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/box/donkpockets,
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bOs" = (
/obj/structure/filingcabinet/security,
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bOt" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bOu" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bOv" = (
/obj/structure/filingcabinet/medical,
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bOw" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/red,
/obj/item/weapon/pen,
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bOx" = (
/obj/structure/table/wood,
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -26
},
/obj/item/weapon/phone{
@@ -48816,9 +45829,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bOy" = (
/obj/structure/table/wood,
/obj/machinery/light{
@@ -48837,7 +45848,7 @@
layer = 2.9
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bOz" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/blue,
@@ -48853,7 +45864,7 @@
req_access_txt = "20"
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bOA" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
@@ -48862,10 +45873,10 @@
layer = 2.9
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bOB" = (
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bOC" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/secure/briefcase{
@@ -48878,18 +45889,18 @@
layer = 2.9
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bOD" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/photo_album,
/obj/item/device/camera,
/turf/open/floor/wood,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bOE" = (
/obj/structure/table/wood,
/obj/machinery/recharger,
/turf/open/floor/wood,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bOF" = (
/obj/structure/sign/directions/science{
dir = 2;
@@ -48899,8 +45910,7 @@
desc = "A direction sign, pointing out which way the Command department is.";
dir = 1;
icon_state = "direction_bridge";
- name = "command department";
- pixel_y = 0
+ name = "command department"
},
/obj/structure/sign/directions/engineering{
desc = "A direction sign, pointing out which way the Supply department is.";
@@ -49030,9 +46040,7 @@
/obj/structure/table/reinforced,
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/item/weapon/clipboard,
/obj/item/toy/figure/warden,
@@ -49061,8 +46069,7 @@
/obj/machinery/power/apc{
dir = 4;
name = "Warden's Office APC";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/machinery/camera{
c_tag = "Security - Warden's Office";
@@ -49122,9 +46129,7 @@
pixel_x = -3;
pixel_y = 3
},
-/obj/item/clothing/suit/armor/bulletproof{
- pixel_y = 0
- },
+/obj/item/clothing/suit/armor/bulletproof,
/obj/item/clothing/suit/armor/bulletproof{
pixel_x = 3;
pixel_y = -3
@@ -49166,9 +46171,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bPa" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -49176,9 +46179,7 @@
},
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/obj/machinery/light/small{
dir = 4
@@ -49186,9 +46187,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bPb" = (
/obj/structure/showcase{
density = 0;
@@ -49246,8 +46245,6 @@
dir = 8;
name = "ai camera";
network = list("Sat");
- pixel_x = 0;
- pixel_y = 0;
start_active = 1
},
/obj/effect/turf_decal/stripes/line,
@@ -49330,16 +46327,13 @@
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/aisat_interior)
"bPo" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/turretid{
control_area = "AI Satellite Antechamber";
enabled = 1;
icon_state = "control_standby";
name = "Antechamber Turret Control";
pixel_x = -32;
- pixel_y = 0;
req_access_txt = "65"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -49350,8 +46344,6 @@
dir = 4;
name = "ai camera";
network = list("Sat");
- pixel_x = 0;
- pixel_y = 0;
start_active = 1
},
/turf/open/floor/plasteel/vault{
@@ -49396,7 +46388,6 @@
},
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -49408,9 +46399,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bPt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/window/northright,
@@ -49420,9 +46409,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bPu" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -49434,17 +46421,14 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bPv" = (
/obj/structure/window/reinforced{
dir = 1;
layer = 2.9
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -49454,9 +46438,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bPw" = (
/obj/structure/lattice,
/obj/structure/transit_tube/diagonal{
@@ -49468,8 +46450,7 @@
"bPx" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/open/space,
/area/space)
@@ -49486,8 +46467,6 @@
dir = 2;
name = "ai camera";
network = list("Sat");
- pixel_x = 0;
- pixel_y = 0;
start_active = 1
},
/obj/item/weapon/clipboard,
@@ -49496,9 +46475,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bPz" = (
/obj/structure/chair/office/dark{
dir = 8
@@ -49511,36 +46488,25 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bPA" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bPB" = (
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
+ icon_state = "plant-21"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bPC" = (
/obj/machinery/computer/station_alert,
/obj/machinery/status_display{
@@ -49549,7 +46515,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bPD" = (
/obj/item/weapon/phone{
desc = "Supposedly a direct line to NanoTrasen Central Command. It's not even plugged in.";
@@ -49567,7 +46533,7 @@
},
/obj/structure/table/reinforced,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bPE" = (
/obj/structure/table/reinforced,
/obj/structure/cable/white{
@@ -49584,18 +46550,17 @@
},
/obj/item/weapon/reagent_containers/pill/patch/silver_sulf,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bPF" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral/side{
dir = 8;
heat_capacity = 1e+006
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bPG" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -49607,7 +46572,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bPH" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -49631,7 +46596,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bPI" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -49643,7 +46608,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bPJ" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -49653,7 +46618,7 @@
dir = 8
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bPK" = (
/obj/structure/cable/white{
icon_state = "2-8"
@@ -49667,7 +46632,7 @@
dir = 8
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bPL" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -49680,7 +46645,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bPM" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -49692,7 +46657,7 @@
name = "Chief's Privacy Shutters"
},
/turf/open/floor/plating,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bPN" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -49739,12 +46704,7 @@
/obj/structure/cable/white{
icon_state = "1-2"
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 4
@@ -49755,11 +46715,9 @@
/area/security/checkpoint/engineering)
"bPS" = (
/obj/machinery/power/apc{
- cell_type = 5000;
dir = 1;
name = "Security Post - Engineering APC";
- pixel_x = 0;
- pixel_y = 25
+ pixel_y = 24
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
@@ -49811,8 +46769,7 @@
},
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/machinery/camera{
c_tag = "Security Post - Engineering";
@@ -50025,7 +46982,7 @@
/area/hallway/primary/central)
"bQn" = (
/turf/closed/wall/r_wall,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bQo" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -50038,15 +46995,15 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bQp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bQq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bQr" = (
/turf/open/floor/plasteel/vault{
dir = 8;
@@ -50098,12 +47055,11 @@
department = "Captain's Desk";
departmentType = 5;
name = "Captain RC";
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bQz" = (
/obj/structure/chair/comfy/brown{
buildstackamount = 0;
@@ -50117,12 +47073,12 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bQA" = (
/obj/structure/table/wood,
/obj/machinery/computer/security/wooden_tv,
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bQB" = (
/obj/structure/table/wood,
/obj/machinery/status_display{
@@ -50134,10 +47090,10 @@
},
/obj/item/weapon/hand_tele,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bQC" = (
/turf/closed/wall/r_wall,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"bQD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -50361,8 +47317,7 @@
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
name = "HIGH VOLTAGE";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -50377,10 +47332,7 @@
},
/area/hallway/primary/starboard)
"bQW" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/door_timer{
id = "brig2";
name = "Cell 2";
@@ -50497,16 +47449,12 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bRf" = (
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bRg" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/maintenance_hatch{
@@ -50560,8 +47508,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
@@ -50592,7 +47539,6 @@
},
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = 26
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -50657,8 +47603,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
@@ -50701,8 +47646,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
@@ -50728,9 +47672,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bRz" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -50742,9 +47684,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bRA" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -50756,9 +47696,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bRB" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -50766,9 +47704,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bRC" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -50777,28 +47713,22 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bRD" = (
/obj/structure/cable/white{
icon_state = "2-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bRE" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/obj/structure/transit_tube/station{
@@ -50808,9 +47738,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bRF" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
@@ -50858,8 +47786,7 @@
"bRK" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -50883,15 +47810,12 @@
dir = 4;
name = "Research Monitor";
network = list("Sat");
- pixel_x = 0;
pixel_y = 2
},
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bRM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -50899,27 +47823,20 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bRN" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bRO" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/light/small{
dir = 4
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -50929,9 +47846,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bRP" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/light{
@@ -50944,25 +47859,24 @@
layer = 4;
name = "Engine Monitor";
network = list("Engine");
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/mob/living/simple_animal/parrot/Poly,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bRQ" = (
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bRR" = (
/turf/open/floor/plasteel/neutral/side{
dir = 1;
heat_capacity = 1e+006
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bRS" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -50971,27 +47885,25 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bRT" = (
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bRU" = (
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bRV" = (
/obj/structure/cable/white,
/obj/structure/grille,
/obj/structure/window/reinforced/tinted/fulltile,
/turf/open/floor/plating,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bRW" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-18"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/firealarm{
dir = 1;
pixel_x = -24;
@@ -51000,28 +47912,27 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bRX" = (
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bRY" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bRZ" = (
/obj/machinery/suit_storage_unit/ce,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plasteel,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bSa" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -51038,8 +47949,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
@@ -51075,9 +47985,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/turf/open/floor/plasteel/red/side{
dir = 8
@@ -51113,7 +48021,6 @@
/obj/structure/table/reinforced,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/item/weapon/book/manual/wiki/security_space_law,
@@ -51168,9 +48075,7 @@
"bSp" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/turf/open/floor/plasteel/neutral,
/area/hallway/primary/port)
@@ -51270,23 +48175,21 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bSy" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
/obj/item/weapon/stamp/hop,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bSz" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bSA" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -51296,15 +48199,12 @@
icon_state = "pipe-c"
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bSB" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bSC" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/box/ids{
@@ -51314,7 +48214,7 @@
/obj/item/weapon/storage/box/silver_ids,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bSD" = (
/obj/machinery/light{
icon_state = "tube1";
@@ -51376,7 +48276,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bSK" = (
/obj/machinery/light_switch{
pixel_x = 26;
@@ -51388,23 +48288,23 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bSL" = (
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bSM" = (
/obj/item/device/radio/intercom{
pixel_y = -26
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bSN" = (
/obj/structure/displaycase/captain{
req_access = null;
req_access_txt = "20"
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"bSO" = (
/obj/structure/toilet{
dir = 4
@@ -51415,7 +48315,7 @@
},
/obj/effect/landmark/start/captain,
/turf/open/floor/plasteel/white,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"bSP" = (
/obj/structure/window/reinforced{
dir = 8
@@ -51433,7 +48333,7 @@
on = 1
},
/turf/open/floor/plasteel/white,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"bSQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/light{
@@ -51558,8 +48458,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
/area/hallway/primary/starboard)
@@ -51857,9 +48756,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bTy" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -51871,9 +48768,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bTz" = (
/obj/structure/sign/nosmoking_2,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -51918,17 +48813,10 @@
},
/area/ai_monitored/turret_protected/aisat_interior)
"bTD" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -52013,13 +48901,10 @@
},
/area/ai_monitored/turret_protected/aisat_interior)
"bTM" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -52032,8 +48917,7 @@
/obj/structure/window/reinforced,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -52044,9 +48928,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bTO" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -52056,9 +48938,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bTP" = (
/obj/structure/window/reinforced,
/obj/structure/cable/white,
@@ -52070,14 +48950,11 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bTQ" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/transit_tube/curved/flipped{
icon_state = "curved1";
@@ -52086,9 +48963,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bTR" = (
/obj/structure/lattice,
/obj/structure/transit_tube/diagonal,
@@ -52108,17 +48983,13 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bTT" = (
/obj/structure/transit_tube/horizontal,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bTU" = (
/obj/machinery/ai_status_display{
pixel_y = -32
@@ -52130,9 +49001,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bTV" = (
/obj/machinery/newscaster{
pixel_x = 32
@@ -52140,9 +49009,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/engine/break_room{
- name = "Transit Tube"
- })
+/area/engine/transit_tube)
"bTW" = (
/obj/structure/table/reinforced,
/obj/item/stack/packageWrap,
@@ -52150,7 +49017,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bTX" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder/yellow,
@@ -52159,13 +49026,12 @@
/obj/item/weapon/cartridge/atmos,
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bTY" = (
/obj/structure/rack,
/obj/item/weapon/storage/secure/briefcase,
@@ -52175,7 +49041,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bTZ" = (
/obj/structure/cable/white,
/obj/machinery/power/apc{
@@ -52186,20 +49052,15 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bUa" = (
/obj/machinery/photocopier,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bUb" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/light_switch{
pixel_x = 26;
pixel_y = -26
@@ -52207,7 +49068,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bUc" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -52219,7 +49080,7 @@
name = "Chief's Privacy Shutters"
},
/turf/open/floor/plating,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bUd" = (
/obj/structure/cable/white,
/obj/structure/cable/white{
@@ -52235,15 +49096,13 @@
name = "Chief's Privacy Shutters"
},
/turf/open/floor/plating,
-/area/crew_quarters/chief)
+/area/crew_quarters/heads/chief)
"bUe" = (
/obj/structure/closet/toolcloset,
/obj/machinery/light/small,
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/camera{
@@ -52411,7 +49270,6 @@
},
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/door/firedoor,
@@ -52427,7 +49285,6 @@
/obj/machinery/light,
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -26
},
/turf/open/floor/plasteel/neutral/corner{
@@ -52497,7 +49354,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bUD" = (
/obj/structure/chair/office/dark{
dir = 8
@@ -52506,14 +49363,14 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bUE" = (
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bUF" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bUG" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -52523,14 +49380,14 @@
on = 1
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bUH" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bUI" = (
/obj/machinery/vending/cart,
/obj/machinery/computer/security/telescreen/entertainment{
@@ -52538,7 +49395,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bUJ" = (
/obj/machinery/telecomms/server/presets/medical,
/turf/open/floor/plasteel/whiteblue/side{
@@ -52596,7 +49453,7 @@
"bUP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"bUQ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
@@ -52610,24 +49467,22 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/wood,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"bUR" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall/r_wall,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"bUS" = (
/turf/open/floor/plasteel/white,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"bUT" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"bUU" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -52689,7 +49544,6 @@
},
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/open/floor/plasteel/neutral/corner,
@@ -52728,6 +49582,9 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/cable/white{
+ icon_state = "1-4"
+ },
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/primary/starboard)
"bVd" = (
@@ -53007,7 +49864,6 @@
/obj/machinery/power/apc{
dir = 2;
name = "MiniSat APC";
- pixel_x = 0;
pixel_y = -27
},
/obj/structure/cable/white,
@@ -53034,7 +49890,6 @@
frequency = 1447;
listening = 0;
name = "AI Intercom";
- pixel_x = 0;
pixel_y = -26
},
/obj/effect/turf_decal/stripes/line{
@@ -53066,9 +49921,7 @@
/area/ai_monitored/turret_protected/aisat_interior)
"bVH" = (
/obj/structure/cable/white,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/light,
/turf/open/floor/plasteel/vault,
/area/ai_monitored/turret_protected/aisat_interior)
@@ -53089,23 +49942,16 @@
control_area = "AI Upload Chamber";
icon_state = "control_stun";
name = "AI Upload turret control";
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/vault,
/area/ai_monitored/turret_protected/aisat_interior)
"bVL" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/light,
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/open/floor/plasteel/vault,
@@ -53113,9 +49959,7 @@
"bVM" = (
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/obj/machinery/porta_turret/ai,
/turf/open/floor/plasteel/vault{
@@ -53143,7 +49987,6 @@
frequency = 1447;
listening = 0;
name = "AI Intercom";
- pixel_x = 0;
pixel_y = -26
},
/turf/open/floor/plasteel/vault{
@@ -53255,10 +50098,7 @@
/area/security/checkpoint/engineering)
"bWd" = (
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
+ icon_state = "plant-21"
},
/turf/open/floor/plasteel/yellow/corner{
dir = 8
@@ -53284,7 +50124,7 @@
/area/hallway/primary/port)
"bWg" = (
/turf/closed/wall,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"bWh" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -53295,7 +50135,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"bWi" = (
/turf/closed/wall,
/area/library)
@@ -53350,7 +50190,7 @@
name = "HoP Blast door"
},
/turf/open/floor/plating,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bWp" = (
/obj/machinery/computer/card,
/obj/structure/cable/white{
@@ -53359,20 +50199,20 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bWq" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bWr" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bWs" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -53381,11 +50221,11 @@
icon_state = "1-8"
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bWt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bWu" = (
/obj/machinery/pdapainter,
/obj/machinery/status_display{
@@ -53393,7 +50233,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bWv" = (
/obj/machinery/telecomms/bus/preset_one,
/turf/open/floor/plasteel/whiteblue/side{
@@ -53471,7 +50311,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"bWE" = (
/obj/machinery/light_switch{
pixel_x = 26;
@@ -53483,10 +50323,10 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/wood,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"bWF" = (
/turf/open/floor/wood,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"bWG" = (
/obj/machinery/light{
dir = 1
@@ -53496,7 +50336,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"bWH" = (
/obj/structure/closet/secure_closet/captains,
/obj/item/clothing/suit/armor/vest/capcarapace,
@@ -53505,20 +50345,20 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"bWI" = (
/turf/closed/wall,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"bWJ" = (
/obj/machinery/door/airlock/silver{
name = "Bathroom"
},
/turf/open/floor/plasteel/white,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"bWK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"bWL" = (
/obj/structure/sign/directions/evac{
pixel_y = -8
@@ -53531,16 +50371,16 @@
pixel_y = 8
},
/turf/closed/wall,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"bWM" = (
/turf/closed/wall,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"bWN" = (
/obj/structure/grille,
/obj/structure/window/reinforced/tinted/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"bWO" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
@@ -53549,12 +50389,12 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"bWP" = (
/obj/structure/grille,
/obj/structure/window/reinforced/tinted/fulltile,
/turf/open/floor/plating,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"bWQ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
@@ -53567,7 +50407,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"bWR" = (
/turf/closed/wall,
/area/lawoffice)
@@ -53603,10 +50443,6 @@
/turf/open/floor/plating,
/area/lawoffice)
"bWV" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -53614,6 +50450,9 @@
dir = 1;
icon_state = "pipe-c"
},
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
/turf/open/floor/plasteel/red/corner{
dir = 8
},
@@ -53662,7 +50501,6 @@
desc = "A sign that shows there are doors here. There are doors everywhere!";
icon_state = "doors";
name = "WARNING: BLAST DOORS";
- pixel_x = 0;
pixel_y = -32
},
/obj/effect/turf_decal/stripes/line{
@@ -53907,12 +50745,7 @@
/turf/closed/wall,
/area/engine/engineering)
"bXx" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
@@ -53956,9 +50789,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"bXB" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light_switch{
pixel_y = 26
@@ -54103,18 +50934,18 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"bXL" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/firecloset,
/turf/open/floor/plasteel/neutral/side{
dir = 9
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"bXM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"bXN" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance{
@@ -54124,14 +50955,13 @@
/obj/machinery/power/apc{
dir = 4;
name = "Port Maintenance APC";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/structure/cable/white{
icon_state = "0-2"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"bXO" = (
/obj/structure/table/wood,
/obj/machinery/computer/libraryconsole,
@@ -54207,8 +51037,7 @@
},
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/turf/open/floor/plasteel/neutral/corner{
dir = 1
@@ -54220,8 +51049,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
/area/hallway/primary/central)
@@ -54233,7 +51061,7 @@
"bYa" = (
/obj/machinery/status_display,
/turf/closed/wall/r_wall,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bYb" = (
/obj/machinery/computer/secure_data,
/obj/machinery/light{
@@ -54243,13 +51071,13 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bYc" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bYd" = (
/obj/structure/table/wood,
/obj/machinery/light,
@@ -54257,7 +51085,7 @@
/obj/item/weapon/hand_labeler,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bYe" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -54387,7 +51215,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"bYp" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -54397,20 +51225,20 @@
dir = 5
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"bYq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"bYr" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
dir = 1
},
/turf/open/floor/wood,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"bYs" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green,
@@ -54422,24 +51250,21 @@
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"bYt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"bYu" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 9
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"bYv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
@@ -54458,36 +51283,29 @@
pixel_y = 32
},
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"bYx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"bYy" = (
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"bYz" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"bYB" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"bYC" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"bYD" = (
/obj/machinery/newscaster{
pixel_y = 32
@@ -54496,7 +51314,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"bYE" = (
/obj/machinery/airalarm{
pixel_y = 22
@@ -54504,7 +51322,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"bYF" = (
/obj/machinery/light{
dir = 1
@@ -54515,7 +51333,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"bYG" = (
/obj/machinery/light_switch{
pixel_x = 26;
@@ -54528,13 +51346,13 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"bYH" = (
/obj/structure/closet/secure_closet/courtroom,
/turf/open/floor/plasteel/neutral/side{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"bYI" = (
/obj/structure/table/wood,
/obj/item/weapon/book/manual/wiki/security_space_law,
@@ -54549,7 +51367,6 @@
/obj/machinery/button/door{
id = "lawyerprivacy";
name = "Lawyer's Privacy Control";
- pixel_x = 0;
pixel_y = 24;
req_access_txt = "0"
},
@@ -54580,9 +51397,7 @@
/obj/structure/closet/lawcloset,
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/turf/open/floor/wood,
/area/lawoffice)
@@ -54690,12 +51505,7 @@
},
/area/ai_monitored/turret_protected/ai_upload)
"bYY" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/light{
dir = 1
},
@@ -54830,8 +51640,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/yellow,
/area/engine/engineering)
@@ -54993,7 +51802,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 9
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"bZB" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -55002,19 +51811,19 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"bZC" = (
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"bZD" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"bZE" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"bZF" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -55022,7 +51831,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"bZG" = (
/obj/structure/table/wood,
/obj/item/weapon/folder,
@@ -55125,14 +51934,11 @@
/obj/structure/cable/white{
icon_state = "4-8"
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bZS" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -55144,13 +51950,12 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bZT" = (
/obj/machinery/power/apc{
dir = 4;
name = "HoP Office APC";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/structure/cable/white{
icon_state = "0-8"
@@ -55162,16 +51967,15 @@
name = "command camera"
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bZU" = (
/turf/closed/wall,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bZV" = (
/obj/machinery/power/apc{
dir = 8;
name = "Telecoms Server Room APC";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/structure/cable/white,
/turf/open/floor/plasteel/vault{
@@ -55337,7 +52141,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"cai" = (
/obj/structure/chair/comfy/brown{
color = "#c45c57";
@@ -55353,22 +52157,20 @@
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"caj" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"cak" = (
/obj/machinery/holopad,
/obj/structure/cable/white{
@@ -55383,7 +52185,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/wood,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"cal" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -55393,7 +52195,7 @@
on = 1
},
/turf/open/floor/wood,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"cam" = (
/obj/machinery/door/window/brigdoor/westleft{
name = "Captain's Bedroom";
@@ -55403,10 +52205,10 @@
icon_state = "2-8"
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"can" = (
/turf/open/floor/carpet,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"cao" = (
/obj/machinery/light/small{
dir = 4
@@ -55418,7 +52220,7 @@
},
/obj/effect/landmark/start/captain,
/turf/open/floor/carpet,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"cap" = (
/obj/structure/table,
/obj/machinery/microwave{
@@ -55431,13 +52233,13 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"caq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"car" = (
/obj/structure/chair{
dir = 4
@@ -55445,7 +52247,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cas" = (
/obj/structure/chair{
dir = 2;
@@ -55454,7 +52256,7 @@
/turf/open/floor/plasteel/red/side{
dir = 9
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cat" = (
/obj/structure/chair{
dir = 2;
@@ -55463,7 +52265,7 @@
/turf/open/floor/plasteel/red/side{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cau" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -55473,7 +52275,7 @@
on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cav" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -55482,7 +52284,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"caw" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -55492,7 +52294,7 @@
},
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cax" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -55503,7 +52305,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cay" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -55569,7 +52371,6 @@
/obj/structure/filingcabinet/employment,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/open/floor/wood,
@@ -55725,7 +52526,6 @@
cell_type = 10000;
dir = 1;
name = "Brig APC";
- pixel_x = 0;
pixel_y = 28
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -56043,8 +52843,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable{
icon_state = "1-8"
@@ -56061,51 +52860,47 @@
name = "2maintenance loot spawner"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cbt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plasteel/neutral,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cbu" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cbv" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cbw" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cbx" = (
/obj/machinery/light{
dir = 8
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/structure/sign/kiddieplaque{
desc = "A long list of rules to be followed when in the library, extolling the virtues of being quiet at all times and threatening those who would dare eat hot food inside.";
name = "Library Rules Sign";
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/open/floor/wood,
/area/library)
"cby" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/wood,
/area/library)
@@ -56117,12 +52912,7 @@
/turf/open/floor/plasteel/grimy,
/area/library)
"cbA" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/light/small{
dir = 4
},
@@ -56145,8 +52935,7 @@
/obj/structure/sign/kiddieplaque{
desc = "A long list of rules to be followed when in the library, extolling the virtues of being quiet at all times and threatening those who would dare eat hot food inside.";
name = "Library Rules Sign";
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
@@ -56156,31 +52945,30 @@
"cbE" = (
/obj/structure/sign/electricshock,
/turf/closed/wall/r_wall,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"cbF" = (
/obj/machinery/computer/cargo/request,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"cbG" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"cbH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"cbI" = (
/obj/structure/table/wood,
/obj/machinery/light{
@@ -56192,7 +52980,7 @@
dir = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"cbJ" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -56275,7 +53063,7 @@
},
/obj/item/weapon/razor,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"cbR" = (
/obj/structure/table/wood,
/obj/machinery/computer/security/wooden_tv,
@@ -56284,20 +53072,16 @@
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"cbS" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-18";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/wood,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"cbT" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -56308,15 +53092,11 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/wood,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"cbU" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -26
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -56329,7 +53109,7 @@
name = "command camera"
},
/turf/open/floor/wood,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"cbV" = (
/obj/structure/table/wood,
/obj/machinery/recharger,
@@ -56344,15 +53124,15 @@
},
/obj/structure/cable/white,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"cbW" = (
/obj/structure/filingcabinet/security,
/turf/open/floor/carpet,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"cbX" = (
/obj/structure/dresser,
/turf/open/floor/carpet,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"cbY" = (
/obj/structure/table,
/obj/machinery/ai_status_display{
@@ -56362,7 +53142,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cbZ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -56371,7 +53151,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cca" = (
/obj/structure/chair{
dir = 4
@@ -56383,7 +53163,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"ccb" = (
/obj/structure/chair{
dir = 4
@@ -56395,7 +53175,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"ccc" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/red,
@@ -56403,18 +53183,16 @@
/turf/open/floor/plasteel/neutral/side{
dir = 9
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"ccd" = (
/obj/structure/table/wood,
/obj/item/device/radio/intercom{
- name = "Station Intercom";
- pixel_x = 0;
- pixel_y = 0
+ name = "Station Intercom"
},
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cce" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -56422,7 +53200,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"ccf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -56431,7 +53209,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"ccg" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/blue,
@@ -56443,7 +53221,7 @@
/turf/open/floor/plasteel/red/side{
dir = 8
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cch" = (
/obj/structure/chair{
dir = 8;
@@ -56456,7 +53234,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cci" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -56671,8 +53449,7 @@
/obj/effect/landmark/start/security_officer,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
/area/security/brig)
@@ -56734,8 +53511,7 @@
layer = 2.9
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/open/space,
/area/space)
@@ -57025,33 +53801,32 @@
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cdi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cdj" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cdk" = (
/obj/effect/landmark/blobstart,
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cdl" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/open/floor/wood,
@@ -57061,9 +53836,7 @@
/turf/open/floor/wood,
/area/library)
"cdn" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/wood,
/area/library)
"cdo" = (
@@ -57140,7 +53913,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"cdy" = (
/obj/structure/chair/office/dark,
/obj/structure/cable/white{
@@ -57148,7 +53921,7 @@
},
/obj/effect/landmark/start/head_of_personnel,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"cdz" = (
/obj/structure/table/wood,
/obj/machinery/recharger,
@@ -57157,7 +53930,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"cdA" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -57233,29 +54006,22 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/crew_quarters/captain/captains_quarters)
+/area/crew_quarters/heads/captain/private)
"cdJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/primary/central)
"cdK" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cdL" = (
/obj/structure/chair{
dir = 4
@@ -57266,7 +54032,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cdM" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -57274,7 +54040,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cdN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -57282,13 +54048,13 @@
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cdO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cdP" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -57297,7 +54063,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cdQ" = (
/obj/structure/table/wood,
/obj/item/weapon/gavelblock,
@@ -57309,7 +54075,7 @@
/turf/open/floor/plasteel/blue/side{
dir = 9
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cdR" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
@@ -57320,12 +54086,12 @@
/turf/open/floor/plasteel/blue/side{
dir = 1
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cdS" = (
/turf/open/floor/plasteel/blue/side{
dir = 1
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cdT" = (
/obj/structure/chair/office/dark{
dir = 4
@@ -57340,8 +54106,7 @@
/obj/effect/landmark/start/lawyer,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/wood,
/area/lawoffice)
@@ -57351,7 +54116,6 @@
department = "Law Office";
departmentType = 0;
name = "'Law Office RC";
- pixel_x = 0;
pixel_y = -64
},
/obj/item/weapon/folder/blue{
@@ -57398,8 +54162,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/camera{
c_tag = "Security - Brig Desk";
@@ -57495,9 +54258,7 @@
/obj/structure/table/reinforced,
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/item/device/radio{
pixel_x = 5;
@@ -57628,8 +54389,7 @@
"cew" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
@@ -57789,7 +54549,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"ceP" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -57798,7 +54558,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"ceQ" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
@@ -57864,7 +54624,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"ceZ" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
@@ -57874,20 +54634,20 @@
/obj/item/weapon/folder/blue,
/obj/item/weapon/pen,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"cfa" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"cfb" = (
/obj/machinery/holopad,
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"cfd" = (
/obj/machinery/telecomms/server/presets/supply,
/turf/open/floor/plasteel/brown{
@@ -57938,22 +54698,16 @@
/area/tcommsat/server)
"cfi" = (
/turf/closed/wall/r_wall,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cfj" = (
/obj/machinery/shieldwallgen,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cfk" = (
/turf/closed/wall,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cfl" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -57975,9 +54729,7 @@
/turf/open/floor/plasteel/blue/side{
dir = 9
},
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cfm" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -57990,9 +54742,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cfn" = (
/obj/structure/cable/white{
icon_state = "2-8"
@@ -58006,24 +54756,18 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cfo" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cfp" = (
/obj/structure/closet/emcloset,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/blue/corner{
dir = 4
},
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cfq" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -58039,7 +54783,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cfs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -58047,7 +54791,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cft" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -58056,18 +54800,18 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cfu" = (
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cfv" = (
/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cfw" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
@@ -58076,30 +54820,29 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cfx" = (
/obj/item/device/radio/beacon,
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cfy" = (
/obj/machinery/holopad,
/obj/effect/landmark/start/lawyer,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cfz" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cfA" = (
/obj/structure/table/wood,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = -32
},
/obj/item/weapon/folder/yellow{
@@ -58111,14 +54854,14 @@
/turf/open/floor/plasteel/blue/side{
dir = 8
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cfB" = (
/obj/structure/chair{
dir = 8;
name = "Judge"
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cfC" = (
/obj/machinery/status_display{
pixel_x = 32
@@ -58131,14 +54874,13 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cfD" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/turf/open/floor/wood,
/area/lawoffice)
@@ -58212,8 +54954,7 @@
/area/security/brig)
"cfL" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 8
@@ -58225,16 +54966,13 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"cfM" = (
/obj/structure/table/reinforced,
/obj/item/weapon/aiModule/reset,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/turf/open/floor/plasteel/vault{
dir = 8
@@ -58286,8 +55024,7 @@
frequency = 1447;
listening = 0;
name = "AI Intercom";
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/turf/open/floor/plasteel/vault{
dir = 8
@@ -58351,8 +55088,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -58364,8 +55100,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -58426,8 +55161,7 @@
/obj/machinery/power/apc{
dir = 4;
name = "Engine Room APC";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
@@ -58440,14 +55174,14 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cgi" = (
/obj/machinery/light/small{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cgj" = (
/obj/structure/rack,
/obj/item/weapon/crowbar/red,
@@ -58455,8 +55189,11 @@
/obj/item/weapon/tank/internals/emergency_oxygen/engi,
/obj/effect/decal/cleanable/dirt,
/obj/effect/spawner/lootdrop/maintenance,
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cgk" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -58464,11 +55201,11 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cgl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cgm" = (
/obj/structure/chair/office/dark{
dir = 8
@@ -58526,14 +55263,14 @@
dir = 1
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"cgu" = (
/obj/structure/chair/office/dark{
dir = 1
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"cgv" = (
/obj/structure/bed/dogbed{
anchored = 1;
@@ -58543,13 +55280,12 @@
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/mob/living/simple_animal/pet/dog/corgi/Ian,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"cgw" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -58573,9 +55309,7 @@
"cgz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cgA" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -58592,9 +55326,7 @@
/turf/open/floor/plating{
icon_state = "plating_warn_side"
},
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cgB" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -58629,7 +55361,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cgE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -58637,7 +55369,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cgF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -58646,7 +55378,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cgG" = (
/obj/structure/chair{
dir = 4
@@ -58657,7 +55389,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cgH" = (
/obj/structure/chair{
dir = 4
@@ -58669,7 +55401,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cgI" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -58677,7 +55409,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cgJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -58685,13 +55417,13 @@
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cgK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cgL" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -58700,7 +55432,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cgM" = (
/obj/structure/table/wood,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -58710,7 +55442,7 @@
/turf/open/floor/plasteel/blue/side{
dir = 10
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cgN" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/briefcase{
@@ -58719,13 +55451,13 @@
},
/obj/item/weapon/storage/secure/briefcase,
/turf/open/floor/plasteel/blue/side,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cgO" = (
/obj/structure/sign/nanotrasen{
pixel_x = 32
},
/turf/open/floor/plasteel/blue/side,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cgP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
@@ -58822,6 +55554,9 @@
dir = 8
},
/obj/effect/turf_decal/bot,
+/obj/machinery/light_switch{
+ pixel_x = -36
+ },
/turf/open/floor/plasteel,
/area/security/range)
"cgZ" = (
@@ -59058,7 +55793,7 @@
/obj/machinery/shieldgen,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"chD" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -59067,7 +55802,7 @@
/obj/effect/landmark/xeno_spawn,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"chE" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -59077,7 +55812,7 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"chF" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -59090,7 +55825,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"chG" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -59098,7 +55833,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"chH" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -59106,7 +55841,7 @@
icon_state = "1-4"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"chI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -59115,7 +55850,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"chJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -59125,7 +55860,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"chK" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -59136,7 +55871,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"chL" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -59154,7 +55889,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"chM" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -59210,10 +55945,7 @@
/area/library)
"chT" = (
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
+ icon_state = "plant-21"
},
/turf/open/floor/wood,
/area/library)
@@ -59227,14 +55959,14 @@
"chV" = (
/obj/structure/dresser,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"chW" = (
/obj/structure/filingcabinet/medical,
/obj/machinery/light{
dir = 1
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"chX" = (
/obj/machinery/light{
icon_state = "tube1";
@@ -59244,14 +55976,14 @@
pixel_x = -26
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"chY" = (
/obj/structure/cable/white{
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"chZ" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -59264,17 +55996,15 @@
on = 1
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"cia" = (
/obj/machinery/ai_status_display{
pixel_x = 32
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"cib" = (
/obj/structure/cable/white,
/obj/structure/grille,
@@ -59302,27 +56032,20 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/loadingarea,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cie" = (
/turf/open/floor/plasteel/loadingarea,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cif" = (
/obj/structure/table,
/obj/item/stack/packageWrap,
/obj/item/weapon/hand_labeler,
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cig" = (
/obj/structure/table,
/obj/item/weapon/hand_tele,
@@ -59330,7 +56053,6 @@
cell_type = 10000;
dir = 1;
name = "Teleporter APC";
- pixel_x = 0;
pixel_y = 28
},
/obj/structure/cable/white{
@@ -59342,9 +56064,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cih" = (
/obj/structure/table,
/obj/machinery/cell_charger,
@@ -59356,9 +56076,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cii" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -59367,14 +56085,11 @@
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cij" = (
/obj/machinery/button/door{
id = "teleporterhubshutters";
name = "Teleporter Shutters";
- pixel_x = 0;
pixel_y = 26
},
/obj/machinery/bluespace_beacon,
@@ -59386,9 +56101,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cik" = (
/obj/machinery/teleport/hub,
/obj/structure/disposalpipe/segment{
@@ -59397,9 +56110,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cil" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters{
@@ -59413,9 +56124,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cim" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
@@ -59439,13 +56148,12 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cip" = (
/obj/structure/chair{
dir = 4
@@ -59458,7 +56166,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"ciq" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/blue,
@@ -59467,26 +56175,24 @@
dir = 10;
heat_capacity = 1e+006
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cir" = (
/obj/structure/table/wood,
/obj/item/device/radio/intercom{
- name = "Station Intercom";
- pixel_x = 0;
- pixel_y = 0
+ name = "Station Intercom"
},
/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cis" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cit" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"ciu" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/red,
@@ -59494,7 +56200,7 @@
/turf/open/floor/plasteel/green/side{
dir = 8
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"civ" = (
/obj/structure/chair{
dir = 8;
@@ -59504,7 +56210,7 @@
pixel_x = 32
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"ciw" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -59683,9 +56389,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -59779,8 +56483,7 @@
/area/security/range)
"ciQ" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 8
@@ -59790,27 +56493,20 @@
dir = 8;
name = "ai camera";
network = list("Sat");
- pixel_x = 0;
- pixel_y = 0;
start_active = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"ciR" = (
/obj/structure/cable/white,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/power/apc{
dir = 2;
name = "AI Upload Access APC";
- pixel_x = 0;
pixel_y = -27
},
/turf/open/floor/plasteel/vault{
@@ -59850,16 +56546,10 @@
},
/area/ai_monitored/turret_protected/ai_upload)
"ciV" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/light,
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -59869,8 +56559,7 @@
/area/ai_monitored/turret_protected/ai_upload)
"ciW" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 8
@@ -59880,16 +56569,12 @@
dir = 4;
name = "ai camera";
network = list("Sat");
- pixel_x = 0;
- pixel_y = 0;
start_active = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"ciX" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -59943,7 +56628,6 @@
department = "Chapel Office";
departmentType = 0;
name = "Chapel RC";
- pixel_x = 0;
pixel_y = -32
},
/turf/closed/wall/r_wall,
@@ -59959,8 +56643,7 @@
},
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
@@ -59971,7 +56654,7 @@
/area/engine/engineering)
"cjf" = (
/turf/closed/wall/r_wall,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cjg" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -59981,7 +56664,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cjh" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -59993,7 +56676,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cji" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -60062,9 +56745,7 @@
/obj/item/device/camera_film,
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/turf/open/floor/plasteel/grimy,
/area/library)
@@ -60075,7 +56756,7 @@
},
/obj/item/weapon/bedsheet/hop,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"cju" = (
/obj/machinery/light_switch{
pixel_x = 26;
@@ -60087,7 +56768,7 @@
on = 1
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"cjv" = (
/obj/machinery/door/airlock/command{
name = "Head of Personnel's Quarters";
@@ -60098,13 +56779,13 @@
dir = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"cjw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"cjx" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -60114,14 +56795,14 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"cjy" = (
/obj/structure/cable/white{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"cjz" = (
/obj/structure/cable/white{
icon_state = "2-8"
@@ -60131,7 +56812,7 @@
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"cjA" = (
/obj/structure/table/wood,
/obj/item/device/radio/intercom{
@@ -60146,7 +56827,7 @@
/obj/item/toy/figure/ian,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"cjB" = (
/turf/closed/wall,
/area/tcommsat/server)
@@ -60215,26 +56896,20 @@
/obj/item/weapon/crowbar,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cjI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 6
},
/turf/open/floor/plasteel/neutral,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cjJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cjK" = (
/obj/machinery/holopad,
/obj/structure/cable/white{
@@ -60249,9 +56924,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cjL" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -60265,9 +56938,7 @@
icon_state = "pipe-j2"
},
/turf/open/floor/plasteel/neutral,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cjM" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -60284,9 +56955,7 @@
icon_state = "pipe-j2"
},
/turf/open/floor/plasteel/neutral,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cjN" = (
/obj/structure/cable/white{
icon_state = "2-8"
@@ -60300,9 +56969,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cjO" = (
/obj/machinery/teleport/station,
/obj/machinery/status_display{
@@ -60311,9 +56978,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cjP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
@@ -60325,22 +56990,16 @@
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/primary/central)
"cjQ" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cjR" = (
/obj/structure/chair{
dir = 4
@@ -60349,7 +57008,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cjS" = (
/obj/structure/chair{
dir = 1;
@@ -60358,7 +57017,7 @@
/turf/open/floor/plasteel/green/side{
dir = 10
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cjT" = (
/obj/structure/chair{
dir = 1;
@@ -60367,28 +57026,27 @@
/turf/open/floor/plasteel/green/side{
dir = 6
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cjU" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cjV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
dir = 9
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cjW" = (
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cjX" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 26
@@ -60396,7 +57054,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cjY" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -60498,8 +57156,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "Shooting Range APC";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/structure/cable/white{
icon_state = "0-4"
@@ -60527,7 +57184,6 @@
/obj/structure/table/reinforced,
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/item/weapon/gun/energy/laser/practice{
@@ -60581,8 +57237,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
@@ -60742,30 +57397,29 @@
/obj/effect/decal/cleanable/cobweb,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"ckI" = (
/obj/machinery/shieldwallgen,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"ckJ" = (
/obj/structure/tank_dispenser,
/obj/effect/decal/cleanable/dirt,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = 26
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"ckK" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"ckL" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -60775,7 +57429,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"ckM" = (
/obj/machinery/power/apc{
dir = 8;
@@ -60844,24 +57498,21 @@
},
/obj/item/device/flashlight/lamp/green,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"ckV" = (
/obj/structure/closet/secure_closet/hop,
/obj/item/clothing/suit/ianshirt,
/obj/item/weapon/bedsheet/ian,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"ckW" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"ckX" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-18";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"ckY" = (
/obj/machinery/disposal/bin,
/obj/structure/cable/white{
@@ -60871,18 +57522,15 @@
dir = 1
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"ckZ" = (
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -26
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"cla" = (
/obj/machinery/light_switch{
pixel_x = 26;
@@ -60893,27 +57541,21 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"clb" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"clc" = (
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
@@ -60941,7 +57583,6 @@
"clf" = (
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -26
},
/obj/effect/turf_decal/stripes/line{
@@ -60968,14 +57609,11 @@
/obj/item/device/radio,
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -26
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cli" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -60983,9 +57621,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"clj" = (
/obj/machinery/light_switch{
pixel_x = -7;
@@ -61002,15 +57638,11 @@
},
/obj/effect/turf_decal/stripes/corner,
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"clk" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cll" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -61018,28 +57650,22 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"clm" = (
/obj/machinery/light,
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/turf_decal/stripes/corner{
dir = 1
},
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cln" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -61049,17 +57675,13 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"clo" = (
/obj/machinery/computer/teleporter,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"clp" = (
/obj/structure/table,
/obj/machinery/status_display{
@@ -61070,53 +57692,45 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"clq" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"clr" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cls" = (
/obj/structure/filingcabinet/chestdrawer,
/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"clt" = (
/obj/structure/cable/white{
icon_state = "1-4"
},
/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"clu" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"clv" = (
/obj/machinery/power/apc{
dir = 4;
name = "Courtroom APC";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/structure/cable/white{
icon_state = "0-8"
},
/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"clw" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -61214,8 +57828,7 @@
"clH" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/lattice,
/obj/structure/lattice,
@@ -61406,28 +58019,28 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cme" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cmf" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cmg" = (
/obj/structure/sign/securearea,
/turf/closed/wall/r_wall,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cmh" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cmi" = (
/obj/machinery/light{
dir = 8
@@ -61479,7 +58092,7 @@
"cmq" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall/r_wall,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"cmr" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -61489,7 +58102,7 @@
},
/obj/structure/cable/white,
/turf/open/floor/plating,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"cms" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -61506,12 +58119,10 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"cmt" = (
/turf/closed/wall/r_wall,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cmu" = (
/obj/structure/cable/white{
icon_state = "0-2"
@@ -61519,16 +58130,12 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cmv" = (
/obj/structure/sign/securearea,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cmw" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -61545,9 +58152,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cmx" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
@@ -61559,15 +58164,12 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cmy" = (
/obj/machinery/button/door{
id = "teleportershutters";
name = "Teleporter Shutters";
pixel_x = -26;
- pixel_y = 0;
req_access_txt = "19"
},
/obj/machinery/door/poddoor/shutters{
@@ -61578,9 +58180,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cmz" = (
/obj/machinery/door/poddoor/shutters{
id = "teleportershutters";
@@ -61591,42 +58191,34 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cmA" = (
/obj/structure/cable/white,
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cmB" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall/r_wall,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"cmC" = (
/obj/structure/table,
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/item/weapon/storage/fancy/donut_box,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cmD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cmE" = (
/obj/machinery/vending/cigarette,
/obj/machinery/light{
@@ -61641,11 +58233,11 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cmF" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cmG" = (
/obj/structure/table/wood,
/obj/machinery/light{
@@ -61655,28 +58247,26 @@
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cmH" = (
/obj/structure/table/wood,
/obj/item/device/radio/intercom{
- name = "Station Intercom";
- pixel_x = 0;
- pixel_y = 0
+ name = "Station Intercom"
},
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cmI" = (
/obj/structure/table/wood,
/obj/item/weapon/clipboard,
/obj/item/weapon/folder,
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cmJ" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/yellow,
/obj/item/weapon/pen,
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cmL" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -61787,9 +58377,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"cna" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -61799,9 +58387,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"cnb" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -61811,22 +58397,17 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"cnc" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/machinery/door/window/northright,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"cnd" = (
/obj/item/weapon/wrench,
/turf/open/floor/plating/airless,
@@ -61891,9 +58472,7 @@
/turf/open/floor/plating,
/area/engine/engineering)
"cnn" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/camera{
c_tag = "Engineering - Central";
dir = 4;
@@ -61905,8 +58484,7 @@
layer = 4;
name = "Engine Containment Telescreen";
network = list("Singularity");
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -61944,8 +58522,7 @@
"cnr" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -61993,8 +58570,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/turf_decal/stripes/end{
dir = 4
@@ -62009,7 +58585,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cny" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/xeno_spawn,
@@ -62021,7 +58597,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cnz" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -62031,7 +58607,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cnA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -62040,7 +58616,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cnB" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/highsecurity{
@@ -62054,14 +58630,14 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cnC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cnD" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -62074,7 +58650,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cnE" = (
/obj/machinery/newscaster{
pixel_x = -32
@@ -62117,8 +58693,7 @@
/obj/structure/noticeboard{
dir = 8;
icon_state = "nboard00";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/open/floor/plasteel/grimy,
/area/library)
@@ -62150,9 +58725,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cnM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -62160,9 +58733,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cnN" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -62171,9 +58742,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cnO" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -62182,9 +58751,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cnP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -62193,9 +58760,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cnQ" = (
/obj/structure/sign/electricshock{
pixel_y = 32
@@ -62206,9 +58771,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cnR" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -62219,15 +58782,12 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cnS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/power/apc{
- aidisabled = 0;
dir = 1;
name = "Command Hall APC";
pixel_y = 24
@@ -62239,9 +58799,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cnT" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -62250,9 +58808,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cnU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -62265,9 +58821,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cnV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -62275,9 +58829,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cnW" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -62290,9 +58842,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cnX" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -62303,12 +58853,9 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cnY" = (
/obj/structure/sign/electricshock{
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -62317,17 +58864,13 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cnZ" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"coa" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -62336,26 +58879,20 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cob" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"coc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -62365,9 +58902,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cod" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -62376,9 +58911,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"coe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -62401,13 +58934,12 @@
/obj/machinery/vending/coffee,
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -26
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"coh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -62416,7 +58948,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"coj" = (
/obj/machinery/door/airlock{
name = "Jury";
@@ -62428,7 +58960,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cok" = (
/obj/structure/chair{
dir = 1;
@@ -62443,7 +58975,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"col" = (
/obj/structure/chair{
dir = 1;
@@ -62455,7 +58987,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"com" = (
/obj/structure/chair{
dir = 1;
@@ -62470,7 +59002,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"con" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -62479,7 +59011,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"coo" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -62653,33 +59185,25 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"coG" = (
/obj/structure/chair,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"coH" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"coI" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -62825,48 +59349,42 @@
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cpc" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cpd" = (
/obj/effect/decal/cleanable/oil,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cpe" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cpf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cpg" = (
/obj/structure/bookcase/random/nonfiction,
/turf/open/floor/wood,
/area/library)
"cph" = (
/obj/machinery/light,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/camera{
c_tag = "Library - Aft";
dir = 1;
@@ -62887,12 +59405,7 @@
/area/library)
"cpj" = (
/obj/machinery/light,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/light_switch{
pixel_y = -26
},
@@ -62900,9 +59413,7 @@
/turf/open/floor/plasteel/grimy,
/area/library)
"cpk" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/grimy,
/area/library)
"cpl" = (
@@ -62911,7 +59422,6 @@
/obj/item/toy/figure/curator,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/item/device/radio/intercom{
@@ -62964,9 +59474,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cpp" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -62977,9 +59485,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cpq" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -62994,9 +59500,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cpr" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -63012,9 +59516,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cps" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -63030,9 +59532,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cpt" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -63047,9 +59547,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cpu" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -63058,9 +59556,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cpv" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -63077,9 +59573,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cpw" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -63091,9 +59585,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cpx" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -63112,27 +59604,22 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cpy" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
/turf/open/floor/plasteel/blue/corner{
icon_state = "bluecorner";
dir = 1
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cpz" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -63143,9 +59630,7 @@
icon_state = "bluecorner";
dir = 1
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cpA" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -63164,9 +59649,7 @@
icon_state = "bluecorner";
dir = 1
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cpB" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -63180,9 +59663,7 @@
icon_state = "bluecorner";
dir = 1
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cpC" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -63196,9 +59677,7 @@
icon_state = "bluecorner";
dir = 1
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cpD" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -63212,9 +59691,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/corner,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cpE" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -63224,9 +59701,7 @@
},
/obj/machinery/light/small,
/turf/open/floor/plasteel/neutral/corner,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cpF" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -63241,9 +59716,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/corner,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cpG" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -63252,9 +59725,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/corner,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cpH" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -63264,9 +59735,7 @@
dir = 1
},
/turf/open/floor/plasteel/neutral/corner,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cpI" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -63279,9 +59748,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cpJ" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -63294,18 +59761,18 @@
name = "hallway camera"
},
/turf/open/floor/plasteel/neutral/corner,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cpK" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
/turf/open/floor/plasteel/neutral/corner,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cpL" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -63335,23 +59802,24 @@
/obj/structure/sign/directions/engineering{
desc = "A sign that shows there are doors here. There are doors everywhere!";
icon_state = "doors";
- name = "WARNING: PRESSURIZED DOORS";
- pixel_x = 0;
- pixel_y = 0
+ name = "WARNING: PRESSURIZED DOORS"
},
/turf/closed/wall,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cpO" = (
/obj/structure/grille,
/obj/structure/window/reinforced/tinted/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"cpP" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/light_switch{
+ pixel_x = -26
+ },
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
@@ -63474,48 +59942,32 @@
/area/maintenance/starboard)
"cqe" = (
/turf/closed/wall,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cqf" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cqg" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
dir = 8
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"cqh" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
+ dir = 4
},
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"cqi" = (
/obj/structure/cable{
d1 = 1;
@@ -63659,7 +60111,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cqx" = (
/obj/structure/table/reinforced,
/obj/item/stack/sheet/metal{
@@ -63673,7 +60125,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cqy" = (
/obj/structure/table/reinforced,
/obj/structure/extinguisher_cabinet{
@@ -63685,7 +60137,7 @@
/obj/item/weapon/stock_parts/console_screen,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cqz" = (
/obj/structure/table/reinforced,
/obj/item/stack/cable_coil/white,
@@ -63695,14 +60147,14 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cqA" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cqB" = (
/obj/machinery/door/airlock/glass{
name = "Library Game Room"
@@ -63740,18 +60192,13 @@
desc = "A direction sign, pointing out which way the Command department is.";
dir = 1;
icon_state = "direction_bridge";
- name = "command department";
- pixel_y = 0
+ name = "command department"
},
/turf/closed/wall/r_wall,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cqH" = (
/turf/closed/wall/r_wall,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cqI" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -63767,9 +60214,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cqJ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
@@ -63782,17 +60227,13 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cqK" = (
/obj/structure/cable/white,
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cqL" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -63805,9 +60246,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cqM" = (
/obj/structure/chair/comfy/black{
dir = 4
@@ -63819,19 +60258,14 @@
icon_state = "bluecorner";
dir = 1
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cqN" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cqO" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -63840,18 +60274,14 @@
/obj/effect/landmark/lightsout,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cqP" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cqQ" = (
/obj/structure/chair/comfy/black{
dir = 8
@@ -63860,9 +60290,7 @@
dir = 4
},
/turf/open/floor/plasteel/blue/corner,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cqR" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -63872,9 +60300,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/corner,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cqS" = (
/turf/closed/wall/r_wall,
/area/gateway)
@@ -63902,30 +60328,23 @@
/obj/machinery/vending/cigarette,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cqW" = (
/obj/machinery/vending/coffee,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cqX" = (
/obj/machinery/vending/cola/random,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cqY" = (
/obj/structure/sign/directions/engineering{
desc = "A direction sign, pointing out which way the Command department is.";
dir = 1;
icon_state = "direction_bridge";
- name = "command department";
- pixel_y = 0
+ name = "command department"
},
/turf/closed/wall/r_wall,
/area/gateway)
@@ -64057,6 +60476,9 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
@@ -64181,32 +60603,23 @@
/turf/open/floor/plating,
/area/maintenance/starboard)
"crx" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cry" = (
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"crz" = (
/obj/structure/table,
/obj/item/stack/sheet/cloth/ten,
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"crA" = (
/obj/machinery/light{
dir = 1
@@ -64223,9 +60636,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"crB" = (
/obj/structure/table,
/obj/item/weapon/paper_bin,
@@ -64233,24 +60644,18 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"crC" = (
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"crD" = (
/turf/open/floor/plasteel/neutral/side{
dir = 8;
heat_capacity = 1e+006
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"crE" = (
/obj/structure/closet/masks,
/obj/structure/sign/nanotrasen{
@@ -64260,9 +60665,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"crF" = (
/obj/structure/table/reinforced,
/obj/item/clothing/gloves/color/yellow,
@@ -64293,9 +60696,7 @@
/area/engine/engineering)
"crI" = (
/turf/closed/wall/r_wall,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"crJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -64303,11 +60704,9 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"crK" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/black,
/area/library)
"crL" = (
@@ -64369,9 +60768,7 @@
/turf/open/floor/plasteel/black,
/area/library)
"crS" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/vault{
dir = 5
},
@@ -64389,7 +60786,6 @@
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/open/floor/plasteel/neutral/corner{
@@ -64403,23 +60799,17 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"crW" = (
/obj/machinery/light{
dir = 1
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"crX" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -64429,26 +60819,18 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"crY" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"crZ" = (
/obj/machinery/power/apc{
dir = 1;
name = "E.V.A. Storage APC";
- pixel_x = 0;
pixel_y = 26
},
/obj/structure/cable/white{
@@ -64458,32 +60840,24 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"csa" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"csb" = (
/obj/machinery/light{
dir = 1
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"csc" = (
/obj/item/stack/packageWrap,
/obj/item/weapon/hand_labeler,
@@ -64499,9 +60873,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"csd" = (
/obj/structure/cable/white{
d2 = 2;
@@ -64513,9 +60885,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"cse" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -64527,9 +60897,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"csf" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -64537,9 +60905,7 @@
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
/turf/open/floor/plasteel/blue/corner,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"csg" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -64549,9 +60915,7 @@
},
/obj/effect/landmark/start/assistant,
/turf/open/floor/plasteel/blue/corner,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"csh" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -64560,9 +60924,7 @@
icon_state = "1-8"
},
/turf/open/floor/plasteel/blue/corner,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"csi" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -64571,30 +60933,23 @@
dir = 1
},
/turf/open/floor/plasteel/blue/corner,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"csj" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
+ icon_state = "plant-21"
},
/turf/open/floor/plasteel/blue/corner,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"csk" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"csl" = (
/obj/structure/cable/white{
d2 = 2;
@@ -64606,9 +60961,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"csm" = (
/obj/structure/closet/secure_closet/exile,
/obj/effect/decal/cleanable/dirt,
@@ -64623,7 +60976,6 @@
cell_type = 10000;
dir = 1;
name = "Gateway APC";
- pixel_x = 0;
pixel_y = 28
},
/obj/effect/decal/cleanable/dirt,
@@ -64644,12 +60996,7 @@
/turf/open/floor/plasteel,
/area/gateway)
"csp" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
@@ -64677,7 +61024,6 @@
},
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/open/floor/plasteel/neutral/corner{
@@ -64705,9 +61051,7 @@
"csv" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/turf/open/floor/plasteel/neutral,
/area/hallway/primary/central)
@@ -64735,8 +61079,7 @@
/area/hallway/primary/central)
"csA" = (
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
+ icon_state = "plant-21"
},
/turf/open/floor/plasteel/neutral,
/area/hallway/primary/central)
@@ -64869,9 +61212,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"csO" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -64886,9 +61227,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"csP" = (
/obj/structure/cable/white{
icon_state = "2-8"
@@ -64898,14 +61237,10 @@
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"csQ" = (
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"csR" = (
/obj/structure/closet/athletic_mixed,
/obj/machinery/light/small{
@@ -64914,9 +61249,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"csV" = (
/obj/machinery/power/rad_collector{
anchored = 1
@@ -64992,7 +61325,6 @@
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -65002,21 +61334,14 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"ctc" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/decal/cleanable/dirt,
/obj/structure/sign/electricshock{
pixel_y = 32
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"ctd" = (
/obj/machinery/suit_storage_unit/engine,
/obj/effect/decal/cleanable/dirt,
@@ -65028,9 +61353,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"cte" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light{
@@ -65038,15 +61361,12 @@
},
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = 26
},
/obj/machinery/suit_storage_unit/engine,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"ctf" = (
/obj/machinery/suit_storage_unit/engine,
/obj/machinery/status_display{
@@ -65056,22 +61376,20 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"cth" = (
/obj/structure/cable/white{
icon_state = "2-4"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cti" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"ctj" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -65081,13 +61399,13 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"ctk" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"ctl" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -65096,14 +61414,14 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"ctm" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"ctn" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -65118,7 +61436,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 6
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cto" = (
/obj/structure/table/wood,
/obj/item/weapon/clipboard,
@@ -65168,8 +61486,7 @@
"ctu" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/black,
/area/library)
@@ -65198,8 +61515,7 @@
/obj/effect/landmark/revenantspawn,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/black,
/area/library)
@@ -65259,17 +61575,13 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"ctD" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"ctE" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -65281,9 +61593,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"ctF" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -65294,9 +61604,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"ctG" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -65306,9 +61614,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"ctH" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -65319,9 +61625,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"ctI" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -65333,9 +61637,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"ctJ" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -65344,9 +61646,7 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"ctK" = (
/obj/machinery/cell_charger,
/obj/structure/cable/white{
@@ -65357,9 +61657,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"ctL" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -65367,9 +61665,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"ctM" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -65378,32 +61674,22 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"ctN" = (
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"ctO" = (
/turf/open/floor/plasteel/neutral/side,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"ctP" = (
/turf/open/floor/plasteel/neutral/corner,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"ctQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"ctR" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -65491,7 +61777,6 @@
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/decal/cleanable/dirt,
@@ -65607,7 +61892,6 @@
},
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/open/floor/plasteel/neutral/corner{
@@ -65772,9 +62056,7 @@
dir = 4
},
/turf/closed/wall,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cuA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -65783,9 +62065,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cuB" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -65796,18 +62076,14 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cuC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/structure/weightlifter,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cuD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -65816,9 +62092,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cuE" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -65826,17 +62100,13 @@
},
/obj/structure/stacklifter,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cuF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cuG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -65845,17 +62115,13 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cuH" = (
/obj/structure/closet/boxinggloves,
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cuI" = (
/obj/effect/turf_decal/stripes/corner{
dir = 1
@@ -65901,8 +62167,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -65926,9 +62191,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"cuP" = (
/obj/structure/rack,
/obj/item/clothing/gloves/color/black,
@@ -65941,34 +62204,26 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"cuQ" = (
/turf/open/floor/plasteel/yellow/side{
dir = 1;
icon_state = "yellow";
initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
},
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"cuR" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/turf/open/floor/plasteel/yellow/side{
dir = 1;
icon_state = "yellow";
initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
},
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"cuS" = (
/obj/structure/table/reinforced,
/obj/item/stack/cable_coil/white{
@@ -65984,13 +62239,11 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"cuT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cuU" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -66001,7 +62254,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cuV" = (
/obj/machinery/light{
dir = 8
@@ -66010,8 +62263,7 @@
/obj/structure/sign/kiddieplaque{
desc = "A long list of rules to be followed when in the library, extolling the virtues of being quiet at all times and threatening those who would dare eat hot food inside.";
name = "Library Rules Sign";
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -66090,7 +62342,6 @@
/obj/structure/filingcabinet,
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/open/floor/plasteel/black,
@@ -66100,7 +62351,6 @@
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
/obj/machinery/status_display{
- pixel_x = 0;
pixel_y = -32
},
/turf/open/floor/plasteel/vault{
@@ -66139,9 +62389,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/turf/open/floor/plasteel/neutral/corner{
dir = 4
@@ -66152,7 +62400,6 @@
dir = 4;
name = "Magboot Storage";
pixel_x = -1;
- pixel_y = 0;
req_access_txt = "19"
},
/obj/structure/window/reinforced{
@@ -66167,10 +62414,7 @@
pixel_x = -4;
pixel_y = 3
},
-/obj/item/clothing/shoes/magboots{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/clothing/shoes/magboots,
/obj/item/clothing/shoes/magboots{
pixel_x = 4;
pixel_y = -3
@@ -66178,66 +62422,50 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cvk" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cvl" = (
/obj/machinery/suit_storage_unit/standard_unit,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cvm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cvn" = (
/obj/item/device/radio/beacon,
/turf/open/floor/plasteel/neutral,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cvo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cvp" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cvq" = (
/obj/machinery/suit_storage_unit/standard_unit,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cvr" = (
/obj/structure/cable/white{
icon_state = "0-2"
@@ -66249,14 +62477,10 @@
name = "Corporate Lounge Shutters"
},
/turf/open/floor/plating,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cvs" = (
/turf/closed/wall/r_wall,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cvt" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -66269,9 +62493,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cvu" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
@@ -66281,9 +62503,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cvv" = (
/obj/structure/bed/roller,
/obj/effect/decal/cleanable/dirt,
@@ -66310,8 +62530,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
/area/gateway)
@@ -66387,9 +62606,7 @@
/area/hallway/primary/central)
"cvF" = (
/turf/closed/wall,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cvG" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/cleanable/dirt,
@@ -66400,9 +62617,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cvH" = (
/obj/machinery/light{
icon_state = "tube1";
@@ -66423,8 +62638,7 @@
"cvI" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
/area/crew_quarters/locker)
@@ -66462,7 +62676,7 @@
/area/crew_quarters/locker)
"cvP" = (
/turf/closed/wall,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cvQ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -66471,9 +62685,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cvR" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -66484,9 +62696,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cvS" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -66496,9 +62706,7 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cvT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -66506,9 +62714,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cvU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -66517,9 +62723,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cvV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -66528,26 +62732,20 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cvW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 10
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cvX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cvY" = (
/obj/structure/lattice,
/obj/machinery/camera/emp_proof{
@@ -66650,9 +62848,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"cwi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -66661,33 +62857,25 @@
/obj/machinery/power/port_gen/pacman,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"cwj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
dir = 8
},
/turf/open/floor/plasteel/neutral,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"cwk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
dir = 9
},
/turf/open/floor/plasteel/yellow,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"cwl" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"cwm" = (
/obj/structure/table/reinforced,
/obj/item/clothing/shoes/magboots{
@@ -66697,21 +62885,18 @@
/obj/item/clothing/shoes/magboots,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"cwn" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cwo" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/table/reinforced,
@@ -66719,7 +62904,7 @@
/obj/item/device/flashlight,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cwp" = (
/obj/structure/table/reinforced,
/obj/item/weapon/tank/internals/emergency_oxygen{
@@ -66735,7 +62920,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cwq" = (
/obj/structure/rack,
/obj/item/clothing/gloves/color/black,
@@ -66747,26 +62932,16 @@
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cwr" = (
/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cws" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/structure/extinguisher_cabinet{
pixel_x = -26
},
@@ -66813,12 +62988,7 @@
/turf/open/floor/plasteel/black,
/area/library)
"cwz" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/newscaster{
pixel_x = 32
},
@@ -66829,9 +62999,7 @@
"cwA" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall/r_wall,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cwB" = (
/obj/structure/closet/crate/rcd{
pixel_y = 4
@@ -66840,7 +63008,6 @@
dir = 4;
name = "RCD Storage";
pixel_x = 1;
- pixel_y = 0;
req_access_txt = "19"
},
/obj/structure/window/reinforced,
@@ -66851,24 +63018,18 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cwC" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cwD" = (
/obj/structure/tank_dispenser/oxygen,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cwE" = (
/obj/machinery/camera/motion{
c_tag = "E.V.A. Storage";
@@ -66879,22 +63040,17 @@
department = "E.V.A. Storage";
departmentType = 0;
name = "E.V.A. RC";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cwF" = (
/turf/closed/wall,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cwG" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -66911,36 +63067,27 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/grimy,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cwH" = (
/obj/structure/bookcase,
/obj/structure/sign/nanotrasen{
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cwI" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cwJ" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plasteel/grimy,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cwK" = (
/obj/machinery/ai_status_display{
pixel_y = 32
@@ -66953,32 +63100,23 @@
/turf/open/floor/plasteel/vault{
dir = 6
},
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cwL" = (
/obj/structure/fireplace,
/turf/open/floor/plasteel/vault,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cwM" = (
/obj/machinery/status_display{
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/plasteel/vault{
dir = 10
},
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cwN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cwO" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -66993,13 +63131,10 @@
icon_state = "implantchair";
layer = 2.7;
name = "NanoTrasen automated loyalty implanter exhibit";
- pixel_x = 0;
pixel_y = 4
},
/turf/open/floor/plasteel/grimy,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cwP" = (
/obj/structure/rack,
/obj/item/stack/medical/gauze,
@@ -67012,8 +63147,6 @@
/obj/item/weapon/reagent_containers/syringe/charcoal,
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- pixel_x = 0;
- pixel_y = 0;
req_access_txt = "0";
use_power = 0
},
@@ -67106,8 +63239,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
@@ -67116,16 +63248,13 @@
/area/hallway/primary/central)
"cwZ" = (
/obj/machinery/shower{
- icon_state = "shower";
dir = 4
},
/obj/item/weapon/soap/nanotrasen,
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cxa" = (
/obj/machinery/light/small{
dir = 1
@@ -67138,9 +63267,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cxb" = (
/obj/machinery/shower{
dir = 8;
@@ -67152,37 +63279,32 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cxc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cxd" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/machinery/light_switch{
+ pixel_x = -10;
+ pixel_y = 26
+ },
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
dir = 1
},
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cxe" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -67192,19 +63314,15 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cxf" = (
/obj/structure/cable/white{
icon_state = "0-2"
},
/obj/machinery/power/apc{
- cell_type = 5000;
dir = 1;
name = "Primary Restroom APC";
- pixel_x = 0;
- pixel_y = 25
+ pixel_y = 24
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -67219,9 +63337,7 @@
icon_state = "neutralcorner";
dir = 1
},
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cxg" = (
/obj/structure/urinal{
pixel_y = 28
@@ -67231,9 +63347,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cxh" = (
/obj/structure/urinal{
pixel_y = 28
@@ -67244,9 +63358,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cxi" = (
/obj/structure/urinal{
pixel_y = 28
@@ -67256,23 +63368,20 @@
dir = 4
},
/turf/open/floor/plating,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cxj" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cxk" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -67374,8 +63483,7 @@
/obj/machinery/power/apc{
dir = 4;
name = "Lockerroom APC";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -67387,7 +63495,7 @@
"cxt" = (
/obj/structure/dresser,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cxu" = (
/obj/structure/closet/secure_closet/personal/cabinet,
/obj/machinery/light{
@@ -67406,7 +63514,7 @@
/obj/item/clothing/under/blacktango,
/obj/item/clothing/head/bowler,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cxv" = (
/obj/structure/table/wood,
/obj/item/device/radio/intercom{
@@ -67417,8 +63525,11 @@
/obj/item/weapon/reagent_containers/food/snacks/grown/poppy/geranium,
/obj/item/weapon/reagent_containers/food/snacks/grown/poppy/geranium,
/obj/item/weapon/reagent_containers/food/snacks/grown/poppy/geranium,
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cxw" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
@@ -67426,7 +63537,7 @@
pixel_x = -32
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cxx" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
@@ -67438,7 +63549,7 @@
pixel_y = 32
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cxy" = (
/obj/structure/closet/secure_closet/personal/cabinet,
/obj/item/clothing/suit/jacket/letterman_nanotrasen,
@@ -67450,12 +63561,15 @@
},
/obj/item/clothing/under/kilt,
/obj/item/clothing/head/beret,
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cxz" = (
/obj/structure/dresser,
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cxA" = (
/obj/structure/bed,
/obj/machinery/light{
@@ -67466,7 +63580,7 @@
pixel_y = 32
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cxB" = (
/obj/structure/closet/secure_closet/personal/cabinet,
/obj/item/clothing/suit/jacket{
@@ -67492,8 +63606,11 @@
icon_state = "curator"
},
/obj/item/clothing/under/rank/curator/treasure_hunter,
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cxC" = (
/obj/machinery/light{
icon_state = "tube1";
@@ -67503,9 +63620,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cxD" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -67513,9 +63628,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cxE" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -67525,34 +63638,25 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cxF" = (
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cxG" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cxH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cxI" = (
/obj/structure/chair{
dir = 4
@@ -67564,9 +63668,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cxJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -67624,9 +63726,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"cxP" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -67634,21 +63734,15 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"cxQ" = (
/turf/open/floor/plasteel/yellow,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"cxR" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"cxS" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/sign/nosmoking_2{
@@ -67662,9 +63756,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"cxT" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -67674,23 +63766,23 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cxU" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cxV" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cxW" = (
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cxX" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -67700,7 +63792,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cxY" = (
/obj/structure/table/wood,
/obj/item/weapon/newspaper{
@@ -67777,7 +63869,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cyg" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -67788,24 +63880,23 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cyh" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral/side{
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cyi" = (
/obj/machinery/space_heater,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cyj" = (
/obj/machinery/door/window/northleft{
dir = 4;
name = "Jetpack Storage";
pixel_x = -1;
- pixel_y = 0;
req_access_txt = "19"
},
/obj/structure/window/reinforced,
@@ -67817,10 +63908,7 @@
pixel_x = 4;
pixel_y = -1
},
-/obj/item/weapon/tank/jetpack/carbondioxide{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/weapon/tank/jetpack/carbondioxide,
/obj/item/weapon/tank/jetpack/carbondioxide{
pixel_x = -4;
pixel_y = 1
@@ -67828,24 +63916,18 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cyk" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cyl" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cym" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -67856,29 +63938,23 @@
/obj/machinery/power/apc{
dir = 8;
name = "Corporate Lounge APC";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/structure/cable/white{
icon_state = "0-4"
},
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cyn" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cyo" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -67894,9 +63970,7 @@
dir = 4
},
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cyp" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -67909,9 +63983,7 @@
dir = 4
},
/turf/open/floor/carpet,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cyq" = (
/obj/structure/table/wood,
/obj/structure/cable/white{
@@ -67922,9 +63994,7 @@
},
/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey,
/turf/open/floor/carpet,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cyr" = (
/obj/structure/table/wood,
/obj/structure/cable/white{
@@ -67935,9 +64005,7 @@
},
/obj/item/weapon/storage/fancy/donut_box,
/turf/open/floor/carpet,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cys" = (
/obj/structure/table/wood,
/obj/structure/cable/white{
@@ -67948,9 +64016,7 @@
},
/obj/item/weapon/paper_bin,
/turf/open/floor/carpet,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cyt" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -67962,9 +64028,7 @@
dir = 8
},
/turf/open/floor/carpet,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cyu" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -67974,9 +64038,7 @@
dir = 8
},
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cyv" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -67986,9 +64048,7 @@
on = 1
},
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cyw" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -67998,13 +64058,10 @@
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cyx" = (
/obj/item/clothing/suit/hazardvest{
desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";
@@ -68156,28 +64213,21 @@
/area/gateway)
"cyF" = (
/obj/machinery/shower{
- icon_state = "shower";
dir = 4
},
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cyG" = (
/obj/effect/landmark/start/assistant,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cyH" = (
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cyI" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/cleanable/dirt,
@@ -68189,26 +64239,20 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cyJ" = (
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
dir = 1
},
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cyK" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cyL" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -68220,43 +64264,30 @@
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cyM" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cyN" = (
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cyO" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cyP" = (
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cyQ" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -68281,12 +64312,12 @@
/area/crew_quarters/locker)
"cyT" = (
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cyU" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/black,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cyV" = (
/obj/structure/table/wood,
/obj/item/weapon/folder,
@@ -68295,16 +64326,16 @@
},
/obj/item/weapon/razor,
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cyW" = (
/obj/structure/chair/office/dark{
dir = 8
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cyX" = (
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cyY" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/red,
@@ -68313,10 +64344,10 @@
pixel_x = -32
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cyZ" = (
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cza" = (
/obj/structure/table,
/obj/item/weapon/paper_bin,
@@ -68328,26 +64359,18 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"czb" = (
/obj/structure/stacklifter,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"czc" = (
/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"czd" = (
/obj/structure/weightlifter,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cze" = (
/obj/structure/chair{
dir = 4
@@ -68357,9 +64380,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"czf" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -68368,9 +64389,7 @@
dir = 6
},
/turf/open/floor/plating,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"czg" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -68378,18 +64397,14 @@
dir = 4
},
/turf/open/floor/plating,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"czh" = (
/obj/machinery/status_display,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"czi" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -68398,9 +64413,7 @@
dir = 10
},
/turf/open/floor/plating,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"czj" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -68488,9 +64501,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"czs" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -68502,9 +64513,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"czt" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -68514,9 +64523,7 @@
dir = 8
},
/turf/open/floor/plasteel/neutral,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"czu" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -68526,17 +64533,13 @@
dir = 10
},
/turf/open/floor/plasteel/yellow,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"czv" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/turf/open/floor/plasteel/neutral,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"czw" = (
/obj/structure/table/reinforced,
/obj/item/weapon/tank/jetpack/carbondioxide{
@@ -68547,17 +64550,14 @@
/obj/machinery/power/apc{
dir = 4;
name = "Engineering Storage APC";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/structure/cable/white{
icon_state = "0-8"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"czx" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/decal/cleanable/dirt,
@@ -68566,7 +64566,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"czy" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -68576,21 +64576,21 @@
on = 1
},
/turf/open/floor/plasteel/yellow,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"czz" = (
/obj/effect/landmark/blobstart,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"czA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"czB" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -68604,7 +64604,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"czC" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -68614,7 +64614,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"czD" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
@@ -68625,7 +64625,6 @@
/obj/item/weapon/storage/fancy/donut_box,
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/open/floor/plasteel/vault{
@@ -68634,17 +64633,12 @@
/area/library)
"czF" = (
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
+ icon_state = "plant-21"
},
/turf/open/floor/plasteel/black,
/area/library)
"czG" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/item/device/radio/intercom{
name = "Station Intercom";
pixel_y = -26
@@ -68733,15 +64727,15 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"czN" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/blobstart,
/turf/open/floor/plasteel/neutral,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"czO" = (
/turf/open/floor/plasteel/neutral,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"czP" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -68753,7 +64747,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"czQ" = (
/obj/item/stack/sheet/metal/fifty,
/obj/item/stack/sheet/glass/fifty,
@@ -68766,30 +64760,23 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"czR" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"czS" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"czT" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -68800,17 +64787,13 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"czU" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"czV" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -68820,9 +64803,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"czW" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -68832,34 +64813,27 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"czX" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"czY" = (
/obj/item/stack/rods{
amount = 25
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/structure/table/reinforced,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"czZ" = (
/obj/structure/table/wood,
/obj/structure/cable/white{
@@ -68868,22 +64842,16 @@
/obj/item/weapon/clipboard,
/obj/item/toy/figure/dsquad,
/turf/open/floor/plasteel/grimy,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cAa" = (
/turf/open/floor/plasteel/grimy,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cAb" = (
/obj/structure/chair/comfy/black{
dir = 4
},
/turf/open/floor/carpet,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cAc" = (
/obj/structure/table/wood,
/obj/structure/cable/white{
@@ -68892,9 +64860,7 @@
/obj/item/weapon/folder/blue,
/obj/item/weapon/pen,
/turf/open/floor/carpet,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cAd" = (
/obj/structure/table/wood,
/obj/structure/cable/white{
@@ -68908,9 +64874,7 @@
},
/obj/item/clothing/mask/cigarette/cigar,
/turf/open/floor/carpet,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cAe" = (
/obj/structure/table/wood,
/obj/structure/cable/white{
@@ -68918,18 +64882,14 @@
},
/obj/item/weapon/lighter,
/turf/open/floor/carpet,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cAf" = (
/obj/structure/chair/comfy/brown{
icon_state = "comfychair";
dir = 8
},
/turf/open/floor/carpet,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cAg" = (
/obj/structure/table/wood,
/obj/structure/cable/white{
@@ -68937,9 +64897,7 @@
},
/obj/item/weapon/storage/secure/briefcase,
/turf/open/floor/plasteel/grimy,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cAh" = (
/obj/structure/table,
/obj/item/weapon/storage/belt,
@@ -69047,8 +65005,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -69058,27 +65015,25 @@
"cAq" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/shower{
- icon_state = "shower";
dir = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plating,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cAr" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cAs" = (
/obj/machinery/shower{
dir = 8;
@@ -69088,17 +65043,13 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/corner,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cAt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cAu" = (
/obj/structure/mirror{
desc = "Mirror mirror on the wall, who is the most robust of them all?";
@@ -69106,7 +65057,6 @@
},
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -69115,9 +65065,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cAv" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -69129,9 +65077,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cAw" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light,
@@ -69148,9 +65094,7 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cAx" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -69162,9 +65106,7 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cAy" = (
/obj/machinery/status_display{
pixel_y = -32
@@ -69179,18 +65121,14 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cAz" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cAA" = (
/obj/machinery/light,
/obj/machinery/status_display{
@@ -69203,9 +65141,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/corner,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cAB" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -69214,9 +65150,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/corner,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cAC" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -69232,9 +65166,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cAD" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -69306,22 +65238,19 @@
pixel_x = -32
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cAL" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/structure/sign/nanotrasen{
pixel_x = 32
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cAM" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/blue,
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cAN" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green,
@@ -69329,29 +65258,25 @@
pixel_x = -32
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cAO" = (
/obj/structure/chair/office/dark{
dir = 8
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cAP" = (
/obj/structure/table,
/obj/item/weapon/folder,
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cAQ" = (
/obj/structure/chair{
dir = 4
@@ -69360,17 +65285,13 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cAR" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cAS" = (
/turf/open/floor/engine{
name = "Holodeck Projector Floor"
@@ -69458,9 +65379,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/turf/open/floor/plasteel/yellow,
/area/engine/engineering)
@@ -69497,9 +65416,7 @@
/area/engine/engineering)
"cBe" = (
/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/structure/cable/white{
icon_state = "1-8"
},
@@ -69514,9 +65431,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"cBg" = (
/obj/structure/rack,
/obj/item/weapon/storage/belt/utility,
@@ -69530,24 +65445,18 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"cBh" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/yellow/side,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"cBi" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plasteel/yellow/side,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"cBj" = (
/obj/structure/table/reinforced,
/obj/item/stack/sheet/plasteel{
@@ -69563,9 +65472,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"cBk" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -69573,30 +65480,30 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cBl" = (
/obj/structure/reagent_dispensers/watertank,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cBm" = (
/turf/open/floor/plasteel/yellow/side,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cBn" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/caution,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cBo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cBp" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cBq" = (
/obj/item/weapon/clipboard,
/obj/item/weapon/folder/yellow,
@@ -69607,9 +65514,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cBr" = (
/obj/machinery/ai_status_display{
pixel_y = -32
@@ -69623,67 +65528,46 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cBs" = (
/obj/item/device/radio/intercom{
name = "Station Intercom";
pixel_y = -26
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cBt" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cBu" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cBv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cBw" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-18";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cBx" = (
/obj/machinery/status_display{
- pixel_x = 0;
pixel_y = -32
},
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cBy" = (
/obj/item/weapon/storage/belt,
/obj/item/device/radio,
@@ -69692,9 +65576,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cBz" = (
/obj/structure/table/wood,
/obj/structure/cable/white{
@@ -69714,33 +65596,21 @@
pixel_x = -32
},
/turf/open/floor/plasteel/grimy,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cBA" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/photo_album,
/turf/open/floor/plasteel/grimy,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cBB" = (
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -26
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/light,
/turf/open/floor/plasteel/grimy,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cBC" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -69749,18 +65619,14 @@
dir = 1
},
/turf/open/floor/plasteel/grimy,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cBD" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/machinery/holopad,
/turf/open/floor/plasteel/grimy,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cBE" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -69769,9 +65635,7 @@
dir = 1
},
/turf/open/floor/plasteel/grimy,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cBF" = (
/obj/machinery/button/door{
id = "corporatelounge";
@@ -69783,24 +65647,15 @@
pixel_x = 7;
pixel_y = -26
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/light,
/turf/open/floor/plasteel/grimy,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cBG" = (
/obj/structure/table/wood,
/obj/item/device/paicard,
/turf/open/floor/plasteel/grimy,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cBH" = (
/obj/structure/table/wood,
/obj/structure/cable/white{
@@ -69818,9 +65673,7 @@
pixel_x = 26
},
/turf/open/floor/plasteel/grimy,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cBI" = (
/obj/structure/table,
/obj/machinery/recharger,
@@ -69856,13 +65709,9 @@
"cBL" = (
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-18";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
@@ -69916,24 +65765,19 @@
},
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cBT" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cBU" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock{
@@ -69943,17 +65787,13 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cBV" = (
/obj/machinery/door/airlock{
name = "Toilet Unit"
},
/turf/open/floor/plating,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cBW" = (
/obj/machinery/vending/clothing,
/turf/open/floor/plasteel/vault{
@@ -69961,10 +65801,7 @@
},
/area/crew_quarters/locker)
"cBX" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/vault{
dir = 5
},
@@ -69972,7 +65809,6 @@
"cBY" = (
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/open/floor/plasteel/vault{
@@ -70033,24 +65869,33 @@
req_access_txt = "0";
specialfunctions = 4
},
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cCf" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep)
-"cCg" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1
},
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/dorms)
+"cCg" = (
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cCh" = (
/obj/structure/dresser,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1
+ },
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cCi" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
@@ -70063,29 +65908,30 @@
req_access_txt = "0";
specialfunctions = 4
},
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"cCj" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
+"cCj" = (
+/obj/item/weapon/twohanded/required/kirbyplants/random,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/dorms)
"cCk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cCl" = (
/obj/structure/chair,
/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cCm" = (
/obj/structure/grille,
/obj/effect/turf_decal/stripes/line{
@@ -70155,12 +66001,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cCt" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
@@ -70225,12 +66066,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cCz" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -70242,18 +66078,14 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cCA" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/decal/cleanable/dirt,
/obj/structure/sign/electricshock{
pixel_y = -32
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"cCB" = (
/obj/structure/reagent_dispensers/watertank,
/obj/machinery/status_display{
@@ -70261,9 +66093,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"cCC" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/decal/cleanable/dirt,
@@ -70275,9 +66105,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"cCD" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/decal/cleanable/dirt,
@@ -70286,9 +66114,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"cCE" = (
/obj/structure/table/reinforced,
/obj/item/stack/rods{
@@ -70298,15 +66124,13 @@
/obj/item/weapon/storage/box/lights/mixed,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"cCF" = (
/obj/structure/table/reinforced,
/obj/item/stack/packageWrap,
/obj/item/weapon/hand_labeler,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cCH" = (
/obj/structure/rack,
/obj/item/weapon/book/manual/wiki/engineering_hacking{
@@ -70321,14 +66145,12 @@
/obj/machinery/light/small,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cCI" = (
/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cCJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -70342,20 +66164,20 @@
/turf/open/floor/plasteel/neutral/side{
dir = 9
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cCK" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cCL" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cCM" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment{
@@ -70365,7 +66187,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cCN" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -70374,7 +66196,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cCO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/sortjunction{
@@ -70384,14 +66206,14 @@
sortType = 16
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cCP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cCQ" = (
/obj/structure/girder,
/obj/effect/decal/cleanable/dirt,
@@ -70400,26 +66222,22 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cCR" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cCS" = (
/obj/structure/sign/directions/engineering{
desc = "A sign that shows there are doors here. There are doors everywhere!";
icon_state = "doors";
- name = "WARNING: PRESSURIZED DOORS";
- pixel_x = 0;
- pixel_y = 0
+ name = "WARNING: PRESSURIZED DOORS"
},
/turf/closed/wall/r_wall,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cCT" = (
/obj/machinery/door/poddoor/shutters{
id = "evashutters";
@@ -70430,9 +66248,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cCU" = (
/obj/machinery/door/poddoor/shutters{
id = "evashutters";
@@ -70442,9 +66258,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cCV" = (
/obj/machinery/button/door{
id = "evashutters";
@@ -70461,9 +66275,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"cCW" = (
/obj/structure/cable/white,
/obj/structure/grille,
@@ -70473,15 +66285,11 @@
name = "Corporate Lounge Shutters"
},
/turf/open/floor/plating,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cCX" = (
/obj/structure/sign/electricshock,
/turf/closed/wall/r_wall,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cCY" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
@@ -70494,9 +66302,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"cCZ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
@@ -70551,15 +66357,13 @@
/obj/structure/sign/directions/engineering{
desc = "A sign that shows there are doors here. There are doors everywhere!";
icon_state = "doors";
- name = "WARNING: BLAST DOORS";
- pixel_x = 0;
- pixel_y = 0
+ name = "WARNING: BLAST DOORS"
},
/turf/closed/wall/r_wall,
/area/gateway)
"cDe" = (
/turf/closed/wall,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cDf" = (
/obj/effect/decal/cleanable/cobweb,
/obj/effect/decal/cleanable/dirt,
@@ -70569,24 +66373,22 @@
name = "2maintenance loot spawner"
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cDg" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cDh" = (
/obj/structure/mopbucket,
/obj/item/weapon/mop,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cDi" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/vending/cigarette,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cDj" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -70594,14 +66396,11 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cDk" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/vomit/old,
/obj/structure/toilet{
- icon_state = "toilet00";
dir = 8
},
/obj/machinery/newscaster{
@@ -70609,13 +66408,10 @@
},
/obj/machinery/light/small,
/turf/open/floor/plating,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cDl" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/toilet{
- icon_state = "toilet00";
dir = 8
},
/obj/machinery/newscaster{
@@ -70624,13 +66420,10 @@
/obj/machinery/light/small,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cDm" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/toilet{
- icon_state = "toilet00";
dir = 8
},
/obj/machinery/newscaster{
@@ -70640,9 +66433,7 @@
/obj/effect/landmark/start/assistant,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cDn" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -70676,7 +66467,7 @@
name = "Cabin 1"
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cDq" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
@@ -70684,7 +66475,7 @@
name = "Cabin 2"
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cDr" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
@@ -70692,20 +66483,17 @@
name = "Cabin 3"
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cDs" = (
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cDt" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -70715,18 +66503,14 @@
dir = 8
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cDu" = (
/obj/structure/window/reinforced{
dir = 1;
layer = 2.9
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cDv" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -70738,15 +66522,11 @@
req_access_txt = "0"
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cDw" = (
/obj/machinery/status_display,
/turf/closed/wall,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cDx" = (
/obj/structure/closet/emcloset{
anchored = 1
@@ -70757,7 +66537,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cDy" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/plasticflaps{
@@ -70798,15 +66578,15 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cDC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cDD" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cDE" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -70816,13 +66596,13 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cDF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cDG" = (
/obj/effect/landmark/lightsout,
/obj/structure/cable/white{
@@ -71050,20 +66830,18 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cEd" = (
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cEe" = (
/obj/structure/girder,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cEf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cEg" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -71078,15 +66856,13 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"cEh" = (
/obj/effect/decal/cleanable/cobweb,
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cEi" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/rack,
@@ -71096,20 +66872,20 @@
icon_state = "bluecorner";
dir = 1
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cEj" = (
/obj/structure/table,
/obj/item/weapon/storage/box/bodybags,
/obj/item/weapon/pen,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cEk" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/effect/decal/cleanable/dirt,
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cEl" = (
/obj/machinery/washing_machine,
/obj/machinery/camera{
@@ -71121,16 +66897,20 @@
icon_state = "arrival";
dir = 8
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cEm" = (
/obj/structure/cable/white{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light_switch{
+ pixel_x = -26;
+ pixel_y = 26
+ },
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cEn" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -71143,7 +66923,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cEo" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -71153,7 +66933,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cEp" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -71169,7 +66949,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cEq" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -71180,7 +66960,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cEr" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -71191,10 +66971,13 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cEs" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -71206,7 +66989,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cEt" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -71217,7 +67000,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cEu" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -71233,19 +67016,16 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cEv" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- icon_state = "manifold";
- dir = 1
- },
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cEw" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -71261,7 +67041,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cEx" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -71273,9 +67053,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cEy" = (
/obj/structure/cable/white{
icon_state = "2-8"
@@ -71286,17 +67064,13 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cEz" = (
/obj/structure/window/reinforced{
dir = 8
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cEA" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -71305,9 +67079,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cEB" = (
/obj/structure/window/reinforced{
dir = 4
@@ -71316,15 +67088,11 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cEC" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cED" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -71333,9 +67101,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cEE" = (
/obj/machinery/door/airlock/glass{
name = "Holodeck Access"
@@ -71347,13 +67113,10 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cEF" = (
/obj/machinery/light,
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -71361,9 +67124,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cEG" = (
/obj/machinery/door/airlock/glass{
name = "Holodeck Access"
@@ -71376,9 +67137,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cEH" = (
/obj/machinery/door/airlock/glass{
name = "Holodeck Access"
@@ -71391,9 +67150,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cEI" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -71401,9 +67158,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cEJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -71412,9 +67167,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cEK" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -71429,16 +67182,12 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cEL" = (
/turf/open/floor/plasteel/neutral/side{
dir = 5
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cEM" = (
/obj/machinery/door/airlock/external{
name = "External Airlock";
@@ -71449,13 +67198,13 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cEN" = (
/turf/open/floor/plasteel/neutral/side{
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cEO" = (
/obj/structure/girder,
/obj/effect/decal/cleanable/dirt,
@@ -71465,7 +67214,7 @@
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cEP" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/crate{
@@ -71482,7 +67231,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cEQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -71495,7 +67244,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cER" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -71506,7 +67255,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cES" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -71516,7 +67265,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cET" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -71530,7 +67279,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cEU" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -71541,7 +67290,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cEV" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -71552,7 +67301,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cEW" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -71562,7 +67311,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cEX" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -71576,7 +67325,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cEY" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -71589,7 +67338,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cEZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -71604,7 +67353,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cFa" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -71621,7 +67370,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cFb" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -71643,7 +67392,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cFc" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -71655,7 +67404,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cFd" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -71668,7 +67417,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cFe" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -71684,7 +67433,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cFf" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -71700,7 +67449,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cFg" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -71715,7 +67464,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cFh" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -71730,7 +67479,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cFi" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -71745,7 +67494,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cFj" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -71759,7 +67508,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cFk" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -71772,7 +67521,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cFl" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -71787,7 +67536,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cFm" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -71797,7 +67546,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cFn" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -71806,7 +67555,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cFo" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -71816,7 +67565,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cFp" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -71826,7 +67575,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cFq" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -71838,7 +67587,7 @@
dir = 10;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cFr" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -71850,7 +67599,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cFs" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -71860,7 +67609,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cFt" = (
/obj/structure/cable/white{
icon_state = "2-8"
@@ -71876,7 +67625,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cFu" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -71889,7 +67638,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cFv" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -71906,7 +67655,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cFw" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -71932,8 +67681,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=hall6";
@@ -71983,9 +67731,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=hall7";
@@ -72044,8 +67790,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/white{
icon_state = "4-8"
@@ -72091,7 +67836,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cFK" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -72103,7 +67848,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cFL" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -72116,7 +67861,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cFM" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -72126,7 +67871,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cFN" = (
/obj/structure/girder,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -72136,7 +67881,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cFO" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -72147,7 +67892,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cFP" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -72165,7 +67910,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cFQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -72178,7 +67923,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cFR" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -72192,7 +67937,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cFS" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -72213,7 +67958,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cFT" = (
/obj/structure/cable/white{
icon_state = "2-8"
@@ -72227,7 +67972,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cFU" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/blobstart,
@@ -72235,7 +67980,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cFV" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -72247,7 +67992,7 @@
/obj/item/weapon/reagent_containers/glass/beaker,
/obj/item/weapon/reagent_containers/dropper,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cFW" = (
/obj/structure/table,
/obj/structure/bedsheetbin,
@@ -72259,69 +68004,63 @@
icon_state = "arrival";
dir = 8
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cFX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cFY" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cFZ" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cGa" = (
/obj/structure/grille,
/obj/structure/window/reinforced/tinted/fulltile,
/turf/open/floor/plating,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cGb" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cGc" = (
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cGd" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ icon_state = "manifold";
+ dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cGe" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cGf" = (
/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cGg" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cGh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/light/small{
@@ -72333,9 +68072,7 @@
name = "recreation camera"
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cGi" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -72345,49 +68082,37 @@
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cGj" = (
/obj/structure/window/reinforced{
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cGk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cGl" = (
/obj/structure/sign/nosmoking_2,
/turf/closed/wall,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cGm" = (
/obj/machinery/computer/holodeck,
/turf/open/floor/plasteel/neutral/side{
dir = 8;
heat_capacity = 1e+006
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cGn" = (
/obj/structure/chair/office/light{
dir = 8
},
/obj/effect/landmark/start/assistant,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cGo" = (
/obj/structure/table/reinforced,
/obj/item/weapon/paper_bin,
@@ -72395,9 +68120,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cGp" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -72407,21 +68130,21 @@
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cGq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cGr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 8
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cGs" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -72429,7 +68152,7 @@
dir = 8
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cGt" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -72437,7 +68160,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cGu" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -72446,7 +68169,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cGv" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -72455,7 +68178,7 @@
dir = 8
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cGw" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -72463,7 +68186,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cGx" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -72475,7 +68198,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cGy" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -72484,7 +68207,7 @@
dir = 8
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cGz" = (
/obj/structure/girder,
/obj/effect/decal/cleanable/dirt,
@@ -72494,7 +68217,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cGA" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/crate,
@@ -72507,7 +68230,7 @@
dir = 8
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cGB" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/rack,
@@ -72518,7 +68241,7 @@
dir = 8
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cGC" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -72530,7 +68253,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cGD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -72538,7 +68261,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cGE" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -72546,7 +68269,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cGF" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -72558,35 +68281,35 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cGG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cGH" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/closed/wall/r_wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cGI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cGJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cGK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cGL" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -72596,20 +68319,20 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cGM" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cGN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cGO" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
@@ -72766,13 +68489,13 @@
dir = 4
},
/turf/closed/wall,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cHd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cHe" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -72781,7 +68504,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cHf" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -72792,7 +68515,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cHg" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -72802,14 +68525,14 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cHh" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cHi" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -72818,15 +68541,13 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cHj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cHk" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small{
@@ -72841,14 +68562,14 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cHl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
dir = 10
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cHm" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -72858,14 +68579,14 @@
/turf/open/floor/plasteel/blue/corner{
dir = 4
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cHn" = (
/obj/machinery/washing_machine,
/turf/open/floor/plasteel/arrival{
icon_state = "arrival";
dir = 8
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cHo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -72875,17 +68596,18 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cHp" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cHq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -72895,7 +68617,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/neutral/corner,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cHr" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
@@ -72911,11 +68633,10 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cHs" = (
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -26
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -72924,11 +68645,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
dir = 8;
heat_capacity = 1e+006
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cHt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -72940,17 +68662,17 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cHu" = (
/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cHv" = (
/obj/structure/cable/white,
/obj/machinery/power/apc{
@@ -72973,7 +68695,7 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cHw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -72982,7 +68704,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cHx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -72991,7 +68713,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/corner,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cHy" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -73000,8 +68722,9 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cHz" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
@@ -73017,7 +68740,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cHA" = (
/obj/machinery/light_switch{
pixel_x = -26;
@@ -73033,9 +68756,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cHB" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -73047,9 +68768,7 @@
icon_state = "pipe-j2"
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cHC" = (
/obj/structure/window/reinforced{
dir = 8
@@ -73058,21 +68777,16 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cHD" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cHE" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder/blue,
@@ -73081,16 +68795,12 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cHF" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cHG" = (
/obj/structure/table/reinforced,
/obj/item/weapon/clipboard,
@@ -73103,9 +68813,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cHH" = (
/obj/machinery/shieldgen,
/obj/effect/decal/cleanable/dirt,
@@ -73113,20 +68821,20 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cHI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cHJ" = (
/turf/closed/wall,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cHK" = (
/obj/structure/sign/securearea,
/turf/closed/wall,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cHL" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -73139,11 +68847,11 @@
"cHM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cHN" = (
/obj/structure/sign/electricshock,
/turf/closed/wall,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cHO" = (
/obj/machinery/door/airlock/engineering{
name = "Engineering Auxiliary Power";
@@ -73157,7 +68865,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cHP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
@@ -73165,14 +68873,14 @@
},
/mob/living/simple_animal/cockroach,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cHQ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
on = 1
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cHR" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -73184,17 +68892,17 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cHS" = (
/turf/closed/wall/r_wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cHT" = (
/obj/structure/reagent_dispensers/watertank,
/obj/item/weapon/extinguisher,
/obj/item/weapon/extinguisher,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cHU" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/machinery/light/small{
@@ -73204,20 +68912,20 @@
/obj/machinery/portable_atmospherics/canister/air,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cHV" = (
/obj/machinery/atmospherics/components/unary/tank/air,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cHW" = (
/turf/closed/wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cHX" = (
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cHY" = (
/obj/machinery/light/small{
dir = 1
@@ -73230,7 +68938,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cHZ" = (
/obj/machinery/light/small{
dir = 1
@@ -73243,7 +68951,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cIa" = (
/obj/machinery/light/small{
dir = 1
@@ -73256,7 +68964,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cIb" = (
/obj/machinery/light/small{
dir = 1
@@ -73272,7 +68980,7 @@
initial_gas_mix = "n2=500;TEMP=80";
temperature = 80
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cIc" = (
/obj/structure/closet/crate{
icon_state = "crateopen";
@@ -73281,12 +68989,12 @@
/obj/item/device/flashlight,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cId" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cIe" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet,
@@ -73296,7 +69004,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cIf" = (
/obj/machinery/light,
/obj/structure/closet/emcloset,
@@ -73319,17 +69027,13 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cIj" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cIk" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
@@ -73337,24 +69041,18 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cIl" = (
/obj/machinery/status_display,
/turf/closed/wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cIm" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cIn" = (
/obj/structure/sign/directions/evac{
pixel_y = -8
@@ -73367,9 +69065,7 @@
pixel_y = 8
},
/turf/closed/wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cIo" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -73416,31 +69112,23 @@
pixel_y = 8
},
/turf/closed/wall,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cIs" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cIt" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cIu" = (
/obj/machinery/status_display,
/turf/closed/wall,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cIv" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
@@ -73448,15 +69136,11 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cIw" = (
/obj/structure/sign/bluecross_2,
/turf/closed/wall,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cIy" = (
/obj/machinery/vending/snack/random,
/obj/machinery/light,
@@ -73474,46 +69158,37 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cIB" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cIC" = (
/obj/structure/grille,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cID" = (
/turf/closed/wall/r_wall,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cIE" = (
/obj/machinery/vending/medical,
/turf/open/floor/plasteel/neutral/corner,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cIF" = (
/obj/structure/closet/secure_closet/medical3,
/obj/machinery/newscaster{
pixel_y = 32
},
/turf/open/floor/plasteel/neutral/side,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cIG" = (
/obj/structure/closet/secure_closet/medical3,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = 26
},
/turf/open/floor/plasteel/neutral/side,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cIH" = (
/obj/structure/closet/wardrobe/white/medical,
/obj/structure/extinguisher_cabinet{
@@ -73521,17 +69196,13 @@
},
/obj/item/weapon/storage/backpack/satchel/med,
/turf/open/floor/plasteel/neutral/side,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cII" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cIJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -73543,7 +69214,7 @@
icon_state = "bluecorner";
dir = 8
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cIK" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -73553,14 +69224,14 @@
on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cIL" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cIM" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
@@ -73568,7 +69239,7 @@
name = "Cabin 4"
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cIN" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
@@ -73576,7 +69247,7 @@
name = "Cabin 5"
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cIO" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
@@ -73584,15 +69255,13 @@
name = "Cabin 6"
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cIP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cIQ" = (
/obj/structure/window/reinforced,
/obj/machinery/door/window{
@@ -73601,33 +69270,25 @@
req_access_txt = "0"
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cIR" = (
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cIS" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cIT" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
dir = 8
},
/turf/open/floor/plasteel/neutral/corner,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cIU" = (
/obj/machinery/door/airlock/glass{
name = "Holodeck Access"
@@ -73639,9 +69300,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cIV" = (
/obj/machinery/light{
dir = 1
@@ -73651,9 +69310,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cIW" = (
/obj/machinery/door/airlock/glass{
name = "Holodeck Access"
@@ -73666,9 +69323,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cIX" = (
/obj/machinery/door/airlock/glass{
name = "Holodeck Access"
@@ -73681,9 +69336,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cIY" = (
/obj/machinery/light{
dir = 1
@@ -73696,39 +69349,30 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cIZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cJa" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cJb" = (
/turf/open/floor/plasteel/neutral/side{
dir = 6
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cJc" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cJd" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -73738,7 +69382,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cJe" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -73750,7 +69394,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cJf" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -73758,7 +69402,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cJg" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet,
@@ -73769,7 +69413,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cJi" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/machinery/portable_atmospherics/canister/air,
@@ -73777,12 +69421,12 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cJj" = (
/obj/machinery/atmospherics/pipe/simple/supply/visible,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cJk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/machinery/light_switch{
@@ -73790,12 +69434,12 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cJl" = (
/obj/structure/closet/secure_closet/engineering_electrical,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cJm" = (
/obj/structure/table/reinforced,
/obj/structure/extinguisher_cabinet{
@@ -73804,7 +69448,7 @@
/obj/item/weapon/reagent_containers/food/drinks/soda_cans/thirteenloko,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cJn" = (
/obj/structure/table/reinforced,
/obj/machinery/airalarm{
@@ -73817,7 +69461,7 @@
/obj/item/weapon/electronics/apc,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cJo" = (
/obj/machinery/power/port_gen/pacman,
/obj/machinery/light/small{
@@ -73826,14 +69470,12 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cJp" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cJq" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -73842,22 +69484,17 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cJr" = (
/obj/machinery/light_switch{
pixel_y = 26
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cJt" = (
/obj/structure/table/reinforced,
/obj/machinery/newscaster{
@@ -73871,7 +69508,7 @@
/obj/item/device/multitool,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cJu" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/box/lights/mixed{
@@ -73882,7 +69519,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cJv" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -73890,7 +69527,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cJw" = (
/obj/structure/girder,
/obj/effect/decal/cleanable/dirt,
@@ -73899,7 +69536,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cJx" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet,
@@ -73911,7 +69548,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cJy" = (
/obj/structure/rack,
/obj/item/weapon/book/manual/wiki/engineering_guide,
@@ -73920,20 +69557,20 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cJz" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cJA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cJB" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -73945,7 +69582,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cJC" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -73959,7 +69596,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cJD" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -73968,7 +69605,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cJE" = (
/obj/structure/cable/white{
icon_state = "2-8"
@@ -73982,7 +69619,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cJF" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -73993,14 +69630,14 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cJG" = (
/mob/living/simple_animal/slime,
/turf/open/floor/circuit/green,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cJH" = (
/turf/open/floor/circuit/green,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cJI" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -74013,13 +69650,13 @@
name = "Killroom Floor";
initial_gas_mix = "n2=500;TEMP=80"
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cJJ" = (
/turf/open/floor/circuit{
initial_gas_mix = "n2=500;TEMP=80";
name = "Mainframe Base"
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cJK" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -74035,18 +69672,14 @@
name = "Killroom Floor";
initial_gas_mix = "n2=500;TEMP=80"
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cJL" = (
/turf/closed/wall/r_wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cJM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cJN" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -74060,20 +69693,14 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cJO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cJP" = (
/turf/closed/wall/r_wall,
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cJR" = (
/obj/structure/chair,
/obj/structure/disposalpipe/segment,
@@ -74081,18 +69708,14 @@
icon_state = "whitepurplecorner";
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cJS" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/whitepurple/corner{
icon_state = "whitepurplecorner";
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cJT" = (
/obj/structure/chair,
/obj/effect/landmark/start/assistant,
@@ -74100,9 +69723,7 @@
icon_state = "whitepurplecorner";
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cJU" = (
/obj/structure/table,
/obj/item/weapon/folder/white,
@@ -74111,13 +69732,9 @@
icon_state = "whitepurplecorner";
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cJV" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-18"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/light{
dir = 1
},
@@ -74125,9 +69742,7 @@
icon_state = "whitepurple";
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cJW" = (
/obj/structure/table,
/obj/item/stack/cable_coil/white,
@@ -74139,17 +69754,13 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cJX" = (
/obj/structure/chair,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cJY" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -74158,25 +69769,19 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cJZ" = (
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cKa" = (
/obj/structure/chair,
/obj/effect/landmark/start/assistant,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cKb" = (
/obj/structure/table,
/obj/item/clothing/gloves/color/latex,
@@ -74184,15 +69789,11 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cKc" = (
/obj/structure/sign/science,
/turf/closed/wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cKd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
@@ -74215,33 +69816,25 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cKh" = (
/obj/structure/chair,
/obj/effect/landmark/start/assistant,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cKi" = (
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cKj" = (
/obj/structure/chair,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cKk" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/glass/bottle/charcoal{
@@ -74252,22 +69845,16 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cKl" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-18"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/light{
dir = 1
},
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cKm" = (
/obj/structure/table,
/obj/item/stack/medical/gauze,
@@ -74276,41 +69863,31 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cKn" = (
/obj/structure/chair,
/obj/effect/landmark/start/assistant,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cKo" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cKp" = (
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cKq" = (
/obj/structure/chair,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cKr" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular,
@@ -74322,14 +69899,10 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cKs" = (
/turf/closed/wall,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cKt" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -74338,21 +69911,21 @@
dir = 10;
heat_capacity = 1e+006
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cKu" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/reagent_dispensers/watertank,
/obj/item/weapon/reagent_containers/glass/bucket,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cKv" = (
/obj/structure/closet/firecloset,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cKw" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cKx" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -74360,8 +69933,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "Medbay Storage APC";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/machinery/camera{
c_tag = "Medbay - Storage";
@@ -74371,9 +69943,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cKy" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -74383,16 +69953,13 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/whiteblue/side{
icon_state = "whiteblue";
dir = 1
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cKz" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -74404,9 +69971,7 @@
icon_state = "whiteblue";
dir = 1
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cKA" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -74422,9 +69987,7 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cKB" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -74444,9 +70007,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cKC" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -74465,7 +70026,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cKD" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -74476,7 +70037,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cKE" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -74486,7 +70047,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cKF" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -74500,7 +70061,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/blue/corner,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cKG" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -74513,7 +70074,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cKH" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/maintenance_hatch{
@@ -74533,7 +70094,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cKI" = (
/obj/structure/cable/white{
icon_state = "2-8"
@@ -74548,7 +70109,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cKJ" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -74556,7 +70117,7 @@
dir = 10
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cKK" = (
/obj/structure/dresser,
/obj/item/device/radio/intercom{
@@ -74564,8 +70125,12 @@
pixel_x = 26;
pixel_y = 26
},
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1
+ },
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cKL" = (
/obj/machinery/button/door{
id = "Dorm5";
@@ -74576,20 +70141,25 @@
req_access_txt = "0";
specialfunctions = 4
},
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"cKM" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
},
+/turf/open/floor/carpet,
+/area/crew_quarters/dorms)
+"cKM" = (
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/item/device/radio/intercom{
name = "Station Intercom";
pixel_x = 26;
pixel_y = 26
},
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1
+ },
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cKN" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/blue,
@@ -74603,8 +70173,12 @@
req_access_txt = "0";
specialfunctions = 4
},
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cKO" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
@@ -74613,23 +70187,23 @@
pixel_x = 26;
pixel_y = 26
},
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1
+ },
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cKP" = (
/obj/machinery/vending/cola/random,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cKQ" = (
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cKR" = (
/obj/structure/chair{
dir = 1
@@ -74637,23 +70211,17 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cKS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cKT" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cKU" = (
/obj/structure/rack,
/obj/item/clothing/gloves/color/black,
@@ -74665,7 +70233,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cKV" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/splatter,
@@ -74673,56 +70241,49 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cKW" = (
/obj/machinery/atmospherics/components/binary/valve,
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cKX" = (
/obj/machinery/atmospherics/components/binary/valve,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cKY" = (
/obj/machinery/atmospherics/pipe/simple/supply/visible,
/turf/open/floor/plasteel/caution{
dir = 8
},
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cKZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/caution{
dir = 4
},
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cLa" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cLb" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cLc" = (
/obj/item/weapon/book/manual/wiki/engineering_hacking{
pixel_x = -3;
@@ -74736,26 +70297,26 @@
/obj/structure/table/reinforced,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cLd" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cLe" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cLf" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cLg" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -74768,7 +70329,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cLh" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -74779,7 +70340,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cLi" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -74789,14 +70350,14 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cLj" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cLk" = (
/obj/machinery/cell_charger,
/obj/structure/table/reinforced,
@@ -74808,11 +70369,10 @@
/obj/machinery/power/apc{
dir = 4;
name = "Auxiliary Power APC";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/turf/open/floor/plating,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cLl" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -74822,7 +70382,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cLm" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -74837,7 +70397,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cLn" = (
/obj/structure/disposaloutlet{
icon_state = "outlet";
@@ -74847,7 +70407,7 @@
/turf/open/floor/plasteel/vault{
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cLo" = (
/obj/machinery/atmospherics/pipe/manifold/general/hidden{
icon_state = "manifold";
@@ -74858,7 +70418,7 @@
initial_gas_mix = "n2=500;TEMP=80";
temperature = 80
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cLp" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden{
icon_state = "intact";
@@ -74869,7 +70429,7 @@
initial_gas_mix = "n2=500;TEMP=80";
temperature = 80
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cLq" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden{
icon_state = "intact";
@@ -74880,7 +70440,7 @@
initial_gas_mix = "n2=500;TEMP=80";
temperature = 80
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cLr" = (
/obj/structure/closet/wardrobe/science_white,
/obj/machinery/light/small{
@@ -74889,17 +70449,13 @@
/obj/item/weapon/storage/backpack/satchel/tox,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cLs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cLt" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -74908,32 +70464,22 @@
icon_state = "whitepurple";
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cLu" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cLv" = (
/turf/closed/wall,
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cLw" = (
/obj/structure/closet/secure_closet/security/science,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/status_display{
pixel_y = 32
@@ -74945,9 +70491,7 @@
/turf/open/floor/plasteel/red/side{
dir = 9
},
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cLx" = (
/obj/structure/table/reinforced,
/obj/machinery/recharger,
@@ -74956,15 +70500,12 @@
},
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = 26
},
/turf/open/floor/plasteel/red/side{
dir = 1
},
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cLy" = (
/obj/structure/table/reinforced,
/obj/item/weapon/book/manual/wiki/security_space_law,
@@ -74978,9 +70519,7 @@
/turf/open/floor/plasteel/red/side{
dir = 5
},
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cLz" = (
/obj/structure/table,
/obj/item/weapon/folder/white,
@@ -74989,118 +70528,84 @@
icon_state = "whitepurplecorner";
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cLA" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cLB" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/purple,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cLC" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/neutral,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cLD" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/purple,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cLE" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cLF" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/holopad,
/turf/open/floor/plasteel/purple,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cLG" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/neutral,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cLH" = (
/turf/open/floor/plasteel/purple,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cLI" = (
/turf/open/floor/plasteel/neutral,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cLJ" = (
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
+ icon_state = "plant-21"
},
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cLK" = (
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
+ icon_state = "plant-21"
},
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cLL" = (
/turf/open/floor/plasteel/blue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cLM" = (
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cLN" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cLO" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/blue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cLP" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
@@ -75108,14 +70613,9 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cLQ" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/button/door{
desc = "A remote control switch for the medbay foyer.";
id = "MedbayFoyer";
@@ -75127,27 +70627,21 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cLR" = (
/obj/structure/bed/roller,
/obj/machinery/iv_drip,
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cLS" = (
/obj/structure/bed/roller,
/obj/machinery/iv_drip,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cLT" = (
/turf/closed/wall,
/area/security/checkpoint/medical)
@@ -75156,14 +70650,9 @@
/area/security/checkpoint/medical)
"cLV" = (
/turf/closed/wall,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cLW" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -75171,31 +70660,23 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cLX" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plasteel/cmo,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cLY" = (
/turf/open/floor/plasteel/cmo,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cLZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 6
},
/turf/open/floor/plasteel/cmo,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cMa" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -75203,9 +70684,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cMb" = (
/obj/structure/plasticflaps{
opacity = 1
@@ -75221,9 +70700,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cMc" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -75232,21 +70709,21 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cMd" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cMe" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cMf" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -75255,7 +70732,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/blue/corner,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cMg" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -75263,7 +70740,7 @@
},
/obj/machinery/space_heater,
/turf/open/floor/plasteel/blue,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cMh" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -75276,17 +70753,17 @@
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cMi" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cMj" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/clown,
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cMk" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/briefcase{
@@ -75299,7 +70776,7 @@
},
/obj/item/weapon/cane,
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cMl" = (
/obj/structure/chair/office/dark{
dir = 1
@@ -75308,18 +70785,15 @@
pixel_x = -32
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cMm" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/structure/sign/nanotrasen{
pixel_x = 32;
pixel_y = -32
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cMn" = (
/obj/machinery/vending/snack/random,
/obj/structure/extinguisher_cabinet{
@@ -75328,28 +70802,24 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cMo" = (
/obj/structure/chair{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cMp" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cMq" = (
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cMr" = (
/obj/machinery/atmospherics/pipe/simple/supply/visible{
icon_state = "intact";
@@ -75363,14 +70833,14 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cMs" = (
/obj/machinery/atmospherics/pipe/manifold/supply/visible,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cMt" = (
/obj/machinery/atmospherics/pipe/manifold/supply/visible{
icon_state = "manifold";
@@ -75380,12 +70850,12 @@
/turf/open/floor/plasteel/caution{
dir = 8
},
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cMu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cMv" = (
/obj/machinery/light/small{
dir = 4
@@ -75396,22 +70866,22 @@
/obj/item/clothing/mask/gas,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cMw" = (
/obj/machinery/status_display,
/turf/closed/wall,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cMx" = (
/obj/machinery/computer/atmos_alert,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cMy" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cMz" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -75419,7 +70889,7 @@
on = 1
},
/turf/open/floor/plating,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cMA" = (
/obj/effect/decal/cleanable/oil,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -75427,7 +70897,7 @@
dir = 8
},
/turf/open/floor/plasteel/neutral,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cMB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
@@ -75437,35 +70907,34 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/neutral,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cMC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
dir = 5
},
/turf/open/floor/plasteel/neutral,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cMD" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cME" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cMF" = (
/obj/machinery/space_heater,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cMG" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -75474,20 +70943,20 @@
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cMH" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cMI" = (
/turf/open/floor/plasteel/vault{
icon_state = "vault";
dir = 5
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cMJ" = (
/obj/machinery/light{
dir = 1
@@ -75496,7 +70965,7 @@
icon_state = "vault";
dir = 5
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cMK" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -75506,14 +70975,14 @@
},
/obj/machinery/shieldwallgen/xenobiologyaccess,
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cML" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cMM" = (
/obj/structure/cable/white{
icon_state = "2-8"
@@ -75532,7 +71001,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cMN" = (
/obj/machinery/light_switch{
pixel_x = 26;
@@ -75544,7 +71013,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cMO" = (
/obj/structure/table,
/obj/machinery/light{
@@ -75552,14 +71021,13 @@
},
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cMP" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -75571,7 +71039,7 @@
name = "Creature Cell #4"
},
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cMQ" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -75591,7 +71059,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cMR" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -75604,7 +71072,7 @@
name = "Creature Cell #4"
},
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cMS" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -75616,7 +71084,7 @@
name = "Creature Cell #5"
},
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cMT" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -75636,7 +71104,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cMU" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -75649,7 +71117,7 @@
name = "Creature Cell #5"
},
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cMV" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -75661,7 +71129,7 @@
name = "Creature Cell #6"
},
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cMW" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -75681,7 +71149,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cMX" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -75694,7 +71162,7 @@
name = "Creature Cell #6"
},
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cMY" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -75703,7 +71171,7 @@
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/general/hidden,
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cMZ" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -75719,7 +71187,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cNa" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -75727,23 +71195,19 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cNb" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plasteel/purple,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cNc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cNd" = (
/obj/structure/cable/white{
d2 = 2;
@@ -75752,9 +71216,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cNe" = (
/obj/machinery/light_switch{
pixel_x = -38;
@@ -75767,22 +71229,16 @@
/turf/open/floor/plasteel/red/side{
dir = 8
},
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cNf" = (
/turf/open/floor/plasteel/neutral,
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cNg" = (
/obj/machinery/computer/secure_data,
/turf/open/floor/plasteel/red/side{
dir = 6
},
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cNh" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
@@ -75791,24 +71247,18 @@
icon_state = "whitepurplecorner";
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cNi" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cNj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
@@ -75819,35 +71269,27 @@
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cNk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cNl" = (
/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cNm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cNn" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -75855,17 +71297,13 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cNo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/purple,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cNp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -75873,9 +71311,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cNq" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -75885,9 +71321,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cNr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -75918,9 +71352,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cNv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -75928,39 +71360,29 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cNw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cNx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/cmo,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cNy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/turf/open/floor/plasteel/cmo,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cNz" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -75968,9 +71390,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/cmo,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cNA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -75978,9 +71398,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cNB" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_medical{
@@ -75995,17 +71413,13 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cNC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/blue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cND" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
@@ -76014,9 +71428,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cNE" = (
/obj/machinery/status_display{
pixel_y = 32
@@ -76055,7 +71467,6 @@
},
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = 26
},
/turf/open/floor/plasteel/red/side{
@@ -76068,9 +71479,7 @@
},
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/obj/machinery/light_switch{
pixel_x = 38
@@ -76097,9 +71506,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cNI" = (
/obj/structure/table,
/obj/item/weapon/storage/box/gloves{
@@ -76109,37 +71516,30 @@
/obj/item/weapon/storage/box/beakers,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = 26
},
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cNJ" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/item/weapon/storage/pod{
pixel_x = 32;
pixel_y = 32
},
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cNK" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cNL" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/firstaid/fire{
@@ -76158,21 +71558,15 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cNM" = (
/obj/effect/landmark/start/medical_doctor,
/turf/open/floor/plasteel/cmo,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cNN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/cmo,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cNO" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/firstaid/toxin{
@@ -76190,7 +71584,6 @@
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/light{
@@ -76201,15 +71594,11 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cNP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cNQ" = (
/obj/machinery/door/airlock{
name = "Medbay Auxiliary Storage";
@@ -76223,9 +71612,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cNR" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -76233,7 +71620,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cNS" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
@@ -76242,16 +71629,16 @@
pixel_x = -32
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cNT" = (
/obj/structure/chair/office/dark,
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cNU" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/mime,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cNV" = (
/obj/structure/table,
/obj/item/weapon/storage/fancy/donut_box,
@@ -76259,39 +71646,29 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cNW" = (
/obj/structure/chair/stool,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cNX" = (
/obj/structure/table,
/obj/item/weapon/folder,
/obj/item/weapon/razor,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cNY" = (
/obj/structure/table,
/obj/item/clothing/under/sl_suit{
name = "referee suit"
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cNZ" = (
/obj/structure/table,
/obj/item/weapon/storage/briefcase,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cOa" = (
/obj/machinery/camera{
c_tag = "Holodeck - Aft";
@@ -76314,7 +71691,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cOc" = (
/obj/machinery/space_heater,
/obj/effect/decal/cleanable/dirt,
@@ -76322,7 +71699,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cOd" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -76330,25 +71707,20 @@
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cOe" = (
/obj/machinery/status_display{
pixel_x = -32
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cOf" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cOg" = (
/obj/machinery/atmospherics/components/binary/volume_pump{
name = "Ports to Distro"
@@ -76357,13 +71729,13 @@
/turf/open/floor/plasteel/caution{
dir = 8
},
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cOh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plasteel/caution{
dir = 4
},
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cOi" = (
/obj/structure/table/reinforced,
/obj/item/device/analyzer{
@@ -76372,12 +71744,12 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cOj" = (
/obj/machinery/computer/monitor,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cOk" = (
/obj/structure/chair/office/light{
dir = 8
@@ -76387,10 +71759,10 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cOl" = (
/turf/open/floor/plasteel/neutral,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cOm" = (
/obj/machinery/holopad,
/obj/structure/cable/white{
@@ -76398,16 +71770,16 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cOn" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cOo" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cOp" = (
/obj/machinery/door/airlock/engineering{
name = "Engineering Auxiliary Power";
@@ -76417,7 +71789,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cOq" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -76425,16 +71797,16 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cOr" = (
/obj/effect/decal/remains/xeno,
/obj/effect/decal/cleanable/xenoblood,
/turf/open/floor/circuit/green,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cOs" = (
/obj/structure/sign/electricshock,
/turf/closed/wall/r_wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cOt" = (
/obj/structure/cable/white{
d2 = 2;
@@ -76447,7 +71819,7 @@
name = "Secure Pen Shutters"
},
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cOu" = (
/obj/structure/table/reinforced,
/obj/machinery/computer/security/telescreen{
@@ -76456,44 +71828,38 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cOv" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cOw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cOx" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
dir = 10
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cOy" = (
/obj/structure/sign/xenobio,
/turf/closed/wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cOz" = (
/obj/structure/table/reinforced,
/obj/structure/window/reinforced{
@@ -76506,7 +71872,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cOA" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -76518,7 +71884,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cOB" = (
/obj/structure/window/reinforced{
dir = 8
@@ -76530,11 +71896,11 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cOC" = (
/obj/structure/sign/electricshock,
/turf/closed/wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cOD" = (
/obj/structure/table/reinforced,
/obj/structure/window/reinforced{
@@ -76547,7 +71913,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cOE" = (
/obj/structure/window/reinforced{
dir = 8
@@ -76563,16 +71929,15 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cOF" = (
/obj/structure/sign/directions/engineering{
desc = "A sign that shows there are doors here. There are doors everywhere!";
icon_state = "doors";
- name = "WARNING: BIOHAZARD CELL";
- pixel_x = 0
+ name = "WARNING: BIOHAZARD CELL"
},
/turf/closed/wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cOG" = (
/obj/structure/table/reinforced,
/obj/structure/window/reinforced{
@@ -76589,11 +71954,11 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cOH" = (
/obj/structure/sign/biohazard,
/turf/closed/wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cOI" = (
/obj/machinery/monkey_recycler,
/obj/structure/extinguisher_cabinet{
@@ -76601,7 +71966,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cOJ" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
dir = 1;
@@ -76611,24 +71976,24 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cOK" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cOL" = (
/obj/machinery/chem_master,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cOM" = (
/obj/machinery/chem_dispenser/constructable,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cON" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/box/beakers{
@@ -76638,13 +72003,12 @@
/obj/item/weapon/storage/box/syringes,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = 32
},
/obj/item/weapon/extinguisher/mini,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cOO" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -76653,9 +72017,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cOP" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -76664,9 +72026,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cOQ" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -76678,9 +72038,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cOR" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -76703,9 +72061,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cOS" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -76717,9 +72073,7 @@
/turf/open/floor/plasteel/red/side{
dir = 8
},
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cOT" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -76731,18 +72085,14 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cOU" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/machinery/computer/security,
/turf/open/floor/plasteel/red,
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cOV" = (
/obj/structure/cable/white,
/obj/structure/cable/white{
@@ -76755,16 +72105,12 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cOW" = (
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cOX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -76772,17 +72118,13 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cOY" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cOZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -76792,9 +72134,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cPa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -76802,9 +72142,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cPb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -76813,9 +72151,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cPc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -76828,25 +72164,19 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cPd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cPe" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cPf" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -76856,9 +72186,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cPg" = (
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
@@ -76898,9 +72226,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cPk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -76911,9 +72237,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cPl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -76922,9 +72246,7 @@
dir = 4
},
/turf/open/floor/plasteel/blue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cPm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -76933,18 +72255,14 @@
dir = 4
},
/turf/open/floor/plasteel/cmo,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cPn" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/cmo,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cPo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -76954,26 +72272,20 @@
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/cmo,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cPp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/cmo,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cPq" = (
/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/cmo,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cPr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -76987,9 +72299,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/cmo,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cPs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -76998,9 +72308,7 @@
dir = 4
},
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cPt" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_medical{
@@ -77018,9 +72326,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cPu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -77032,9 +72338,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cPv" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -77045,9 +72349,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cPw" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -77056,9 +72358,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cPx" = (
/obj/structure/cable/white{
icon_state = "0-2"
@@ -77077,8 +72377,7 @@
"cPz" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
/area/security/checkpoint/medical)
@@ -77110,9 +72409,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cPD" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/firstaid/brute{
@@ -77131,18 +72428,14 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cPE" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plasteel/cmo,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cPF" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/firstaid/o2{
@@ -77162,16 +72455,13 @@
department = "Medbay Storage";
departmentType = 0;
name = "Medbay Storage RC";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/open/floor/plasteel/neutral/side{
dir = 8;
heat_capacity = 1e+006
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cPG" = (
/obj/structure/toilet{
dir = 4
@@ -77191,9 +72481,7 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cPH" = (
/obj/machinery/door/airlock{
name = "Bathroom"
@@ -77207,9 +72495,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cPI" = (
/obj/structure/urinal{
pixel_y = 28
@@ -77219,9 +72505,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cPJ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -77229,9 +72513,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cPL" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance{
@@ -77240,7 +72522,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cPM" = (
/obj/structure/table/wood,
/obj/item/weapon/folder,
@@ -77251,15 +72533,19 @@
},
/obj/item/device/paicard,
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cPN" = (
/obj/structure/closet/secure_closet/personal/cabinet,
/obj/item/clothing/suit/jacket/letterman_nanotrasen,
/obj/item/clothing/suit/toggle/lawyer,
/obj/item/clothing/under/maid,
/obj/item/clothing/head/kitty,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cPO" = (
/obj/structure/bed,
/obj/machinery/light,
@@ -77268,7 +72554,7 @@
pixel_y = -32
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cPP" = (
/obj/structure/closet/secure_closet/personal/cabinet,
/obj/item/clothing/suit/jacket{
@@ -77281,8 +72567,12 @@
icon_state = "detective"
},
/obj/item/clothing/under/lawyer/female,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cPQ" = (
/obj/structure/closet/secure_closet/personal/cabinet,
/obj/machinery/light,
@@ -77299,14 +72589,18 @@
/obj/item/clothing/under/redeveninggown,
/obj/item/clothing/head/rabbitears,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cPR" = (
/obj/structure/table/wood,
/obj/item/weapon/reagent_containers/food/snacks/grown/poppy/lily,
/obj/item/weapon/reagent_containers/food/snacks/grown/poppy/lily,
/obj/item/weapon/reagent_containers/food/snacks/grown/poppy/lily,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"cPS" = (
/obj/structure/table,
/obj/machinery/light{
@@ -77321,31 +72615,23 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cPT" = (
/obj/structure/table,
/obj/item/toy/cards/deck,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cPU" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cPV" = (
/obj/structure/table,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cPW" = (
/obj/structure/chair{
dir = 4
@@ -77356,9 +72642,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/corner,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cPX" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -77367,9 +72651,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cPY" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -77377,18 +72659,14 @@
dir = 4
},
/turf/open/floor/plating,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cPZ" = (
/obj/machinery/status_display,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cQa" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -77397,9 +72675,7 @@
dir = 9
},
/turf/open/floor/plating,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cQb" = (
/obj/structure/rack,
/obj/item/clothing/suit/fire/firefighter,
@@ -77411,7 +72687,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cQc" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -77419,7 +72695,7 @@
on = 1
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cQd" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -77427,7 +72703,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cQe" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 6
@@ -77440,7 +72716,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cQf" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
name = "scrubbers pipe";
@@ -77452,7 +72728,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cQg" = (
/obj/machinery/atmospherics/pipe/simple/supply/visible,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
@@ -77462,13 +72738,13 @@
/turf/open/floor/plasteel/caution{
dir = 8
},
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cQh" = (
/obj/machinery/atmospherics/components/trinary/filter,
/turf/open/floor/plasteel/caution{
dir = 4
},
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cQi" = (
/obj/machinery/light/small{
dir = 4
@@ -77478,12 +72754,12 @@
/obj/item/weapon/wrench,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cQj" = (
/obj/machinery/computer/station_alert,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cQk" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
@@ -77495,7 +72771,7 @@
dir = 9
},
/turf/open/floor/plating,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cQl" = (
/obj/structure/cable{
d2 = 8;
@@ -77505,14 +72781,14 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cQm" = (
/obj/structure/cable/white,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cQn" = (
/obj/structure/cable{
icon_state = "0-4";
@@ -77522,7 +72798,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cQo" = (
/obj/structure/cable{
d1 = 2;
@@ -77533,27 +72809,27 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cQp" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cQq" = (
/obj/machinery/light_switch{
pixel_x = 26
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cQr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cQs" = (
/obj/structure/cable/white,
/obj/structure/cable/white{
@@ -77571,7 +72847,7 @@
name = "Secure Pen Shutters"
},
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cQt" = (
/obj/structure/table/reinforced,
/obj/structure/window/reinforced,
@@ -77583,12 +72859,11 @@
},
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = 5
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cQu" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -77597,14 +72872,14 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cQv" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
dir = 8
},
/turf/open/floor/plasteel/neutral,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cQw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -77612,7 +72887,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cQx" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -77622,14 +72897,14 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cQy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cQz" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -77641,7 +72916,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cQA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -77649,7 +72924,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cQB" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -77660,14 +72935,9 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cQC" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/light{
dir = 1
},
@@ -77677,7 +72947,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cQD" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -77686,7 +72956,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cQE" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -77698,7 +72968,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cQF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -77706,7 +72976,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 9
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cQG" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -77718,7 +72988,7 @@
icon_state = "whitepurple";
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cQH" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -77728,7 +72998,7 @@
icon_state = "whitepurple";
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cQI" = (
/obj/structure/chair/office/light{
dir = 1
@@ -77737,7 +73007,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cQJ" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder/white,
@@ -77758,16 +73028,14 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cQK" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
on = 1
},
/turf/open/floor/plasteel/purple,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cQL" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -77776,9 +73044,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cQM" = (
/obj/structure/cable/white,
/obj/structure/grille,
@@ -77787,9 +73053,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cQN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -77798,67 +73062,50 @@
/turf/open/floor/plasteel/red/side{
dir = 8
},
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cQO" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/machinery/holopad,
/turf/open/floor/plasteel/neutral,
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cQP" = (
/obj/machinery/computer/mecha,
/turf/open/floor/plasteel/red/side{
dir = 5
},
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cQQ" = (
/obj/structure/cable/white,
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cQR" = (
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
+ icon_state = "plant-21"
},
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cQS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/purple,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cQT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/purple,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cQU" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cQV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/junction{
@@ -77875,66 +73122,51 @@
dir = 4
},
/turf/open/floor/plating,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cQX" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
/obj/structure/disposalpipe/segment{
icon_state = "pipe-s";
dir = 4
},
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cQY" = (
/obj/structure/disposalpipe/segment{
icon_state = "pipe-s";
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cQZ" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/blue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cRa" = (
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
+ icon_state = "plant-21"
},
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cRb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cRc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cRd" = (
/obj/structure/cable/white{
icon_state = "0-2"
@@ -77985,9 +73217,7 @@
"cRi" = (
/obj/machinery/newscaster,
/turf/closed/wall,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cRj" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/box/beakers{
@@ -78002,31 +73232,23 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cRk" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cRl" = (
/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cRm" = (
/obj/machinery/light_switch{
pixel_x = 26;
pixel_y = -38
},
/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cRn" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/belt/medical,
@@ -78045,16 +73267,13 @@
},
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/turf/open/floor/plasteel/neutral/side{
dir = 8;
heat_capacity = 1e+006
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cRo" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
@@ -78066,9 +73285,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cRp" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -78079,23 +73296,26 @@
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cRq" = (
/obj/structure/girder,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cRr" = (
/obj/structure/cable/white{
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Recreation Area APC";
+ pixel_x = -26
+ },
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cRs" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -78106,29 +73326,21 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cRt" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cRu" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cRv" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/decal/cleanable/dirt,
@@ -78136,7 +73348,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cRw" = (
/obj/machinery/atmospherics/components/binary/valve{
icon_state = "mvalve_map";
@@ -78149,7 +73361,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cRx" = (
/obj/machinery/atmospherics/components/binary/valve{
icon_state = "mvalve_map";
@@ -78160,29 +73372,27 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cRy" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cRz" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder/yellow,
/obj/item/weapon/pen,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cRA" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cRB" = (
/obj/machinery/power/terminal,
/obj/structure/cable,
@@ -78190,23 +73400,23 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cRC" = (
/obj/effect/turf_decal/stripes/corner,
/turf/open/floor/plating,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cRD" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cRE" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/corner{
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cRF" = (
/obj/machinery/power/terminal,
/obj/structure/cable,
@@ -78214,21 +73424,21 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cRG" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cRH" = (
/obj/structure/sign/nosmoking_2{
pixel_x = 32
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cRI" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -78239,7 +73449,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cRJ" = (
/obj/machinery/camera{
c_tag = "Xenobiology - Secure Cell";
@@ -78251,7 +73461,7 @@
icon_state = "vault";
dir = 5
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRK" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -78271,7 +73481,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRL" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -78283,7 +73493,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRM" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -78298,14 +73508,14 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRN" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRO" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -78313,7 +73523,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRP" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -78323,27 +73533,24 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRQ" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/machinery/shower{
dir = 4;
- icon_state = "shower";
name = "emergency shower"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/obj/effect/turf_decal/stripes/end{
dir = 8
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRR" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -78352,7 +73559,7 @@
dir = 2
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRS" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -78368,14 +73575,13 @@
dir = 2
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRT" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/machinery/shower{
dir = 8;
- icon_state = "shower";
name = "emergency shower"
},
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -78386,7 +73592,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRU" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -78401,7 +73607,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRV" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -78409,7 +73615,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRW" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -78419,25 +73625,25 @@
},
/obj/effect/landmark/start/scientist,
/turf/open/floor/plasteel/neutral,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRX" = (
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRY" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRZ" = (
/obj/machinery/computer/camera_advanced/xenobio,
/obj/machinery/status_display{
pixel_x = 32
},
/turf/open/floor/circuit/green,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/camera{
@@ -78449,9 +73655,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cSb" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -78470,8 +73674,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/button/door{
desc = "A remote control switch.";
@@ -78485,9 +73688,7 @@
icon_state = "red";
dir = 10
},
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cSc" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -78496,25 +73697,17 @@
icon_state = "1-8"
},
/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cSd" = (
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/camera{
c_tag = "Security Post - Science";
dir = 8;
@@ -78524,39 +73717,35 @@
/turf/open/floor/plasteel/red/side{
dir = 6
},
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cSe" = (
/obj/structure/table,
/obj/item/weapon/clipboard,
/obj/item/weapon/electronics/airlock,
/obj/item/weapon/stock_parts/console_screen,
/obj/item/device/assembly/signaler,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cSf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cSg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cSh" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
@@ -78564,9 +73753,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cSi" = (
/obj/structure/table,
/obj/machinery/cell_charger,
@@ -78581,9 +73768,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cSj" = (
/obj/structure/table,
/obj/item/device/gps,
@@ -78592,27 +73777,20 @@
pixel_y = -32
},
/turf/open/floor/plasteel/whitepurple/side,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cSk" = (
/obj/structure/table,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cSl" = (
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
+ icon_state = "plant-21"
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cSm" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -78620,20 +73798,14 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cSn" = (
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cSo" = (
/obj/machinery/autolathe,
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cSp" = (
/obj/structure/table,
/obj/item/stack/sheet/metal{
@@ -78645,9 +73817,7 @@
/obj/item/stack/packageWrap,
/obj/machinery/light,
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cSq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
@@ -78661,18 +73831,14 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cSs" = (
/obj/structure/table,
/obj/item/weapon/folder/white,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cSt" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -78680,42 +73846,35 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cSu" = (
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cSv" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
/obj/structure/disposalpipe/segment,
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cSw" = (
/obj/structure/bed/roller,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cSx" = (
/obj/structure/bed/roller,
/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cSy" = (
/obj/structure/bed/roller,
/obj/structure/sign/chemistry{
@@ -78728,36 +73887,26 @@
name = "medbay camera"
},
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cSz" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
},
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cSA" = (
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cSB" = (
/obj/structure/table,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cSC" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cSD" = (
/obj/structure/cable/white,
/obj/structure/grille,
@@ -78807,9 +73956,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cSJ" = (
/obj/structure/sign/bluecross_2{
pixel_x = 32
@@ -78821,9 +73968,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cSL" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_medical{
@@ -78834,9 +73979,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cSM" = (
/obj/structure/table/wood,
/obj/machinery/microwave{
@@ -78847,9 +73990,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cSN" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/box/donkpockets,
@@ -78857,21 +73998,20 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cSO" = (
/obj/machinery/camera{
c_tag = "Medbay - Break Room";
dir = 2;
name = "medbay camera"
},
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cSP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
@@ -78881,9 +74021,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cSQ" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -78891,22 +74029,20 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cSR" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cSS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cST" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -78916,7 +74052,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cSU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -78925,7 +74061,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cSV" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/blobstart,
@@ -78933,7 +74069,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cSW" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet,
@@ -78948,7 +74084,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cSX" = (
/obj/structure/girder,
/obj/effect/decal/cleanable/dirt,
@@ -78956,7 +74092,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cSY" = (
/obj/structure/closet/crate,
/obj/item/weapon/storage/box/donkpockets,
@@ -78968,7 +74104,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cSZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -78979,7 +74115,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cTa" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -78988,64 +74124,50 @@
/turf/open/floor/plasteel/neutral/side{
dir = 5
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cTb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cTc" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cTd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cTe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cTf" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cTg" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cTh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 9
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cTi" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
@@ -79055,7 +74177,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cTj" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
@@ -79067,33 +74189,33 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cTk" = (
/obj/machinery/atmospherics/pipe/simple/supply/visible,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cTl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cTm" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 26
},
/obj/structure/closet/toolcloset,
/turf/open/floor/plating,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cTn" = (
/obj/structure/table/reinforced,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cTp" = (
/obj/machinery/power/smes,
/obj/machinery/light/small,
@@ -79104,24 +74226,19 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cTq" = (
/obj/machinery/light_switch{
pixel_y = -26
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cTr" = (
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cTs" = (
/obj/machinery/power/smes,
/obj/machinery/light/small,
@@ -79133,16 +74250,16 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cTt" = (
/obj/structure/closet/toolcloset,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cTu" = (
/obj/structure/closet/secure_closet/engineering_electrical,
/turf/open/floor/plating,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cTv" = (
/obj/structure/disposaloutlet{
icon_state = "outlet";
@@ -79155,7 +74272,7 @@
/turf/open/floor/plasteel/vault{
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTw" = (
/obj/structure/cable/white,
/obj/structure/cable/white{
@@ -79173,7 +74290,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTx" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -79186,13 +74303,13 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTy" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTz" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -79200,7 +74317,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTA" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -79210,14 +74327,14 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTC" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -79229,30 +74346,25 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTD" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/side,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTE" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTG" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -79261,7 +74373,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTH" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -79273,7 +74385,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -79281,7 +74393,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTJ" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -79291,12 +74403,12 @@
dir = 10
},
/turf/open/floor/plasteel/purple,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTK" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTL" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/box/monkeycubes,
@@ -79305,7 +74417,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTM" = (
/obj/structure/table/reinforced,
/obj/machinery/reagentgrinder{
@@ -79316,7 +74428,6 @@
departmentType = 0;
name = "Xenobiology RC";
pixel_x = 32;
- pixel_y = 0;
receive_ore_updates = 1
},
/obj/machinery/camera{
@@ -79327,7 +74438,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/light{
@@ -79337,9 +74448,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cTO" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -79347,9 +74456,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cTP" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -79366,9 +74473,7 @@
req_access_txt = "63"
},
/turf/open/floor/plasteel/red,
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cTQ" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -79379,9 +74484,7 @@
pixel_x = 32
},
/turf/open/floor/plating,
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cTR" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
@@ -79394,15 +74497,11 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cTS" = (
/obj/structure/sign/science,
/turf/closed/wall/r_wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cTT" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
@@ -79415,22 +74514,18 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cTU" = (
/obj/structure/sign/securearea,
/turf/closed/wall/r_wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cTV" = (
/obj/structure/sign/science,
/turf/closed/wall,
-/area/toxins/lab)
+/area/science/lab)
"cTW" = (
/turf/closed/wall/r_wall,
-/area/toxins/lab)
+/area/science/lab)
"cTX" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -79440,7 +74535,7 @@
name = "Research and Development Shutter"
},
/turf/open/floor/plating,
-/area/toxins/lab)
+/area/science/lab)
"cTY" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -79449,7 +74544,7 @@
name = "Research and Development Shutter"
},
/turf/open/floor/plating,
-/area/toxins/lab)
+/area/science/lab)
"cTZ" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
@@ -79466,11 +74561,11 @@
/obj/machinery/door/window/northleft,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"cUb" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall/r_wall,
-/area/toxins/lab)
+/area/science/lab)
"cUc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/light{
@@ -79487,8 +74582,7 @@
/obj/structure/disposalpipe/segment,
/obj/structure/extinguisher_cabinet{
dir = 4;
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/primary/aft)
@@ -79500,9 +74594,7 @@
name = "Chemisty Lobby Shutters"
},
/turf/open/floor/plating,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cUf" = (
/obj/structure/grille,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -79511,9 +74603,7 @@
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cUg" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
@@ -79529,16 +74619,12 @@
/obj/machinery/door/window/northleft,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cUh" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/smartfridge/chemistry/preloaded,
/turf/closed/wall,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cUi" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
@@ -79546,9 +74632,7 @@
/obj/item/weapon/reagent_containers/hypospray/medipen,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cUj" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
@@ -79559,24 +74643,18 @@
/obj/item/weapon/reagent_containers/syringe,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cUk" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
/obj/item/weapon/reagent_containers/food/drinks/britcup,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cUl" = (
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/light{
@@ -79586,9 +74664,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cUm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/camera{
@@ -79599,9 +74675,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cUn" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -79615,8 +74689,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "Security Post - Medical APC";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -79646,13 +74719,9 @@
/turf/open/floor/plasteel/red/side,
/area/security/checkpoint/medical)
"cUp" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/light{
@@ -79673,18 +74742,14 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cUr" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
},
/turf/open/floor/plasteel/blue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cUs" = (
/obj/structure/table/glass,
/obj/item/stack/medical/gauze,
@@ -79698,9 +74763,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cUt" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -79708,71 +74771,51 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cUu" = (
/turf/open/floor/plasteel/whiteblue/side{
icon_state = "whiteblue";
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cUv" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cUw" = (
/obj/machinery/newscaster{
pixel_x = -32
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cUx" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
dir = 4
},
/turf/open/floor/plasteel/redblue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cUy" = (
/turf/open/floor/plasteel/redblue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cUz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/redblue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cUA" = (
/obj/machinery/vending/coffee,
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cUB" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -79786,7 +74829,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cUC" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -79802,7 +74845,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cUD" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -79816,7 +74859,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cUE" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -79829,7 +74872,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cUF" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -79842,7 +74885,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cUG" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -79855,7 +74898,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cUH" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -79867,7 +74910,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cUI" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -79880,7 +74923,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cUJ" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -79893,7 +74936,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cUK" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -79907,7 +74950,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cUL" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/maintenance_hatch{
@@ -79927,9 +74970,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cUM" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -79944,9 +74985,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cUN" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -79957,16 +74996,12 @@
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cUO" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cUP" = (
/obj/structure/table,
/obj/item/clothing/under/suit_jacket/really_black,
@@ -79978,9 +75013,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cUQ" = (
/obj/structure/table,
/obj/item/weapon/clipboard,
@@ -79989,9 +75022,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cUR" = (
/obj/structure/table,
/obj/item/toy/sword,
@@ -80000,34 +75031,26 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cUS" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cUT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
dir = 9
},
/turf/open/floor/plasteel/neutral/corner,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cUU" = (
/turf/open/floor/plasteel/escape{
dir = 8
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cUV" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/crayons,
@@ -80036,15 +75059,13 @@
icon_state = "escape";
dir = 4
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cUW" = (
/obj/structure/mopbucket,
/obj/effect/decal/cleanable/dirt,
/obj/item/weapon/mop,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cUX" = (
/obj/structure/sink/kitchen{
desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
@@ -80053,7 +75074,7 @@
},
/obj/item/weapon/reagent_containers/glass/bucket,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cUY" = (
/obj/machinery/door/airlock/atmos{
name = "Atmospherics Auxiliary Port";
@@ -80064,12 +75085,12 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cUZ" = (
/obj/structure/sign/securearea,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cVa" = (
/obj/machinery/door/airlock/engineering{
name = "Engineering Auxiliary Power";
@@ -80079,7 +75100,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"cVb" = (
/obj/structure/cable/white,
/obj/structure/grille,
@@ -80089,13 +75110,13 @@
name = "Secure Pen Shutters"
},
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cVc" = (
/obj/structure/table/reinforced,
/obj/machinery/cell_charger,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cVd" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -80106,25 +75127,20 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cVe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 9
},
/turf/open/floor/plasteel/neutral,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cVf" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cVg" = (
/obj/structure/window/reinforced{
dir = 4
@@ -80133,7 +75149,7 @@
/obj/structure/disposalpipe/trunk,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cVh" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -80145,7 +75161,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cVi" = (
/obj/structure/table/reinforced,
/obj/structure/window/reinforced{
@@ -80162,7 +75178,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cVj" = (
/obj/structure/window/reinforced{
dir = 4
@@ -80175,7 +75191,7 @@
/obj/structure/disposalpipe/trunk,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cVk" = (
/obj/structure/table/reinforced,
/obj/structure/window/reinforced{
@@ -80188,7 +75204,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cVl" = (
/obj/structure/table/reinforced,
/obj/structure/window/reinforced{
@@ -80201,17 +75217,17 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cVm" = (
/obj/machinery/processor/slime,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cVn" = (
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cVo" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -80219,7 +75235,7 @@
/obj/effect/landmark/start/scientist,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cVp" = (
/obj/structure/chair/office/light{
icon_state = "officechair_white";
@@ -80229,7 +75245,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cVq" = (
/obj/structure/cable/white{
d2 = 2;
@@ -80241,9 +75257,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cVr" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -80254,9 +75268,7 @@
/turf/open/floor/plasteel/red/side{
dir = 9
},
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cVs" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -80270,9 +75282,7 @@
/turf/open/floor/plasteel/red/side{
dir = 1
},
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cVt" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -80284,9 +75294,7 @@
/turf/open/floor/plasteel/red/side{
dir = 5
},
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cVu" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -80294,20 +75302,15 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cVv" = (
/obj/structure/closet/emcloset,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cVw" = (
/obj/machinery/shower{
dir = 4;
- icon_state = "shower";
name = "emergency shower"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -80316,9 +75319,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cVx" = (
/obj/machinery/light/small{
dir = 1
@@ -80331,9 +75332,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cVy" = (
/obj/structure/sink{
dir = 4;
@@ -80348,20 +75347,16 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cVz" = (
/obj/structure/closet/firecloset,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cVA" = (
/obj/structure/sign/nosmoking_2,
/turf/closed/wall/r_wall,
-/area/toxins/lab)
+/area/science/lab)
"cVB" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -80372,7 +75367,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"cVC" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -80381,28 +75376,25 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/toxins/lab)
+/area/science/lab)
"cVD" = (
/obj/machinery/light{
dir = 1
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/status_display{
pixel_y = 32
},
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/toxins/lab)
+/area/science/lab)
"cVE" = (
/turf/open/floor/plasteel/whitepurple/side{
icon_state = "whitepurple";
dir = 1
},
-/area/toxins/lab)
+/area/science/lab)
"cVF" = (
/obj/structure/chair/office/light{
dir = 1
@@ -80410,12 +75402,12 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/toxins/lab)
+/area/science/lab)
"cVG" = (
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/toxins/lab)
+/area/science/lab)
"cVH" = (
/obj/structure/table,
/obj/item/stack/sheet/metal{
@@ -80432,7 +75424,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/toxins/lab)
+/area/science/lab)
"cVI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
@@ -80522,11 +75514,9 @@
icon_state = "0-2"
},
/obj/machinery/power/apc{
- cell_type = 5000;
dir = 1;
name = "Chemistry Lab APC";
- pixel_x = 0;
- pixel_y = 25
+ pixel_y = 24
},
/turf/open/floor/plasteel/whiteyellow/corner{
dir = 4
@@ -80548,9 +75538,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cVV" = (
/obj/structure/chair/office/light{
dir = 1
@@ -80558,16 +75546,12 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cVW" = (
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cVX" = (
/obj/structure/chair/office/light{
dir = 1
@@ -80575,9 +75559,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cVY" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/button/door{
@@ -80591,9 +75573,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cVZ" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -80633,23 +75613,17 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cWe" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cWf" = (
/obj/effect/landmark/start/medical_doctor,
/turf/open/floor/plasteel/blue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cWg" = (
/obj/structure/mirror{
pixel_x = 26
@@ -80661,23 +75635,17 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cWh" = (
/obj/structure/chair/stool,
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cWi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/redblue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cWj" = (
/obj/machinery/holopad,
/obj/effect/landmark/start/medical_doctor,
@@ -80686,18 +75654,14 @@
dir = 6
},
/turf/open/floor/plasteel/redblue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cWk" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
dir = 4
},
/turf/open/floor/plasteel/redblue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cWl" = (
/obj/machinery/vending/cola/random,
/obj/machinery/status_display{
@@ -80710,14 +75674,12 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cWm" = (
/obj/structure/girder,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cWn" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -80725,23 +75687,21 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cWo" = (
/turf/closed/wall,
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"cWp" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cWq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cWr" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -80749,16 +75709,12 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cWs" = (
/obj/structure/table,
/obj/item/weapon/storage/photo_album,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cWt" = (
/obj/item/weapon/lipstick/random{
pixel_x = 3;
@@ -80771,9 +75727,7 @@
/obj/item/weapon/lipstick/random,
/obj/structure/table,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cWu" = (
/obj/structure/table,
/obj/item/device/camera_film{
@@ -80782,22 +75736,16 @@
},
/obj/item/device/camera_film,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cWv" = (
/turf/open/floor/plasteel/neutral/corner,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cWw" = (
/obj/structure/chair/stool,
/turf/open/floor/plasteel/escape{
dir = 8
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cWx" = (
/obj/structure/easel,
/obj/item/weapon/canvas/twentythreeXtwentythree,
@@ -80810,9 +75758,7 @@
icon_state = "escape";
dir = 4
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cWy" = (
/obj/structure/table,
/obj/effect/decal/cleanable/dirt,
@@ -80826,7 +75772,7 @@
/turf/open/floor/plasteel/green/side{
dir = 8
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cWz" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -80838,14 +75784,14 @@
icon_state = "purple";
dir = 4
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cWA" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cWB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
@@ -80855,7 +75801,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cWC" = (
/obj/effect/landmark/blobstart,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -80866,7 +75812,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cWD" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -80877,12 +75823,12 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cWE" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cWF" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -80894,7 +75840,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cWG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
@@ -80907,24 +75853,22 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cWH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 8
},
/obj/machinery/power/apc{
- cell_type = 10000;
dir = 1;
name = "Port Maintenance APC";
- pixel_x = 0;
pixel_y = 28
},
/obj/structure/cable/white{
icon_state = "0-4"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cWI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
@@ -80934,7 +75878,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cWJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -80948,7 +75892,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cWK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
@@ -80961,7 +75905,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cWL" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -80974,7 +75918,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cWM" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -80988,21 +75932,21 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cWN" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cWO" = (
/obj/machinery/light,
/turf/open/floor/plasteel/vault{
icon_state = "vault";
dir = 5
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cWP" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -81012,26 +75956,25 @@
},
/obj/machinery/shieldwallgen/xenobiologyaccess,
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cWQ" = (
/obj/structure/cable/white{
icon_state = "1-8"
},
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cWR" = (
/obj/machinery/newscaster{
pixel_y = -32
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cWS" = (
/obj/structure/table,
/obj/item/weapon/crowbar,
@@ -81044,7 +75987,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cWT" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -81057,7 +76000,7 @@
name = "Creature Cell #1"
},
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cWU" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -81077,7 +76020,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cWV" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -81089,7 +76032,7 @@
name = "Creature Cell #1"
},
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cWW" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -81102,7 +76045,7 @@
name = "Creature Cell #2"
},
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cWX" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -81122,7 +76065,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cWY" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -81134,7 +76077,7 @@
name = "Creature Cell #2"
},
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cWZ" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -81147,7 +76090,7 @@
name = "Creature Cell #3"
},
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cXa" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -81167,7 +76110,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cXb" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -81179,7 +76122,7 @@
name = "Creature Cell #3"
},
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cXc" = (
/obj/machinery/smartfridge/extract/preloaded,
/obj/machinery/light_switch{
@@ -81187,12 +76130,12 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cXd" = (
/turf/open/floor/plasteel/whitepurple/side{
dir = 10
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cXe" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -81205,18 +76148,17 @@
dir = 5
},
/turf/open/floor/plasteel/whitepurple/side,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cXf" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/whitepurple/side,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cXg" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -81225,7 +76167,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cXh" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder/white,
@@ -81240,12 +76182,11 @@
/obj/machinery/power/apc{
dir = 4;
name = "Xenobiology Lab APC";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cXi" = (
/obj/structure/chair{
dir = 4
@@ -81254,24 +76195,18 @@
icon_state = "red";
dir = 10
},
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cXj" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cXk" = (
/turf/open/floor/plasteel/red/side{
dir = 6
},
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cXl" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
@@ -81283,20 +76218,15 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cXm" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cXn" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -81308,17 +76238,13 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cXo" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cXp" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -81329,9 +76255,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cXq" = (
/obj/structure/closet/firecloset,
/obj/machinery/camera{
@@ -81342,9 +76266,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cXr" = (
/obj/structure/table/reinforced,
/obj/item/weapon/stock_parts/matter_bin{
@@ -81355,15 +76277,13 @@
/obj/item/weapon/stock_parts/micro_laser,
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"cXs" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -81371,27 +76291,27 @@
on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/toxins/lab)
+/area/science/lab)
"cXt" = (
/obj/effect/landmark/start/scientist,
/turf/open/floor/plasteel/neutral,
-/area/toxins/lab)
+/area/science/lab)
"cXu" = (
/turf/open/floor/plasteel/neutral,
-/area/toxins/lab)
+/area/science/lab)
"cXv" = (
/obj/machinery/r_n_d/destructive_analyzer,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"cXw" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"cXx" = (
/obj/machinery/r_n_d/protolathe,
/obj/machinery/ai_status_display{
@@ -81405,7 +76325,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"cXy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
@@ -81485,43 +76405,33 @@
/obj/machinery/computer/crew,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/turf/open/floor/plasteel/whiteblue/side{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cXI" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cXJ" = (
/obj/machinery/holopad,
/obj/effect/landmark/start/medical_doctor,
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cXK" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/whiteblue/side{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cXL" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -81535,9 +76445,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cXM" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -81546,9 +76454,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cXN" = (
/obj/structure/cable/white{
d2 = 2;
@@ -81597,30 +76503,23 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/blue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cXS" = (
/obj/machinery/holopad{
pixel_y = 16
},
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cXT" = (
/obj/machinery/shower{
dir = 8;
- icon_state = "shower";
name = "emergency shower"
},
/obj/structure/extinguisher_cabinet{
pixel_x = 26
},
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cXU" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/white,
@@ -81632,34 +76531,26 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cXV" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/redblue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cXW" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plasteel/redblue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cXX" = (
/obj/machinery/vending/cigarette,
/obj/structure/extinguisher_cabinet{
pixel_x = 26
},
/turf/open/floor/plasteel/neutral/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cXY" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/crate,
@@ -81667,12 +76558,11 @@
/obj/effect/spawner/lootdrop/maintenance,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cXZ" = (
/obj/machinery/airalarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/sleeper{
icon_state = "sleeper-open";
@@ -81682,9 +76572,7 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"cYa" = (
/obj/structure/mirror{
icon_state = "mirror_broke";
@@ -81693,9 +76581,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"cYb" = (
/obj/structure/bed/roller,
/obj/machinery/iv_drip{
@@ -81703,9 +76589,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"cYc" = (
/obj/structure/table/glass,
/obj/item/stack/medical/gauze,
@@ -81720,9 +76604,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"cYd" = (
/obj/structure/bed/roller,
/obj/machinery/iv_drip{
@@ -81732,9 +76614,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"cYe" = (
/obj/structure/mirror{
icon_state = "mirror_broke";
@@ -81744,9 +76624,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"cYf" = (
/obj/structure/frame/machine,
/obj/effect/decal/cleanable/cobweb/cobweb2,
@@ -81755,33 +76633,27 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"cYg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cYh" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cYi" = (
/obj/machinery/vending/cigarette,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cYj" = (
/turf/open/floor/plasteel/neutral/corner{
dir = 8;
heat_capacity = 1e+006
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cYk" = (
/obj/machinery/light,
/obj/machinery/camera{
@@ -81790,18 +76662,11 @@
name = "recreation camera"
},
/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cYl" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/neutral/corner,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cYm" = (
/obj/structure/table/wood,
/obj/item/stack/packageWrap{
@@ -81812,9 +76677,7 @@
/turf/open/floor/plasteel/escape{
dir = 8
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cYn" = (
/obj/structure/table/wood,
/obj/item/device/camera,
@@ -81826,9 +76689,7 @@
icon_state = "escape";
dir = 4
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"cYo" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -81838,34 +76699,34 @@
/turf/open/floor/plasteel/green/side{
dir = 6
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cYp" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral/side{
dir = 10
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cYq" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cYr" = (
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cYs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cYt" = (
/obj/structure/closet/emcloset,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cYu" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/rack,
@@ -81877,13 +76738,13 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cYv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cYw" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -81891,7 +76752,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cYx" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -81905,7 +76766,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cYy" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -81916,7 +76777,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cYz" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -81925,7 +76786,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cYA" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -81935,7 +76796,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cYB" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -81948,7 +76809,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cYC" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -81957,11 +76818,11 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cYD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cYE" = (
/obj/structure/disposaloutlet,
/obj/structure/disposalpipe/trunk{
@@ -81971,35 +76832,29 @@
/turf/open/floor/plasteel/vault{
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cYF" = (
/obj/structure/table,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/item/weapon/storage/bag/bio,
/obj/item/weapon/storage/bag/bio,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cYG" = (
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cYH" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cYI" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/effect/decal/cleanable/dirt,
@@ -82008,14 +76863,14 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cYJ" = (
/obj/structure/table/reinforced,
/obj/item/clothing/gloves/color/latex,
/obj/item/device/slime_scanner,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cYK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/extinguisher_cabinet{
@@ -82024,9 +76879,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cYL" = (
/obj/structure/cable/white,
/obj/structure/cable/white{
@@ -82038,25 +76891,23 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cYM" = (
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = -32
},
/obj/structure/closet/emcloset,
/obj/effect/turf_decal/bot,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cYN" = (
/obj/machinery/shower{
dir = 4;
- icon_state = "shower";
name = "emergency shower"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -82065,9 +76916,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cYO" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -82075,9 +76924,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cYP" = (
/obj/structure/sink{
dir = 4;
@@ -82092,16 +76939,12 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cYQ" = (
/obj/structure/closet/l3closet/scientist,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cYR" = (
/obj/structure/table/reinforced,
/obj/item/stack/cable_coil/white{
@@ -82118,40 +76961,39 @@
/obj/item/weapon/stock_parts/manipulator,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"cYS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/toxins/lab)
+/area/science/lab)
"cYT" = (
/turf/open/floor/plasteel/whitepurple/side{
dir = 9
},
-/area/toxins/lab)
+/area/science/lab)
"cYU" = (
/turf/open/floor/plasteel/whitepurple/side{
dir = 5;
initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
},
-/area/toxins/lab)
+/area/science/lab)
"cYV" = (
/obj/machinery/computer/rdconsole/core,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"cYW" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"cYX" = (
/obj/machinery/r_n_d/circuit_imprinter,
/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
@@ -82159,7 +77001,7 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"cYY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
@@ -82204,9 +77046,7 @@
"cZd" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/turf/open/floor/plasteel/whiteyellow/side{
dir = 5
@@ -82232,25 +77072,16 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cZi" = (
/obj/structure/chair/office/light,
/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cZj" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/light/small,
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cZk" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -82259,20 +77090,15 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cZl" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cZm" = (
/obj/structure/chair{
dir = 4
@@ -82321,9 +77147,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cZr" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -82331,14 +77155,10 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cZs" = (
/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cZt" = (
/obj/machinery/sleeper{
icon_state = "sleeper-open";
@@ -82348,37 +77168,27 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cZv" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cZw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/side,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cZx" = (
/turf/open/floor/plasteel/neutral/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cZy" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
/turf/open/floor/plasteel/neutral/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cZz" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/rack,
@@ -82388,66 +77198,47 @@
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cZA" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"cZB" = (
/obj/structure/sign/examroom{
pixel_x = -32
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"cZC" = (
/turf/open/floor/plasteel/blue,
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"cZD" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"cZE" = (
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"cZF" = (
/obj/item/weapon/crowbar/red,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/blue,
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"cZG" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"cZH" = (
/obj/structure/sign/bluecross_2,
/turf/closed/wall,
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"cZI" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -82461,7 +77252,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cZJ" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -82474,7 +77265,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cZK" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -82482,7 +77273,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cZL" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -82492,7 +77283,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cZM" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance{
@@ -82506,7 +77297,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cZN" = (
/obj/structure/girder,
/obj/effect/decal/cleanable/dirt,
@@ -82516,7 +77307,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cZO" = (
/obj/structure/rack,
/obj/item/weapon/crowbar/red,
@@ -82529,7 +77320,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cZP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -82538,7 +77329,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cZQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -82547,11 +77338,11 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"cZR" = (
/obj/structure/sign/xenobio,
/turf/closed/wall/r_wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cZS" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -82563,7 +77354,7 @@
name = "Xenobiology Containment Door"
},
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cZT" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -82587,7 +77378,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cZU" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -82599,7 +77390,7 @@
name = "Xenobiology Containment Door"
},
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cZV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/firedoor,
@@ -82607,18 +77398,14 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cZW" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cZX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/firedoor,
@@ -82626,15 +77413,11 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cZY" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cZZ" = (
/obj/structure/table,
/obj/item/weapon/storage/box/bodybags{
@@ -82644,9 +77427,7 @@
/obj/item/weapon/storage/box/gloves,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"daa" = (
/obj/structure/table,
/obj/effect/decal/cleanable/dirt,
@@ -82655,33 +77436,22 @@
/obj/item/clothing/mask/gas,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dab" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/item/weapon/storage/pod{
pixel_x = 32
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dac" = (
/turf/closed/wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dad" = (
/obj/structure/sign/securearea,
/turf/closed/wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dae" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder/white,
@@ -82702,14 +77472,14 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"daf" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/toxins/lab)
+/area/science/lab)
"dag" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -82717,7 +77487,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/toxins/lab)
+/area/science/lab)
"dah" = (
/obj/machinery/holopad{
pixel_x = -16
@@ -82728,14 +77498,13 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 4
},
-/area/toxins/lab)
+/area/science/lab)
"dai" = (
/obj/machinery/requests_console{
department = "Research Lab";
departmentType = 0;
name = "Research RC";
pixel_x = 32;
- pixel_y = 0;
receive_ore_updates = 1
},
/obj/machinery/camera{
@@ -82745,7 +77514,7 @@
network = list("SS13","RD")
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/toxins/lab)
+/area/science/lab)
"daj" = (
/obj/structure/sign/chemistry,
/turf/closed/wall,
@@ -82801,9 +77570,7 @@
/obj/item/weapon/reagent_containers/dropper,
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/obj/machinery/light{
dir = 4;
@@ -82822,9 +77589,7 @@
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dap" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
@@ -82836,15 +77601,11 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"daq" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dar" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall,
@@ -82877,18 +77638,14 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dau" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dav" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/firedoor,
@@ -82896,15 +77653,11 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"daw" = (
/obj/structure/sign/examroom,
/turf/closed/wall,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dax" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -82914,17 +77667,13 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"day" = (
/obj/structure/grille,
/obj/structure/window/reinforced/tinted/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"daz" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
@@ -82936,23 +77685,19 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"daA" = (
/obj/structure/grille,
/obj/structure/window/reinforced/tinted/fulltile,
/turf/open/floor/plating,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"daB" = (
/obj/item/weapon/firstaid_arm_assembly,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"daC" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -82968,7 +77713,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"daD" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/maintenance_hatch{
@@ -82986,9 +77731,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"daE" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -83000,17 +77743,13 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"daF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"daG" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -83018,9 +77757,7 @@
dir = 4
},
/turf/open/floor/plasteel/blue,
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"daH" = (
/obj/item/weapon/wrench,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -83029,17 +77766,13 @@
},
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"daI" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"daJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/maintenance_hatch{
@@ -83051,32 +77784,25 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"daK" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"daL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"daM" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"daN" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/decal/cleanable/cobweb,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
@@ -83088,9 +77814,7 @@
/turf/open/floor/plating,
/area/crew_quarters/abandoned_gambling_den)
"daP" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/black,
/area/crew_quarters/abandoned_gambling_den)
@@ -83107,11 +77831,9 @@
/obj/item/clothing/gloves/color/fyellow,
/obj/item/weapon/storage/toolbox/electrical,
/obj/machinery/power/apc{
- cell_type = 5000;
dir = 1;
name = "Abandoned Gambling Den APC";
- pixel_x = 0;
- pixel_y = 25
+ pixel_y = 24
},
/turf/open/floor/plating,
/area/crew_quarters/abandoned_gambling_den)
@@ -83134,12 +77856,7 @@
/turf/open/floor/plating,
/area/crew_quarters/abandoned_gambling_den)
"daT" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plating,
/area/crew_quarters/abandoned_gambling_den)
"daV" = (
@@ -83170,7 +77887,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"daZ" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -83180,7 +77897,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"dba" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -83192,7 +77909,7 @@
dir = 8
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"dbb" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -83203,7 +77920,7 @@
dir = 8
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"dbc" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -83213,7 +77930,7 @@
dir = 8
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"dbd" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -83224,7 +77941,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"dbe" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -83234,7 +77951,7 @@
dir = 10
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"dbf" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -83245,7 +77962,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"dbg" = (
/obj/machinery/light/small,
/obj/machinery/camera{
@@ -83257,7 +77974,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dbh" = (
/obj/machinery/light/small,
/obj/machinery/camera{
@@ -83269,7 +77986,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dbi" = (
/obj/machinery/light/small,
/obj/machinery/camera{
@@ -83281,25 +77998,18 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dbj" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dbk" = (
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dbl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
@@ -83308,9 +78018,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dbm" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -83319,9 +78027,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dbn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -83339,9 +78045,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dbo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -83349,25 +78053,19 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dbp" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dbq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dbr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -83376,9 +78074,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dbs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -83391,9 +78087,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dbt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -83402,9 +78096,7 @@
icon_state = "whitepurple";
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dbu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -83418,9 +78110,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dbv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -83430,9 +78120,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dbw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -83444,18 +78132,14 @@
icon_state = "whitepurple";
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dbx" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dby" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
@@ -83476,7 +78160,7 @@
/obj/machinery/door/window/westleft,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"dbz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -83484,14 +78168,14 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/toxins/lab)
+/area/science/lab)
"dbA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 9
},
/turf/open/floor/plasteel/neutral,
-/area/toxins/lab)
+/area/science/lab)
"dbB" = (
/obj/structure/table,
/obj/item/weapon/clipboard,
@@ -83499,7 +78183,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 10
},
-/area/toxins/lab)
+/area/science/lab)
"dbC" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -83518,18 +78202,15 @@
dir = 6;
initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
},
-/area/toxins/lab)
+/area/science/lab)
"dbD" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/toxins/lab)
+/area/science/lab)
"dbE" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/whitepurple/corner,
-/area/toxins/lab)
+/area/science/lab)
"dbF" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -83538,7 +78219,7 @@
name = "Secondary Research and Development Shutter"
},
/turf/open/floor/plating,
-/area/toxins/lab)
+/area/science/lab)
"dbG" = (
/obj/structure/table/reinforced,
/obj/item/weapon/paper_bin,
@@ -83650,9 +78331,7 @@
icon_state = "whiteyellowcorner";
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dbS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -83661,9 +78340,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dbT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -83671,9 +78348,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dbU" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -26;
@@ -83683,18 +78358,14 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dbV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dbW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -83703,9 +78374,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dbX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -83715,9 +78384,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dbY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -83725,9 +78392,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dbZ" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -83738,9 +78403,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dca" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -83749,9 +78412,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dcb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -83764,25 +78425,19 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dcc" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dcd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dce" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -83791,25 +78446,19 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dcg" = (
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dch" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dci" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -83817,7 +78466,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dcj" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -83826,11 +78475,10 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dck" = (
/obj/machinery/shower{
dir = 4;
- icon_state = "shower";
name = "emergency shower"
},
/obj/structure/cable/white{
@@ -83839,39 +78487,29 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"dcl" = (
/turf/open/floor/plating,
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"dcm" = (
/obj/machinery/iv_drip{
density = 0
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"dcn" = (
/obj/structure/table/optable,
/obj/effect/decal/cleanable/blood/old,
/obj/effect/decal/cleanable/dirt,
/obj/item/weapon/surgical_drapes,
/turf/open/floor/plasteel/blue,
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"dco" = (
/obj/structure/frame/computer,
/obj/item/weapon/circuitboard/computer/operating,
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"dcp" = (
/obj/structure/chair{
dir = 8
@@ -83879,26 +78517,23 @@
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
pixel_x = 26;
- pixel_y = 0;
req_access_txt = "0";
use_power = 0
},
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"dcq" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dcr" = (
/obj/structure/grille,
/obj/structure/window/reinforced/tinted/fulltile,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dcs" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -84008,26 +78643,20 @@
/area/crew_quarters/abandoned_gambling_den)
"dcE" = (
/turf/closed/wall,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dcF" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable/white,
/obj/structure/barricade/wooden,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dcG" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/barricade/wooden,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dcH" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -84035,11 +78664,11 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"dcI" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall/r_wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcJ" = (
/obj/machinery/light{
icon_state = "tube1";
@@ -84048,51 +78677,39 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dcK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dcL" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plasteel/purple,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dcM" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/neutral,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dcN" = (
/obj/item/device/radio/beacon,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/purple,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dcO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dcP" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -84102,23 +78719,17 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dcQ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/purple,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dcR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
@@ -84126,9 +78737,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/purple,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dcS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
@@ -84136,16 +78745,12 @@
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/purple,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dcT" = (
/turf/open/floor/plasteel/whitepurple/side{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dcU" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
@@ -84161,12 +78766,12 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"dcV" = (
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/toxins/lab)
+/area/science/lab)
"dcW" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -84174,19 +78779,17 @@
/obj/effect/landmark/start/scientist,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/toxins/lab)
+/area/science/lab)
"dcX" = (
/obj/structure/chair/office/light{
icon_state = "officechair_white";
dir = 4
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/toxins/lab)
+/area/science/lab)
"dcY" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
@@ -84204,7 +78807,7 @@
/obj/machinery/door/window/eastright,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"dcZ" = (
/turf/open/floor/plasteel/purple,
/area/hallway/primary/aft)
@@ -84246,7 +78849,6 @@
department = "Chemistry Lab";
departmentType = 0;
name = "Chemistry RC";
- pixel_x = 0;
pixel_y = -64;
receive_ore_updates = 1
},
@@ -84276,51 +78878,39 @@
/turf/open/floor/plasteel/whiteyellow/side{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ddi" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/blue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ddj" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ddk" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/turf/open/floor/plasteel/blue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ddl" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ddm" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ddn" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -84332,18 +78922,14 @@
/obj/effect/landmark/lightsout,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ddo" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ddp" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -84353,9 +78939,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ddq" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -84364,31 +78948,24 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/blue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ddr" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dds" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ddt" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -84397,18 +78974,14 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/blue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ddu" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ddv" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -84417,31 +78990,24 @@
icon_state = "1-4"
},
/turf/open/floor/plasteel/blue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ddw" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/blue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ddx" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/blue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ddy" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -84449,9 +79015,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ddz" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -84464,9 +79028,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ddA" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -84475,7 +79037,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"ddB" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -84487,11 +79049,10 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"ddC" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12
},
/obj/effect/decal/cleanable/dirt,
@@ -84503,29 +79064,21 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"ddD" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"ddE" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"ddF" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"ddG" = (
/obj/structure/chair{
dir = 8
@@ -84535,20 +79088,18 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"ddH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"ddI" = (
/obj/effect/decal/cleanable/cobweb,
/obj/structure/dresser,
/turf/open/floor/wood,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"ddJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -84557,7 +79108,7 @@
/obj/item/clothing/under/owl,
/obj/item/clothing/mask/gas/owl_mask,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"ddK" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/table/wood,
@@ -84565,7 +79116,7 @@
/obj/item/weapon/restraints/handcuffs,
/obj/item/weapon/grenade/smokebomb,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"ddL" = (
/obj/machinery/vending/assist,
/obj/machinery/newscaster{
@@ -84659,25 +79210,14 @@
/turf/open/floor/plasteel/black,
/area/crew_quarters/abandoned_gambling_den)
"ddW" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"ddX" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"ddY" = (
/obj/structure/table/reinforced,
/obj/machinery/light/small{
@@ -84690,9 +79230,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"ddZ" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/toolbox/emergency{
@@ -84706,68 +79244,49 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dea" = (
/obj/structure/table/reinforced,
/obj/machinery/cell_charger,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"deb" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dec" = (
/obj/machinery/light/small{
dir = 1
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"ded" = (
/obj/structure/table,
/obj/item/weapon/folder/white,
/obj/item/weapon/pen,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dee" = (
/obj/structure/table,
/obj/item/device/flashlight/lamp,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"def" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"deg" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -84777,7 +79296,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"deh" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -84785,7 +79304,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"dei" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -84795,17 +79314,17 @@
/turf/open/floor/plasteel/neutral/side{
dir = 5
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"dej" = (
/turf/closed/wall/r_wall,
-/area/toxins/explab)
+/area/science/explab)
"del" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"dem" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/machinery/light{
@@ -84816,25 +79335,26 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"den" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"deo" = (
/obj/structure/cable/white{
d2 = 2;
icon_state = "0-2"
},
/obj/machinery/power/apc{
- cell_type = 5000;
dir = 1;
name = "Experimentation Lab APC";
- pixel_x = 0;
- pixel_y = 25
+ pixel_y = 24
},
/obj/machinery/camera{
c_tag = "Science - Experimentation Lab";
@@ -84844,7 +79364,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"dep" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/status_display{
@@ -84852,12 +79372,12 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"deq" = (
/obj/structure/closet/l3closet/scientist,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"der" = (
/obj/structure/closet/bombcloset,
/obj/machinery/light{
@@ -84865,17 +79385,17 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"des" = (
/obj/structure/table/reinforced,
/obj/item/clothing/suit/radiation,
/obj/item/clothing/head/radiation,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"det" = (
/turf/closed/wall,
-/area/toxins/explab)
+/area/science/explab)
"deu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -84884,18 +79404,14 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dev" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
dir = 8
},
/turf/open/floor/plasteel/whitepurple/side,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dew" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -84903,27 +79419,21 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dex" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
dir = 8
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dey" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/whitepurple/side,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dez" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -84931,17 +79441,13 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"deA" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"deB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -84951,47 +79457,34 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"deC" = (
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"deD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/purple,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"deE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"deF" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"deG" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -85003,14 +79496,13 @@
dir = 4
},
/turf/open/floor/plating,
-/area/toxins/lab)
+/area/science/lab)
"deH" = (
/obj/structure/table/reinforced,
/obj/machinery/light,
/obj/machinery/cell_charger,
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -26
},
/obj/machinery/light_switch{
@@ -85024,7 +79516,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"deI" = (
/obj/structure/table/reinforced,
/obj/item/stack/packageWrap,
@@ -85036,7 +79528,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"deJ" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/toolbox/mechanical{
@@ -85056,7 +79548,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"deK" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -85066,7 +79558,7 @@
dir = 9
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/toxins/lab)
+/area/science/lab)
"deL" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder/white,
@@ -85080,7 +79572,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"deM" = (
/obj/structure/table/reinforced,
/obj/machinery/light,
@@ -85104,22 +79596,16 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"deN" = (
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
+ icon_state = "plant-21"
},
/turf/open/floor/plasteel/purple,
/area/hallway/primary/aft)
"deO" = (
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
+ icon_state = "plant-21"
},
/turf/open/floor/plasteel/orange,
/area/hallway/primary/aft)
@@ -85158,7 +79644,6 @@
/obj/item/weapon/hand_labeler,
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -85172,7 +79657,6 @@
},
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = -26
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -85222,17 +79706,13 @@
icon_state = "whiteyellowcorner";
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"deX" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"deY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -85240,9 +79720,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"deZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -85256,9 +79734,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dfa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -85267,9 +79743,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dfb" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -85279,15 +79753,11 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dfc" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dfd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -85298,25 +79768,19 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dfe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dff" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dfg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -85325,17 +79789,13 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dfh" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dfi" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -85344,9 +79804,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dfj" = (
/obj/structure/sign/bluecross_2{
pixel_x = 32;
@@ -85357,41 +79815,31 @@
dir = 4
},
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dfl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dfm" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dfn" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
dir = 1
},
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dfo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dfp" = (
/obj/structure/rack,
/obj/item/roller,
@@ -85403,7 +79851,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dfq" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -85413,32 +79861,25 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dfr" = (
/obj/structure/closet/secure_closet/medical2,
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white,
/obj/machinery/power/apc{
- cell_type = 5000;
dir = 2;
name = "Abandoned Medical Lab APC";
pixel_x = 1;
pixel_y = -24
},
/turf/open/floor/plating,
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"dfs" = (
/obj/machinery/light/small,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"dft" = (
/obj/structure/table/reinforced,
/obj/machinery/status_display{
@@ -85449,9 +79890,7 @@
/obj/item/clothing/suit/apron/surgical,
/obj/item/clothing/mask/surgical,
/turf/open/floor/plasteel/vault,
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"dfu" = (
/obj/structure/table/reinforced,
/obj/machinery/newscaster{
@@ -85461,9 +79900,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"dfv" = (
/obj/structure/table/reinforced,
/obj/machinery/status_display{
@@ -85477,9 +79914,7 @@
/obj/item/weapon/reagent_containers/syringe,
/obj/item/clothing/neck/stethoscope,
/turf/open/floor/plasteel/vault,
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"dfw" = (
/obj/structure/table/reinforced,
/obj/machinery/light/small,
@@ -85487,25 +79922,20 @@
/obj/item/weapon/gun/syringe,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/vault,
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"dfx" = (
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
+ icon_state = "plant-21"
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/medical/medbay3{
- name = "Abandoned Medbay"
- })
+/area/medical/abandoned)
"dfy" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/space_heater,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dfz" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -85514,7 +79944,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dfA" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/maintenance_hatch{
@@ -85528,7 +79958,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dfB" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -85540,7 +79970,7 @@
/turf/open/floor/wood{
icon_state = "wood-broken2"
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dfC" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/chair/office/dark{
@@ -85548,13 +79978,13 @@
},
/obj/effect/landmark/revenantspawn,
/turf/open/floor/wood,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dfD" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/table/wood,
/obj/item/device/modular_computer/tablet/preset/cheap,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dfE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
@@ -85648,7 +80078,6 @@
"dfM" = (
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/open/floor/plasteel/black,
@@ -85663,23 +80092,17 @@
/obj/item/device/assembly/timer,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dfO" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dfP" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dfQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -85687,35 +80110,27 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dfR" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dfS" = (
/obj/structure/chair/office/light{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dfT" = (
/obj/structure/table,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dfU" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -85723,7 +80138,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"dfV" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -85734,7 +80149,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"dfW" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -85744,7 +80159,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"dfX" = (
/obj/structure/table/reinforced,
/obj/machinery/newscaster{
@@ -85755,7 +80170,7 @@
/obj/item/clothing/mask/gas,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"dfY" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 5
@@ -85763,7 +80178,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/toxins/explab)
+/area/science/explab)
"dfZ" = (
/obj/machinery/atmospherics/components/trinary/filter{
density = 0;
@@ -85773,7 +80188,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/toxins/explab)
+/area/science/explab)
"dga" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 9
@@ -85781,7 +80196,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/toxins/explab)
+/area/science/explab)
"dgb" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -85790,7 +80205,7 @@
icon_state = "whitepurple";
dir = 1
},
-/area/toxins/explab)
+/area/science/explab)
"dgc" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -85799,20 +80214,18 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/toxins/explab)
+/area/science/explab)
"dgd" = (
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/toxins/explab)
+/area/science/explab)
"dgf" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dgg" = (
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/airlock/research{
@@ -85823,15 +80236,11 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dgh" = (
/obj/structure/sign/nosmoking_2,
/turf/closed/wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dgi" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -85839,9 +80248,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"dgj" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -85859,9 +80266,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"dgk" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -85869,16 +80274,14 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"dgl" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall/r_wall,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dgm" = (
/turf/closed/wall/r_wall,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dgn" = (
/obj/structure/cable/white{
d2 = 2;
@@ -85891,11 +80294,11 @@
name = "Research Director's Shutters"
},
/turf/open/floor/plating,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dgo" = (
/obj/structure/sign/securearea,
/turf/closed/wall/r_wall,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dgp" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -85907,7 +80310,7 @@
name = "Research Director's Shutters"
},
/turf/open/floor/plating,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dgq" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -85922,7 +80325,7 @@
name = "Research Director's Shutters"
},
/turf/open/floor/plating,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dgr" = (
/obj/structure/cable/white{
d2 = 2;
@@ -85938,35 +80341,31 @@
name = "Research Director's Shutters"
},
/turf/open/floor/plating,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dgs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dgt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/extinguisher_cabinet{
pixel_x = 26
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dgu" = (
/turf/closed/wall,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dgv" = (
/turf/closed/wall/r_wall,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dgw" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dgx" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
@@ -85981,7 +80380,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dgy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
@@ -86003,9 +80402,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
@@ -86030,16 +80427,16 @@
/area/hallway/primary/aft)
"dgD" = (
/turf/closed/wall,
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"dgE" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"dgF" = (
/obj/structure/sign/bluecross_2,
/turf/closed/wall,
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"dgG" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -86050,9 +80447,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dgH" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -86062,9 +80457,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dgI" = (
/turf/closed/wall,
/area/medical/surgery)
@@ -86106,7 +80499,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dgO" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -86116,7 +80509,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dgP" = (
/turf/closed/wall,
/area/hallway/secondary/construction)
@@ -86181,25 +80574,19 @@
/obj/item/weapon/stock_parts/matter_bin,
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dgY" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dgZ" = (
/obj/structure/frame/machine,
/obj/item/stack/cable_coil/white,
@@ -86208,18 +80595,14 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dha" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dhb" = (
/obj/structure/frame/machine,
/obj/effect/decal/cleanable/dirt,
@@ -86227,121 +80610,101 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dhc" = (
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dhd" = (
/obj/effect/decal/cleanable/oil,
/turf/open/floor/plasteel/neutral,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dhe" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dhf" = (
/obj/structure/rack,
/obj/item/weapon/storage/toolbox/electrical,
/obj/item/device/multitool,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dhg" = (
/obj/machinery/light/small{
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"dhh" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/turf_decal/bot,
+/obj/machinery/light_switch{
+ pixel_x = -26
+ },
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"dhi" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/toxins/explab)
+/area/science/explab)
"dhj" = (
/turf/open/floor/plasteel/neutral,
-/area/toxins/explab)
+/area/science/explab)
"dhk" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/toxins/explab)
+/area/science/explab)
"dhl" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plasteel/neutral,
-/area/toxins/explab)
+/area/science/explab)
"dhm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/toxins/explab)
+/area/science/explab)
"dhn" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"dho" = (
/turf/open/floor/plasteel/whitepurple/side{
dir = 4
},
-/area/toxins/explab)
+/area/science/explab)
"dhp" = (
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"dhq" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dhr" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -86351,17 +80714,13 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dhs" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dht" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -86371,9 +80730,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dhu" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -86387,9 +80744,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dhv" = (
/obj/structure/table/reinforced,
/obj/item/weapon/gun/energy/laser/practice{
@@ -86416,9 +80771,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"dhw" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -86434,9 +80787,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"dhx" = (
/obj/item/stack/rods{
amount = 50
@@ -86465,25 +80816,21 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"dhy" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder/white,
/obj/item/device/paicard,
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/structure/extinguisher_cabinet{
pixel_y = 32
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dhz" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -86492,7 +80839,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dhA" = (
/obj/structure/displaycase/labcage,
/obj/machinery/light{
@@ -86500,26 +80847,24 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dhB" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dhC" = (
/obj/structure/table,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dhD" = (
/obj/structure/cable/white,
/obj/structure/cable/white{
@@ -86533,13 +80878,11 @@
name = "Research Director's Shutters"
},
/turf/open/floor/plating,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dhE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dhF" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/cell/high,
@@ -86551,18 +80894,15 @@
},
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = 26
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dhG" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -86571,7 +80911,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dhH" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -86580,7 +80920,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dhI" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -86593,7 +80933,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dhJ" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -86603,7 +80943,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dhK" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -86612,14 +80952,13 @@
cell_type = 10000;
dir = 1;
name = "Mech Bay APC";
- pixel_x = 0;
pixel_y = 28
},
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dhL" = (
/obj/structure/table,
/obj/item/weapon/paper_bin,
@@ -86633,7 +80972,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dhM" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/rack,
@@ -86675,8 +81014,7 @@
"dhR" = (
/obj/machinery/clonepod,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/machinery/status_display{
pixel_x = -32
@@ -86684,7 +81022,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"dhS" = (
/obj/machinery/computer/cloning,
/obj/machinery/light{
@@ -86697,7 +81035,7 @@
icon_state = "whitepurplecorner";
dir = 1
},
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"dhT" = (
/obj/machinery/dna_scannernew,
/obj/machinery/airalarm{
@@ -86706,17 +81044,14 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"dhU" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/whitepurple/corner{
icon_state = "whitepurplecorner";
dir = 1
},
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"dhV" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -86725,7 +81060,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"dhW" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/box/bodybags{
@@ -86737,7 +81072,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"dhX" = (
/obj/structure/table/glass,
/obj/structure/cable/white{
@@ -86747,23 +81082,20 @@
cell_type = 5000;
dir = 1;
name = "Cloning Lab APC";
- pixel_x = 0;
- pixel_y = 25
+ pixel_y = 24
},
/obj/item/weapon/folder/white,
/obj/item/weapon/book/manual/medical_cloning,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"dhY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dhZ" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -86774,36 +81106,25 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dia" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
dir = 4
},
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dib" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dic" = (
/obj/machinery/atmospherics/components/unary/cryo_cell,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"did" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
@@ -86819,18 +81140,14 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"die" = (
/obj/machinery/atmospherics/components/unary/cryo_cell,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dif" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -86839,9 +81156,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dig" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -86851,20 +81166,13 @@
on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dih" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dii" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/vault,
/area/medical/surgery)
"dij" = (
@@ -86889,8 +81197,7 @@
"din" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
@@ -86926,7 +81233,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dis" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -86936,7 +81243,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dit" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
@@ -86996,7 +81303,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"diB" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -87006,7 +81313,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"diC" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -87016,7 +81323,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"diD" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -87026,14 +81333,14 @@
on = 1
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"diE" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"diG" = (
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/abandoned_gambling_den)
@@ -87076,17 +81383,14 @@
},
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"diN" = (
/obj/structure/frame/computer,
/obj/effect/decal/cleanable/dirt,
@@ -87094,15 +81398,11 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"diO" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"diP" = (
/obj/structure/frame/machine,
/obj/item/stack/cable_coil/white,
@@ -87111,17 +81411,13 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"diQ" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"diR" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -87130,23 +81426,17 @@
},
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plasteel/neutral,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"diS" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"diT" = (
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"diU" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/button/door{
@@ -87155,9 +81445,7 @@
pixel_x = 26
},
/turf/open/floor/plating,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"diV" = (
/obj/machinery/door/poddoor/preopen{
id = "maintrobotics";
@@ -87169,7 +81457,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"diW" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -87177,7 +81465,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"diX" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -87192,7 +81480,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"diY" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -87209,7 +81497,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"diZ" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -87219,7 +81507,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"dja" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -87231,7 +81519,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/toxins/explab)
+/area/science/explab)
"djb" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -87246,7 +81534,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/toxins/explab)
+/area/science/explab)
"djc" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -87260,7 +81548,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/toxins/explab)
+/area/science/explab)
"djd" = (
/obj/structure/table/reinforced,
/obj/structure/cable/white{
@@ -87281,7 +81569,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"dje" = (
/obj/structure/chair/office/light,
/obj/effect/landmark/start/scientist,
@@ -87293,7 +81581,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"djf" = (
/obj/structure/table/reinforced,
/obj/item/weapon/clipboard,
@@ -87310,7 +81598,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"djg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -87319,7 +81607,7 @@
dir = 4
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/toxins/explab)
+/area/science/explab)
"djh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -87329,7 +81617,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"dji" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
@@ -87346,7 +81634,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"djj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -87356,9 +81644,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"djk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -87371,9 +81657,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"djl" = (
/obj/machinery/holopad,
/obj/effect/landmark/lightsout,
@@ -87385,9 +81669,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"djm" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/disposalpipe/segment{
@@ -87397,9 +81679,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"djn" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
@@ -87416,9 +81696,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"djo" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -87431,9 +81709,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"djp" = (
/obj/machinery/holopad,
/obj/structure/cable/white{
@@ -87448,9 +81724,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"djq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
@@ -87463,9 +81737,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"djr" = (
/obj/structure/cable/white{
d2 = 2;
@@ -87481,7 +81753,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"djs" = (
/obj/structure/table/reinforced,
/obj/item/device/aicard,
@@ -87494,7 +81766,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"djt" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -87506,14 +81778,14 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dju" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"djv" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -87527,7 +81799,7 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"djw" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/effect/decal/cleanable/dirt,
@@ -87537,7 +81809,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"djx" = (
/obj/structure/cable/white,
/obj/structure/cable/white{
@@ -87555,7 +81827,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"djy" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -87564,9 +81836,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"djz" = (
/obj/structure/disposalpipe/sortjunction{
dir = 1;
@@ -87575,9 +81845,7 @@
sortType = 14
},
/turf/open/floor/plasteel/neutral,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"djA" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -87588,9 +81856,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"djB" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -87598,7 +81864,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"djC" = (
/obj/machinery/recharge_station,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -87606,7 +81872,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"djD" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -87620,7 +81886,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"djE" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -87628,15 +81894,15 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"djF" = (
/obj/machinery/computer/mech_bay_power_console,
/turf/open/floor/circuit,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"djG" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/mech_bay_recharge_floor,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"djH" = (
/obj/machinery/mech_bay_recharge_port{
icon_state = "recharge_port";
@@ -87646,19 +81912,19 @@
dir = 5
},
/turf/open/floor/plating,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"djI" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"djJ" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"djK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
@@ -87741,34 +82007,33 @@
},
/obj/machinery/shower{
dir = 4;
- icon_state = "shower";
name = "emergency shower"
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"djT" = (
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"djU" = (
/turf/open/floor/plasteel/neutral,
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"djV" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
dir = 8
},
/turf/open/floor/plasteel/neutral,
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"djW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"djX" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -87779,7 +82044,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"djY" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_medical{
@@ -87797,7 +82062,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"djZ" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -87810,9 +82075,7 @@
icon_state = "whitepurplecorner";
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dka" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -87825,14 +82088,10 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/blue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dkb" = (
/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dkc" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 5
@@ -87841,18 +82100,14 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dkd" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 1
},
/obj/effect/landmark/start/medical_doctor,
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dke" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 9
@@ -87861,18 +82116,14 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dkf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/extinguisher_cabinet{
pixel_x = 26
},
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dkg" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/vault{
@@ -87908,7 +82159,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dkk" = (
/obj/structure/rack,
/obj/machinery/light/small{
@@ -87936,7 +82187,6 @@
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/open/floor/plasteel/yellow/corner{
@@ -87947,12 +82197,12 @@
/obj/effect/landmark/blobstart,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dkp" = (
/obj/structure/closet/emcloset,
/obj/item/clothing/mask/breath,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dkq" = (
/obj/structure/reagent_dispensers/watertank,
/obj/effect/decal/cleanable/dirt,
@@ -87960,12 +82210,12 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dkr" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dks" = (
/obj/structure/table/wood/poker,
/obj/item/clothing/glasses/sunglasses/big,
@@ -87985,7 +82235,6 @@
/obj/structure/table/wood/poker,
/obj/item/toy/cards/deck/syndicate{
icon_state = "deck_syndicate_full";
- pixel_x = 0;
pixel_y = 6
},
/turf/open/floor/plasteel/grimy,
@@ -88045,9 +82294,7 @@
/obj/item/weapon/stock_parts/console_screen,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dkC" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -88055,21 +82302,15 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dkD" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dkE" = (
/turf/open/floor/plating,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dkF" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -88077,9 +82318,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dkG" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -88090,9 +82329,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dkH" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -88105,9 +82342,7 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dkI" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -88118,9 +82353,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dkJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -88139,9 +82372,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dkK" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/poddoor/preopen{
@@ -88161,7 +82392,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"dkL" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -88174,7 +82405,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"dkM" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -88189,14 +82420,14 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"dkN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
dir = 8
},
/turf/closed/wall/r_wall,
-/area/toxins/explab)
+/area/science/explab)
"dkO" = (
/obj/structure/table,
/obj/item/stack/medical/gauze,
@@ -88208,12 +82439,12 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"dkP" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"dkQ" = (
/obj/machinery/light,
/obj/machinery/disposal/bin,
@@ -88225,7 +82456,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"dkR" = (
/obj/structure/table/reinforced,
/obj/item/clothing/gloves/color/white,
@@ -88239,7 +82470,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"dkS" = (
/obj/structure/table/reinforced,
/obj/item/weapon/book/manual/experimentor,
@@ -88251,7 +82482,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"dkT" = (
/obj/machinery/computer/rdconsole/experiment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -88259,7 +82490,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"dkU" = (
/obj/structure/table/reinforced,
/obj/item/stack/packageWrap,
@@ -88272,7 +82503,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"dkV" = (
/obj/structure/table/reinforced,
/obj/machinery/light,
@@ -88285,27 +82516,22 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"dkW" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"dkX" = (
/obj/structure/sign/securearea,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
-/area/toxins/explab)
+/area/science/explab)
"dkY" = (
/obj/machinery/light/small,
/obj/structure/closet/firecloset,
@@ -88314,27 +82540,21 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dkZ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dla" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dlb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -88343,23 +82563,18 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dlc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dld" = (
/obj/structure/table/reinforced,
/obj/machinery/recharger,
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/light_switch{
@@ -88372,9 +82587,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"dle" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -88384,14 +82597,11 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"dlf" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -88399,9 +82609,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"dlg" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -88419,7 +82627,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dlh" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -88430,7 +82638,7 @@
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dli" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -88441,7 +82649,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dlj" = (
/obj/structure/cable/white{
icon_state = "2-8"
@@ -88457,7 +82665,7 @@
icon_state = "whitepurple";
dir = 1
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dlk" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -88473,7 +82681,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dll" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -88486,7 +82694,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dlm" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -88510,7 +82718,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dln" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -88525,9 +82733,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dlo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -88540,9 +82746,7 @@
icon_state = "2-8"
},
/turf/open/floor/plasteel/purple,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dlp" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -88550,9 +82754,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dlq" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light_switch{
@@ -88560,7 +82762,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dlr" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -88570,25 +82772,25 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dls" = (
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dlt" = (
/turf/open/floor/circuit,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dlu" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dlv" = (
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dlw" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/poddoor/shutters{
@@ -88605,7 +82807,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dlx" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -88620,8 +82822,7 @@
"dly" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
/area/hallway/primary/aft)
@@ -88668,46 +82869,45 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"dlF" = (
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"dlG" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"dlH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"dlI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"dlJ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
dir = 1
},
/turf/open/floor/plasteel/neutral,
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"dlK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"dlL" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_medical{
@@ -88722,7 +82922,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"dlM" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -88731,24 +82931,18 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dlN" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dlO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dlP" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 6
@@ -88757,15 +82951,11 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dlQ" = (
/obj/machinery/atmospherics/pipe/manifold4w/general/visible,
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dlR" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 10
@@ -88774,9 +82964,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dlS" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -88857,34 +83045,22 @@
/obj/structure/filingcabinet/chestdrawer,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dmd" = (
/obj/machinery/light/small,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dme" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dmf" = (
/obj/structure/cable/white,
/obj/machinery/power/apc{
- cell_type = 5000;
dir = 2;
name = "Abandoned Research Lab APC";
pixel_x = 1;
@@ -88892,32 +83068,19 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dmg" = (
/obj/machinery/light/small,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dmh" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dmi" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light_switch{
@@ -88925,9 +83088,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dmj" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/poddoor/preopen{
@@ -88940,18 +83101,18 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"dmk" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"dml" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
-/area/toxins/explab)
+/area/science/explab)
"dmm" = (
/obj/machinery/door/firedoor/heavy,
/obj/effect/decal/cleanable/dirt,
@@ -88968,43 +83129,39 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/toxins/explab)
+/area/science/explab)
"dmn" = (
/obj/structure/sign/securearea,
/turf/closed/wall/r_wall,
-/area/toxins/explab)
+/area/science/explab)
"dmo" = (
/obj/machinery/status_display,
/turf/closed/wall/r_wall,
-/area/toxins/explab)
+/area/science/explab)
"dmp" = (
/obj/machinery/door/firedoor/heavy,
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/toxins/explab)
+/area/science/explab)
"dmq" = (
/obj/machinery/door/firedoor/heavy,
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/toxins/explab)
+/area/science/explab)
"dmr" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall/r_wall,
-/area/toxins/explab)
+/area/science/explab)
"dms" = (
/turf/closed/wall/r_wall,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dmt" = (
/obj/structure/sign/fire,
/turf/closed/wall/r_wall,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dmu" = (
/obj/machinery/door/firedoor/heavy,
/obj/structure/grille,
@@ -89014,9 +83171,7 @@
name = "Toxins Lab Shutters"
},
/turf/open/floor/plating,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dmv" = (
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/airlock/research{
@@ -89031,15 +83186,11 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dmw" = (
/obj/structure/sign/biohazard,
/turf/closed/wall/r_wall,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dmx" = (
/obj/structure/window/reinforced{
dir = 1
@@ -89047,9 +83198,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"dmy" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -89058,40 +83207,32 @@
name = "Shooting Range"
},
/turf/open/floor/plating,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"dmz" = (
/obj/structure/window/reinforced{
dir = 1
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"dmA" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
/obj/machinery/power/apc{
dir = 8;
name = "Research Director's Office APC";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/structure/cable/white,
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/bot,
+/obj/item/weapon/twohanded/required/kirbyplants/dead,
/turf/open/floor/plasteel,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dmB" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dmC" = (
/obj/structure/chair/office/light,
/obj/structure/cable/white{
@@ -89099,14 +83240,14 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dmD" = (
/obj/structure/chair/office/light,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dmE" = (
/obj/structure/table,
/obj/item/weapon/cartridge/signal/toxins{
@@ -89120,9 +83261,7 @@
},
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/obj/machinery/camera{
c_tag = "Science - Research Director's Office";
@@ -89132,7 +83271,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dmF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/light{
@@ -89142,25 +83281,19 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dmG" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plasteel/neutral,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dmH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dmI" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
@@ -89171,7 +83304,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dmJ" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -89180,24 +83313,24 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dmK" = (
/turf/open/floor/plasteel/neutral,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dmL" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dmM" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/start/roboticist,
/turf/open/floor/plasteel/neutral,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dmN" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dmO" = (
/obj/machinery/door/poddoor/shutters{
id = "mechbay";
@@ -89207,7 +83340,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dmP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
@@ -89221,7 +83354,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/open/floor/plasteel/neutral/corner,
@@ -89249,51 +83381,46 @@
/area/hallway/primary/aft)
"dmV" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"dmW" = (
/obj/structure/closet/secure_closet/personal/patient,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"dmX" = (
/obj/structure/closet/crate/freezer/surplus_limbs,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"dmY" = (
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"dmZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"dna" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-18"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"dnb" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
pixel_x = 7;
pixel_y = -26
},
@@ -89316,25 +83443,21 @@
name = "medbay camera"
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"dnc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whitepurple/corner{
icon_state = "whitepurplecorner";
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dnd" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/blue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dne" = (
/obj/structure/table/glass,
/obj/item/weapon/folder/white,
@@ -89342,9 +83465,7 @@
/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,
/obj/item/weapon/reagent_containers/dropper,
/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dnf" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
@@ -89354,18 +83475,14 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dng" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
dir = 1
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dnh" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
@@ -89375,9 +83492,7 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dni" = (
/obj/structure/table/glass,
/obj/item/weapon/wrench/medical,
@@ -89388,18 +83503,14 @@
name = "medbay camera"
},
/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dnj" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
dir = 8
},
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dnk" = (
/obj/structure/sign/nosmoking_2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -89513,7 +83624,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dnv" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/yellow/corner{
@@ -89557,9 +83668,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dnC" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/maintenance_hatch{
@@ -89571,68 +83680,57 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dnD" = (
/obj/structure/girder,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"dnE" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/vault,
-/area/toxins/explab)
+/area/science/explab)
"dnF" = (
/turf/open/floor/plasteel/vault,
-/area/toxins/explab)
+/area/science/explab)
"dnG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/vault,
-/area/toxins/explab)
+/area/science/explab)
"dnH" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/vault,
-/area/toxins/explab)
+/area/science/explab)
"dnI" = (
/obj/structure/closet/bombcloset,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dnJ" = (
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dnK" = (
/turf/open/floor/plasteel/whitepurple/side{
icon_state = "whitepurple";
dir = 1
},
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dnL" = (
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dnM" = (
/obj/structure/closet/bombcloset,
/obj/machinery/light_switch{
@@ -89643,26 +83741,20 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dnN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plating,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"dnO" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"dnP" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -89670,9 +83762,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"dnQ" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -89683,7 +83773,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dnR" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -89691,7 +83781,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dnS" = (
/obj/structure/table/reinforced,
/obj/structure/cable/white{
@@ -89730,7 +83820,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dnT" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder/white,
@@ -89739,7 +83829,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 4
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dnU" = (
/obj/machinery/computer/card/minor/rd,
/obj/machinery/ai_status_display{
@@ -89747,7 +83837,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dnV" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -89758,9 +83848,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/purple,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dnW" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/status_display{
@@ -89768,21 +83856,20 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dnX" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/circuit/green,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dnY" = (
/turf/open/floor/circuit/green,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dnZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/primary/aft)
@@ -89849,16 +83936,13 @@
/obj/machinery/power/apc{
dir = 8;
name = "Medbay APC";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"doi" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -89868,25 +83952,21 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"doj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/light{
dir = 4
},
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dok" = (
/obj/structure/sign/bluecross_2,
/turf/closed/wall/r_wall,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dol" = (
/turf/closed/wall/r_wall,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dom" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -89895,7 +83975,7 @@
name = "CMO Office Shutters"
},
/turf/open/floor/plating,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"don" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/light{
@@ -89905,9 +83985,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"doo" = (
/obj/structure/bed/roller,
/obj/machinery/iv_drip,
@@ -89918,8 +83996,7 @@
"dop" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
/area/medical/surgery)
@@ -89943,8 +84020,7 @@
"dor" = (
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
@@ -89964,15 +84040,13 @@
"dou" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/blue,
/area/medical/surgery)
"dov" = (
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/structure/mirror{
@@ -89996,7 +84070,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dox" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -90007,7 +84081,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"doy" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/maintenance_hatch{
@@ -90076,7 +84150,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"doG" = (
/obj/structure/cable/white,
/obj/structure/cable/white{
@@ -90137,47 +84211,32 @@
/obj/item/weapon/hand_labeler,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"doM" = (
/obj/machinery/light/small{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"doN" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"doO" = (
/obj/structure/table/reinforced,
/obj/item/device/mmi,
/obj/item/device/assembly/prox_sensor,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"doP" = (
/obj/structure/frame/machine,
/obj/item/stack/cable_coil/white,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"doQ" = (
/obj/structure/rack,
/obj/item/weapon/book/manual/robotics_cyborgs,
@@ -90186,9 +84245,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"doR" = (
/obj/machinery/mecha_part_fabricator,
/obj/machinery/light/small{
@@ -90196,9 +84253,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"doS" = (
/obj/structure/table/reinforced,
/obj/item/weapon/stock_parts/console_screen,
@@ -90206,9 +84261,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"doT" = (
/obj/structure/table/reinforced,
/obj/item/stack/sheet/metal{
@@ -90220,16 +84273,14 @@
/obj/item/device/assembly/flash/handheld,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"doU" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"doV" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -90239,7 +84290,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"doW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -90248,17 +84299,16 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/toxins/explab)
+/area/science/explab)
"doX" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/toxins/explab)
+/area/science/explab)
"doY" = (
/mob/living/simple_animal/pet/dog/pug{
name = "Swanson"
@@ -90266,25 +84316,25 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/toxins/explab)
+/area/science/explab)
"doZ" = (
/obj/effect/landmark/revenantspawn,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/toxins/explab)
+/area/science/explab)
"dpa" = (
/obj/machinery/r_n_d/experimentor,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/toxins/explab)
+/area/science/explab)
"dpb" = (
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/toxins/explab)
+/area/science/explab)
"dpc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
@@ -90293,7 +84343,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/toxins/explab)
+/area/science/explab)
"dpd" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -90303,29 +84353,24 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/toxins/explab)
+/area/science/explab)
"dpe" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/toxins/explab)
+/area/science/explab)
"dpf" = (
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dpg" = (
/turf/open/floor/plasteel/neutral,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dph" = (
/obj/item/device/radio/intercom{
name = "Station Intercom";
@@ -90334,9 +84379,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dpi" = (
/obj/machinery/light{
icon_state = "tube1";
@@ -90347,9 +84390,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"dpj" = (
/obj/machinery/light{
icon_state = "tube1";
@@ -90358,9 +84399,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"dpk" = (
/obj/structure/table/reinforced,
/obj/item/weapon/clipboard,
@@ -90371,12 +84410,11 @@
departmentType = 5;
name = "Research Director's RC";
pixel_x = -32;
- pixel_y = 0;
receive_ore_updates = 1
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dpl" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -90385,7 +84423,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dpm" = (
/obj/machinery/computer/aifixer,
/obj/structure/cable/white{
@@ -90399,7 +84437,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dpn" = (
/obj/structure/chair/office/light{
dir = 1
@@ -90410,7 +84448,7 @@
/obj/effect/landmark/start/research_director,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whitepurple/corner,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dpo" = (
/obj/machinery/computer/mecha,
/obj/structure/cable/white{
@@ -90418,7 +84456,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dpp" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -90430,7 +84468,7 @@
name = "Research Director's Shutters"
},
/turf/open/floor/plating,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dpq" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -90439,9 +84477,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dpr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -90452,9 +84488,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/neutral,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dps" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -90463,9 +84497,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dpt" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -90474,7 +84506,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dpu" = (
/obj/machinery/recharge_station,
/obj/effect/decal/cleanable/dirt,
@@ -90484,7 +84516,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dpv" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -90498,20 +84530,19 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dpw" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dpx" = (
/obj/machinery/computer/mech_bay_power_console,
/turf/open/floor/circuit/green,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dpy" = (
/obj/machinery/mech_bay_recharge_port{
icon_state = "recharge_port";
@@ -90521,12 +84552,11 @@
dir = 6
},
/turf/open/floor/plating,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dpz" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
pixel_x = 24;
pixel_y = -26
},
@@ -90536,7 +84566,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dpA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
@@ -90551,14 +84581,10 @@
/turf/open/floor/plasteel/purple/corner,
/area/hallway/primary/aft)
"dpC" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
@@ -90604,7 +84630,6 @@
/obj/structure/table/reinforced,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = 26
},
/obj/item/clothing/gloves/color/latex,
@@ -90634,10 +84659,7 @@
/turf/open/floor/plasteel,
/area/medical/genetics)
"dpL" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/firealarm{
pixel_x = -26;
pixel_y = 26
@@ -90676,8 +84698,7 @@
layer = 2.9
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/end{
@@ -90703,9 +84724,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dpR" = (
/obj/structure/cable/white{
icon_state = "0-2"
@@ -90717,7 +84736,7 @@
name = "CMO Office Shutters"
},
/turf/open/floor/plating,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dpS" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/firealarm{
@@ -90726,7 +84745,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dpT" = (
/obj/structure/table/glass,
/obj/item/weapon/folder/blue,
@@ -90737,37 +84756,35 @@
pixel_x = 3
},
/obj/item/weapon/cartridge/chemistry{
- pixel_x = 0;
pixel_y = 6
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dpU" = (
/obj/structure/table/glass,
/obj/item/weapon/folder/white,
/obj/item/device/flashlight/pen,
/obj/item/clothing/neck/stethoscope,
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dpV" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/firstaid/regular,
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dpW" = (
/obj/structure/table/glass,
/obj/item/weapon/folder/blue,
/obj/item/clothing/glasses/hud/health,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = 26
},
/turf/open/floor/plasteel/neutral/side{
dir = 8;
heat_capacity = 1e+006
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dpX" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -90779,9 +84796,7 @@
dir = 4
},
/turf/open/floor/plasteel/blue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dpY" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -90791,9 +84806,7 @@
dir = 4
},
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dpZ" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -90945,7 +84958,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dql" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -90955,7 +84968,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dqm" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/yellow/corner{
@@ -90983,7 +84996,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dqq" = (
/obj/structure/rack,
/obj/effect/decal/cleanable/dirt,
@@ -90995,7 +85008,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dqr" = (
/obj/machinery/light/small{
dir = 1
@@ -91007,13 +85020,13 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dqs" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dqt" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
@@ -91045,9 +85058,7 @@
},
/area/crew_quarters/abandoned_gambling_den)
"dqw" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/black,
/area/crew_quarters/abandoned_gambling_den)
"dqx" = (
@@ -91056,9 +85067,7 @@
/obj/item/weapon/stock_parts/cell/high,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dqy" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -91066,18 +85075,14 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dqz" = (
/obj/structure/table/reinforced,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dqA" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -91087,19 +85092,19 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"dqB" = (
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/toxins/explab)
+/area/science/explab)
"dqC" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/toxins/explab)
+/area/science/explab)
"dqD" = (
/obj/machinery/camera{
c_tag = "Science - Experimentor";
@@ -91110,7 +85115,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/toxins/explab)
+/area/science/explab)
"dqE" = (
/obj/machinery/portable_atmospherics/scrubber,
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
@@ -91126,9 +85131,7 @@
icon_state = "escape";
dir = 8
},
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dqF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -91137,15 +85140,11 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dqG" = (
/obj/machinery/atmospherics/components/unary/vent_pump,
/turf/open/floor/plasteel/neutral,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dqH" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
icon_state = "intact";
@@ -91154,9 +85153,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dqI" = (
/obj/machinery/atmospherics/components/unary/thermomachine/heater{
icon_state = "heater";
@@ -91167,9 +85164,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dqJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/camera{
@@ -91182,9 +85177,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"dqK" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -91193,18 +85186,14 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"dqL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plating,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"dqM" = (
/obj/structure/table/reinforced,
/obj/machinery/light,
@@ -91223,7 +85212,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dqN" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -91231,7 +85220,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dqO" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -91241,11 +85230,11 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whitepurple/side,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dqP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whitepurple/corner,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dqQ" = (
/obj/machinery/computer/robotics,
/obj/machinery/light,
@@ -91262,16 +85251,14 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dqR" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plasteel/purple,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dqS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
@@ -91282,9 +85269,7 @@
network = list("SS13","RD")
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dqT" = (
/obj/structure/table,
/obj/effect/decal/cleanable/dirt,
@@ -91299,7 +85284,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dqU" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -91308,7 +85293,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dqV" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -91316,7 +85301,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dqW" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -91329,27 +85314,27 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dqX" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dqY" = (
/obj/structure/cable/white{
icon_state = "2-8"
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dqZ" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"dra" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/decal/cleanable/dirt,
@@ -91359,7 +85344,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"drb" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -91461,8 +85446,7 @@
/obj/machinery/power/apc{
dir = 4;
name = "Genetics Lab APC";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -91490,6 +85474,9 @@
dir = 4;
name = "medbay camera"
},
+/obj/machinery/light_switch{
+ pixel_x = -26
+ },
/turf/open/floor/plasteel/vault{
dir = 5
},
@@ -91544,8 +85531,7 @@
/area/medical/genetics)
"drr" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/machinery/door/window/westright{
name = "'Monkey Pen";
@@ -91579,9 +85565,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dru" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -91594,9 +85578,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"drv" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -91606,9 +85588,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"drw" = (
/obj/machinery/door/airlock/command{
name = "Chief Medical Officer's Office";
@@ -91630,7 +85610,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"drx" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -91641,7 +85621,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dry" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -91654,13 +85634,13 @@
dir = 10
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"drz" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"drA" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -91670,7 +85650,7 @@
dir = 6
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"drB" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -91682,7 +85662,7 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"drC" = (
/obj/machinery/door/airlock/command{
name = "Chief Medical Officer's Office";
@@ -91704,7 +85684,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"drD" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -91716,9 +85696,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"drE" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -91729,22 +85707,17 @@
/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"drF" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
dir = 4
},
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"drG" = (
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
@@ -91770,7 +85743,6 @@
},
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12
},
/turf/open/floor/plasteel/whiteblue/corner{
@@ -91799,8 +85771,7 @@
},
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/turf/open/floor/plasteel/whiteblue/corner,
/area/medical/surgery)
@@ -91814,7 +85785,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"drP" = (
/obj/structure/rack,
/obj/machinery/light/small{
@@ -91870,14 +85841,14 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"drW" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"drX" = (
/obj/effect/landmark/xeno_spawn,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -91886,7 +85857,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"drY" = (
/obj/structure/closet/firecloset,
/obj/effect/decal/cleanable/dirt,
@@ -91894,7 +85865,7 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"drZ" = (
/obj/structure/chair/wood/normal{
icon_state = "wooden_chair";
@@ -91939,9 +85910,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dsg" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -91949,40 +85918,28 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dsh" = (
/turf/open/floor/circuit/green,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dsi" = (
/obj/machinery/computer/mech_bay_power_console,
/turf/open/floor/circuit/green,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dsj" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dsk" = (
/turf/open/floor/plasteel/neutral,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dsl" = (
/obj/effect/decal/cleanable/oil,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dsm" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light_switch{
@@ -91990,9 +85947,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dsn" = (
/obj/machinery/portable_atmospherics/scrubber,
/obj/machinery/light{
@@ -92009,9 +85964,7 @@
icon_state = "escape";
dir = 8
},
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dso" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -92020,16 +85973,12 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dsp" = (
/obj/effect/landmark/start/scientist,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dsq" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
@@ -92037,9 +85986,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dsr" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
icon_state = "connector_map";
@@ -92057,31 +86004,24 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dss" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plating,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"dst" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plating,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"dsu" = (
/turf/closed/wall,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dsv" = (
/obj/structure/cable/white,
/obj/structure/cable/white{
@@ -92090,7 +86030,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/tinted/fulltile,
/turf/open/floor/plating,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dsw" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -92112,7 +86052,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dsx" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -92121,7 +86061,7 @@
/obj/structure/window/reinforced/tinted/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dsy" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/white{
@@ -92132,9 +86072,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dsz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
@@ -92142,13 +86080,15 @@
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dsA" = (
/turf/closed/wall,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dsB" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -92157,11 +86097,11 @@
name = "Robotics Shutters"
},
/turf/open/floor/plating,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dsC" = (
/obj/structure/sign/science,
/turf/closed/wall,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dsD" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -92175,10 +86115,10 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dsE" = (
/turf/closed/wall/r_wall,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dsF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
@@ -92192,9 +86132,7 @@
/obj/structure/table/glass,
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/light{
icon_state = "tube1";
@@ -92347,8 +86285,7 @@
"dsQ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -92360,8 +86297,7 @@
/area/medical/genetics)
"dsR" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/machinery/door/window/westleft{
name = "'Monkey Pen";
@@ -92399,9 +86335,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dsU" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -92411,14 +86345,11 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/blue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dsV" = (
/obj/structure/cable/white,
/obj/structure/grille,
@@ -92428,53 +86359,46 @@
name = "CMO Office Shutters"
},
/turf/open/floor/plating,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dsW" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dsX" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dsY" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dsZ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
dir = 4
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dta" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/neutral/side{
dir = 8;
heat_capacity = 1e+006
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dtb" = (
/obj/structure/table,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/ai_status_display{
pixel_y = -32
@@ -92493,7 +86417,6 @@
/obj/machinery/computer/med_data,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = -26
},
/turf/open/floor/plasteel/whiteblue/side,
@@ -92540,7 +86463,6 @@
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
pixel_x = 26;
- pixel_y = 0;
req_access_txt = "0";
use_power = 0
},
@@ -92603,7 +86525,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dtq" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
@@ -92653,7 +86575,6 @@
"dtw" = (
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/open/floor/plating,
@@ -92665,27 +86586,19 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dty" = (
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dtz" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/mech_bay_recharge_floor,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dtA" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dtB" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -92694,18 +86607,14 @@
},
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plasteel/neutral,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dtC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 8
},
/turf/open/floor/plasteel/neutral,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dtD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
@@ -92715,9 +86624,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dtE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
@@ -92725,9 +86632,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dtF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
@@ -92742,9 +86647,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dtG" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -92755,7 +86658,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"dtH" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -92767,7 +86670,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"dtI" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -92780,7 +86683,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"dtJ" = (
/obj/structure/cable/white{
icon_state = "2-8"
@@ -92792,7 +86695,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"dtK" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -92800,7 +86703,7 @@
dir = 10
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"dtL" = (
/obj/machinery/portable_atmospherics/pump,
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
@@ -92810,9 +86713,7 @@
icon_state = "arrival";
dir = 8
},
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dtM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -92821,18 +86722,14 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dtN" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dtO" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
@@ -92841,9 +86738,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dtP" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
icon_state = "connector_map";
@@ -92856,26 +86751,20 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dtQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/turf/open/floor/plating,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"dtR" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plating,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"dtS" = (
/obj/structure/closet/secure_closet/RD,
/obj/machinery/computer/security/telescreen/entertainment{
@@ -92885,12 +86774,12 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dtT" = (
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dtU" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -92899,7 +86788,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dtV" = (
/obj/machinery/light_switch{
pixel_x = 26;
@@ -92909,7 +86798,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dtW" = (
/obj/structure/dresser,
/obj/item/weapon/storage/secure/safe{
@@ -92918,7 +86807,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dtX" = (
/obj/item/stack/sheet/metal{
amount = 50
@@ -92937,7 +86826,6 @@
department = "Robotics Lab";
departmentType = 0;
name = "Robotics RC";
- pixel_x = 0;
pixel_y = 32;
receive_ore_updates = 1
},
@@ -92946,7 +86834,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dtY" = (
/obj/item/weapon/paper_bin,
/obj/item/device/assembly/prox_sensor{
@@ -92964,12 +86852,12 @@
/obj/structure/table/reinforced,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dtZ" = (
/obj/machinery/mecha_part_fabricator,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dua" = (
/obj/structure/rack,
/obj/item/weapon/book/manual/robotics_cyborgs,
@@ -92981,14 +86869,14 @@
/obj/item/weapon/circuitboard/mecha/ripley/peripherals,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dub" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"duc" = (
/obj/structure/table/reinforced,
/obj/item/weapon/clipboard,
@@ -93006,7 +86894,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dud" = (
/obj/structure/sign/science{
pixel_x = -32;
@@ -93054,8 +86942,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/whitepurple/corner{
icon_state = "whitepurplecorner";
@@ -93080,10 +86967,7 @@
/turf/open/floor/plasteel/neutral,
/area/medical/genetics)
"duj" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/whitepurple/corner,
/area/medical/genetics)
"duk" = (
@@ -93139,8 +87023,7 @@
},
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/end,
@@ -93155,9 +87038,7 @@
name = "medbay camera"
},
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dut" = (
/obj/structure/bed/dogbed{
desc = "A comfy-looking cat bed. You can even strap your pet in, in case the gravity turns off.";
@@ -93165,9 +87046,7 @@
},
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/light{
icon_state = "tube1";
@@ -93177,7 +87056,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"duu" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -93185,11 +87064,11 @@
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"duv" = (
/obj/structure/chair/office/light,
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"duw" = (
/obj/structure/chair/office/light,
/obj/structure/cable/white{
@@ -93197,11 +87076,9 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dux" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-18"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/structure/cable/white{
icon_state = "0-8"
},
@@ -93212,8 +87089,7 @@
/obj/machinery/power/apc{
dir = 4;
name = "Chief Medical Officer's Office APC";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/machinery/camera{
c_tag = "Medbay - Chief Medical Officer's Office";
@@ -93224,25 +87100,22 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"duy" = (
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"duz" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"duA" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -93269,7 +87142,7 @@
dir = 9
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/aft)
"duC" = (
/obj/machinery/power/smes,
/obj/structure/cable/white{
@@ -93282,7 +87155,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/aft)
"duD" = (
/obj/machinery/camera{
c_tag = "Solar - Aft Starboard";
@@ -93292,22 +87165,18 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/aft)
"duE" = (
/obj/structure/frame/machine,
/obj/item/weapon/circuitboard/machine/cyborgrecharger,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"duF" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"duG" = (
/obj/machinery/mech_bay_recharge_port{
icon_state = "recharge_port";
@@ -93318,36 +87187,30 @@
dir = 6
},
/turf/open/floor/plating,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"duH" = (
/obj/item/robot_suit,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"duI" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"duJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"duK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"duL" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -93355,27 +87218,27 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"duM" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"duN" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"duO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"duP" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -93386,7 +87249,7 @@
dir = 10
},
/turf/open/floor/plasteel/neutral,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"duQ" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -93399,9 +87262,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"duR" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -93410,18 +87271,14 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"duS" = (
/obj/structure/cable/white{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"duT" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 5
@@ -93429,9 +87286,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"duU" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
icon_state = "connector_map";
@@ -93442,17 +87297,13 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"duV" = (
/turf/open/floor/plating,
/turf/open/floor/plating{
icon_state = "platingdmg2"
},
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"duW" = (
/obj/item/target/syndicate,
/obj/effect/decal/cleanable/dirt,
@@ -93461,14 +87312,10 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"duX" = (
/turf/open/floor/plating,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"duY" = (
/obj/machinery/light{
icon_state = "tube1";
@@ -93485,13 +87332,13 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"duZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dva" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -93502,15 +87349,14 @@
dir = 9
},
/turf/open/floor/plasteel/purple,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dvb" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dvc" = (
/obj/machinery/light{
icon_state = "tube1";
@@ -93524,7 +87370,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 4
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dvd" = (
/obj/item/stack/sheet/plasteel{
amount = 15
@@ -93538,12 +87384,11 @@
/obj/structure/table/reinforced,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dve" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -93552,7 +87397,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dvf" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -93562,7 +87407,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dvg" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -93571,7 +87416,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dvh" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -93580,7 +87425,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dvi" = (
/obj/structure/chair/office/light{
icon_state = "officechair_white";
@@ -93591,7 +87436,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dvj" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
@@ -93608,7 +87453,7 @@
/obj/machinery/door/window/eastleft,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dvk" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -93659,7 +87504,6 @@
"dvn" = (
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = -26
},
/turf/open/floor/plasteel/whitepurple/corner,
@@ -93678,7 +87522,6 @@
department = "Medbay Storage";
departmentType = 0;
name = "Genetics Lab RC";
- pixel_x = 0;
pixel_y = -32
},
/obj/item/weapon/storage/box/gloves{
@@ -93712,13 +87555,9 @@
/turf/open/floor/plasteel,
/area/medical/genetics)
"dvt" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/open/floor/plasteel/whitepurple/side{
@@ -93780,22 +87619,15 @@
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dvA" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dvB" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -93813,7 +87645,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dvC" = (
/obj/machinery/disposal/bin,
/obj/structure/cable/white{
@@ -93824,7 +87656,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dvD" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -93840,7 +87672,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dvE" = (
/obj/structure/table/glass,
/obj/structure/cable/white{
@@ -93851,7 +87683,7 @@
dir = 4
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dvF" = (
/obj/structure/table/glass,
/obj/structure/cable/white{
@@ -93871,7 +87703,7 @@
dir = 4
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dvG" = (
/obj/machinery/computer/med_data/laptop,
/obj/structure/table/glass,
@@ -93882,7 +87714,7 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dvH" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -93894,35 +87726,27 @@
name = "CMO Office Shutters"
},
/turf/open/floor/plating,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dvI" = (
/obj/structure/closet/secure_closet/personal/patient,
/turf/open/floor/plasteel/vault,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dvJ" = (
/obj/machinery/iv_drip,
/turf/open/floor/plasteel/vault,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dvK" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/medical,
/turf/open/floor/plasteel/vault,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dvL" = (
/obj/item/weapon/folder/white,
/obj/item/device/flashlight/pen,
/obj/item/clothing/neck/stethoscope,
/obj/structure/table,
/turf/open/floor/plasteel/vault,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dvM" = (
/obj/machinery/computer/med_data/laptop,
/obj/structure/table,
@@ -93930,9 +87754,7 @@
pixel_x = 32
},
/turf/open/floor/plasteel/vault,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dvN" = (
/obj/effect/decal/cleanable/cobweb,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -93940,7 +87762,7 @@
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dvO" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -93953,7 +87775,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dvP" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -93966,7 +87788,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dvQ" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -93976,7 +87798,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dvR" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -93986,7 +87808,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dvS" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -93996,7 +87818,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dvT" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -94005,7 +87827,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dvU" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -94019,7 +87841,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dvV" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -94034,7 +87856,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dvW" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -94048,7 +87870,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dvX" = (
/obj/structure/cable/white{
icon_state = "2-8"
@@ -94064,7 +87886,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dvY" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -94075,7 +87897,7 @@
dir = 9
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dvZ" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -94087,10 +87909,10 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dwa" = (
/obj/machinery/door/airlock/engineering{
- name = "Aft Starboard Solar Access";
+ name = "Starboard Quarter Solar Access";
req_access_txt = "10"
},
/obj/structure/cable/white{
@@ -94103,7 +87925,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/aft)
"dwb" = (
/obj/structure/cable{
d2 = 8;
@@ -94111,11 +87933,11 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/starboard)
+/area/solar/starboard/aft)
"dwc" = (
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/starboard)
+/area/solar/starboard/aft)
"dwe" = (
/obj/structure/table/wood/poker,
/obj/item/weapon/reagent_containers/food/drinks/bottle/rum{
@@ -94141,46 +87963,36 @@
/obj/item/weapon/wrench,
/obj/item/clothing/mask/gas,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dwi" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dwj" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dwk" = (
/obj/structure/chair/office/light,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dwl" = (
/obj/structure/rack,
/obj/item/weapon/storage/toolbox/mechanical,
/obj/item/clothing/head/welding,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dwm" = (
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"dwn" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -94188,12 +88000,11 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"dwo" = (
/obj/structure/table/reinforced,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = -32
},
/obj/item/device/assembly/igniter{
@@ -94209,17 +88020,13 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dwp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dwq" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -94228,43 +88035,33 @@
/obj/machinery/holopad,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dwr" = (
/turf/open/floor/plasteel/whitepurple/side{
dir = 4
},
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dws" = (
/obj/machinery/newscaster{
pixel_x = 32
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dwt" = (
/obj/machinery/light/small,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plating,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"dwu" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"dwv" = (
/obj/machinery/light/small,
/obj/effect/decal/cleanable/dirt,
@@ -94272,9 +88069,7 @@
dir = 6
},
/turf/open/floor/plating,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"dww" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/suit_storage_unit/rd,
@@ -94282,7 +88077,7 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dwx" = (
/obj/machinery/button/door{
id = "idquarters";
@@ -94292,7 +88087,7 @@
req_access_txt = "30"
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dwy" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -94305,13 +88100,13 @@
},
/obj/machinery/modular_computer/console/preset/research,
/turf/open/floor/plasteel/whitepurple/corner,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dwz" = (
/obj/structure/cable/white{
icon_state = "2-8"
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dwA" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
@@ -94320,11 +88115,10 @@
},
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dwB" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -94332,9 +88126,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dwC" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -94342,7 +88134,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dwD" = (
/obj/item/stack/cable_coil/white,
/obj/item/bodypart/r_arm/robot{
@@ -94367,7 +88159,7 @@
/obj/item/device/assembly/flash/handheld,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dwE" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -94381,34 +88173,34 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dwF" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dwG" = (
/obj/effect/decal/cleanable/oil,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dwH" = (
/turf/open/floor/plasteel/neutral,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dwI" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dwJ" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dwK" = (
/turf/closed/wall,
/area/medical/morgue)
@@ -94463,7 +88255,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dwR" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -94473,15 +88265,14 @@
dir = 8
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dwS" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dwT" = (
/obj/structure/chair/office/light{
dir = 1
@@ -94489,7 +88280,7 @@
/obj/effect/landmark/start/chief_medical_officer,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dwU" = (
/obj/machinery/computer/card/minor/cmo,
/obj/machinery/ai_status_display{
@@ -94499,7 +88290,7 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dwV" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -94513,9 +88304,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dwW" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
@@ -94528,18 +88317,14 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dwX" = (
/obj/effect/landmark/start/medical_doctor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/blue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dwY" = (
/obj/structure/chair/office/light{
dir = 1
@@ -94548,9 +88333,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dwZ" = (
/obj/structure/sink{
dir = 4;
@@ -94559,7 +88342,6 @@
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
pixel_x = 26;
- pixel_y = 0;
req_access_txt = "0";
use_power = 0
},
@@ -94568,9 +88350,7 @@
on = 1
},
/turf/open/floor/plasteel/cmo,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dxa" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -94580,7 +88360,7 @@
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dxb" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/crate{
@@ -94593,14 +88373,14 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dxc" = (
/obj/structure/girder,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dxd" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance{
@@ -94611,18 +88391,18 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dxe" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dxf" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dxg" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -94632,13 +88412,13 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dxh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dxi" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -94651,44 +88431,43 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dxj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 9
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dxk" = (
/obj/structure/cable/white,
/obj/machinery/power/apc{
cell_type = 10000;
dir = 2;
- name = "Aft Starboard Solar APC";
+ name = "Starboard Quarter Solar APC";
pixel_y = -26
},
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/aft)
"dxl" = (
/obj/machinery/power/solar_control{
id = "aftstarboard";
- name = "Aft Starboard Solar Control";
+ name = "Starboard Quarter Solar Control";
track = 0
},
/obj/structure/cable,
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/aft)
"dxm" = (
/obj/structure/cable{
icon_state = "0-2";
@@ -94696,7 +88475,7 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/starboard)
+/area/solar/starboard/aft)
"dxn" = (
/obj/structure/table,
/obj/item/stack/rods{
@@ -94706,39 +88485,28 @@
/obj/item/device/flashlight/seclite,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dxo" = (
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
+ icon_state = "plant-21"
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dxp" = (
/obj/machinery/light/small,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dxq" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dxr" = (
/obj/structure/table,
/obj/item/weapon/clipboard,
@@ -94746,59 +88514,45 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dxs" = (
/obj/structure/frame/computer,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/open/floor/plating,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dxt" = (
/obj/structure/frame/machine,
/obj/machinery/light/small,
/obj/item/weapon/stock_parts/console_screen,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dxu" = (
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
+ icon_state = "plant-21"
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dxv" = (
/obj/structure/table,
/obj/item/clothing/gloves/color/black,
/obj/item/weapon/storage/toolbox/electrical,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Abandoned Research Lab"
- })
+/area/science/research/abandoned)
"dxw" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"dxx" = (
/obj/item/device/assembly/prox_sensor{
pixel_x = -4;
@@ -94813,7 +88567,6 @@
pixel_y = -2
},
/obj/item/device/assembly/prox_sensor{
- pixel_x = 0;
pixel_y = 2
},
/obj/structure/table/reinforced,
@@ -94824,9 +88577,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dxy" = (
/obj/item/device/assembly/timer{
pixel_x = 5;
@@ -94840,37 +88591,28 @@
pixel_x = 6;
pixel_y = -4
},
-/obj/item/device/assembly/timer{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/device/assembly/timer,
/obj/structure/table/reinforced,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dxz" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dxA" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
icon_state = "intact";
dir = 6
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dxB" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
icon_state = "freezer";
@@ -94880,15 +88622,11 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dxC" = (
/obj/structure/sign/fire,
/turf/closed/wall/r_wall,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"dxD" = (
/obj/machinery/door/firedoor/heavy,
/obj/structure/cable/white{
@@ -94907,14 +88645,10 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"dxE" = (
/turf/closed/wall/r_wall,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"dxF" = (
/obj/machinery/door/firedoor/heavy,
/obj/structure/grille,
@@ -94925,7 +88659,7 @@
},
/obj/structure/cable/white,
/turf/open/floor/plating,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"dxG" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -94937,15 +88671,12 @@
},
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dxH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -94957,9 +88688,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dxI" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_research{
@@ -94977,7 +88706,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dxJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -94989,7 +88718,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dxK" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -95004,21 +88733,21 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dxL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
dir = 8
},
/turf/open/floor/plasteel/neutral,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dxM" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
dir = 1
},
/turf/open/floor/plasteel/neutral,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dxN" = (
/obj/effect/landmark/start/roboticist,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -95026,29 +88755,22 @@
dir = 8
},
/turf/open/floor/plasteel/neutral,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dxO" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dxP" = (
/obj/structure/noticeboard{
dir = 8;
icon_state = "nboard00";
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
+ pixel_x = 32
},
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/camera{
c_tag = "Science - Robotics Lab";
dir = 8;
@@ -95059,7 +88781,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dxQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
@@ -95104,9 +88826,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
@@ -95191,7 +88911,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dyf" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -95202,14 +88922,14 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dyg" = (
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dyh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dyi" = (
/obj/machinery/computer/crew,
/obj/machinery/button/door{
@@ -95232,14 +88952,13 @@
department = "Chief Medical Officer's Desk";
departmentType = 5;
name = "Chief Medical Officer's RC";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/open/floor/plasteel/neutral/side{
dir = 8;
heat_capacity = 1e+006
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dyj" = (
/obj/structure/grille,
/obj/structure/window/reinforced/tinted/fulltile,
@@ -95247,86 +88966,63 @@
dir = 4
},
/turf/open/floor/plating,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dyk" = (
/obj/structure/dresser,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/cmo,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dyl" = (
/obj/structure/mirror{
pixel_y = -28
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/cmo,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dym" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = -26
},
/obj/machinery/light,
/turf/open/floor/plasteel/cmo,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dyn" = (
/obj/structure/closet/wardrobe/pjs,
/turf/open/floor/plasteel/cmo,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dyo" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/status_display{
pixel_x = 32
},
/turf/open/floor/plasteel/cmo,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dyp" = (
/obj/effect/landmark/blobstart,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dyq" = (
/turf/closed/wall,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dyr" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/barricade/wooden,
/turf/open/floor/plating,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dys" = (
/turf/closed/wall,
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dyt" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -95342,40 +89038,35 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dyu" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/starboard)
+/area/solar/starboard/aft)
"dyv" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dyw" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral/side{
dir = 10;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"dyx" = (
/obj/structure/closet,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/side{
dir = 6
},
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"dyy" = (
/obj/item/device/transfer_valve{
pixel_x = -5
@@ -95383,12 +89074,8 @@
/obj/item/device/transfer_valve{
pixel_x = -5
},
-/obj/item/device/transfer_valve{
- pixel_x = 0
- },
-/obj/item/device/transfer_valve{
- pixel_x = 0
- },
+/obj/item/device/transfer_valve,
+/obj/item/device/transfer_valve,
/obj/item/device/transfer_valve{
pixel_x = 5
},
@@ -95401,14 +89088,11 @@
departmentType = 0;
name = "Toxins RC";
pixel_x = -32;
- pixel_y = 0;
receive_ore_updates = 1
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dyz" = (
/obj/structure/chair/office/light{
dir = 8
@@ -95421,9 +89105,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dyA" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -95432,21 +89114,16 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dyB" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dyD" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/light{
@@ -95455,7 +89132,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dyE" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -95463,7 +89140,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dyF" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/airalarm{
@@ -95472,17 +89149,16 @@
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dyG" = (
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = 26
},
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dyH" = (
/obj/structure/table,
/obj/machinery/light{
@@ -95497,18 +89173,14 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dyI" = (
/turf/closed/wall/r_wall,
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"dyJ" = (
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/structure/table,
/obj/structure/extinguisher_cabinet{
@@ -95519,21 +89191,16 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"dyK" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"dyL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -95546,23 +89213,19 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"dyM" = (
/obj/structure/sign/securearea,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"dyN" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dyO" = (
/obj/structure/rack,
/obj/item/weapon/storage/firstaid,
@@ -95571,7 +89234,7 @@
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dyP" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -95581,28 +89244,28 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dyQ" = (
/obj/item/robot_suit,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dyR" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dyS" = (
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dyT" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dyU" = (
/obj/machinery/computer/rdconsole/robotics,
/obj/structure/sign/bluecross_2{
@@ -95610,13 +89273,16 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dyV" = (
/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
},
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/neutral,
/area/hallway/primary/aft)
"dyW" = (
@@ -95700,7 +89366,7 @@
/area/medical/morgue)
"dzj" = (
/turf/closed/wall,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dzk" = (
/obj/structure/cable/white,
/obj/structure/cable/white{
@@ -95710,7 +89376,7 @@
/obj/structure/window/reinforced/tinted/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dzl" = (
/obj/machinery/door/airlock/command{
name = "Chief Medical Officer's Quarters";
@@ -95720,7 +89386,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dzm" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -95729,13 +89395,11 @@
/obj/structure/window/reinforced/tinted/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dzn" = (
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/light{
@@ -95745,18 +89409,14 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dzo" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 26
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dzp" = (
/obj/structure/table/wood,
/obj/item/clothing/under/maid,
@@ -95764,9 +89424,7 @@
/obj/effect/decal/cleanable/cobweb,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dzq" = (
/obj/machinery/vending/autodrobe{
req_access_txt = "0"
@@ -95775,40 +89433,30 @@
dir = 1
},
/turf/open/floor/plating,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dzr" = (
/obj/structure/cable/white{
icon_state = "0-2"
},
/obj/machinery/power/apc{
- cell_type = 5000;
dir = 1;
name = "Abandoned Theatre APC";
- pixel_x = 0;
- pixel_y = 25
+ pixel_y = 24
},
/turf/open/floor/plating,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dzs" = (
/obj/machinery/newscaster{
pixel_y = 32
},
/turf/open/floor/wood,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dzt" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dzu" = (
/obj/machinery/door/window{
dir = 8;
@@ -95817,20 +89465,13 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/wood,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dzv" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/wood{
icon_state = "wood-broken5"
},
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dzw" = (
/obj/structure/dresser,
/obj/machinery/light/small{
@@ -95839,9 +89480,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dzx" = (
/obj/structure/table/wood,
/obj/item/device/instrument/guitar,
@@ -95849,9 +89488,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dzy" = (
/obj/effect/decal/cleanable/cobweb,
/obj/effect/decal/cleanable/dirt,
@@ -95863,27 +89500,21 @@
},
/obj/item/weapon/newspaper,
/turf/open/floor/plating,
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dzz" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood,
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dzA" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light_switch{
pixel_y = 26
},
/turf/open/floor/plating,
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dzC" = (
/obj/structure/table/wood,
/obj/item/weapon/crowbar/red,
@@ -95896,9 +89527,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dzD" = (
/obj/structure/cable{
icon_state = "0-2";
@@ -95909,7 +89538,7 @@
name = "Aft-Starboard Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/starboard)
+/area/solar/starboard/aft)
"dzE" = (
/obj/structure/chair/office/dark{
dir = 8
@@ -95923,17 +89552,13 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dzF" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dzG" = (
/obj/structure/table,
/obj/effect/decal/cleanable/dirt,
@@ -95951,18 +89576,14 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dzH" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dzI" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/machinery/light{
@@ -95970,32 +89591,24 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dzJ" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dzK" = (
/turf/closed/wall,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dzL" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -96011,18 +89624,13 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dzM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dzN" = (
/obj/item/device/assembly/signaler{
- pixel_x = 0;
pixel_y = 8
},
/obj/item/device/assembly/signaler{
@@ -96043,9 +89651,7 @@
},
/obj/effect/turf_decal/stripes/corner,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dzO" = (
/obj/structure/table/reinforced,
/obj/item/weapon/wrench,
@@ -96058,18 +89664,14 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dzP" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
},
/obj/machinery/meter,
/turf/open/floor/plasteel/whitepurple/corner,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dzQ" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
icon_state = "connector_map";
@@ -96089,9 +89691,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dzR" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -26
@@ -96104,7 +89704,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dzS" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -96118,26 +89718,26 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dzT" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dzU" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dzV" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dzW" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -96146,15 +89746,16 @@
/obj/machinery/power/apc{
dir = 8;
name = "Research Division Server Room APC";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
+ },
+/obj/machinery/light_switch{
+ pixel_x = -28;
+ pixel_y = -26
},
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"dzX" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -96169,9 +89770,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"dzY" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -96183,9 +89782,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"dzZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -96201,9 +89798,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"dAa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -96215,9 +89810,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dAb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -96230,18 +89823,14 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/neutral,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dAc" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
dir = 4
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dAd" = (
/obj/machinery/disposal/bin,
/obj/structure/cable/white{
@@ -96250,15 +89839,14 @@
/obj/machinery/power/apc{
dir = 8;
name = "Robotics Lab APC";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/structure/disposalpipe/trunk{
dir = 1
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dAe" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -96272,38 +89860,37 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dAf" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dAg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dAh" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dAi" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dAj" = (
/obj/machinery/r_n_d/circuit_imprinter,
/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dAk" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -96428,7 +90015,6 @@
},
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
pixel_x = 24;
pixel_y = -26
},
@@ -96520,11 +90106,11 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dAC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dAD" = (
/obj/machinery/light_switch{
pixel_x = 26;
@@ -96532,14 +90118,14 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dAE" = (
/obj/structure/dresser,
/obj/structure/mirror{
pixel_x = 26
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dAF" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -96549,9 +90135,7 @@
on = 1
},
/turf/open/floor/plasteel/blue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dAG" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/costume,
@@ -96561,7 +90145,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dAH" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -96570,31 +90154,23 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dAI" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dAJ" = (
/turf/open/floor/wood,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dAK" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dAL" = (
/turf/open/floor/plating,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dAM" = (
/obj/structure/table/wood,
/obj/item/weapon/newspaper,
@@ -96602,22 +90178,16 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dAN" = (
/obj/structure/window/reinforced{
dir = 8
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dAO" = (
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dAP" = (
/obj/structure/table/wood,
/obj/item/clothing/suit/justice,
@@ -96628,9 +90198,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dAQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small{
@@ -96639,14 +90207,9 @@
/obj/machinery/newscaster{
pixel_x = -32
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plating,
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dAR" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -96655,19 +90218,13 @@
/turf/open/floor/wood{
icon_state = "wood-broken"
},
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dAS" = (
/turf/open/floor/wood,
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dAT" = (
/turf/open/floor/plating,
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dAU" = (
/obj/structure/closet/secure_closet/personal/cabinet,
/obj/item/clothing/suit/jacket{
@@ -96685,16 +90242,12 @@
icon_state = "detective"
},
/turf/open/floor/plating,
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dAV" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dAW" = (
/obj/structure/cable{
d1 = 2;
@@ -96709,12 +90262,11 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/starboard)
+/area/solar/starboard/aft)
"dAX" = (
/obj/structure/cable{
icon_state = "0-4";
@@ -96722,7 +90274,7 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/starboard)
+/area/solar/starboard/aft)
"dAY" = (
/obj/structure/cable{
d1 = 1;
@@ -96737,20 +90289,19 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/starboard)
+/area/solar/starboard/aft)
"dAZ" = (
/turf/closed/wall/r_wall,
-/area/toxins/test_area)
+/area/science/test_area)
"dBa" = (
/obj/structure/grille,
/obj/structure/window/reinforced/tinted/fulltile,
/turf/open/floor/plating,
-/area/toxins/test_area)
+/area/science/test_area)
"dBb" = (
/obj/structure/table/reinforced,
/obj/machinery/computer/security/telescreen{
@@ -96758,26 +90309,20 @@
dir = 4;
layer = 4;
name = "Testing Site Telescreen";
- network = list("Toxins");
- pixel_x = 0;
- pixel_y = 0
+ network = list("Toxins")
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dBc" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dBd" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -96788,9 +90333,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dBe" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 5
@@ -96799,9 +90342,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dBf" = (
/obj/machinery/atmospherics/components/trinary/filter{
density = 0;
@@ -96811,9 +90352,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dBg" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 9
@@ -96821,27 +90360,21 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dBh" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dBi" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/side,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dBj" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -96849,9 +90382,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dBk" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/firstaid/toxin,
@@ -96859,25 +90390,19 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dBl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dBm" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 5
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dBn" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -96887,7 +90412,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dBo" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -96898,7 +90423,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dBp" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -96906,22 +90431,24 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dBq" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dBr" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/obj/machinery/light_switch{
+ pixel_x = 26
+ },
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dBs" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -96929,9 +90456,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"dBt" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/general/hidden{
@@ -96951,9 +90476,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"dBu" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -96965,23 +90488,18 @@
dir = 9
},
/turf/open/floor/plating,
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"dBv" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/purple,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dBw" = (
/obj/structure/rack,
/obj/item/weapon/storage/toolbox/mechanical{
@@ -97003,7 +90521,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dBx" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -97011,12 +90529,11 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dBy" = (
/obj/structure/table,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/item/weapon/storage/box/gloves{
pixel_x = 3;
@@ -97026,12 +90543,12 @@
/obj/item/borg/upgrade/rename,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dBz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dBA" = (
/obj/structure/table/reinforced,
/obj/structure/window/reinforced{
@@ -97042,19 +90559,19 @@
/obj/item/weapon/cautery,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dBB" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dBC" = (
/obj/effect/landmark/start/roboticist,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dBD" = (
/obj/structure/table/reinforced,
/obj/item/weapon/retractor,
@@ -97068,12 +90585,11 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dBE" = (
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/vault{
@@ -97206,32 +90722,31 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dBU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
dir = 9
},
/turf/open/floor/plasteel/neutral,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dBV" = (
/obj/effect/landmark/start/chief_medical_officer,
/turf/open/floor/plasteel/blue,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dBW" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dBX" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/cmo,
@@ -97243,7 +90758,7 @@
pixel_x = 32
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dBY" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/rack,
@@ -97254,30 +90769,24 @@
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dBZ" = (
/obj/machinery/light_switch{
pixel_x = -26
},
/turf/open/floor/wood,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dCa" = (
/turf/open/floor/wood{
icon_state = "wood-broken"
},
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dCb" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/wood,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dCc" = (
/obj/structure/chair/wood/normal{
icon_state = "wooden_chair";
@@ -97287,17 +90796,13 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dCd" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/wood{
icon_state = "wood-broken6"
},
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dCe" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/fancy/candle_box{
@@ -97307,9 +90812,7 @@
/obj/item/weapon/storage/fancy/candle_box,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dCf" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -97321,9 +90824,7 @@
pixel_y = 3
},
/turf/open/floor/plating,
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dCg" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -97334,23 +90835,17 @@
on = 1
},
/turf/open/floor/wood,
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dCh" = (
/turf/open/floor/wood{
icon_state = "wood-broken2"
},
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dCi" = (
/obj/structure/filingcabinet/security,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dCj" = (
/obj/structure/cable,
/obj/machinery/power/solar{
@@ -97358,7 +90853,7 @@
name = "Aft-Starboard Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/starboard)
+/area/solar/starboard/aft)
"dCk" = (
/obj/structure/window/reinforced,
/obj/item/target,
@@ -97367,13 +90862,12 @@
dir = 1
},
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"dCl" = (
/obj/machinery/button/massdriver{
dir = 2;
id = "toxinsdriver";
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/structure/chair/office/dark{
dir = 8
@@ -97383,17 +90877,13 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dCm" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dCn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
@@ -97403,9 +90893,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dCo" = (
/obj/effect/landmark/start/scientist,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -97415,9 +90903,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dCp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -97426,9 +90912,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dCq" = (
/obj/machinery/light_switch{
pixel_x = 26;
@@ -97441,9 +90925,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dCr" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/cleanable/dirt,
@@ -97458,9 +90940,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dCs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -97468,9 +90948,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dCt" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -97483,9 +90961,7 @@
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dCu" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -97498,9 +90974,7 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dCv" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -97522,9 +90996,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dCw" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -97539,9 +91011,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dCx" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -97553,9 +91023,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dCy" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -97568,9 +91036,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/whitepurple/side,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dCz" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -97579,9 +91045,7 @@
dir = 4
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dCA" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -97592,9 +91056,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dCB" = (
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/airlock/research{
@@ -97616,9 +91078,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dCC" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -97632,7 +91092,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dCD" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -97641,7 +91101,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dCE" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -97652,7 +91112,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dCF" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -97660,14 +91120,14 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dCG" = (
/obj/structure/cable/white{
icon_state = "2-8"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dCH" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -97680,9 +91140,7 @@
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"dCI" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden,
/turf/open/floor/plasteel/vault{
@@ -97690,9 +91148,7 @@
initial_gas_mix = "n2=100;TEMP=80";
temperature = 80
},
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"dCJ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -97714,9 +91170,7 @@
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"dCK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/extinguisher_cabinet{
@@ -97731,9 +91185,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dCL" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -97742,25 +91194,27 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
/turf/open/floor/plasteel/neutral,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dCM" = (
/obj/structure/cable/white{
icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/power/apc{
dir = 4;
name = "Research Division APC";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ icon_state = "manifold";
+ dir = 4
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dCN" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/cell/high,
@@ -97768,12 +91222,11 @@
/obj/machinery/cell_charger,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = -26
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dCO" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -97782,22 +91235,21 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dCP" = (
/obj/structure/closet/wardrobe/robotics_black,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dCQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dCR" = (
/obj/structure/table/reinforced,
/obj/structure/window/reinforced{
@@ -97811,7 +91263,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dCS" = (
/obj/machinery/computer/operating,
/obj/machinery/newscaster{
@@ -97820,7 +91272,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dCT" = (
/obj/structure/table/optable,
/obj/effect/decal/cleanable/blood/old,
@@ -97828,7 +91280,7 @@
pixel_y = -32
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dCU" = (
/obj/structure/table/reinforced,
/obj/item/weapon/scalpel{
@@ -97844,7 +91296,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dCV" = (
/obj/machinery/disposal/bin,
/turf/open/floor/plating,
@@ -97868,13 +91320,11 @@
"dCZ" = (
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plating{
icon_state = "platingdmg1"
@@ -97925,7 +91375,7 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dDi" = (
/obj/structure/table/glass,
/obj/machinery/computer/med_data/laptop,
@@ -97933,11 +91383,10 @@
pixel_y = -32
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dDj" = (
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = -26
},
/obj/machinery/camera{
@@ -97946,14 +91395,13 @@
name = "medbay camera"
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dDk" = (
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = -32
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dDl" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
@@ -97961,43 +91409,34 @@
pixel_x = 32
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"dDm" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whitegreen/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dDn" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plasteel/whitegreen/side,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dDo" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
dir = 8
},
/turf/open/floor/plasteel/whitegreen/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dDp" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/costume,
/obj/effect/spawner/lootdrop/maintenance,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dDq" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -98014,7 +91453,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dDr" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/maintenance_hatch{
@@ -98032,9 +91471,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dDs" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -98043,9 +91480,7 @@
dir = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dDt" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -98055,9 +91490,7 @@
},
/mob/living/simple_animal/cockroach,
/turf/open/floor/wood,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dDu" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -98068,17 +91501,13 @@
dir = 1
},
/turf/open/floor/wood,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dDv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dDw" = (
/obj/structure/chair/wood/normal{
icon_state = "wooden_chair";
@@ -98091,9 +91520,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dDx" = (
/obj/structure/window/reinforced{
dir = 8
@@ -98102,18 +91529,14 @@
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dDy" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dDz" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/xeno_spawn,
@@ -98122,9 +91545,7 @@
on = 1
},
/turf/open/floor/plating,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dDA" = (
/obj/structure/mirror{
desc = "Mirror mirror on the wall, who is the most robust of them all?";
@@ -98132,35 +91553,25 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dDB" = (
/turf/open/floor/wood{
icon_state = "wood-broken7"
},
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dDC" = (
/obj/structure/chair/office/dark,
/turf/open/floor/wood,
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dDD" = (
/obj/structure/chair/office/dark,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/wood,
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dDE" = (
/mob/living/simple_animal/cockroach,
/turf/open/floor/wood,
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dDG" = (
/obj/structure/chair,
/obj/effect/decal/cleanable/dirt,
@@ -98168,17 +91579,17 @@
dir = 9
},
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"dDH" = (
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"dDI" = (
/obj/structure/chair,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"dDJ" = (
/obj/machinery/doppler_array{
dir = 4
@@ -98191,23 +91602,18 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dDK" = (
/obj/machinery/light,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dDL" = (
/obj/item/stack/rods{
amount = 50
@@ -98232,9 +91638,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dDM" = (
/obj/structure/table,
/obj/effect/decal/cleanable/dirt,
@@ -98246,42 +91650,32 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dDN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dDO" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dDP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dDQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small,
@@ -98292,9 +91686,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dDR" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -98306,9 +91698,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dDS" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -98318,16 +91708,12 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dDT" = (
/obj/structure/tank_dispenser,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dDU" = (
/obj/structure/rack,
/obj/structure/extinguisher_cabinet{
@@ -98342,9 +91728,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dDV" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -98357,15 +91741,12 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dDW" = (
/obj/machinery/disposal/bin,
/obj/effect/decal/cleanable/dirt,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -98374,9 +91755,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dDY" = (
/obj/structure/sign/securearea,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -98384,9 +91763,7 @@
dir = 8
},
/turf/closed/wall/r_wall,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dDZ" = (
/obj/structure/table,
/obj/item/weapon/paper_bin,
@@ -98403,7 +91780,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dEa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -98411,32 +91788,31 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dEb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dEc" = (
/obj/machinery/portable_atmospherics/scrubber/huge,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dEd" = (
/obj/machinery/portable_atmospherics/scrubber/huge,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/power/apc{
dir = 4;
name = "Toxins Storage APC";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/structure/cable/white,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dEe" = (
/obj/machinery/r_n_d/server/core,
/obj/machinery/atmospherics/pipe/simple/general/hidden{
@@ -98447,9 +91823,7 @@
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"dEf" = (
/obj/machinery/atmospherics/pipe/manifold/general/hidden,
/turf/open/floor/plasteel/vault{
@@ -98457,9 +91831,7 @@
initial_gas_mix = "n2=100;TEMP=80";
temperature = 80
},
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"dEg" = (
/obj/machinery/r_n_d/server/robotics,
/obj/machinery/atmospherics/pipe/simple/general/hidden{
@@ -98470,30 +91842,21 @@
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"dEh" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dEi" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/purple,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dEj" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -98508,7 +91871,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dEk" = (
/obj/structure/plasticflaps{
opacity = 1
@@ -98523,15 +91886,13 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"dEl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/primary/aft)
@@ -98553,9 +91914,7 @@
"dEn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dEo" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -98569,9 +91928,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dEp" = (
/obj/effect/landmark/xeno_spawn,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -98581,9 +91938,7 @@
/turf/open/floor/wood{
icon_state = "wood-broken6"
},
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dEq" = (
/obj/structure/chair/wood/normal{
icon_state = "wooden_chair";
@@ -98592,9 +91947,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dEr" = (
/obj/structure/table/wood,
/obj/item/clothing/under/geisha,
@@ -98602,16 +91955,16 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dEs" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dEt" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/white{
@@ -98622,18 +91975,14 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dEu" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dEv" = (
/obj/structure/table/wood,
/obj/item/clothing/gloves/color/black,
@@ -98641,15 +91990,12 @@
/obj/item/device/taperecorder,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dEw" = (
/obj/structure/chair{
dir = 4
@@ -98659,21 +92005,21 @@
dir = 9
},
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"dEx" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/corner{
dir = 4
},
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"dEy" = (
/obj/effect/decal/cleanable/oil,
/obj/effect/turf_decal/stripes/corner{
dir = 8
},
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"dEz" = (
/obj/structure/chair{
dir = 8
@@ -98682,19 +92028,15 @@
dir = 5
},
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"dEA" = (
/obj/structure/sign/vacuum,
/turf/closed/wall,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dEB" = (
/obj/structure/sign/securearea,
/turf/closed/wall,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dEC" = (
/obj/machinery/door/window/southleft{
name = "Mass Driver Door";
@@ -98702,9 +92044,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/loadingarea,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dED" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -98719,9 +92059,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dEE" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -98737,25 +92075,23 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dEF" = (
/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dEG" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dEH" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dEI" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
@@ -98770,9 +92106,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dEJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -98782,7 +92116,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 9
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dEK" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -98794,7 +92128,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dEL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -98803,13 +92137,13 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dEM" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dEN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -98817,7 +92151,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dEO" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
@@ -98827,7 +92161,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dEP" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -98836,7 +92170,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 5
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dEQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -98844,16 +92178,13 @@
/turf/closed/wall,
/area/hallway/primary/aft)
"dER" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/effect/turf_decal/delivery,
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"dES" = (
@@ -98863,6 +92194,9 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/neutral,
/area/hallway/primary/aft)
"dET" = (
@@ -98912,7 +92246,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dEX" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -98921,7 +92255,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dEY" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -98931,7 +92265,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dEZ" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -98944,7 +92278,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dFa" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -98956,7 +92290,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dFb" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -98971,7 +92305,7 @@
icon_state = "2-4"
},
/turf/open/floor/plating,
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dFc" = (
/obj/structure/cable/white{
icon_state = "2-8"
@@ -98989,7 +92323,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dFd" = (
/obj/structure/girder,
/obj/effect/decal/cleanable/dirt,
@@ -98998,7 +92332,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dFe" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -99012,7 +92346,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dFf" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -99023,7 +92357,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dFg" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -99037,7 +92371,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dFh" = (
/obj/structure/cable/white{
icon_state = "2-8"
@@ -99046,7 +92380,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dFi" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/cobweb/cobweb2,
@@ -99056,11 +92390,9 @@
/turf/open/floor/plasteel/neutral/side{
dir = 5
},
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dFj" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -99068,9 +92400,7 @@
/turf/open/floor/plasteel/whitegreen/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dFk" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -99082,23 +92412,14 @@
/turf/open/floor/plasteel/whitegreen/side{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dFl" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
/turf/open/floor/plasteel/whitegreen/corner{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dFm" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -99107,7 +92428,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 9
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dFn" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -99118,7 +92439,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dFo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -99128,7 +92449,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dFp" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -99138,7 +92459,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dFq" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -99146,7 +92467,7 @@
dir = 9
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dFr" = (
/obj/machinery/light/small{
dir = 8
@@ -99157,15 +92478,11 @@
/turf/open/floor/wood{
icon_state = "wood-broken"
},
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dFs" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/wood,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dFt" = (
/obj/structure/table/wood,
/obj/item/clothing/head/papersack/smiley,
@@ -99174,27 +92491,19 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dFu" = (
/obj/structure/window/reinforced{
dir = 8
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dFv" = (
/turf/open/floor/wood{
icon_state = "wood-broken"
},
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dFw" = (
/obj/structure/table/wood,
/obj/item/clothing/suit/cardborg,
@@ -99204,9 +92513,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dFx" = (
/obj/structure/frame/computer,
/obj/item/weapon/circuitboard/computer/secure_data,
@@ -99217,17 +92524,13 @@
pixel_x = -32
},
/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dFy" = (
/obj/structure/chair/office/dark{
dir = 1
},
/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dFz" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/fancy/cigarettes/cigpack_uplift{
@@ -99238,16 +92541,12 @@
},
/obj/item/weapon/lighter,
/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dFA" = (
/turf/open/floor/wood{
icon_state = "wood-broken3"
},
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dFB" = (
/obj/structure/rack,
/obj/item/weapon/storage/briefcase{
@@ -99257,17 +92556,15 @@
/obj/item/weapon/storage/secure/briefcase,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dFC" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable,
/turf/open/space,
-/area/solar/starboard)
+/area/solar/starboard/aft)
"dFD" = (
/turf/closed/indestructible/opshuttle,
-/area/toxins/test_area)
+/area/science/test_area)
"dFE" = (
/obj/item/target,
/obj/effect/decal/cleanable/dirt,
@@ -99285,46 +92582,42 @@
use_power = 0
},
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"dFF" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"dFG" = (
/obj/item/device/radio/beacon,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"dFH" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"dFI" = (
/obj/effect/turf_decal/stripes/end{
dir = 4
},
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"dFJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plating/airless,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dFK" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plating/airless,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dFL" = (
/obj/machinery/door/poddoor{
id = "toxinsdriver";
@@ -99332,26 +92625,20 @@
},
/obj/structure/fans/tiny,
/turf/open/floor/plating,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dFM" = (
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dFN" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/end{
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dFO" = (
/obj/machinery/mass_driver{
dir = 8;
@@ -99362,14 +92649,12 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"dFP" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dFQ" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -99377,7 +92662,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dFR" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -99385,14 +92670,14 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dFS" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral/side{
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dFT" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/crate{
@@ -99405,14 +92690,14 @@
name = "2maintenance loot spawner"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dFU" = (
/obj/structure/girder,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dFV" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -99420,29 +92705,29 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dFW" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dFX" = (
/turf/open/floor/plasteel/neutral/side{
dir = 5
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dFY" = (
/turf/closed/wall/r_wall,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dFZ" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dGa" = (
/obj/machinery/portable_atmospherics/canister/toxins,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dGb" = (
/obj/structure/urinal{
pixel_y = 28
@@ -99457,9 +92742,7 @@
},
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plasteel/neutral,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dGc" = (
/obj/structure/table/wood,
/obj/machinery/microwave{
@@ -99473,9 +92756,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 9
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dGe" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/item/device/radio/intercom{
@@ -99485,9 +92766,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dGf" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -99496,23 +92775,14 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dGg" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/side{
dir = 5
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dGh" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -99520,7 +92790,7 @@
dir = 10;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dGi" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -99533,7 +92803,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dGj" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -99543,7 +92813,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dGk" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -99552,7 +92822,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dGl" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -99570,7 +92840,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dGm" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -99580,7 +92850,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dGn" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -99591,7 +92861,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dGo" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -99670,7 +92940,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 10
},
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dGw" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet,
@@ -99680,7 +92950,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dGx" = (
/obj/structure/girder,
/obj/effect/decal/cleanable/dirt,
@@ -99689,7 +92959,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dGy" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/crate,
@@ -99701,20 +92971,20 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dGz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dGA" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dGB" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -99722,21 +92992,20 @@
},
/obj/structure/cable/white,
/obj/machinery/power/apc{
- cell_type = 5000;
dir = 2;
name = "Aft Maintenance APC";
pixel_x = 1;
pixel_y = -24
},
/turf/open/floor/plating,
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dGC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dGD" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -99746,7 +93015,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dGE" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -99755,7 +93024,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dGF" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -99764,7 +93033,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dGG" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -99772,19 +93041,19 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dGH" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dGI" = (
/obj/structure/reagent_dispensers/watertank,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dGJ" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance{
@@ -99795,14 +93064,14 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dGK" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dGL" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -99812,7 +93081,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dGM" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -99823,7 +93092,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dGN" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -99839,9 +93108,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dGO" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -99850,9 +93117,7 @@
/turf/open/floor/plasteel/whitegreen/side{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dGP" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -99872,8 +93137,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/white{
icon_state = "2-8"
@@ -99883,9 +93147,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dGQ" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -99898,9 +93160,7 @@
icon_state = "whitegreen";
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dGR" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -99917,9 +93177,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dGS" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -99929,7 +93187,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dGT" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -99938,7 +93196,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dGU" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -99948,7 +93206,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dGV" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -99958,7 +93216,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dGW" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -99967,7 +93225,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dGX" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -99980,14 +93238,12 @@
/turf/open/floor/plasteel/neutral/side{
dir = 6
},
-/area/maintenance/starboard/aft_starboard_maintenance)
+/area/maintenance/starboard/aft)
"dGY" = (
/obj/structure/dresser,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dGZ" = (
/obj/structure/table/wood,
/obj/item/weapon/wrench,
@@ -99998,41 +93254,27 @@
/obj/item/weapon/storage/briefcase,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dHa" = (
/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/wood,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dHb" = (
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/wood{
icon_state = "wood-broken3"
},
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dHc" = (
/obj/machinery/vending/cigarette,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dHd" = (
/obj/structure/window/reinforced{
dir = 8
@@ -100040,16 +93282,12 @@
/obj/structure/piano,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dHe" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/chair/stool/bar,
/turf/open/floor/plating,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dHf" = (
/obj/structure/table/wood,
/obj/item/weapon/lipstick/random{
@@ -100062,53 +93300,39 @@
},
/obj/item/weapon/lipstick/random,
/turf/open/floor/plating,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dHg" = (
/obj/item/device/instrument/violin,
/obj/structure/table/wood,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dHh" = (
/obj/structure/frame/computer,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dHi" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dHj" = (
/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dHk" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/wood,
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dHl" = (
/obj/structure/dresser,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"dHm" = (
/obj/structure/lattice/catwalk,
/obj/effect/landmark/xeno_spawn,
/turf/open/space,
-/area/solar/starboard)
+/area/solar/starboard/aft)
"dHn" = (
/obj/structure/chair{
dir = 4
@@ -100117,24 +93341,24 @@
dir = 10
},
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"dHo" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/corner{
dir = 1
},
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"dHp" = (
/obj/effect/decal/cleanable/blood/old,
/obj/effect/decal/remains/human,
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"dHq" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/corner,
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"dHr" = (
/obj/structure/chair{
dir = 8
@@ -100144,7 +93368,7 @@
dir = 6
},
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"dHs" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance{
@@ -100152,7 +93376,7 @@
name = "2maintenance loot spawner"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dHt" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -100163,7 +93387,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/neutral,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dHu" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -100174,7 +93398,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dHv" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -100183,7 +93407,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dHw" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -100193,7 +93417,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dHx" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -100204,7 +93428,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dHy" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -100216,7 +93440,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dHz" = (
/obj/structure/cable/white{
icon_state = "2-8"
@@ -100228,25 +93452,24 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dHA" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dHB" = (
/obj/machinery/portable_atmospherics/canister/toxins,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dHC" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
@@ -100256,17 +93479,13 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dHD" = (
/turf/open/floor/plasteel/neutral/side{
dir = 8;
heat_capacity = 1e+006
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dHE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
@@ -100279,9 +93498,7 @@
icon_state = "2-4"
},
/turf/open/floor/plasteel/redyellow,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dHF" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -100294,9 +93511,7 @@
dir = 4
},
/turf/open/floor/plasteel/redyellow,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dHG" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -100306,25 +93521,25 @@
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/redyellow,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dHH" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dHI" = (
/obj/structure/girder,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dHJ" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -100332,7 +93547,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dHK" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -100348,15 +93563,11 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"dHL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"dHM" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
@@ -100393,12 +93604,12 @@
/area/hallway/primary/aft)
"dHP" = (
/turf/closed/wall,
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dHQ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/maintenance/aft/Aft_Maintenance)
+/area/maintenance/aft)
"dHR" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -100407,9 +93618,7 @@
/turf/open/floor/plasteel/whitegreen/side{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dHS" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -100420,25 +93629,19 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dHT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whitegreen/side{
icon_state = "whitegreen";
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dHU" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/crew_quarters/theatre{
- name = "Abandoned Theatre"
- })
+/area/crew_quarters/theatre/abandoned)
"dHV" = (
/obj/structure/chair{
dir = 1
@@ -100447,7 +93650,7 @@
dir = 10
},
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"dHW" = (
/obj/structure/chair{
dir = 1
@@ -100457,7 +93660,7 @@
dir = 6
},
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"dHX" = (
/obj/machinery/door/airlock/external{
name = "External Airlock";
@@ -100467,12 +93670,12 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dHY" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dHZ" = (
/obj/machinery/door/airlock/external{
name = "External Airlock";
@@ -100483,19 +93686,19 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dIa" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dIb" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral/side{
dir = 8;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dIc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
@@ -100506,7 +93709,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dId" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -100518,7 +93721,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dIe" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -100530,34 +93733,34 @@
/turf/open/floor/plasteel/neutral/side{
dir = 10
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dIf" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/cable/white{
icon_state = "1-8"
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dIg" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dIh" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dIi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dIj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
@@ -100565,7 +93768,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dIk" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -100575,24 +93778,23 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dIl" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dIm" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"dIn" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12
},
/obj/structure/mirror{
@@ -100607,17 +93809,13 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dIo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dIp" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -100627,9 +93825,7 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dIq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -100640,9 +93836,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/redyellow,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dIr" = (
/obj/effect/landmark/start/scientist,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -100650,9 +93844,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/redyellow,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dIs" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -100660,9 +93852,7 @@
dir = 1
},
/turf/open/floor/plasteel/redyellow,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dIt" = (
/obj/structure/table/wood,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -100679,9 +93869,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dIu" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance{
@@ -100690,7 +93878,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dIv" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -100700,19 +93888,12 @@
/turf/open/floor/plasteel/neutral/side{
dir = 5
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dIw" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/light{
icon_state = "tube1";
@@ -100725,9 +93906,7 @@
/turf/open/floor/plasteel/blue/side{
dir = 9
},
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"dIx" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -100740,9 +93919,7 @@
/turf/open/floor/plasteel/blue/side{
dir = 1
},
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"dIy" = (
/obj/machinery/photocopier,
/obj/machinery/computer/security/telescreen/entertainment{
@@ -100753,30 +93930,18 @@
/turf/open/floor/plasteel/blue/side{
dir = 1
},
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"dIz" = (
/obj/structure/filingcabinet/medical,
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/turf/open/floor/plasteel/blue/side{
dir = 5
},
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"dIA" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
/obj/machinery/computer/security/telescreen/entertainment{
pixel_y = 32
},
@@ -100786,6 +93951,9 @@
name = "hallway camera"
},
/obj/effect/turf_decal/bot,
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"dIB" = (
@@ -100829,32 +93997,23 @@
/area/hallway/primary/aft)
"dIF" = (
/obj/machinery/light/small,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whitegreen/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dIG" = (
/obj/machinery/light/small,
/obj/machinery/iv_drip,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whitegreen/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dIH" = (
/obj/item/stack/cable_coil,
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/starboard)
+/area/solar/starboard/aft)
"dII" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -100864,19 +94023,19 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/end,
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"dIJ" = (
/turf/closed/wall,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dIK" = (
/turf/closed/wall,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dIL" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/barricade/wooden,
/turf/open/floor/plating,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dIM" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -100889,7 +94048,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dIN" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -100905,21 +94064,21 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dIO" = (
/turf/open/floor/plasteel/neutral/side{
dir = 8;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dIP" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dIQ" = (
/turf/closed/wall/r_wall,
-/area/toxins/storage)
+/area/science/storage)
"dIR" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock{
@@ -100929,9 +94088,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dIS" = (
/obj/machinery/vending/coffee,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -100939,30 +94096,23 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dIT" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/disposalpipe/segment,
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plasteel/redyellow,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dIU" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/redyellow,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dIV" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -100970,9 +94120,7 @@
on = 1
},
/turf/open/floor/plasteel/redyellow,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dIW" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
@@ -100983,16 +94131,14 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dIX" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dIY" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -101002,7 +94148,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dIZ" = (
/obj/machinery/computer/med_data,
/obj/machinery/status_display{
@@ -101011,9 +94157,7 @@
/turf/open/floor/plasteel/blue/side{
dir = 10
},
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"dJa" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -101023,17 +94167,13 @@
on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"dJb" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"dJc" = (
/obj/structure/table/reinforced,
/obj/item/stack/packageWrap,
@@ -101041,9 +94181,7 @@
/turf/open/floor/plasteel/blue/side{
dir = 6
},
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"dJd" = (
/obj/structure/cable/white{
icon_state = "0-2"
@@ -101051,9 +94189,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"dJe" = (
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
@@ -101098,15 +94234,11 @@
/area/shuttle/escape)
"dJl" = (
/turf/closed/wall/r_wall,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dJm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dJn" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -101134,16 +94266,12 @@
req_access_txt = "39"
},
/turf/open/floor/plasteel,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dJo" = (
/obj/structure/sign/biohazard,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"dJp" = (
/turf/closed/wall/r_wall,
/area/medical/virology)
@@ -101182,76 +94310,64 @@
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
/turf/open/floor/plating,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dJu" = (
/obj/structure/table/wood,
/obj/effect/decal/cleanable/dirt,
/obj/item/weapon/folder,
/obj/item/weapon/pen,
/turf/open/floor/plating,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dJv" = (
/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/library/abandoned_library)
+/area/library/abandoned)
"dJw" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/grimy,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dJx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plasteel/grimy,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dJy" = (
/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/black,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dJz" = (
/obj/structure/table/wood,
/obj/item/weapon/dice/d20,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/library/abandoned_library)
+/area/library/abandoned)
"dJA" = (
/turf/open/floor/plasteel/grimy,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dJB" = (
/obj/structure/chair/office/dark,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/grimy,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dJC" = (
/obj/structure/chair/office/dark,
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dJD" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/grimy,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dJE" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -101261,7 +94377,7 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dJF" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -101269,7 +94385,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dJG" = (
/obj/structure/cable/white{
icon_state = "2-8"
@@ -101279,14 +94395,14 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dJH" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dJI" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/machinery/light/small{
@@ -101294,7 +94410,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dJJ" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/effect/decal/cleanable/dirt,
@@ -101302,16 +94418,14 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dJK" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/power/apc{
- cell_type = 5000;
dir = 1;
- name = "Aft Port Maintenance APC";
- pixel_x = 0;
- pixel_y = 25
+ name = "Port Quarter Maintenance APC";
+ pixel_y = 24
},
/obj/structure/cable/white{
icon_state = "0-2"
@@ -101319,7 +94433,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dJL" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/oil,
@@ -101327,10 +94441,9 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dJM" = (
/obj/structure/toilet{
- icon_state = "toilet00";
dir = 8
},
/obj/effect/decal/cleanable/dirt,
@@ -101339,9 +94452,7 @@
pixel_x = -32
},
/turf/open/floor/plasteel/neutral,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dJN" = (
/obj/machinery/disposal/bin,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -101350,9 +94461,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dJO" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -101362,9 +94471,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/neutral/side,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dJP" = (
/obj/machinery/vending/cola/random,
/obj/machinery/light,
@@ -101373,15 +94480,11 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/side,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dJQ" = (
/obj/machinery/vending/cigarette,
/turf/open/floor/plasteel/neutral/side,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dJR" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
@@ -101389,15 +94492,13 @@
/turf/open/floor/plasteel/neutral/side{
dir = 6
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dJS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dJT" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -101407,7 +94508,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dJU" = (
/obj/machinery/computer/card,
/obj/structure/cable/white{
@@ -101425,9 +94526,7 @@
name = "customs camera"
},
/turf/open/floor/plasteel/blue,
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"dJV" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -101439,9 +94538,7 @@
icon_state = "1-8"
},
/turf/open/floor/plasteel/neutral,
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"dJW" = (
/obj/structure/chair/office/light{
dir = 4
@@ -101451,9 +94548,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral,
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"dJX" = (
/obj/structure/table/reinforced,
/obj/structure/cable/white{
@@ -101462,9 +94557,7 @@
/obj/item/weapon/folder/blue,
/obj/item/weapon/pen,
/turf/open/floor/plasteel/blue,
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"dJY" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -101482,9 +94575,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"dJZ" = (
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
@@ -101520,18 +94611,15 @@
"dKe" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12
},
/obj/machinery/shower{
dir = 8;
- icon_state = "shower";
name = "emergency shower"
},
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -101570,12 +94658,7 @@
/turf/open/floor/plating,
/area/medical/virology)
"dKi" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/whitegreen/corner{
dir = 1
},
@@ -101584,20 +94667,13 @@
/obj/structure/cable/white{
icon_state = "1-2"
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/whitegreen/side{
dir = 1
},
/area/medical/virology)
"dKk" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/whitegreen/corner{
dir = 4
},
@@ -101650,12 +94726,7 @@
/obj/structure/extinguisher_cabinet{
pixel_x = 26
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/whitegreen/corner{
dir = 4
},
@@ -101672,7 +94743,7 @@
/obj/structure/table_frame/wood,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dKs" = (
/obj/structure/chair/office/dark{
dir = 8
@@ -101680,10 +94751,10 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/library/abandoned_library)
+/area/library/abandoned)
"dKt" = (
/turf/open/floor/plasteel/black,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dKu" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -101691,40 +94762,40 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/grimy,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dKv" = (
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/library/abandoned_library)
+/area/library/abandoned)
"dKw" = (
/obj/structure/chair/office/dark{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/grimy,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dKx" = (
/obj/structure/table/wood,
/obj/effect/decal/cleanable/dirt,
/obj/item/device/paicard,
/turf/open/floor/carpet,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dKy" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/pill_bottle/dice,
/turf/open/floor/carpet,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dKz" = (
/obj/structure/chair/office/dark{
dir = 8
},
/turf/open/floor/plasteel/grimy,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dKA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dKB" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -101732,16 +94803,13 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dKC" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 5
},
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dKD" = (
/obj/machinery/atmospherics/components/trinary/filter{
density = 0;
@@ -101749,34 +94817,28 @@
req_access = "0"
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
/turf/open/floor/plasteel/neutral,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dKE" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 9
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
/turf/open/floor/plasteel/neutral,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dKF" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dKG" = (
/obj/machinery/droneDispenser,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dKH" = (
/obj/structure/table,
/obj/effect/decal/cleanable/dirt,
@@ -101789,7 +94851,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dKI" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -101806,13 +94868,11 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dKJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dKK" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -101821,7 +94881,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dKL" = (
/obj/machinery/computer/crew,
/obj/machinery/ai_status_display{
@@ -101830,15 +94890,11 @@
/turf/open/floor/plasteel/blue/side{
dir = 9
},
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"dKM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral,
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"dKN" = (
/obj/structure/table/reinforced,
/obj/machinery/newscaster{
@@ -101850,22 +94906,17 @@
/turf/open/floor/plasteel/blue/side{
dir = 5
},
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"dKO" = (
/obj/structure/cable/white,
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"dKP" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/closet/emcloset,
/obj/effect/turf_decal/bot,
@@ -101897,7 +94948,6 @@
"dKV" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12
},
/obj/structure/mirror{
@@ -101906,13 +94956,11 @@
},
/obj/machinery/shower{
dir = 8;
- icon_state = "shower";
name = "emergency shower"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
@@ -101963,7 +95011,6 @@
idDoor = "virology_airlock_interior";
idSelf = "virology_airlock_control";
name = "Virology Access Button";
- pixel_x = 0;
pixel_y = 22;
req_access_txt = "39"
},
@@ -102131,34 +95178,34 @@
dir = 8
},
/turf/open/floor/plating,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dLp" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/wood{
icon_state = "wood-broken4"
},
-/area/library/abandoned_library)
+/area/library/abandoned)
"dLq" = (
/turf/open/floor/wood{
icon_state = "wood-broken2"
},
-/area/library/abandoned_library)
+/area/library/abandoned)
"dLr" = (
/obj/structure/bookcase,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/wood,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dLs" = (
/turf/open/floor/wood{
icon_state = "wood-broken5"
},
-/area/library/abandoned_library)
+/area/library/abandoned)
"dLt" = (
/obj/structure/chair/office/dark{
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dLu" = (
/obj/structure/table/wood,
/obj/item/toy/cards/deck/cas{
@@ -102170,13 +95217,13 @@
pixel_y = 5
},
/turf/open/floor/carpet,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dLv" = (
/obj/structure/table/wood,
/obj/item/weapon/clipboard,
/obj/item/weapon/folder/red,
/turf/open/floor/carpet,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dLw" = (
/obj/structure/chair/office/dark{
dir = 8
@@ -102184,11 +95231,10 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/open/floor/plating,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dLx" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance{
@@ -102198,14 +95244,14 @@
/turf/open/floor/plasteel/neutral/side{
dir = 10
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dLy" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dLz" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -102219,7 +95265,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dLA" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -102228,7 +95274,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dLB" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -102238,7 +95284,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dLC" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -102252,7 +95298,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dLD" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -102268,7 +95314,7 @@
icon_state = "1-4"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dLE" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -102277,7 +95323,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dLF" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -102289,7 +95335,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 9
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dLG" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -102299,7 +95345,7 @@
},
/mob/living/simple_animal/cockroach,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dLH" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -102312,7 +95358,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dLI" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -102329,7 +95375,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dLJ" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -102339,7 +95385,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dLK" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -102349,7 +95395,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dLL" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -102362,7 +95408,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 5
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dLM" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -102373,7 +95419,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dLN" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -102386,7 +95432,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 10
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dLO" = (
/obj/structure/cable/white{
icon_state = "2-8"
@@ -102397,7 +95443,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dLQ" = (
/obj/structure/table/reinforced,
/obj/structure/cable/white{
@@ -102405,19 +95451,14 @@
},
/obj/item/weapon/storage/box/ids,
/turf/open/floor/plasteel/blue/side,
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"dLR" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/blue/side,
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"dLS" = (
/obj/structure/closet/secure_closet{
anchored = 1;
@@ -102428,9 +95469,7 @@
/turf/open/floor/plasteel/blue/side{
dir = 6
},
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"dLT" = (
/obj/structure/closet/firecloset,
/obj/effect/turf_decal/bot,
@@ -102605,8 +95644,7 @@
"dMi" = (
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/light{
icon_state = "tube1";
@@ -102678,8 +95716,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
/area/medical/virology)
@@ -102724,8 +95761,7 @@
/obj/effect/landmark/start/virologist,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/green,
/area/medical/virology)
@@ -102745,11 +95781,11 @@
/obj/structure/bookcase,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/wood,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dMv" = (
/obj/structure/bookcase,
/turf/open/floor/wood,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dMw" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -102758,13 +95794,13 @@
},
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dMx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dMy" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -102775,21 +95811,21 @@
},
/obj/effect/decal/cleanable/blood/splatter,
/turf/open/floor/plasteel/grimy,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dMz" = (
/turf/open/floor/wood,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dMA" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dMB" = (
/obj/structure/chair/office/dark{
dir = 1
},
/turf/open/floor/plasteel/grimy,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dMC" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -102800,7 +95836,7 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dMD" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -102810,7 +95846,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dME" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -102847,7 +95883,7 @@
dir = 4
},
/turf/closed/wall,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dMI" = (
/obj/structure/girder,
/obj/effect/decal/cleanable/dirt,
@@ -102855,7 +95891,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dMJ" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/costume,
@@ -102864,13 +95900,13 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dMK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dML" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -102879,7 +95915,7 @@
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dMM" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -102887,7 +95923,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dMN" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/reagent_dispensers/watertank,
@@ -102895,16 +95931,14 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dMO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dMP" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -102921,14 +95955,10 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dMQ" = (
/turf/closed/wall,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dMR" = (
/obj/structure/cable/white,
/obj/structure/cable/white{
@@ -102937,9 +95967,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dMS" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -102947,15 +95975,11 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dMT" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dMU" = (
/obj/structure/sign/directions/evac{
pixel_y = -8
@@ -102968,9 +95992,7 @@
pixel_y = 8
},
/turf/closed/wall,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dMV" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
@@ -102981,9 +96003,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dMW" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
@@ -102993,9 +96013,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dMX" = (
/obj/structure/sign/directions/evac{
pixel_y = -8
@@ -103008,22 +96026,15 @@
pixel_y = 8
},
/turf/closed/wall,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dMY" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dMZ" = (
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
+ icon_state = "plant-21"
},
/turf/open/floor/plasteel/neutral/side{
dir = 8;
@@ -103034,15 +96045,12 @@
/turf/open/floor/plasteel/neutral,
/area/shuttle/escape)
"dNb" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
/obj/machinery/light{
dir = 4
},
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
@@ -103053,8 +96061,7 @@
/area/shuttle/escape)
"dNd" = (
/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{
- pixel_x = 6;
- pixel_y = 0
+ pixel_x = 6
},
/obj/item/weapon/reagent_containers/glass/bottle/charcoal{
pixel_x = -3
@@ -103199,7 +96206,7 @@
/obj/structure/cable,
/obj/machinery/power/tracker,
/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/starboard)
+/area/solar/starboard/aft)
"dNt" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -103214,7 +96221,7 @@
/turf/open/floor/wood{
icon_state = "wood-broken"
},
-/area/library/abandoned_library)
+/area/library/abandoned)
"dNu" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -103223,51 +96230,44 @@
/turf/open/floor/wood{
icon_state = "wood-broken6"
},
-/area/library/abandoned_library)
+/area/library/abandoned)
"dNv" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/turf/open/floor/wood,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dNw" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/turf/open/floor/plasteel/grimy,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dNx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/white{
icon_state = "1-8"
},
/turf/open/floor/plasteel/grimy,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dNy" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/wood{
icon_state = "wood-broken7"
},
-/area/library/abandoned_library)
+/area/library/abandoned)
"dNz" = (
/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/wood{
icon_state = "wood-broken"
},
-/area/library/abandoned_library)
+/area/library/abandoned)
"dNA" = (
/obj/machinery/photocopier,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dNB" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
@@ -103275,20 +96275,20 @@
/turf/open/floor/wood{
icon_state = "wood-broken2"
},
-/area/library/abandoned_library)
+/area/library/abandoned)
"dNC" = (
/obj/structure/table/wood,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/effect/decal/cleanable/dirt,
/obj/item/device/flashlight/lamp,
/turf/open/floor/plating,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dND" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dNE" = (
/turf/closed/wall,
/area/chapel/office)
@@ -103309,12 +96309,7 @@
},
/area/chapel/office)
"dNH" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/vault{
dir = 5
@@ -103350,25 +96345,19 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dNO" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dNR" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dNT" = (
/obj/structure/chair{
dir = 4
@@ -103468,7 +96457,6 @@
/obj/structure/table,
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/microwave{
@@ -103510,26 +96498,26 @@
"dOl" = (
/mob/living/simple_animal/cockroach,
/turf/open/floor/wood,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dOm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/grimy,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dOn" = (
/turf/open/floor/wood{
icon_state = "wood-broken3"
},
-/area/library/abandoned_library)
+/area/library/abandoned)
"dOo" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/wood,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dOp" = (
/obj/structure/girder,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dOq" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -103538,7 +96526,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dOr" = (
/obj/structure/table,
/obj/item/weapon/storage/box/gloves{
@@ -103563,19 +96551,14 @@
},
/area/chapel/office)
"dOt" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-18";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/light{
icon_state = "tube1";
dir = 4
},
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/vault{
@@ -103600,7 +96583,6 @@
desc = "A plaque commemorating the fallen, may they rest in peace, forever asleep amongst the stars. Someone has drawn a picture of a crying badger at the bottom.";
icon_state = "kiddieplaque";
name = "Remembrance Plaque";
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/plasteel/vault{
@@ -103619,18 +96601,12 @@
},
/obj/item/weapon/reagent_containers/food/snacks/grown/poppy,
/obj/machinery/status_display{
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/plasteel/black,
/area/chapel/main)
"dOx" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/vault{
dir = 5
},
@@ -103643,12 +96619,9 @@
/turf/open/floor/plasteel/black,
/area/chapel/main)
"dOz" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = 26
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -103703,27 +96676,21 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dOG" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dOH" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -103735,9 +96702,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dOI" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -103746,9 +96711,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dOJ" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -103757,35 +96720,27 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dOK" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dOL" = (
/obj/structure/disposalpipe/sortjunction{
name = "Chapel Junction";
sortType = 17
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dOM" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=hall8";
location = "hall7"
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dON" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -103793,17 +96748,13 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dOO" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dOQ" = (
/obj/machinery/ai_status_display,
/turf/closed/wall/mineral/titanium/nodiagonal,
@@ -103905,8 +96856,7 @@
/obj/machinery/power/apc{
dir = 4;
name = "Virology Satellite APC";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/white{
@@ -103922,17 +96872,17 @@
dir = 8
},
/turf/open/floor/plating,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dPd" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/wood{
icon_state = "wood-broken"
},
-/area/library/abandoned_library)
+/area/library/abandoned)
"dPe" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dPf" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small{
@@ -103941,21 +96891,21 @@
/turf/open/floor/wood{
icon_state = "wood-broken5"
},
-/area/library/abandoned_library)
+/area/library/abandoned)
"dPg" = (
/obj/structure/destructible/cult/tome,
/obj/effect/decal/cleanable/cobweb,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/plating,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dPh" = (
/obj/structure/bookcase{
name = "Forbidden Knowledge"
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/black,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dPi" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/crate{
@@ -103966,7 +96916,7 @@
/obj/effect/spawner/lootdrop/maintenance,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dPj" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -103974,7 +96924,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dPk" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -104056,9 +97006,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dPu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -104071,9 +97019,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dPv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -104084,31 +97030,23 @@
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dPw" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dPx" = (
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dPy" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dPz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
@@ -104116,23 +97054,18 @@
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dPA" = (
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dPB" = (
/obj/structure/chair{
dir = 4
},
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
@@ -104148,7 +97081,6 @@
"dPD" = (
/obj/machinery/shower{
dir = 8;
- icon_state = "shower";
name = "emergency shower"
},
/turf/open/floor/plasteel/whiteblue/side{
@@ -104173,7 +97105,6 @@
department = "Virology Lab";
departmentType = 0;
name = "Virology RC";
- pixel_x = 0;
pixel_y = 32;
receive_ore_updates = 1
},
@@ -104207,12 +97138,7 @@
/obj/machinery/status_display{
pixel_y = 32
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/medical/virology)
@@ -104222,9 +97148,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
@@ -104258,8 +97182,7 @@
"dPN" = (
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/camera{
@@ -104304,9 +97227,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ on = 1
},
/mob/living/carbon/monkey,
/turf/open/floor/plasteel/whitegreen/side{
@@ -104324,19 +97245,19 @@
/obj/structure/bookcase,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plating,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dPU" = (
/obj/effect/decal/cleanable/blood/splatter,
/turf/open/floor/wood{
icon_state = "wood-broken6"
},
-/area/library/abandoned_library)
+/area/library/abandoned)
"dPV" = (
/obj/effect/decal/remains/human,
/obj/effect/decal/cleanable/blood/old,
/obj/effect/landmark/revenantspawn,
/turf/open/floor/plasteel/black,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dPW" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -104346,14 +97267,14 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dPX" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
icon_state = "1-8"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dPY" = (
/obj/structure/table,
/obj/item/weapon/wrench,
@@ -104417,8 +97338,7 @@
"dQf" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/grimy,
/area/chapel/main)
@@ -104440,39 +97360,31 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dQj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dQk" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/effect/turf_decal/delivery,
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dQl" = (
/obj/structure/chair{
dir = 1
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dQm" = (
/obj/structure/chair{
dir = 1
@@ -104480,24 +97392,18 @@
/obj/machinery/light,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dQn" = (
/obj/structure/table,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dQo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dQp" = (
/obj/structure/extinguisher_cabinet,
/turf/closed/wall/mineral/titanium/nodiagonal,
@@ -104655,33 +97561,24 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/open/floor/wood,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dQK" = (
/turf/open/floor/wood{
icon_state = "wood-broken7"
},
-/area/library/abandoned_library)
+/area/library/abandoned)
"dQL" = (
/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plating,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dQM" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plating,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dQN" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/old,
@@ -104693,14 +97590,14 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/library/abandoned_library)
+/area/library/abandoned)
"dQO" = (
/obj/effect/decal/cleanable/blood/old,
/obj/item/organ/tongue/bone{
origin_tech = "biotech=0"
},
/turf/open/floor/plating,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dQP" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -104711,13 +97608,13 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dQQ" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dQR" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -104740,9 +97637,7 @@
},
/area/chapel/office)
"dQT" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/camera{
c_tag = "Chapel - Port";
dir = 4;
@@ -104780,32 +97675,22 @@
},
/area/chapel/main)
"dQY" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel{
dir = 4;
icon_state = "chapel"
},
/area/chapel/main)
"dQZ" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/effect/turf_decal/delivery,
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dRa" = (
/obj/structure/flora/ausbushes/grassybush,
/obj/structure/flora/ausbushes/lavendergrass,
@@ -104813,15 +97698,11 @@
/obj/structure/flora/ausbushes/sunnybush,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/grass,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dRb" = (
/obj/machinery/status_display,
/turf/closed/wall,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dRc" = (
/obj/structure/flora/ausbushes/grassybush,
/obj/structure/flora/ausbushes/lavendergrass,
@@ -104829,15 +97710,11 @@
/obj/structure/flora/ausbushes/fernybush,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/grass,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dRd" = (
/obj/machinery/ai_status_display,
/turf/closed/wall,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dRe" = (
/obj/machinery/door/airlock/external{
name = "External Docking Port"
@@ -104846,16 +97723,12 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dRf" = (
/obj/structure/fans/tiny,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dRg" = (
/obj/machinery/door/airlock/shuttle{
name = "Emergency Shuttle Airlock";
@@ -105090,12 +97963,12 @@
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
/turf/open/floor/wood,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dRB" = (
/obj/structure/chair/office/dark,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dRC" = (
/obj/structure/chair/office/dark{
dir = 4
@@ -105103,7 +97976,7 @@
/turf/open/floor/wood{
icon_state = "wood-broken5"
},
-/area/library/abandoned_library)
+/area/library/abandoned)
"dRD" = (
/obj/structure/table/wood,
/obj/item/weapon/folder,
@@ -105113,13 +97986,13 @@
dir = 5
},
/turf/open/floor/wood,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dRE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/wood,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dRF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -105127,14 +98000,14 @@
/turf/open/floor/wood{
icon_state = "wood-broken4"
},
-/area/library/abandoned_library)
+/area/library/abandoned)
"dRG" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/wood,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dRH" = (
/obj/effect/decal/cleanable/blood/old,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -105143,7 +98016,7 @@
/turf/open/floor/wood{
icon_state = "wood-broken"
},
-/area/library/abandoned_library)
+/area/library/abandoned)
"dRI" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/morgue{
@@ -105155,14 +98028,14 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/library/abandoned_library)
+/area/library/abandoned)
"dRJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 9
},
/turf/open/floor/plasteel/black,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dRK" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/old,
@@ -105170,14 +98043,14 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/library/abandoned_library)
+/area/library/abandoned)
"dRL" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dRM" = (
/obj/structure/table,
/obj/item/stack/packageWrap,
@@ -105197,8 +98070,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
@@ -105207,7 +98079,6 @@
"dRO" = (
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/light{
@@ -105255,9 +98126,7 @@
/obj/structure/chair/wood,
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/obj/machinery/camera{
c_tag = "Chapel - Starboard";
@@ -105274,30 +98143,24 @@
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/delivery,
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
},
-/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dRV" = (
/obj/structure/chair,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dRW" = (
/obj/structure/table,
/obj/item/weapon/folder,
/obj/item/weapon/pen,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dRX" = (
/obj/structure/chair,
/obj/effect/landmark/start/assistant,
@@ -105308,17 +98171,13 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dRY" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/sign/vacuum,
/turf/open/floor/plating,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dRZ" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall/mineral/titanium,
@@ -105342,9 +98201,7 @@
/obj/structure/table/glass,
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/structure/cable/white{
icon_state = "1-2"
@@ -105413,8 +98270,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
@@ -105426,7 +98282,6 @@
"dSm" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12
},
/obj/structure/extinguisher_cabinet{
@@ -105468,8 +98323,7 @@
/obj/item/weapon/hand_labeler,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -105484,7 +98338,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/item/device/flashlight/lamp,
/turf/open/floor/plating,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dSs" = (
/obj/structure/table/wood,
/obj/effect/decal/cleanable/dirt,
@@ -105493,19 +98347,14 @@
/turf/open/floor/wood{
icon_state = "wood-broken5"
},
-/area/library/abandoned_library)
+/area/library/abandoned)
"dSt" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/light/small,
/turf/open/floor/wood{
icon_state = "wood-broken3"
},
-/area/library/abandoned_library)
+/area/library/abandoned)
"dSu" = (
/obj/structure/table/wood,
/obj/item/clothing/under/rank/curator,
@@ -105514,21 +98363,19 @@
name = "2maintenance loot spawner"
},
/turf/open/floor/wood,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dSv" = (
/obj/structure/table/wood,
/obj/effect/decal/cleanable/dirt,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
/turf/open/floor/wood,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dSw" = (
/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/wood,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dSx" = (
/obj/structure/easel,
/obj/effect/decal/cleanable/dirt,
@@ -105536,34 +98383,34 @@
/obj/item/weapon/canvas/twentythreeXtwentythree,
/obj/machinery/light/small,
/turf/open/floor/plating,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dSy" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/crayons,
/obj/item/weapon/storage/crayons,
/turf/open/floor/wood,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dSz" = (
/obj/structure/table/wood,
/obj/effect/decal/cleanable/dirt,
/obj/item/weapon/paper_bin,
/turf/open/floor/plating,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dSA" = (
/obj/structure/dresser,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dSB" = (
/obj/structure/table/wood,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/item/device/taperecorder,
/turf/open/floor/plasteel/black,
-/area/library/abandoned_library)
+/area/library/abandoned)
"dSC" = (
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dSE" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -105631,9 +98478,7 @@
/obj/structure/closet/emcloset,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dSM" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -105643,18 +98488,14 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dSN" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
dir = 1
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dSO" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -105663,26 +98504,20 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dSP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dSQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 9
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dSR" = (
/obj/machinery/door/airlock/shuttle{
name = "Emergency Shuttle Airlock"
@@ -105731,7 +98566,6 @@
pixel_y = 1
},
/obj/item/weapon/storage/toolbox/mechanical{
- pixel_x = 0;
pixel_y = -1
},
/obj/item/weapon/storage/toolbox/emergency{
@@ -105784,9 +98618,7 @@
/turf/open/floor/plasteel,
/area/medical/virology)
"dSY" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/medical/virology)
@@ -105795,12 +98627,7 @@
/obj/machinery/status_display{
pixel_y = -32
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/medical/virology)
@@ -105818,9 +98645,7 @@
"dTb" = (
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/obj/structure/closet/secure_closet/medical1,
/obj/machinery/light_switch{
@@ -105957,13 +98782,13 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dTm" = (
/obj/structure/girder,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dTn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
@@ -106022,21 +98847,16 @@
/obj/machinery/vending/cola/random,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dTu" = (
/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dTv" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
@@ -106137,7 +98957,6 @@
},
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -106160,7 +98979,6 @@
"dTH" = (
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -26
},
/obj/machinery/iv_drip,
@@ -106203,7 +99021,7 @@
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dTL" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -106214,7 +99032,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dTM" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -106224,7 +99042,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dTN" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/blobstart,
@@ -106235,14 +99053,14 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dTO" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dTP" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -106253,7 +99071,7 @@
dir = 9
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dTQ" = (
/turf/closed/wall/r_wall,
/area/chapel/office)
@@ -106322,7 +99140,6 @@
"dTX" = (
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/open/floor/plasteel{
@@ -106339,9 +99156,7 @@
/obj/machinery/vending/snack/random,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dTZ" = (
/obj/structure/chair{
dir = 1
@@ -106349,17 +99164,13 @@
/obj/effect/landmark/start/assistant,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dUa" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dUb" = (
/obj/structure/flora/ausbushes/grassybush,
/obj/structure/flora/ausbushes/lavendergrass,
@@ -106409,12 +99220,7 @@
/obj/structure/sign/nanotrasen{
pixel_y = -32
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
dir = 5
@@ -106470,10 +99276,10 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/maintenance/portsolar)
+/area/maintenance/solars/port/aft)
"dUm" = (
/turf/closed/wall/r_wall,
-/area/maintenance/portsolar)
+/area/maintenance/solars/port/aft)
"dUn" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -106483,20 +99289,20 @@
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dUo" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dUp" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
icon_state = "4-8"
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dUq" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -106506,14 +99312,14 @@
icon_state = "2-4"
},
/turf/open/floor/plasteel/blue/side,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dUr" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
icon_state = "4-8"
},
/turf/open/floor/plasteel/blue/side,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dUs" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -106524,20 +99330,20 @@
icon_state = "2-4"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dUt" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/turf/open/floor/plasteel/blue/side,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dUu" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
icon_state = "1-8"
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dUv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
@@ -106630,16 +99436,12 @@
/obj/structure/closet/firecloset,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dUF" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dUG" = (
/obj/machinery/light{
dir = 4;
@@ -106647,9 +99449,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dUH" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -106659,14 +99459,10 @@
name = "WARNING: EXTERNAL AIRLOCK"
},
/turf/open/floor/plating,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dUI" = (
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- pixel_x = 0;
- pixel_y = 0;
req_access_txt = "0";
use_power = 0
},
@@ -106744,7 +99540,7 @@
dir = 9
},
/turf/open/floor/plating,
-/area/maintenance/portsolar)
+/area/maintenance/solars/port/aft)
"dUS" = (
/obj/machinery/power/smes,
/obj/structure/cable/white{
@@ -106757,7 +99553,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/portsolar)
+/area/maintenance/solars/port/aft)
"dUT" = (
/obj/structure/cable/white{
icon_state = "2-8"
@@ -106770,16 +99566,15 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/portsolar)
+/area/maintenance/solars/port/aft)
"dUU" = (
/obj/structure/sign/directions/engineering{
desc = "A sign that shows there are doors here. There are doors everywhere!";
icon_state = "doors";
- name = "WARNING: EXTERNAL AIRLOCK";
- pixel_x = 0
+ name = "WARNING: EXTERNAL AIRLOCK"
},
/turf/closed/wall/r_wall,
-/area/maintenance/portsolar)
+/area/maintenance/solars/port/aft)
"dUV" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -106789,18 +99584,18 @@
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dUW" = (
/obj/structure/sign/electricshock,
/turf/closed/wall/r_wall,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dUX" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable/white,
/obj/structure/barricade/wooden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dUY" = (
/obj/machinery/door/poddoor/shutters{
id = "evashutters2";
@@ -106812,7 +99607,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dUZ" = (
/obj/machinery/button/door{
id = "evashutters2";
@@ -106829,7 +99624,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dVa" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -106846,7 +99641,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dVb" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/command{
@@ -106859,16 +99654,15 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dVc" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall/r_wall,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dVd" = (
/obj/structure/bodycontainer/morgue,
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/open/floor/plasteel/vault{
@@ -106917,22 +99711,17 @@
/area/chapel/main)
"dVj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
/obj/machinery/camera{
c_tag = "Departures - Port";
dir = 4;
name = "departures camera"
},
/obj/effect/turf_decal/delivery,
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dVk" = (
/obj/structure/chair,
/obj/machinery/light{
@@ -106940,17 +99729,13 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dVl" = (
/obj/structure/table,
/obj/item/weapon/storage/pill_bottle/dice,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dVm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -106986,8 +99771,7 @@
/obj/machinery/iv_drip,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/whitegreen/side{
icon_state = "whitegreen";
@@ -107023,8 +99807,7 @@
/obj/machinery/iv_drip,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/whitegreen/side{
icon_state = "whitegreen";
@@ -107034,7 +99817,7 @@
"dVu" = (
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/port)
+/area/solar/port/aft)
"dVv" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -107042,23 +99825,21 @@
d2 = 4
},
/turf/open/space,
-/area/solar/port)
+/area/solar/port/aft)
"dVw" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/open/space,
-/area/solar/port)
+/area/solar/port/aft)
"dVx" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/door/airlock/external{
name = "External Solar Access";
@@ -107068,19 +99849,18 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/portsolar)
+/area/maintenance/solars/port/aft)
"dVy" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/fans/tiny,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/portsolar)
+/area/maintenance/solars/port/aft)
"dVz" = (
/obj/structure/cable{
d1 = 2;
@@ -107090,14 +99870,13 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/portsolar)
+/area/maintenance/solars/port/aft)
"dVA" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/power/terminal{
@@ -107110,7 +99889,7 @@
},
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
-/area/maintenance/portsolar)
+/area/maintenance/solars/port/aft)
"dVB" = (
/obj/structure/cable/white{
icon_state = "1-4"
@@ -107127,10 +99906,10 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/portsolar)
+/area/maintenance/solars/port/aft)
"dVC" = (
/obj/machinery/door/airlock/engineering{
- name = "Aft Port Solar Access";
+ name = "Port Quarter Solar Access";
req_access_txt = "10"
},
/obj/structure/cable/white{
@@ -107143,7 +99922,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/portsolar)
+/area/maintenance/solars/port/aft)
"dVD" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -107153,39 +99932,34 @@
dir = 9
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dVE" = (
/obj/structure/table/reinforced,
/obj/item/stack/packageWrap,
/obj/item/weapon/hand_labeler,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dVF" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dVG" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dVH" = (
/obj/machinery/light{
dir = 1
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dVI" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -107195,7 +99969,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dVJ" = (
/obj/structure/table/reinforced,
/obj/item/weapon/clipboard,
@@ -107204,13 +99978,13 @@
pixel_x = 26
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dVK" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dVL" = (
/obj/structure/table,
/obj/item/weapon/storage/box/gloves{
@@ -107228,8 +100002,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
@@ -107251,8 +100024,7 @@
"dVO" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel{
icon_state = "chapel"
@@ -107280,9 +100052,7 @@
},
/area/chapel/main)
"dVS" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -107301,9 +100071,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dVU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -107313,9 +100081,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dVV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -107325,9 +100091,7 @@
on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dVW" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -107337,36 +100101,27 @@
dir = 1
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dVX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dVY" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
dir = 1
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dVZ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dWa" = (
/obj/structure/rack,
/obj/item/clothing/suit/fire/firefighter,
@@ -107426,7 +100181,7 @@
"dWh" = (
/obj/machinery/power/solar_control{
id = "aftport";
- name = "Aft Port Solar Control";
+ name = "Port Quarter Solar Control";
track = 0
},
/obj/structure/cable,
@@ -107434,43 +100189,40 @@
dir = 10
},
/turf/open/floor/plating,
-/area/maintenance/portsolar)
+/area/maintenance/solars/port/aft)
"dWi" = (
/obj/structure/chair/office/dark{
dir = 8
},
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
-/area/maintenance/portsolar)
+/area/maintenance/solars/port/aft)
"dWj" = (
/obj/structure/cable/white,
/obj/machinery/power/apc{
cell_type = 10000;
dir = 2;
- name = "Aft Port Solar APC";
+ name = "Port Quarter Solar APC";
pixel_y = -26
},
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/portsolar)
+/area/maintenance/solars/port/aft)
"dWk" = (
/obj/structure/sign/electricshock,
/turf/closed/wall/r_wall,
-/area/maintenance/portsolar)
+/area/maintenance/solars/port/aft)
"dWl" = (
/obj/structure/table/reinforced,
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/item/stack/cable_coil/white,
/obj/item/stack/cable_coil/white,
@@ -107479,17 +100231,17 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dWm" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dWn" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dWo" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -107501,7 +100253,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dWp" = (
/obj/structure/cable/white{
icon_state = "1-8"
@@ -107513,14 +100265,14 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dWq" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dWr" = (
/obj/structure/table/reinforced,
/obj/machinery/newscaster{
@@ -107538,12 +100290,11 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dWs" = (
/obj/structure/bodycontainer/morgue,
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/turf/open/floor/plasteel/vault{
@@ -107617,18 +100368,14 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dWB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dWC" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -107639,9 +100386,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dWD" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
icon_state = "manifold";
@@ -107649,13 +100394,10 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dWE" = (
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -107668,9 +100410,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dWF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -107678,9 +100418,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dWG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
@@ -107690,9 +100428,7 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dWH" = (
/turf/open/floor/plasteel/neutral/side,
/area/shuttle/escape)
@@ -107734,7 +100470,7 @@
/obj/machinery/shieldwallgen,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dWO" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -107742,11 +100478,11 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dWP" = (
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dWQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -107754,7 +100490,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dWR" = (
/obj/structure/rack,
/obj/structure/cable/white{
@@ -107766,20 +100502,20 @@
/obj/item/clothing/mask/breath,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dWS" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dWT" = (
/obj/machinery/shieldwallgen,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dWU" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet,
@@ -107789,7 +100525,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dWV" = (
/obj/machinery/door/morgue{
name = "Relic Closet";
@@ -107836,9 +100572,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dXa" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -107853,7 +100587,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dXb" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -107861,7 +100595,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dXc" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -107874,7 +100608,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dXd" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -107883,11 +100617,11 @@
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dXe" = (
/obj/machinery/status_display,
/turf/closed/wall,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dXf" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -107899,7 +100633,7 @@
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dXg" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -107916,7 +100650,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dXh" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -107928,7 +100662,7 @@
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dXi" = (
/obj/structure/cable/white{
icon_state = "0-4"
@@ -107939,7 +100673,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dXj" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -107948,12 +100682,12 @@
/obj/structure/window/reinforced/fulltile,
/obj/structure/sign/vacuum,
/turf/open/floor/plating,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dXk" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dXl" = (
/obj/machinery/door/airlock/glass_security{
name = "Holding Area";
@@ -107976,7 +100710,7 @@
/obj/structure/closet/firecloset,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dXo" = (
/obj/item/clothing/suit/hazardvest{
desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";
@@ -108057,13 +100791,13 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dXp" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dXq" = (
/obj/structure/rack,
/obj/structure/cable/white{
@@ -108074,14 +100808,14 @@
/obj/item/device/radio,
/obj/item/clothing/mask/breath,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dXr" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dXs" = (
/obj/item/clothing/suit/hazardvest{
desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";
@@ -108160,12 +100894,12 @@
},
/obj/structure/closet/crate/internals,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dXt" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dXu" = (
/obj/structure/table/wood/fancy,
/obj/item/weapon/spellbook/oneuse/smoke/lesser,
@@ -108236,8 +100970,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
@@ -108276,15 +101009,12 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dXG" = (
/obj/structure/filingcabinet/security,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/light_switch{
pixel_x = -26;
@@ -108298,7 +101028,7 @@
/turf/open/floor/plasteel/red/side{
dir = 9
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dXH" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -108307,7 +101037,7 @@
/turf/open/floor/plasteel/red/side{
dir = 1
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dXI" = (
/obj/structure/table/reinforced,
/obj/item/weapon/paper_bin,
@@ -108315,7 +101045,7 @@
/turf/open/floor/plasteel/red/side{
dir = 5
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dXJ" = (
/obj/structure/table/reinforced,
/obj/structure/cable/white{
@@ -108330,7 +101060,7 @@
req_access_txt = "63"
},
/turf/open/floor/plasteel/red,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dXK" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/fancy/donut_box,
@@ -108338,20 +101068,20 @@
/turf/open/floor/plasteel/red/side{
dir = 9
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dXL" = (
/obj/structure/closet/wardrobe/red,
/turf/open/floor/plasteel/red/side{
dir = 5
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dXN" = (
/obj/structure/chair,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red/side{
dir = 1
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dXO" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -108359,18 +101089,18 @@
/turf/open/floor/plasteel/red/side{
dir = 1
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dXP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/red/side{
dir = 1
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dXQ" = (
/turf/open/floor/plasteel/red/side{
dir = 5
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dXR" = (
/obj/machinery/door/airlock/external{
name = "External Docking Port";
@@ -108380,12 +101110,12 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dXS" = (
/obj/structure/fans/tiny,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dXT" = (
/obj/machinery/door/airlock/shuttle{
name = "Emergency Shuttle Airlock";
@@ -108409,23 +101139,21 @@
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/escape)
"dXX" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
/obj/machinery/button/flasher{
id = "shuttleflash";
pixel_x = -26;
pixel_y = 24
},
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
/turf/open/floor/plasteel/red/corner{
dir = 1
},
/area/shuttle/escape)
"dXY" = (
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
+ icon_state = "plant-21"
},
/turf/open/floor/plasteel/neutral/corner{
dir = 4
@@ -108472,7 +101200,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dYe" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -108482,7 +101210,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dYf" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -108494,7 +101222,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dYg" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -108504,7 +101232,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dYh" = (
/obj/structure/cable/white,
/obj/structure/cable/white{
@@ -108515,7 +101243,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dYi" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -108524,7 +101252,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dYj" = (
/obj/structure/cable/white{
icon_state = "2-8"
@@ -108537,14 +101265,14 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dYk" = (
/obj/structure/cable/white{
icon_state = "2-8"
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dYl" = (
/obj/structure/table/reinforced,
/obj/structure/extinguisher_cabinet{
@@ -108553,7 +101281,7 @@
/obj/item/weapon/storage/toolbox/mechanical,
/obj/item/device/flashlight,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dYm" = (
/obj/item/device/radio/intercom{
name = "Station Intercom";
@@ -108576,9 +101304,7 @@
/turf/open/floor/plasteel/grimy,
/area/chapel/office)
"dYq" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/structure/sign/nosmoking_2{
pixel_x = 32
},
@@ -108594,9 +101320,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dYs" = (
/obj/structure/table/reinforced,
/obj/structure/cable/white{
@@ -108618,7 +101342,7 @@
/turf/open/floor/plasteel/red/side{
dir = 8
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dYt" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -108628,11 +101352,10 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dYu" = (
/obj/machinery/holopad,
/obj/structure/cable/white{
@@ -108643,7 +101366,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dYv" = (
/obj/structure/chair/office/dark{
dir = 1
@@ -108655,7 +101378,7 @@
icon_state = "1-8"
},
/turf/open/floor/plasteel/neutral,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dYw" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -108665,7 +101388,7 @@
on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dYx" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -108673,7 +101396,7 @@
/turf/open/floor/plasteel/red/side{
dir = 4
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dYy" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -108687,20 +101410,19 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dYz" = (
/obj/structure/cable/white{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/red/side{
dir = 8
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dYA" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -108710,7 +101432,7 @@
dir = 9
},
/turf/open/floor/plasteel/neutral,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dYB" = (
/obj/structure/cable/white{
icon_state = "2-8"
@@ -108722,14 +101444,14 @@
icon_state = "1-8"
},
/turf/open/floor/plasteel/neutral,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dYC" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dYD" = (
/obj/structure/chair{
dir = 8
@@ -108737,7 +101459,7 @@
/turf/open/floor/plasteel/red/side{
dir = 4
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dYE" = (
/obj/structure/cable/white{
icon_state = "0-2"
@@ -108745,7 +101467,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dYF" = (
/obj/structure/chair{
dir = 4
@@ -108777,7 +101499,6 @@
"dYK" = (
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = 58
},
/turf/open/floor/plasteel/neutral/side,
@@ -108804,22 +101525,17 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dYO" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dYP" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -108828,7 +101544,7 @@
/obj/effect/decal/cleanable/oil,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dYQ" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/light{
@@ -108839,14 +101555,14 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dYR" = (
/obj/structure/reagent_dispensers/watertank,
/obj/machinery/light{
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dYS" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -108854,20 +101570,18 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dYT" = (
/obj/structure/cable/white{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dYU" = (
/obj/structure/table/reinforced,
/obj/item/stack/sheet/rglass{
@@ -108879,7 +101593,7 @@
amount = 50
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dYV" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
@@ -108902,11 +101616,9 @@
dir = 1
},
/obj/machinery/power/apc{
- cell_type = 5000;
dir = 1;
name = "Chapel Quarters APC";
- pixel_x = 0;
- pixel_y = 25
+ pixel_y = 24
},
/obj/structure/cable/white{
icon_state = "0-8"
@@ -108914,12 +101626,7 @@
/turf/open/floor/plasteel/grimy,
/area/chapel/office)
"dYY" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/camera{
c_tag = "Chapel Quarters";
dir = 2;
@@ -108936,12 +101643,9 @@
/obj/item/device/camera_film,
/obj/machinery/firealarm{
dir = 4;
- icon_state = "fire0";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/obj/machinery/status_display{
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/plasteel/vault{
@@ -109011,9 +101715,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dZh" = (
/obj/structure/table/reinforced,
/obj/machinery/recharger,
@@ -109023,16 +101725,11 @@
/turf/open/floor/plasteel/red/side{
dir = 10
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dZi" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dZj" = (
/obj/machinery/computer/prisoner,
/obj/structure/cable/white{
@@ -109041,11 +101738,11 @@
/turf/open/floor/plasteel/red/side{
dir = 6
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dZk" = (
/obj/machinery/computer/secure_data,
/turf/open/floor/plasteel/red,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dZl" = (
/obj/machinery/computer/security,
/obj/machinery/status_display{
@@ -109054,19 +101751,18 @@
/turf/open/floor/plasteel/red/side{
dir = 10
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dZm" = (
/obj/structure/closet/secure_closet/security,
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/light,
/turf/open/floor/plasteel/red/side{
dir = 6
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dZn" = (
/obj/structure/chair{
dir = 1
@@ -109079,13 +101775,13 @@
/turf/open/floor/plasteel/red/side{
dir = 10
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dZo" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dZp" = (
/obj/structure/table,
/obj/structure/cable/white{
@@ -109098,7 +101794,7 @@
/obj/item/weapon/restraints/handcuffs,
/obj/item/device/assembly/flash/handheld,
/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dZq" = (
/obj/structure/chair{
dir = 1
@@ -109107,7 +101803,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dZr" = (
/obj/structure/chair{
dir = 1
@@ -109117,7 +101813,6 @@
},
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -26
},
/obj/machinery/light,
@@ -109129,7 +101824,7 @@
/turf/open/floor/plasteel/red/side{
dir = 6
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dZs" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -109141,7 +101836,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dZt" = (
/obj/structure/chair{
dir = 4
@@ -109204,13 +101899,13 @@
name = "Aft-Port Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/port)
+/area/solar/port/aft)
"dZC" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable/white,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/aft_port_maintenance)
+/area/maintenance/port/aft)
"dZD" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -109339,12 +102034,10 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"dZR" = (
/turf/closed/wall/r_wall,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dZS" = (
/obj/structure/cable/white,
/obj/structure/cable/white{
@@ -109356,7 +102049,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dZT" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -109364,13 +102057,13 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dZU" = (
/obj/structure/cable/white,
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"dZV" = (
/obj/structure/chair{
dir = 1
@@ -109382,7 +102075,6 @@
/obj/item/weapon/storage/box/zipties,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = -26
},
/turf/open/floor/mineral/plastitanium/brig,
@@ -109427,7 +102119,7 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/port)
+/area/solar/port/aft)
"eac" = (
/obj/structure/cable{
d1 = 2;
@@ -109442,12 +102134,11 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/port)
+/area/solar/port/aft)
"ead" = (
/obj/structure/cable{
d2 = 8;
@@ -109455,7 +102146,7 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/port)
+/area/solar/port/aft)
"eae" = (
/obj/structure/cable{
icon_state = "0-4";
@@ -109463,7 +102154,7 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/port)
+/area/solar/port/aft)
"eaf" = (
/obj/structure/cable{
d1 = 1;
@@ -109478,12 +102169,11 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/port)
+/area/solar/port/aft)
"eag" = (
/obj/structure/cable{
d1 = 1;
@@ -109497,7 +102187,7 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/port)
+/area/solar/port/aft)
"eah" = (
/obj/structure/dresser,
/obj/structure/extinguisher_cabinet{
@@ -109538,7 +102228,6 @@
/obj/structure/closet/wardrobe/chaplain_black,
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/open/floor/plasteel/vault{
@@ -109569,7 +102258,6 @@
department = "Chapel Office";
departmentType = 0;
name = "Chapel RC";
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/status_display{
@@ -109589,7 +102277,7 @@
name = "Aft-Port Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/port)
+/area/solar/port/aft)
"eas" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -109603,15 +102291,12 @@
},
/area/shuttle/escape)
"eau" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
/obj/machinery/light{
dir = 1
},
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
/turf/open/floor/plasteel/vault{
icon_state = "vault";
dir = 5
@@ -109677,7 +102362,7 @@
/obj/item/stack/cable_coil,
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/port)
+/area/solar/port/aft)
"eaD" = (
/obj/machinery/computer/secure_data,
/turf/open/floor/plasteel/darkred/side{
@@ -109723,7 +102408,7 @@
/obj/structure/lattice/catwalk,
/obj/effect/landmark/xeno_spawn,
/turf/open/space,
-/area/solar/port)
+/area/solar/port/aft)
"eaL" = (
/obj/structure/table/reinforced,
/obj/item/weapon/paper_bin,
@@ -109805,22 +102490,21 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/port)
+/area/solar/port/aft)
"eaW" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/port)
+/area/solar/port/aft)
"eaX" = (
/obj/structure/cable,
/obj/machinery/power/tracker,
/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/port)
+/area/solar/port/aft)
"eaY" = (
/obj/docking_port/stationary{
dheight = 9;
@@ -109835,12 +102519,7 @@
/turf/open/space,
/area/space)
"eaZ" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/light_switch{
pixel_x = 24;
pixel_y = -24
@@ -109862,7 +102541,7 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxstarboard)
+/area/solar/starboard/fore)
"ebb" = (
/obj/structure/cable{
d1 = 1;
@@ -109876,19 +102555,18 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxstarboard)
+/area/solar/starboard/fore)
"ebg" = (
/obj/structure/chair/office/dark{
dir = 4
},
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"ebB" = (
/obj/structure/cable{
d1 = 2;
@@ -109902,7 +102580,7 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxport)
+/area/solar/port/fore)
"ebC" = (
/obj/structure/cable{
d1 = 1;
@@ -109916,7 +102594,7 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxport)
+/area/solar/port/fore)
"ebD" = (
/obj/structure/cable{
d1 = 2;
@@ -109930,7 +102608,7 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/starboard)
+/area/solar/starboard/aft)
"ebE" = (
/obj/structure/cable{
d1 = 1;
@@ -109944,16 +102622,14 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/starboard)
+/area/solar/starboard/aft)
"ebF" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/end{
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"ebG" = (
/turf/open/floor/engine,
/area/engine/supermatter)
@@ -109963,7 +102639,7 @@
req_access_txt = "20"
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"ebK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -109983,13 +102659,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/open/floor/plasteel/yellow,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"ebQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -109997,13 +102670,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/open/floor/plasteel/neutral,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"ebR" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -110012,27 +102682,21 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/open/floor/plasteel/neutral,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"ebS" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"ebT" = (
/obj/structure/cable{
d1 = 2;
@@ -110043,9 +102707,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"ebU" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/obj/structure/disposalpipe/junction{
@@ -110062,22 +102724,20 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"ebW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"ebX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
icon_state = "intact";
dir = 4
},
/turf/open/floor/plasteel/red,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"ebY" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -110086,7 +102746,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"ebZ" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -110101,8 +102761,7 @@
"ecb" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/wood{
icon_state = "wood-broken"
@@ -110115,25 +102774,20 @@
"ecd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"ece" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
icon_state = "manifold";
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"ecf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"ecg" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/light/small{
dir = 1
},
@@ -110141,7 +102795,7 @@
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"ech" = (
/obj/machinery/button/door{
id = "Dorm2";
@@ -110152,8 +102806,12 @@
req_access_txt = "0";
specialfunctions = 4
},
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"eci" = (
/obj/machinery/button/door{
id = "Dorm4";
@@ -110164,24 +102822,28 @@
req_access_txt = "0";
specialfunctions = 4
},
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"ecj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"eck" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"ecl" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/barricade/wooden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"ecm" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -110191,15 +102853,15 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"ecn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"eco" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"ecp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
@@ -110210,7 +102872,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"ecr" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -110218,13 +102880,12 @@
dir = 4
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"ecs" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/wood{
icon_state = "wood-broken"
@@ -110241,7 +102902,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"ecv" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -110270,7 +102931,7 @@
"ecy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"ecz" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden,
/turf/open/floor/plasteel/vault{
@@ -110306,7 +102967,7 @@
initial_gas_mix = "n2=500;TEMP=80";
temperature = 80
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"ecQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -110329,8 +102990,7 @@
"ecS" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/wood,
/area/crew_quarters/abandoned_gambling_den)
@@ -110354,9 +103014,7 @@
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ecW" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
@@ -110392,8 +103050,7 @@
"eda" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/wood,
/area/crew_quarters/abandoned_gambling_den)
@@ -110409,11 +103066,10 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"ede" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -110421,7 +103077,7 @@
dir = 4
},
/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics/Abandoned_Garden)
+/area/hydroponics/garden/abandoned)
"edf" = (
/obj/structure/table/wood,
/obj/item/clothing/head/hardhat/cakehat,
@@ -110448,7 +103104,7 @@
icon_state = "brown";
dir = 1
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"edi" = (
/obj/structure/mining_shuttle_beacon,
/turf/open/floor/plating,
@@ -110541,8 +103197,7 @@
dir = 1
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/open/floor/plating/airless,
/area/shuttle/transport)
@@ -110574,16 +103229,14 @@
/area/shuttle/transport)
"eez" = (
/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/structure/sign/poster/contraband/random{
pixel_y = 32
},
/turf/open/floor/plasteel/vault{
dir = 6
},
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"eeA" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
@@ -110605,11 +103258,11 @@
"eeC" = (
/obj/structure/sign/poster/contraband/random,
/turf/closed/wall,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"eeD" = (
/obj/structure/sign/poster/contraband/random,
/turf/closed/wall,
-/area/maintenance/starboard/fore_starboard_maintenance)
+/area/maintenance/starboard/fore)
"eeE" = (
/obj/structure/table/wood,
/obj/structure/sign/barsign{
@@ -110673,15 +103326,15 @@
"eeL" = (
/obj/structure/sign/poster/contraband/random,
/turf/closed/wall,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"eeM" = (
/obj/structure/sign/poster/contraband/random,
/turf/closed/wall,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/arrivals/north_2)
"eeN" = (
/obj/structure/sign/poster/contraband/random,
/turf/closed/wall,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/arrivals/north_2)
"eeO" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/sign/poster/contraband/random{
@@ -110690,7 +103343,7 @@
/turf/open/floor/wood{
icon_state = "wood-broken7"
},
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"eeP" = (
/obj/structure/janitorialcart,
/obj/effect/decal/cleanable/dirt,
@@ -110705,7 +103358,7 @@
pixel_y = -32
},
/turf/open/floor/plasteel/redblue,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"eeR" = (
/obj/structure/table/wood,
/obj/effect/decal/cleanable/dirt,
@@ -110715,11 +103368,10 @@
pixel_y = -32
},
/turf/open/floor/plasteel/cafeteria,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"eeS" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12
},
/obj/item/weapon/reagent_containers/glass/bucket,
@@ -110729,7 +103381,6 @@
/obj/item/weapon/mop,
/obj/item/device/radio/intercom{
name = "Station Intercom";
- pixel_x = 0;
pixel_y = -26
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -110767,9 +103418,7 @@
pixel_x = -32
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"eeX" = (
/obj/structure/table/wood,
/obj/item/weapon/soap/nanotrasen,
@@ -110843,9 +103492,7 @@
pixel_x = 32
},
/turf/open/floor/plasteel/vault,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"eff" = (
/obj/structure/sign/poster/contraband/random{
pixel_x = -32
@@ -110923,7 +103570,7 @@
"efo" = (
/obj/structure/sign/poster/random,
/turf/closed/wall,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/port/fore)
"efp" = (
/obj/structure/reagent_dispensers/watertank,
/obj/structure/window/reinforced,
@@ -110937,7 +103584,7 @@
"efq" = (
/obj/structure/sign/poster/random,
/turf/closed/wall,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/arrivals/north_2)
"efr" = (
/obj/structure/table/glass,
/obj/machinery/computer/med_data/laptop,
@@ -110951,7 +103598,7 @@
"efs" = (
/obj/structure/sign/poster/random,
/turf/closed/wall,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/arrivals/north_2)
"eft" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -110987,11 +103634,11 @@
pixel_y = -32
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"efw" = (
/obj/structure/sign/poster/random,
/turf/closed/wall,
-/area/maintenance/fpmaint2/fore_port_maintenance)
+/area/maintenance/arrivals/north_2)
"efx" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
@@ -111006,7 +103653,7 @@
pixel_x = 32
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"efy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -111038,7 +103685,6 @@
"efA" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12
},
/obj/effect/turf_decal/bot,
@@ -111148,9 +103794,7 @@
},
/area/hallway/primary/starboard)
"efJ" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/structure/extinguisher_cabinet{
pixel_x = 26
},
@@ -111174,7 +103818,7 @@
pixel_y = 32
},
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"efL" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
@@ -111248,14 +103892,9 @@
pixel_x = 32
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"efQ" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/sign/poster/official/report_crimes{
pixel_y = -32
@@ -111269,7 +103908,6 @@
department = "Engineering";
departmentType = 0;
name = "Engineering RC";
- pixel_x = 0;
pixel_y = -32
},
/obj/effect/turf_decal/delivery,
@@ -111285,7 +103923,7 @@
pixel_x = 32
},
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"efT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -111296,7 +103934,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"efU" = (
/obj/structure/table/reinforced,
/obj/item/stack/sheet/metal{
@@ -111319,9 +103957,7 @@
pixel_y = 32
},
/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engineering Storage"
- })
+/area/engine/storage)
"efV" = (
/obj/structure/table/reinforced,
/obj/item/stack/rods{
@@ -111335,7 +103971,7 @@
pixel_y = -32
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2/port_maintenance)
+/area/maintenance/port)
"efW" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/effect/turf_decal/stripes/line{
@@ -111345,7 +103981,7 @@
pixel_y = 32
},
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"efX" = (
/obj/machinery/light/small{
dir = 1
@@ -111361,7 +103997,7 @@
pixel_y = 32
},
/turf/open/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"efY" = (
/obj/structure/table,
/obj/item/weapon/paper_bin,
@@ -111373,9 +104009,7 @@
icon_state = "whitepurplecorner";
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"efZ" = (
/obj/structure/mirror{
pixel_x = 26
@@ -111394,9 +104028,7 @@
pixel_y = 32
},
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ega" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_medical{
@@ -111413,9 +104045,7 @@
pixel_x = -32
},
/turf/open/floor/plasteel,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"egb" = (
/obj/structure/table/reinforced,
/obj/item/clothing/gloves/color/yellow,
@@ -111424,7 +104054,7 @@
pixel_y = -32
},
/turf/open/floor/plating,
-/area/maintenance/electrical)
+/area/maintenance/department/electrical)
"egc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/sign/poster/official/help_others{
@@ -111433,9 +104063,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"egd" = (
/obj/structure/table/glass,
/obj/item/weapon/clipboard,
@@ -111447,9 +104075,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ege" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/pill_bottle/dice,
@@ -111459,9 +104085,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"egf" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/sign/poster/contraband/random{
@@ -111479,13 +104103,9 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"egh" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/effect/decal/cleanable/dirt,
/obj/structure/sign/poster/contraband/random{
pixel_x = 32
@@ -111501,7 +104121,7 @@
pixel_x = -32
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"egj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -111516,9 +104136,7 @@
pixel_y = -32
},
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"egk" = (
/obj/structure/table/reinforced,
/obj/item/stack/cable_coil/white{
@@ -111532,7 +104150,7 @@
pixel_x = 32
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"egl" = (
/obj/machinery/light/small{
dir = 8
@@ -111568,9 +104186,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"egp" = (
/obj/machinery/light/small,
/obj/effect/decal/cleanable/dirt,
@@ -111604,9 +104220,7 @@
pixel_x = 32
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"egs" = (
/obj/structure/sign/poster/official/report_crimes{
pixel_y = 32
@@ -111614,9 +104228,7 @@
/turf/open/floor/wood{
icon_state = "wood-broken5"
},
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"egt" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/camera{
@@ -111636,19 +104248,14 @@
/obj/machinery/light/small{
dir = 4
},
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/obj/structure/sign/poster/official/do_not_question{
pixel_x = 32
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/security/detectives_office{
- name = "Private Investigator's Office"
- })
+/area/security/detectives_office/private_investigators_office)
"egv" = (
/obj/item/weapon/storage/toolbox/mechanical{
pixel_x = -3;
@@ -111665,9 +104272,7 @@
pixel_y = -32
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"egw" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/box/donkpockets,
@@ -111677,9 +104282,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"egx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -111701,9 +104304,7 @@
/turf/open/floor/plasteel/blue/side{
dir = 10
},
-/area/bridge{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"egz" = (
/obj/machinery/disposal/bin,
/obj/machinery/light{
@@ -111723,15 +104324,10 @@
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
+ icon_state = "plant-21"
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"egB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
@@ -111741,15 +104337,12 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"egC" = (
/obj/machinery/power/apc{
- cell_type = 10000;
+ cell_type = 5000;
dir = 1;
name = "Departure Lounge APC";
- pixel_x = 0;
pixel_y = 28
},
/obj/machinery/camera{
@@ -111764,39 +104357,28 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"egD" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"egE" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"egF" = (
/obj/effect/turf_decal/delivery,
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
+ icon_state = "plant-21"
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"egG" = (
/obj/machinery/atmospherics/components/unary/tank/air{
dir = 1
@@ -111806,8 +104388,7 @@
},
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/structure/sign/poster/official/work_for_a_future{
pixel_y = -32
@@ -111821,9 +104402,7 @@
icon_state = "plant-22"
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"egI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
@@ -111833,30 +104412,22 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"egJ" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"egK" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"egL" = (
/obj/effect/turf_decal/delivery,
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"egM" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -111866,21 +104437,15 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"egN" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"egO" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"egP" = (
/obj/structure/bodycontainer/morgue,
/obj/structure/sign/poster/official/ian{
@@ -111895,7 +104460,7 @@
/turf/open/floor/plasteel/red/side{
dir = 9
},
-/area/security/checkpoint2)
+/area/security/checkpoint/checkpoint2)
"egR" = (
/obj/structure/table/wood,
/obj/machinery/firealarm{
@@ -111938,9 +104503,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"egU" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 8;
@@ -111950,9 +104513,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"egV" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/external{
@@ -111963,9 +104524,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"egW" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/external{
@@ -111976,9 +104535,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"egX" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
@@ -111988,9 +104545,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"egY" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/external{
@@ -112001,9 +104556,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"egZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/external{
@@ -112014,9 +104567,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"eha" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 8;
@@ -112026,9 +104577,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"ehb" = (
/obj/structure/chair{
dir = 4;
@@ -112106,8 +104655,7 @@
"ehj" = (
/obj/machinery/requests_console{
department = "Arrival shuttle";
- name = "Arrivals Shuttle console";
- pixel_y = 0
+ name = "Arrivals Shuttle console"
},
/turf/closed/wall/mineral/titanium/nodiagonal,
/area/shuttle/arrival)
@@ -112166,16 +104714,13 @@
},
/area/shuttle/escape)
"ehr" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
/obj/machinery/light{
icon_state = "tube1";
dir = 8
},
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
/turf/open/floor/plasteel/neutral/side{
dir = 8;
heat_capacity = 1e+006
@@ -112201,10 +104746,7 @@
/area/shuttle/escape)
"ehu" = (
/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
+ icon_state = "plant-21"
},
/obj/machinery/light{
icon_state = "tube1";
@@ -112302,7 +104844,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"ehO" = (
/obj/structure/displaycase/trophy,
/turf/open/floor/wood,
@@ -112327,9 +104869,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
"ehT" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -112339,9 +104879,629 @@
},
/obj/machinery/meter,
/turf/open/floor/plasteel,
-/area/engine/gravity_generator{
- name = "Atmospherics Engine"
- })
+/area/engine/atmospherics_engine)
+"ehU" = (
+/turf/closed/wall,
+/area/crew_quarters/toilet/auxiliary)
+"ehV" = (
+/turf/closed/wall,
+/area/quartermaster/office)
+"ehW" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"ehX" = (
+/turf/closed/wall,
+/area/quartermaster/office)
+"ehY" = (
+/turf/closed/wall,
+/area/quartermaster/office)
+"ehZ" = (
+/turf/closed/wall,
+/area/quartermaster/office)
+"eia" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"eib" = (
+/obj/machinery/status_display,
+/turf/closed/wall,
+/area/quartermaster/office)
+"eic" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"eid" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"eie" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"eif" = (
+/turf/closed/wall,
+/area/quartermaster/office)
+"eig" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/solars/starboard/aft)
+"eih" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/solars/starboard/aft)
+"eii" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/solars/starboard/aft)
+"eij" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/solars/starboard/aft)
+"eik" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/aft)
+"eil" = (
+/obj/structure/sign/directions/engineering{
+ desc = "A sign that shows there are doors here. There are doors everywhere!";
+ icon_state = "doors";
+ name = "WARNING: EXTERNAL AIRLOCK"
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/solars/starboard/aft)
+"eim" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/aft)
+"ein" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/aft)
+"eio" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/aft)
+"eip" = (
+/obj/structure/cable/white{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/aft)
+"eiq" = (
+/obj/machinery/power/terminal{
+ icon_state = "term";
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/effect/landmark/blobstart,
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/aft)
+"eir" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/aft)
+"eis" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/external{
+ name = "External Solar Access";
+ req_access_txt = "10; 13"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/solars/starboard/aft)
+"eit" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/fans/tiny,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/maintenance/solars/starboard/aft)
+"eiu" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/external{
+ name = "External Solar Access";
+ req_access_txt = "10; 13"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/solars/starboard/aft)
+"eiv" = (
+/obj/structure/sign/electricshock,
+/turf/closed/wall/r_wall,
+/area/maintenance/solars/starboard/aft)
+"eiw" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/aft)
+"eix" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/aft)
+"eiy" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/aft)
+"eiz" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/solars/starboard/aft)
+"eiA" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/solars/starboard/aft)
+"eiB" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/aft)
+"eiC" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/solars/starboard/aft)
+"eiD" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/aft)
+"eiE" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Port Primary Hallway APC";
+ pixel_x = 26
+ },
+/obj/structure/cable/white{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 4
+ },
+/area/hallway/primary/port)
+"eiF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Starboard Primary Hallway APC";
+ pixel_y = -26
+ },
+/obj/structure/cable/white{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/neutral/corner,
+/area/hallway/primary/starboard)
+"eiG" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/white{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 8
+ },
+/area/maintenance/starboard/aft)
+"eiH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/white{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Starboard Quarter Maintenace APC";
+ pixel_x = 26
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"eiI" = (
+/obj/structure/cable/white{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/neutral,
+/area/hallway/primary/aft)
+"eiJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Aft Primary Hallway APC";
+ pixel_x = 26
+ },
+/obj/structure/cable/white{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/neutral/corner,
+/area/hallway/primary/aft)
+"eiK" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/neutral,
+/area/hallway/primary/aft)
+"eiL" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/neutral,
+/area/hallway/primary/aft)
+"eiM" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/neutral,
+/area/hallway/primary/aft)
+"eiN" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/neutral,
+/area/hallway/primary/aft)
+"eiO" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/neutral,
+/area/hallway/primary/aft)
+"eiP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/secondary/command)
+"eiQ" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ icon_state = "manifold";
+ dir = 1
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/secondary/command)
+"eiR" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/secondary/command)
+"eiS" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/neutral/corner,
+/area/hallway/secondary/command)
+"eiT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/crew_quarters/dorms)
+"eiU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/crew_quarters/dorms)
+"eiV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/crew_quarters/dorms)
+"eiW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/crew_quarters/dorms)
+"eiX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/crew_quarters/dorms)
+"eiY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/crew_quarters/dorms)
+"eiZ" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/dorms)
+"eja" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/dorms)
+"ejb" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/dorms)
+"ejc" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/crew_quarters/dorms)
+"ejd" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/crew_quarters/dorms)
+"eje" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel/neutral,
+/area/crew_quarters/dorms)
+"ejf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/neutral,
+/area/crew_quarters/dorms)
+"ejg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral,
+/area/crew_quarters/dorms)
+"ejh" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel/neutral,
+/area/crew_quarters/dorms)
+"eji" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ icon_state = "manifold";
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral,
+/area/crew_quarters/dorms)
+"ejj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8;
+ heat_capacity = 1e+006
+ },
+/area/crew_quarters/dorms)
+"ejk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/neutral/corner,
+/area/crew_quarters/dorms)
+"ejl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral/corner,
+/area/crew_quarters/dorms)
+"ejm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/crew_quarters/dorms)
+"ejn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/crew_quarters/dorms)
+"ejo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/crew_quarters/dorms)
+"ejp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/crew_quarters/dorms)
+"ejq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/crew_quarters/dorms)
+"ejr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/crew_quarters/dorms)
+"ejs" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/whitepurple/corner{
+ dir = 1
+ },
+/area/science/research)
+"ejt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/neutral,
+/area/science/research)
+"eju" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/open/floor/plasteel/whitepurple/corner{
+ dir = 8
+ },
+/area/science/research)
+"ejv" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light_switch{
+ pixel_x = -26
+ },
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"ejw" = (
+/obj/item/weapon/twohanded/required/kirbyplants/random,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light_switch{
+ pixel_x = 22;
+ pixel_y = -10
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/engine/transit_tube)
+"ejx" = (
+/obj/item/weapon/twohanded/required/kirbyplants/random,
+/obj/machinery/light_switch{
+ pixel_x = -26
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/turret_protected/aisat_interior)
+"ejy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/brown,
+/area/maintenance/disposal)
+"ejz" = (
+/obj/item/weapon/twohanded/required/kirbyplants/random,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/abandoned_gambling_den)
+"ejA" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"ejB" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/machinery/portable_atmospherics/pump,
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 1
+ },
+/area/crew_quarters/locker)
(1,1,1) = {"
aaa
@@ -121205,13 +114365,13 @@ bFA
bHp
bJp
bLu
-bNv
+bNr
bPl
bRs
bTK
bVL
bLp
-bZc
+bYY
cbb
ccO
cev
@@ -121980,7 +115140,7 @@ bNw
bPo
ebZ
bTM
-bNw
+ejx
bLp
bYV
bYV
@@ -133072,7 +126232,7 @@ aaf
aaf
aaf
dcs
-dgQ
+aJm
egl
dks
egm
@@ -134054,9 +127214,9 @@ bDL
bFF
bHA
bJC
-bLC
+ejw
bNK
-bPB
+bLC
bRO
bTV
bVT
@@ -136066,7 +129226,7 @@ aqY
asd
axL
aux
-avM
+aux
awR
ehS
axL
@@ -136672,13 +129832,13 @@ ddV
dfM
ddV
diL
-aRq
+aJm
dmb
dnA
doK
dqw
diJ
-aRq
+aJm
aHW
aaf
aaa
@@ -137107,7 +130267,7 @@ aGw
aHN
aIZ
aKw
-aMc
+aMa
aNL
aPm
aRg
@@ -137452,7 +130612,7 @@ dsg
dgY
dkE
dwi
-dxo
+ddX
dcE
aaf
aaf
@@ -138480,7 +131640,7 @@ dfP
dtA
dsk
diO
-dxq
+doN
dcE
aaf
agg
@@ -139508,7 +132668,7 @@ diS
dtD
dhe
duI
-dxu
+deb
dcE
aaf
aaa
@@ -140761,7 +133921,7 @@ bWg
cwo
cxU
czx
-cBl
+ejA
cCF
bWg
cFi
@@ -140980,7 +134140,7 @@ aJg
aib
bmu
bot
-bot
+eiE
brx
brx
btX
@@ -142527,7 +135687,7 @@ brB
bsM
bub
brB
-bxm
+bxk
bze
bAP
bCy
@@ -142764,7 +135924,7 @@ aKF
eff
aNX
aPD
-aRq
+aJm
aHW
aoQ
aGI
@@ -143073,7 +136233,7 @@ ctq
cuX
cwu
cxZ
-czF
+crK
bWi
cCK
bZD
@@ -143251,7 +136411,7 @@ aaa
aaa
aaa
aiY
-ajY
+ajU
akW
alZ
anj
@@ -143530,7 +136690,7 @@ awX
aqg
aoT
aHW
-aJm
+ejz
ecs
aMr
aOa
@@ -143607,7 +136767,7 @@ cYF
cZR
dbj
dcJ
-cOW
+eju
dad
dhq
djj
@@ -144514,7 +137674,7 @@ aaD
aax
aax
aaD
-abP
+abT
aax
acj
aax
@@ -144591,7 +137751,7 @@ bEo
bCC
bCC
bKf
-bIc
+bCF
bAZ
bQd
bSn
@@ -145394,7 +138554,7 @@ cFs
cGK
cId
cJM
-cLs
+ejs
cLs
cOO
cOO
@@ -145874,7 +139034,7 @@ bAY
bCF
bEt
bGl
-bIc
+bCF
bKi
bMh
bMi
@@ -145888,7 +139048,7 @@ bWi
cdv
ceS
cgp
-chT
+cdn
cjs
ckT
cmp
@@ -147460,8 +140620,8 @@ cVv
cXm
cYM
dac
-dbo
-cLE
+dbm
+ejt
dez
dgr
dhD
@@ -147623,7 +140783,7 @@ aji
akj
ali
alg
-anu
+ans
ahu
aoV
aqn
@@ -148206,7 +141366,7 @@ cjw
ckX
bQn
cnM
-cpp
+eiR
cqH
crY
ctF
@@ -148655,12 +141815,12 @@ akm
aom
aoZ
aqq
-aib
-aib
-aib
-aib
-aib
-aib
+ehU
+ehU
+ehU
+ehU
+ehU
+ehU
ayy
azx
aAx
@@ -148912,13 +142072,13 @@ ahA
ahA
aoV
aqr
-arv
+ehU
asM
atO
atO
awk
axh
-ayz
+ayy
aqg
aAx
aBC
@@ -149169,13 +142329,13 @@ anx
ahA
apa
aqs
-arv
+ehU
asN
atP
avh
-arv
-arv
-ayz
+ehU
+ehU
+ayy
aqc
aAx
aBD
@@ -149426,13 +142586,13 @@ any
aon
apb
aqt
-arv
+ehU
asO
atQ
avi
awk
axi
-ayz
+ayy
aqg
aAx
aBE
@@ -149683,13 +142843,13 @@ anz
ahA
apc
aqu
-arv
+ehU
asP
atR
avj
-arv
-arv
-ayz
+ehU
+ehU
+ayy
aqc
aAx
aBF
@@ -149940,13 +143100,13 @@ ahA
ahB
aib
aqv
-arv
-arv
+ehU
+ehU
atS
avk
awk
axj
-ayz
+ayy
azy
aAx
aBG
@@ -150198,12 +143358,12 @@ afO
apd
aqw
arw
-arv
+ehU
atT
avl
-arv
-arv
-ayz
+ehU
+ehU
+ayy
aqc
aAx
aBH
@@ -150460,7 +143620,7 @@ atU
avm
awl
axk
-ayz
+ayy
aqe
aAx
aBI
@@ -150713,11 +143873,11 @@ ape
aqy
ary
asR
-arv
-arv
-arv
-arv
-ayz
+ehU
+ehU
+ehU
+ehU
+ayy
azz
aAx
aAx
@@ -150775,7 +143935,7 @@ ecG
cjC
clc
cmt
-cnM
+eiP
cpy
cqM
csf
@@ -151329,13 +144489,13 @@ drc
dgz
cKe
cKe
-cKe
-cKe
+eiI
+eiK
dyV
-cKe
-cKe
-cKe
-cKe
+eiK
+eiK
+eiK
+eiK
dES
dGr
dHN
@@ -151586,7 +144746,7 @@ drd
dsF
due
dpB
-cSq
+eiJ
dxQ
dyW
dAk
@@ -151758,12 +144918,12 @@ aBM
aBM
aBM
aBM
-aBM
+ehV
aRL
aTt
-aEk
-aBM
-aBM
+ehW
+ehV
+ehV
aZZ
bbv
bcG
@@ -152020,7 +145180,7 @@ aRM
aTu
aUW
aWR
-aBM
+ehV
baa
bbw
bcH
@@ -152515,7 +145675,7 @@ asW
atZ
aua
awq
-aua
+ejv
ayC
azF
aAB
@@ -152791,7 +145951,7 @@ aRP
aTx
aUZ
aWU
-aEk
+ehW
bad
bbz
bcK
@@ -153048,7 +146208,7 @@ aRQ
aTy
aUZ
aWV
-aJG
+eib
bae
bbz
bcL
@@ -153088,8 +146248,8 @@ cfi
cfi
cfi
cfi
-cnV
-cpG
+eiQ
+eiS
cqS
csm
ctS
@@ -153304,8 +146464,8 @@ aQi
aRQ
aTz
aVa
-aWW
-aEk
+aWU
+ehW
baf
bbA
bcM
@@ -153562,7 +146722,7 @@ aRR
aTA
aVb
aWX
-aEk
+ehW
baf
bbz
bcK
@@ -153819,7 +146979,7 @@ aRQ
aTB
aUZ
aWY
-aEk
+ehW
baf
bbz
bcL
@@ -154333,7 +147493,7 @@ aRT
aTC
aVc
aXa
-aBM
+ehV
bah
bag
bcN
@@ -154563,7 +147723,7 @@ aeX
alA
amz
anK
-aoq
+amz
apn
aeX
arL
@@ -158421,7 +151581,7 @@ alJ
alJ
apw
aqS
-arW
+ejy
alJ
aaf
aaf
@@ -159501,7 +152661,7 @@ bMV
bOK
bQN
bSZ
-bUW
+eiF
bWM
bYH
cax
@@ -159517,10 +152677,10 @@ con
bWM
crg
csA
-cuj
+cuh
cvF
cxj
-cyP
+cyH
cAB
cBV
cDm
@@ -161568,7 +154728,7 @@ cgR
ciC
cke
clx
-cmO
+ejB
cos
cpQ
crr
@@ -161835,7 +154995,7 @@ cvN
cxr
cvN
cAI
-cCc
+cBX
csB
cEn
cFY
@@ -161863,7 +155023,7 @@ dnu
dow
dqk
drO
-dkj
+eiG
duz
dvR
dxd
@@ -162120,7 +155280,7 @@ daL
dox
dql
daL
-cWq
+eiH
cWq
dvS
dxe
@@ -162607,11 +155767,11 @@ cxt
cyT
cAK
cCe
-cvP
-cEq
+eiT
+eiZ
cGb
cHs
-cvP
+eiT
eci
cCg
cNS
@@ -162866,7 +156026,7 @@ cyT
cyT
cDp
cEq
-cGc
+eje
cHt
cIM
cyX
@@ -163121,11 +156281,11 @@ cxv
cyU
cAL
cCf
-cvP
-cEq
+eiU
+eja
cGd
cHu
-cvP
+eiU
cKK
cMj
cyX
@@ -163635,11 +156795,11 @@ cxw
cyV
cCg
ech
-cvP
-cEq
-cGc
-cHt
-cvP
+eiT
+eiZ
+ejf
+ejj
+eiT
cKL
cMk
cyY
@@ -164149,11 +157309,11 @@ cxy
cyX
cAM
cCh
-cvP
-cEt
-cGc
-cHx
-cvP
+eiU
+ejc
+ejg
+ejl
+eiU
cKM
cyZ
cyZ
@@ -164167,7 +157327,7 @@ cZG
daI
dcp
ddG
-dfx
+cZG
dgP
diz
dkn
@@ -164370,7 +157530,7 @@ bpr
bqP
bsf
bdm
-buL
+biB
bkd
byg
bdm
@@ -164408,7 +157568,7 @@ cvP
cvP
cvP
cEu
-cGc
+ejh
cHx
cvP
cvP
@@ -164663,11 +157823,11 @@ cxz
cyY
cAN
cCi
-cvP
+eiT
cEv
-cFY
+eji
cHy
-cvP
+eiT
cKN
cMl
cyT
@@ -165177,11 +158337,11 @@ cxB
cyZ
cyZ
cCj
-cvP
-cEt
+eiU
+ejc
cGg
-cHx
-cvP
+ejl
+eiU
cKO
cMm
cNU
@@ -165204,11 +158364,11 @@ daM
cDe
cDe
dfA
-abf
-abL
+eig
+eil
dwa
-abl
-abf
+eiv
+eig
dzC
dAU
dCi
@@ -165461,11 +158621,11 @@ aaf
cDe
dqq
drW
-abf
+eig
duB
-abv
+eip
dxk
-abf
+eig
dys
dAV
dys
@@ -165718,11 +158878,11 @@ aaa
daM
dqr
drX
-abf
+eig
duC
-abw
+eiq
abN
-abg
+eik
aaf
aaf
aaf
@@ -165975,11 +159135,11 @@ aaf
daM
dqs
drY
-abf
+eig
duD
-abx
+eir
dxl
-abf
+eig
aaf
agg
agg
@@ -166232,11 +159392,11 @@ aaa
daM
daM
cDe
-abg
-abg
-aby
-abg
-abg
+eik
+eik
+eis
+eik
+eik
aaf
aaa
aaa
@@ -166426,7 +159586,7 @@ bpz
bqV
bsm
btu
-buL
+biB
bwv
byn
bdm
@@ -166490,9 +159650,9 @@ aaf
aaf
aaf
aaf
-abg
-abz
-abg
+eik
+eit
+eik
aaf
aaa
aaa
@@ -166747,9 +159907,9 @@ aaa
agg
agg
aaf
-abg
-aby
-abg
+eik
+eis
+eik
aaf
aaf
agg
diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm
index 303005c32f..9290c25c95 100644
--- a/_maps/map_files/MetaStation/MetaStation.dmm
+++ b/_maps/map_files/MetaStation/MetaStation.dmm
@@ -48,7 +48,7 @@
},
/obj/machinery/power/tracker,
/turf/open/floor/plating/airless,
-/area/solar/auxport)
+/area/solar/port/fore)
"aai" = (
/obj/structure/grille/broken,
/obj/structure/lattice,
@@ -62,12 +62,11 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxport)
+/area/solar/port/fore)
"aal" = (
/obj/structure/cable{
icon_state = "0-2";
@@ -78,12 +77,12 @@
name = "Fore-Port Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/auxport)
+/area/solar/port/fore)
"aam" = (
/obj/structure/cable,
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxport)
+/area/solar/port/fore)
"aan" = (
/obj/structure/cable{
d1 = 1;
@@ -97,13 +96,12 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxport)
+/area/solar/port/fore)
"aao" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
@@ -117,7 +115,7 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxport)
+/area/solar/port/fore)
"aap" = (
/obj/structure/cable{
d2 = 8;
@@ -125,11 +123,11 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxport)
+/area/solar/port/fore)
"aaq" = (
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxport)
+/area/solar/port/fore)
"aar" = (
/obj/structure/cable{
icon_state = "0-4";
@@ -137,13 +135,12 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxport)
+/area/solar/port/fore)
"aas" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
@@ -157,7 +154,7 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxport)
+/area/solar/port/fore)
"aat" = (
/obj/structure/cable{
d1 = 2;
@@ -171,7 +168,7 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxport)
+/area/solar/port/fore)
"aau" = (
/obj/structure/cable,
/obj/machinery/power/solar{
@@ -179,7 +176,7 @@
name = "Fore-Port Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/auxport)
+/area/solar/port/fore)
"aav" = (
/obj/effect/landmark/marauder_entry,
/turf/open/space,
@@ -188,7 +185,7 @@
/obj/item/stack/cable_coil,
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxport)
+/area/solar/port/fore)
"aax" = (
/turf/closed/wall/r_wall,
/area/security/prison)
@@ -205,7 +202,7 @@
/obj/effect/landmark/xeno_spawn,
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxport)
+/area/solar/port/fore)
"aaA" = (
/obj/machinery/seed_extractor,
/obj/machinery/light/small{
@@ -293,9 +290,7 @@
icon_state = "2-4"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
@@ -355,12 +350,12 @@
},
/obj/machinery/power/tracker,
/turf/open/floor/plating/airless,
-/area/solar/auxstarboard)
+/area/solar/starboard/fore)
"aaO" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aaP" = (
/obj/machinery/hydroponics/constructable,
/obj/item/weapon/cultivator,
@@ -389,7 +384,6 @@
/obj/item/device/plant_analyzer,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/open/floor/plasteel/floorgrime,
@@ -425,17 +419,14 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxstarboard)
+/area/solar/starboard/fore)
"aaZ" = (
/turf/closed/wall/r_wall,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aba" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -478,7 +469,7 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxport)
+/area/solar/port/fore)
"abg" = (
/obj/machinery/door/poddoor{
density = 1;
@@ -491,9 +482,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"abh" = (
/obj/item/weapon/soap/nanotrasen,
/obj/item/weapon/bikehorn/rubberducky,
@@ -555,14 +544,12 @@
"abm" = (
/obj/machinery/computer/arcade,
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
"abn" = (
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/plasteel,
@@ -603,7 +590,6 @@
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/plasteel/barber{
@@ -646,12 +632,12 @@
name = "Fore-Starboard Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/auxstarboard)
+/area/solar/starboard/fore)
"abw" = (
/obj/structure/cable,
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxstarboard)
+/area/solar/starboard/fore)
"abx" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -661,9 +647,7 @@
dir = 9
},
/turf/open/floor/plasteel/black,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aby" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
@@ -672,23 +656,17 @@
dir = 1
},
/turf/open/floor/plasteel/black,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"abz" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plasteel/black,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"abA" = (
/obj/machinery/shower{
dir = 4
@@ -808,13 +786,12 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxstarboard)
+/area/solar/starboard/fore)
"abP" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
@@ -828,7 +805,7 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxstarboard)
+/area/solar/starboard/fore)
"abQ" = (
/obj/structure/cable{
d2 = 8;
@@ -836,11 +813,11 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxstarboard)
+/area/solar/starboard/fore)
"abR" = (
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxstarboard)
+/area/solar/starboard/fore)
"abS" = (
/obj/structure/cable{
icon_state = "0-4";
@@ -848,13 +825,12 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxstarboard)
+/area/solar/starboard/fore)
"abT" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
@@ -868,7 +844,7 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxstarboard)
+/area/solar/starboard/fore)
"abU" = (
/obj/structure/cable{
d1 = 1;
@@ -882,7 +858,7 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxstarboard)
+/area/solar/starboard/fore)
"abV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/light/small{
@@ -897,9 +873,7 @@
dir = 8
},
/turf/open/floor/plasteel/black,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"abW" = (
/obj/structure/bed,
/obj/item/clothing/suit/straight_jacket,
@@ -909,9 +883,7 @@
/obj/effect/landmark/revenantspawn,
/obj/item/device/electropack,
/turf/open/floor/plasteel/black,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"abX" = (
/obj/machinery/flasher{
id = "justiceflash";
@@ -922,9 +894,7 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"abY" = (
/obj/machinery/door/airlock{
name = "Unisex Restroom";
@@ -1009,7 +979,6 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/turf_decal/stripes/line{
@@ -1028,22 +997,18 @@
name = "Fore-Starboard Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/auxstarboard)
+/area/solar/starboard/fore)
"acm" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plasteel/black,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"acn" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4;
@@ -1053,9 +1018,7 @@
dir = 2
},
/turf/open/floor/plasteel/black,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aco" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 2;
@@ -1065,9 +1028,7 @@
dir = 6
},
/turf/open/floor/plasteel/black,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"acp" = (
/obj/machinery/light/small{
dir = 4
@@ -1085,8 +1046,7 @@
},
/obj/machinery/airalarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/open/floor/plating{
icon_state = "panelscorched"
@@ -1161,7 +1121,6 @@
"acx" = (
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/open/floor/plasteel/floorgrime,
@@ -1176,7 +1135,7 @@
/obj/item/stack/cable_coil,
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxstarboard)
+/area/solar/starboard/fore)
"acA" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -1190,9 +1149,7 @@
/turf/open/floor/plasteel/darkred{
dir = 4
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"acB" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -1209,9 +1166,7 @@
/turf/open/floor/plasteel/darkred{
dir = 4
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"acC" = (
/obj/machinery/door/window/brigdoor{
dir = 2;
@@ -1221,9 +1176,7 @@
/obj/machinery/atmospherics/pipe/simple/general/hidden,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/window/reinforced{
dir = 8
@@ -1245,9 +1198,7 @@
/turf/open/floor/plasteel/darkred{
dir = 4
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"acD" = (
/obj/structure/table,
/obj/machinery/microwave{
@@ -1266,9 +1217,7 @@
"acF" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/light,
/turf/open/floor/plasteel,
@@ -1291,7 +1240,6 @@
desc = "Talk through this. It looks like it has been modified to not broadcast.";
dir = 2;
name = "Prison Intercom (General)";
- pixel_x = 0;
pixel_y = -28;
prison_radio = 1
},
@@ -1354,7 +1302,6 @@
/area/security/prison)
"acO" = (
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/table/glass,
@@ -1373,16 +1320,12 @@
/area/security/prison)
"acP" = (
/turf/closed/wall,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"acQ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"acR" = (
/obj/structure/table/glass,
/obj/item/weapon/reagent_containers/syringe,
@@ -1392,9 +1335,7 @@
/obj/machinery/camera{
c_tag = "Prison Sanitarium";
dir = 2;
- network = list("SS13","Prison");
- pixel_x = 0;
- pixel_y = 0
+ network = list("SS13","Prison")
},
/turf/open/floor/plasteel/whitered/side{
dir = 1
@@ -1408,17 +1349,16 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxport)
+/area/solar/port/fore)
"acT" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxport)
+/area/solar/port/fore)
"acU" = (
/obj/structure/cable{
d1 = 2;
@@ -1427,7 +1367,7 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxport)
+/area/solar/port/fore)
"acV" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/glass/bottle/morphine{
@@ -1458,7 +1398,6 @@
/obj/machinery/airalarm{
desc = "This particular atmos control unit appears to have no access restrictions.";
dir = 4;
- icon_state = "alarm0";
locked = 0;
name = "all-access air alarm";
pixel_x = -24;
@@ -1504,17 +1443,14 @@
/turf/open/floor/plasteel/darkred/side{
dir = 1
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"acW" = (
/obj/structure/table,
/obj/item/weapon/folder/red{
pixel_x = 3
},
/obj/item/device/taperecorder{
- pixel_x = -3;
- pixel_y = 0
+ pixel_x = -3
},
/obj/item/weapon/storage/fancy/cigarettes,
/obj/item/device/assembly/flash/handheld,
@@ -1526,9 +1462,7 @@
/turf/open/floor/plasteel/darkred/side{
dir = 1
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"acX" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -1537,9 +1471,7 @@
/turf/open/floor/plasteel/darkred/side{
dir = 1
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"acY" = (
/obj/structure/sink/kitchen{
desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
@@ -1552,9 +1484,7 @@
/turf/open/floor/plasteel/darkred/side{
dir = 1
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"acZ" = (
/obj/machinery/power/apc{
cell_type = 2500;
@@ -1576,9 +1506,7 @@
/turf/open/floor/plasteel/darkred/side{
dir = 1
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"ada" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
@@ -1678,9 +1606,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"adk" = (
/obj/structure/shuttle/engine/propulsion/burst{
dir = 8
@@ -1694,16 +1620,13 @@
/obj/structure/table,
/obj/item/device/flashlight/lamp,
/obj/structure/reagent_dispensers/peppertank{
- pixel_x = -29;
- pixel_y = 0
+ pixel_x = -29
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
/turf/open/floor/plasteel/black,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"adn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/chair/office/dark{
@@ -1714,26 +1637,18 @@
on = 1
},
/turf/open/floor/plasteel/black,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"ado" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden,
/turf/open/floor/plasteel/black,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"adp" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/black,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"adq" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -1748,15 +1663,11 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"adr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"ads" = (
/obj/structure/bed,
/obj/machinery/camera{
@@ -1774,7 +1685,6 @@
id = "permabolt3";
name = "Cell Bolt Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = 25;
req_access_txt = "0";
specialfunctions = 4
@@ -1807,7 +1717,6 @@
id = "permabolt2";
name = "Cell Bolt Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = 25;
req_access_txt = "0";
specialfunctions = 4
@@ -1833,7 +1742,6 @@
id = "permabolt1";
name = "Cell Bolt Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = 25;
req_access_txt = "0";
specialfunctions = 4
@@ -1848,17 +1756,14 @@
"adA" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/light{
dir = 8
},
/obj/machinery/airalarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/open/floor/plasteel/white,
/area/security/prison)
@@ -1892,9 +1797,7 @@
/area/space)
"adE" = (
/turf/open/floor/plating,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"adF" = (
/obj/machinery/door/airlock/titanium{
name = "Escape Pod Airlock"
@@ -1922,8 +1825,7 @@
/obj/machinery/status_display{
density = 0;
layer = 3;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/computer/shuttle/pod{
pixel_x = -32;
@@ -1942,8 +1844,7 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/structure/table,
/obj/item/weapon/storage/backpack/dufflebag/sec{
@@ -1959,9 +1860,7 @@
/turf/open/floor/plasteel/darkred/side{
dir = 2
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"adK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
@@ -1969,9 +1868,7 @@
/turf/open/floor/plasteel/darkred/side{
dir = 2
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"adL" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -1980,15 +1877,12 @@
/turf/open/floor/plasteel/darkred/side{
dir = 2
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"adM" = (
/obj/machinery/button/door{
id = "prisonereducation";
name = "Door Bolt Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = -25;
req_access_txt = "0";
specialfunctions = 4
@@ -2000,13 +1894,10 @@
/turf/open/floor/plasteel/darkred/side{
dir = 2
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"adN" = (
/obj/machinery/light_switch{
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -2019,9 +1910,7 @@
/turf/open/floor/plasteel/darkred/side{
dir = 2
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"adO" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
@@ -2040,9 +1929,7 @@
/obj/item/weapon/pen,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
@@ -2080,9 +1967,7 @@
/obj/item/weapon/paper,
/obj/item/weapon/pen,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
@@ -2134,7 +2019,7 @@
/area/security/warden)
"adZ" = (
/turf/closed/wall/r_wall,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"aea" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -2147,7 +2032,7 @@
name = "space shutters"
},
/turf/open/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"aeb" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -2164,7 +2049,7 @@
name = "space shutters"
},
/turf/open/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"aec" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -2181,20 +2066,18 @@
name = "space shutters"
},
/turf/open/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"aed" = (
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plating,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aee" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"aef" = (
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
@@ -2207,7 +2090,7 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"aeg" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
@@ -2217,9 +2100,7 @@
dir = 1
},
/turf/open/floor/plasteel/black,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aeh" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 10
@@ -2233,9 +2114,7 @@
req_access_txt = "0"
},
/turf/open/floor/plasteel/black,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aei" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
@@ -2249,9 +2128,7 @@
req_access_txt = "0"
},
/turf/open/floor/plasteel/black,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aej" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
@@ -2270,9 +2147,7 @@
/turf/open/floor/plasteel/red/side{
dir = 1
},
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aek" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
@@ -2359,7 +2234,6 @@
"aet" = (
/obj/structure/table/wood,
/obj/machinery/newscaster/security_unit{
- pixel_x = 0;
pixel_y = 32
},
/obj/item/weapon/folder/red,
@@ -2375,15 +2249,15 @@
pixel_y = 34
},
/turf/open/floor/plasteel/black,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"aeu" = (
/obj/machinery/computer/prisoner,
/turf/open/floor/plasteel/black,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"aev" = (
/obj/machinery/computer/security,
/turf/open/floor/plasteel/black,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"aew" = (
/obj/machinery/computer/secure_data,
/obj/structure/cable/yellow{
@@ -2392,7 +2266,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/black,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"aex" = (
/obj/structure/closet/secure_closet/lethalshots,
/turf/open/floor/plasteel/vault{
@@ -2412,17 +2286,13 @@
name = "Escape Pod Three"
},
/turf/open/floor/plating,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aeB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/closed/wall,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aeC" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -2430,9 +2300,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aeD" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -2441,9 +2309,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aeE" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -2451,14 +2317,12 @@
dir = 10
},
/turf/open/floor/plating,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aeF" = (
/obj/effect/landmark/xeno_spawn,
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/auxstarboard)
+/area/solar/starboard/fore)
"aeG" = (
/obj/structure/cable{
d1 = 1;
@@ -2469,16 +2333,14 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"aeH" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/turf/open/floor/plasteel/vault,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aeI" = (
/obj/item/weapon/tank/internals/oxygen/red{
pixel_x = -4;
@@ -2501,18 +2363,14 @@
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/obj/item/weapon/wrench,
/turf/open/floor/plasteel/vault,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aeJ" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 9
},
/obj/machinery/space_heater,
/turf/open/floor/plasteel/vault,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"aeK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/yellow{
@@ -2615,7 +2473,6 @@
desc = "Used for watching Prison Wing holding areas.";
name = "Prison Monitor";
network = list("Prison");
- pixel_x = 0;
pixel_y = 30
},
/obj/machinery/camera{
@@ -2699,7 +2556,6 @@
desc = "Used for watching Prison Wing holding areas.";
name = "Prison Monitor";
network = list("Prison");
- pixel_x = 0;
pixel_y = 30
},
/turf/open/floor/plasteel/red/corner{
@@ -2872,8 +2728,7 @@
/area/security/prison)
"afd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-16";
@@ -2898,7 +2753,6 @@
department = "Head of Security's Desk";
departmentType = 5;
name = "Head of Security RC";
- pixel_x = 0;
pixel_y = 30
},
/obj/machinery/computer/med_data/laptop,
@@ -2912,7 +2766,7 @@
network = list("SS13")
},
/turf/open/floor/plasteel/black,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"aff" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -2944,7 +2798,6 @@
},
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/item/device/radio/intercom{
@@ -2955,7 +2808,7 @@
pixel_y = 23
},
/turf/open/floor/plasteel/black,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"afj" = (
/obj/machinery/status_display{
density = 0;
@@ -2970,17 +2823,17 @@
pressure_checks = 1
},
/turf/open/floor/plasteel/black,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"afk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/plasteel/black,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"afl" = (
/obj/structure/chair/comfy/black,
/turf/open/floor/plasteel/black,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"afm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
@@ -2991,7 +2844,7 @@
icon_state = "1-4"
},
/turf/open/floor/plasteel/black,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"afn" = (
/obj/machinery/status_display{
density = 0;
@@ -3001,9 +2854,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/yellow{
d1 = 2;
@@ -3011,14 +2862,13 @@
icon_state = "2-8"
},
/turf/open/floor/plasteel/black,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"afo" = (
/obj/machinery/light{
dir = 4
},
/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/obj/structure/extinguisher_cabinet{
pixel_x = 27;
@@ -3026,7 +2876,7 @@
},
/obj/machinery/suit_storage_unit/hos,
/turf/open/floor/plasteel/black,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"afp" = (
/obj/machinery/light/small{
dir = 1
@@ -3053,7 +2903,6 @@
/area/security/range)
"afs" = (
/obj/machinery/shower{
- icon_state = "shower";
dir = 4
},
/obj/machinery/door/window/eastright{
@@ -3063,15 +2912,11 @@
name = "shower"
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aft" = (
/obj/structure/reagent_dispensers/water_cooler,
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"afu" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/drinks/sillycup{
@@ -3092,61 +2937,43 @@
pixel_y = 3
},
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"afv" = (
/obj/structure/easel,
/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"afw" = (
/obj/structure/closet/masks,
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"afx" = (
/obj/structure/closet/athletic_mixed,
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"afy" = (
/obj/structure/closet/boxinggloves,
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"afz" = (
/obj/structure/closet/emcloset,
/obj/structure/sign/pods{
pixel_y = 30
},
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"afA" = (
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"afB" = (
/obj/machinery/computer/arcade,
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"afC" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"afD" = (
/turf/open/floor/engine{
name = "Holodeck Projector Floor"
@@ -3164,7 +2991,7 @@
req_access_txt = "10; 13"
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"afF" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "applebush";
@@ -3219,7 +3046,6 @@
dir = 4
},
/obj/machinery/newscaster/security_unit{
- pixel_x = 0;
pixel_y = -30
},
/turf/open/floor/plasteel/red/corner{
@@ -3266,7 +3092,6 @@
dir = 4
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/turf/open/floor/plasteel/red/corner{
@@ -3281,7 +3106,6 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = -30
},
/turf/open/floor/plasteel/red/corner{
@@ -3346,9 +3170,7 @@
"afU" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/red/corner{
dir = 1
@@ -3368,9 +3190,7 @@
"afX" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/item/weapon/storage/secure/safe{
name = "armory safe B";
@@ -3378,8 +3198,7 @@
pixel_y = 28
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/security/armory)
@@ -3392,7 +3211,6 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/rack,
@@ -3477,7 +3295,7 @@
name = "privacy shutters"
},
/turf/open/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"agf" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/secure/briefcase{
@@ -3491,7 +3309,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/black,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"agg" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -3499,18 +3317,18 @@
icon_state = "2-8"
},
/turf/open/floor/plasteel/black,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"agh" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/carpet,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"agi" = (
/obj/structure/table/wood,
/obj/item/weapon/stamp/hos,
/turf/open/floor/carpet,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"agj" = (
/obj/item/weapon/phone{
desc = "Supposedly a direct line to NanoTrasen Central Command. It's not even plugged in.";
@@ -3524,7 +3342,7 @@
/obj/structure/table/wood,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/carpet,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"agk" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -3537,7 +3355,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/black,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"agl" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin{
@@ -3550,7 +3368,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/black,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"agm" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -3567,7 +3385,7 @@
name = "privacy shutters"
},
/turf/open/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"agn" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -3590,7 +3408,6 @@
/area/maintenance/fore)
"agr" = (
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
@@ -3599,7 +3416,6 @@
id = "FitnessShower";
name = "Lock Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = -25;
req_access_txt = "0";
specialfunctions = 4
@@ -3609,18 +3425,14 @@
},
/obj/machinery/light/small,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"ags" = (
/obj/machinery/door/airlock{
id_tag = "FitnessShower";
name = "Fitness Room Shower"
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"agt" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -3630,9 +3442,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"agu" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -3642,9 +3452,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"agv" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -3661,9 +3469,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"agw" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -3671,9 +3477,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"agx" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -3683,9 +3487,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"agy" = (
/obj/machinery/light{
dir = 1
@@ -3693,7 +3495,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "Recreation Area APC";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable/yellow{
@@ -3703,23 +3504,19 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"agz" = (
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"agA" = (
/turf/closed/wall/r_wall,
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"agB" = (
/obj/machinery/power/solar_control{
id = "foreport";
- name = "Fore Port Solar Control";
+ name = "Port Bow Solar Control";
track = 0
},
/obj/structure/cable{
@@ -3727,7 +3524,7 @@
d2 = 4
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"agC" = (
/obj/structure/cable{
d1 = 1;
@@ -3743,20 +3540,19 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"agD" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/open/floor/plating{
icon_state = "platingdmg2"
},
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"agE" = (
/obj/structure/table,
/obj/item/weapon/folder/red{
@@ -3851,7 +3647,6 @@
pixel_y = 4
},
/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 0;
pixel_y = -30
},
/turf/open/floor/plasteel/vault,
@@ -3879,9 +3674,7 @@
"agR" = (
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -22
},
/obj/structure/rack,
/obj/item/weapon/storage/fancy/donut_box,
@@ -3939,12 +3732,12 @@
name = "privacy shutters"
},
/turf/open/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"agW" = (
/obj/structure/table/wood,
/obj/machinery/recharger,
/turf/open/floor/plasteel/black,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"agX" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -3952,11 +3745,11 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/black,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"agY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/carpet,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"agZ" = (
/obj/machinery/holopad,
/obj/structure/chair{
@@ -3964,7 +3757,7 @@
},
/obj/effect/landmark/start/head_of_security,
/turf/open/floor/carpet,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"aha" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/mob/living/simple_animal/hostile/retaliate/bat{
@@ -3990,19 +3783,17 @@
voice_name = "unidentifiable voice"
},
/turf/open/floor/carpet,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"ahb" = (
/obj/structure/table/wood,
/obj/item/device/taperecorder{
- pixel_x = -4;
- pixel_y = 0
+ pixel_x = -4
},
/obj/item/device/radio/off{
- pixel_x = 0;
pixel_y = 3
},
/turf/open/floor/plasteel/black,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"ahc" = (
/turf/open/floor/plasteel,
/area/security/range)
@@ -4023,60 +3814,44 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"ahg" = (
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"ahh" = (
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"ahi" = (
/obj/structure/chair,
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"ahj" = (
/obj/structure/chair,
/obj/effect/landmark/start/assistant,
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"ahk" = (
/obj/structure/chair,
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"ahl" = (
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"ahm" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"ahn" = (
/obj/structure/chair{
dir = 4
@@ -4084,17 +3859,13 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aho" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
req_access_txt = "0"
},
/turf/closed/wall,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"ahp" = (
/turf/closed/wall,
/area/maintenance/disposal)
@@ -4112,7 +3883,7 @@
network = list("SS13")
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"ahs" = (
/obj/structure/cable{
d1 = 1;
@@ -4125,7 +3896,7 @@
},
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"aht" = (
/obj/structure/cable{
d2 = 8;
@@ -4142,7 +3913,7 @@
pixel_x = 29
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"ahu" = (
/obj/machinery/suit_storage_unit/security,
/turf/open/floor/plasteel/vault{
@@ -4157,8 +3928,7 @@
/area/security/brig)
"ahw" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/machinery/suit_storage_unit/security,
/turf/open/floor/plasteel/vault{
@@ -4227,8 +3997,7 @@
/obj/item/clothing/head/helmet/riot,
/obj/machinery/firealarm{
dir = 4;
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/turf/open/floor/plasteel/vault{
dir = 4
@@ -4322,7 +4091,6 @@
id = "armory";
name = "Armory Shutters";
pixel_x = 28;
- pixel_y = 0;
req_access_txt = "3"
},
/turf/open/floor/plasteel/vault{
@@ -4333,8 +4101,7 @@
/obj/machinery/disposal/bin,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/light_switch{
pixel_x = -24;
@@ -4348,11 +4115,10 @@
dir = 1;
name = "Head of Security's Monitor";
network = list("Prison","MiniSat","tcomm");
- pixel_x = 0;
pixel_y = -30
},
/turf/open/floor/plasteel/vault,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"ahK" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -4363,7 +4129,7 @@
icon_state = "1-4"
},
/turf/open/floor/plasteel/vault,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"ahL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
@@ -4380,7 +4146,7 @@
icon_state = "2-4"
},
/turf/open/floor/carpet,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"ahM" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -4397,7 +4163,7 @@
icon_state = "4-8"
},
/turf/open/floor/carpet,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"ahN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/yellow{
@@ -4411,7 +4177,7 @@
icon_state = "2-8"
},
/turf/open/floor/carpet,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"ahO" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -4424,7 +4190,7 @@
icon_state = "1-8"
},
/turf/open/floor/plasteel/vault,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"ahP" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
@@ -4476,9 +4242,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"ahW" = (
/obj/structure/window/reinforced{
dir = 1
@@ -4490,17 +4254,13 @@
name = "Fitness Ring"
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"ahX" = (
/obj/structure/window/reinforced{
dir = 1
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"ahY" = (
/obj/structure/window/reinforced{
dir = 1
@@ -4509,17 +4269,13 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"ahZ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aia" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -4527,9 +4283,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aib" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
@@ -4539,9 +4293,7 @@
name = "Holodeck Door"
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aic" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -4551,9 +4303,7 @@
name = "Holodeck Door"
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aid" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -4565,9 +4315,7 @@
pixel_y = 27
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aie" = (
/obj/machinery/airalarm{
pixel_y = 24
@@ -4577,9 +4325,7 @@
on = 1
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aif" = (
/obj/machinery/door/poddoor{
id = "trash";
@@ -4629,7 +4375,7 @@
"ail" = (
/obj/machinery/power/apc{
dir = 8;
- name = "Fore Port Solar APC";
+ name = "Port Bow Solar APC";
pixel_x = -25;
pixel_y = 3
},
@@ -4640,7 +4386,7 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"aim" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -4657,7 +4403,7 @@
dir = 2
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"ain" = (
/obj/structure/cable{
d2 = 8;
@@ -4669,19 +4415,15 @@
},
/obj/machinery/power/smes,
/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"aio" = (
/turf/closed/wall/r_wall,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aip" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aiq" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -4760,7 +4502,6 @@
id = "Prison Gate";
name = "Prison Wing Lockdown";
pixel_x = 26;
- pixel_y = 0;
req_access_txt = "2"
},
/turf/open/floor/plasteel/red/side{
@@ -4862,7 +4603,7 @@
name = "privacy shutters"
},
/turf/open/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"aiF" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -4880,7 +4621,7 @@
name = "privacy shutters"
},
/turf/open/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"aiG" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/yellow{
@@ -4895,7 +4636,7 @@
req_access_txt = "58"
},
/turf/open/floor/carpet,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"aiH" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -4913,7 +4654,7 @@
name = "privacy shutters"
},
/turf/open/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"aiI" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -4926,7 +4667,7 @@
name = "privacy shutters"
},
/turf/open/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"aiJ" = (
/turf/closed/wall/r_wall,
/area/security/range)
@@ -4959,7 +4700,7 @@
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aiO" = (
/obj/structure/chair/stool{
pixel_y = 8
@@ -4978,15 +4719,12 @@
icon_state = "1-2"
},
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aiR" = (
/obj/structure/table,
/obj/item/clothing/under/sl_suit{
@@ -4996,24 +4734,18 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aiS" = (
/obj/structure/window/reinforced{
dir = 8
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aiT" = (
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aiU" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -5022,17 +4754,13 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aiV" = (
/obj/structure/window/reinforced{
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aiW" = (
/obj/structure/chair{
dir = 8
@@ -5040,38 +4768,28 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aiX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aiY" = (
/obj/structure/chair{
dir = 4
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aiZ" = (
/obj/machinery/computer/holodeck,
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aja" = (
/obj/structure/chair{
dir = 8
},
/obj/effect/landmark/start/assistant,
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"ajb" = (
/turf/closed/wall/r_wall,
/area/engine/gravity_generator)
@@ -5130,20 +4848,19 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/engineering{
- name = "Fore Port Solar Access";
+ name = "Port Bow Solar Access";
req_access_txt = "10"
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"aji" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 0
+ name = "HIGH VOLTAGE"
},
/turf/closed/wall,
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"ajj" = (
/obj/structure/table,
/obj/item/stack/medical/ointment{
@@ -5161,9 +4878,7 @@
},
/obj/item/weapon/restraints/handcuffs/cable/pink,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"ajl" = (
/obj/item/weapon/soap/deluxe,
/obj/item/weapon/storage/secure/safe{
@@ -5178,9 +4893,7 @@
/obj/item/clothing/mask/gas/monkeymask,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"ajm" = (
/turf/closed/wall/r_wall,
/area/security/brig)
@@ -5221,8 +4934,7 @@
},
/obj/machinery/airalarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
@@ -5269,9 +4981,7 @@
"ajv" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -5301,7 +5011,6 @@
/area/security/warden)
"ajy" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 30
},
/obj/structure/closet/secure_closet/security/sec,
@@ -5332,7 +5041,6 @@
desc = "Used for watching Prison Wing holding areas.";
name = "Prison Monitor";
network = list("Prison");
- pixel_x = 0;
pixel_y = 30
},
/turf/open/floor/plasteel/vault,
@@ -5372,9 +5080,7 @@
"ajI" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/landmark/secequipment,
/turf/open/floor/plasteel/vault,
@@ -5434,8 +5140,7 @@
dir = 4
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -5476,9 +5181,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"ajS" = (
/obj/structure/table,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -5486,9 +5189,7 @@
},
/obj/item/weapon/storage/firstaid/brute,
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"ajT" = (
/obj/structure/window/reinforced{
dir = 8
@@ -5497,9 +5198,7 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"ajU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -5507,9 +5206,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"ajV" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
@@ -5517,16 +5214,12 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"ajW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/holopad,
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"ajX" = (
/obj/structure/table,
/obj/item/weapon/paper{
@@ -5539,17 +5232,13 @@
pixel_y = -3
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"ajY" = (
/obj/structure/chair{
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"ajZ" = (
/turf/open/floor/plasteel/black,
/area/engine/gravity_generator)
@@ -5563,7 +5252,6 @@
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
name = "RADIOACTIVE AREA";
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/plasteel/vault{
@@ -5577,7 +5265,7 @@
/area/engine/gravity_generator)
"akd" = (
/turf/open/space,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"ake" = (
/obj/structure/cable{
icon_state = "0-2";
@@ -5585,7 +5273,7 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"akf" = (
/obj/machinery/conveyor{
dir = 2;
@@ -5674,9 +5362,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/disposal)
"akm" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -5693,9 +5379,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"akn" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -5718,15 +5402,11 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"ako" = (
/obj/structure/closet/firecloset,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"akp" = (
/obj/structure/rack{
dir = 8;
@@ -5741,9 +5421,7 @@
},
/obj/item/weapon/grenade/empgrenade,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"akq" = (
/obj/item/weapon/vending_refill/cola,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -5752,15 +5430,11 @@
},
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"akr" = (
/obj/item/weapon/vending_refill/snack,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aks" = (
/obj/structure/rack{
dir = 8;
@@ -5779,9 +5453,7 @@
/obj/item/device/healthanalyzer,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"akt" = (
/obj/structure/table,
/obj/item/clothing/gloves/color/latex,
@@ -5797,7 +5469,6 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 26
},
/obj/machinery/light/small{
@@ -5863,8 +5534,7 @@
"akz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/sign/pods{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/open/floor/plasteel/red/side{
dir = 5
@@ -5900,8 +5570,7 @@
/area/security/warden)
"akC" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/machinery/camera{
c_tag = "Security - Secure Gear Storage";
@@ -5945,9 +5614,7 @@
"akH" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/closet/secure_closet/security/sec,
/turf/open/floor/plasteel/showroomfloor,
@@ -6017,7 +5684,6 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 26
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -6209,7 +5875,6 @@
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/camera{
@@ -6254,9 +5919,7 @@
"alf" = (
/obj/structure/closet/firecloset,
/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"alg" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -6267,9 +5930,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"alh" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
@@ -6280,30 +5941,22 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"ali" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"alj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"alk" = (
/obj/structure/chair{
dir = 8
@@ -6311,9 +5964,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"all" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
@@ -6321,9 +5972,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"alm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
@@ -6333,9 +5982,7 @@
name = "Holodeck Door"
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aln" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
@@ -6345,9 +5992,7 @@
name = "Holodeck Door"
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"alo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -6360,24 +6005,18 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = -28
},
/obj/machinery/light/small,
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"alp" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"alq" = (
/turf/closed/wall,
/area/maintenance/starboard)
@@ -6408,7 +6047,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"alw" = (
/obj/structure/cable{
d1 = 1;
@@ -6421,7 +6060,7 @@
req_access_txt = "10; 13"
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"alx" = (
/obj/machinery/conveyor{
dir = 2;
@@ -6487,8 +6126,7 @@
/obj/machinery/mineral/stacking_unit_console{
dir = 2;
machinedir = 8;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -6503,9 +6141,7 @@
"alC" = (
/obj/structure/grille,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"alD" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -6517,9 +6153,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"alE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -6528,9 +6162,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"alF" = (
/obj/machinery/door/airlock/maintenance{
name = "Secure Storage Room";
@@ -6540,9 +6172,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"alG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -6551,25 +6181,19 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"alH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
/obj/item/weapon/bucket_sensor,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"alI" = (
/obj/item/weapon/grown/log,
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"alJ" = (
/obj/structure/light_construct/small{
dir = 4
@@ -6584,18 +6208,14 @@
/obj/effect/spawner/lootdrop/maintenance,
/obj/item/weapon/grenade/smokebomb,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"alK" = (
/turf/closed/wall,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"alL" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/turf/open/floor/plasteel/black,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"alM" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular,
@@ -6603,8 +6223,7 @@
/obj/item/weapon/reagent_containers/glass/bottle/charcoal,
/obj/item/weapon/reagent_containers/syringe,
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/turf/open/floor/plasteel/whitered/side{
dir = 10
@@ -6865,9 +6484,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/yellow{
d1 = 2;
@@ -6889,8 +6506,7 @@
cell_type = 5000;
dir = 8;
name = "Brig Control APC";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/structure/cable/yellow,
/turf/open/floor/plasteel/showroomfloor,
@@ -7009,9 +6625,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -7058,8 +6672,7 @@
cell_type = 2500;
dir = 4;
name = "Shooting Range APC";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/obj/structure/cable/yellow{
d2 = 8;
@@ -7086,9 +6699,7 @@
"amv" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"amw" = (
/obj/structure/window/reinforced,
/obj/machinery/door/window/eastright{
@@ -7098,45 +6709,33 @@
name = "Fitness Ring"
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"amx" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"amy" = (
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"amz" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"amA" = (
/obj/structure/window/reinforced{
dir = 4
},
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"amB" = (
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"amC" = (
/obj/structure/chair{
dir = 4
@@ -7145,30 +6744,24 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"amD" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"amE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"amF" = (
/obj/machinery/door/airlock/maintenance{
name = "maintenance access";
req_access_txt = "12"
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"amG" = (
/obj/machinery/light/small{
dir = 8
@@ -7177,14 +6770,14 @@
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"amH" = (
/obj/machinery/door/airlock/external{
req_access_txt = "0";
req_one_access_txt = "13,8"
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"amI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
@@ -7217,9 +6810,7 @@
/obj/machinery/camera{
c_tag = "Gravity Generator Room";
dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
+ network = list("SS13")
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
@@ -7236,7 +6827,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"amO" = (
/obj/machinery/light/small{
dir = 8
@@ -7288,9 +6879,7 @@
/obj/item/weapon/storage/box/lights/mixed,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"amT" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -7299,17 +6888,18 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"amU" = (
/turf/open/floor/plating{
icon_state = "platingdmg2"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"amW" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder,
@@ -7325,33 +6915,25 @@
/obj/item/device/tape/random,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"amX" = (
/obj/structure/table/reinforced,
/obj/structure/window/reinforced,
/obj/item/weapon/stock_parts/cell/crap,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"amY" = (
/obj/structure/table/reinforced,
/obj/structure/window/reinforced,
/obj/item/weapon/electronics/firealarm,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"amZ" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"ana" = (
/obj/structure/rack{
dir = 1
@@ -7363,9 +6945,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"anb" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -7374,14 +6954,14 @@
icon_state = "0-2"
},
/turf/open/floor/plating,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"anc" = (
/obj/machinery/door/airlock/glass_security{
name = "N2O Storage";
req_access_txt = "3"
},
/turf/open/floor/plasteel/black,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"and" = (
/obj/structure/window/reinforced{
dir = 1
@@ -7436,8 +7016,7 @@
dir = 4
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
@@ -7459,9 +7038,7 @@
"anl" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/vault,
/area/security/warden)
@@ -7485,8 +7062,7 @@
/obj/machinery/light/small,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
@@ -7604,8 +7180,7 @@
cell_type = 5000;
dir = 4;
name = "Security Office APC";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/obj/structure/cable/yellow,
/turf/open/floor/plasteel/red/side{
@@ -7648,20 +7223,14 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"anG" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"anH" = (
/obj/structure/chair{
dir = 1
@@ -7670,17 +7239,13 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"anI" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"anJ" = (
/obj/structure/chair{
dir = 1
@@ -7691,9 +7256,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"anK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -7701,17 +7264,13 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"anL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"anM" = (
/obj/machinery/space_heater,
/turf/open/floor/plating,
@@ -7721,7 +7280,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"anO" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -7740,9 +7299,7 @@
"anR" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/black,
/area/engine/gravity_generator)
@@ -7815,8 +7372,7 @@
"anZ" = (
/obj/effect/decal/cleanable/oil,
/obj/machinery/light_switch{
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/machinery/light/small{
dir = 4
@@ -7827,37 +7383,27 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aob" = (
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aoc" = (
/obj/structure/chair{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aod" = (
/obj/structure/chair{
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aoe" = (
/obj/machinery/space_heater,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aof" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -7865,9 +7411,7 @@
},
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aog" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
@@ -7875,17 +7419,13 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aoh" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aoi" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
@@ -7893,7 +7433,7 @@
/obj/machinery/portable_atmospherics/canister/air,
/obj/item/weapon/tank/internals/air,
/turf/open/floor/plating,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"aoj" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
@@ -7908,7 +7448,7 @@
icon_state = "2-4"
},
/turf/open/floor/plating,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"aok" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -7927,7 +7467,7 @@
icon_state = "1-4"
},
/turf/open/floor/plating,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"aol" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -7944,7 +7484,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"aom" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -8033,9 +7573,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -8129,7 +7667,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"aoy" = (
/obj/machinery/firealarm{
dir = 4;
@@ -8286,7 +7824,6 @@
/obj/machinery/power/apc{
dir = 2;
name = "Disposal APC";
- pixel_x = 0;
pixel_y = -24
},
/obj/structure/cable/yellow,
@@ -8360,9 +7897,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aoU" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -8375,9 +7910,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aoV" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -8390,9 +7923,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aoW" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -8406,9 +7937,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aoX" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -8424,9 +7953,7 @@
location = "14.5-Recreation"
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aoY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -8435,9 +7962,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aoZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -8445,9 +7970,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"apa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
@@ -8455,9 +7978,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"apb" = (
/obj/structure/grille,
/turf/open/floor/plating,
@@ -8468,20 +7989,16 @@
"apd" = (
/obj/structure/table,
/obj/item/weapon/tank/internals/emergency_oxygen{
- pixel_x = -8;
- pixel_y = 0
+ pixel_x = -8
},
/obj/item/weapon/tank/internals/emergency_oxygen{
- pixel_x = -8;
- pixel_y = 0
+ pixel_x = -8
},
/obj/item/clothing/mask/breath{
- pixel_x = 4;
- pixel_y = 0
+ pixel_x = 4
},
/obj/item/clothing/mask/breath{
- pixel_x = 4;
- pixel_y = 0
+ pixel_x = 4
},
/obj/effect/decal/cleanable/cobweb,
/obj/structure/sign/securearea{
@@ -8489,11 +8006,10 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"ape" = (
/obj/structure/rack{
dir = 8;
@@ -8511,7 +8027,7 @@
pixel_y = 28
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"apf" = (
/turf/open/floor/plating{
icon_state = "platingdmg3"
@@ -8526,7 +8042,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aph" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -8582,11 +8098,11 @@
/area/engine/gravity_generator)
"apm" = (
/turf/closed/wall,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"apn" = (
/obj/machinery/power/solar_control{
id = "forestarboard";
- name = "Fore Starboard Solar Control";
+ name = "Starboard Bow Solar Control";
track = 0
},
/obj/structure/cable{
@@ -8594,7 +8110,7 @@
d2 = 4
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"apo" = (
/obj/structure/cable{
d1 = 1;
@@ -8610,19 +8126,18 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"app" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"apq" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/airless,
@@ -8643,7 +8158,6 @@
/obj/machinery/door/window/northright{
dir = 2;
name = "delivery door";
- pixel_y = 0;
req_access_txt = "31"
},
/obj/structure/disposalpipe/segment,
@@ -8659,8 +8173,7 @@
/area/maintenance/disposal)
"apt" = (
/obj/structure/sign/securearea{
- name = "\improper STAY CLEAR HEAVY MACHINERY";
- pixel_y = 0
+ name = "\improper STAY CLEAR HEAVY MACHINERY"
},
/turf/closed/wall,
/area/maintenance/disposal)
@@ -8675,9 +8188,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"apv" = (
/obj/machinery/door/airlock/maintenance{
name = "Storage Room";
@@ -8687,9 +8198,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"apw" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -8697,9 +8206,7 @@
},
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"apx" = (
/obj/structure/rack{
dir = 8;
@@ -8723,15 +8230,11 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"apz" = (
/obj/item/weapon/cigbutt,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"apA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -8759,7 +8262,7 @@
icon_state = "2-4"
},
/turf/open/floor/plating,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"apC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
@@ -8774,7 +8277,7 @@
icon_state = "1-8"
},
/turf/open/floor/plating,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"apD" = (
/obj/item/weapon/storage/box/lights/mixed,
/obj/item/device/flashlight{
@@ -8785,12 +8288,11 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"apE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/turf/open/floor/plasteel/red/corner{
dir = 1
@@ -8906,8 +8408,7 @@
/area/security/warden)
"apQ" = (
/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/structure/closet/wardrobe/red,
/obj/machinery/camera{
@@ -8920,8 +8421,7 @@
"apR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/reagent_dispensers/peppertank{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/open/floor/plasteel/red/side{
dir = 8
@@ -8965,8 +8465,7 @@
/area/security/main)
"apZ" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/machinery/camera{
c_tag = "Security - Office - Starboard";
@@ -8993,9 +8492,7 @@
"aqc" = (
/obj/structure/closet/lasertag/red,
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aqd" = (
/obj/structure/rack,
/obj/item/clothing/under/color/red,
@@ -9003,15 +8500,11 @@
/obj/item/clothing/neck/tie/red,
/obj/item/clothing/head/soft/red,
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aqf" = (
/obj/structure/closet/lasertag/blue,
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aqg" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -9020,9 +8513,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aqh" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -9034,9 +8525,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aqi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
@@ -9045,13 +8534,10 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aqj" = (
/obj/machinery/disposal/bin,
/obj/machinery/light_switch{
- pixel_x = 0;
pixel_y = -26
},
/obj/structure/disposalpipe/trunk{
@@ -9062,63 +8548,47 @@
dir = 1
},
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aqk" = (
/obj/machinery/vending/coffee,
/obj/item/device/radio/intercom{
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = -28
},
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aql" = (
/obj/machinery/light,
/obj/machinery/vending/cola/random,
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aqm" = (
/obj/machinery/vending/cigarette,
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aqn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
/turf/closed/wall,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aqo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aqp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/closed/wall,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"aqq" = (
/obj/item/weapon/cigbutt,
/turf/open/floor/plating,
@@ -9138,7 +8608,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aqt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
@@ -9166,8 +8636,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
@@ -9183,8 +8652,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
@@ -9198,8 +8666,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4;
@@ -9214,8 +8681,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 2;
@@ -9237,7 +8703,7 @@
network = list("SS13")
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"aqz" = (
/obj/structure/cable{
d1 = 1;
@@ -9250,7 +8716,7 @@
},
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"aqA" = (
/obj/structure/cable{
d2 = 8;
@@ -9267,7 +8733,7 @@
pixel_x = 29
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"aqB" = (
/obj/structure/lattice,
/obj/structure/grille/broken,
@@ -9280,21 +8746,16 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aqD" = (
/obj/machinery/space_heater,
/turf/open/floor/plating{
icon_state = "platingdmg2"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aqE" = (
/obj/machinery/door/poddoor/shutters{
id = "supplybridge"
@@ -9303,9 +8764,7 @@
dir = 9
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aqF" = (
/obj/machinery/door/poddoor/shutters{
id = "supplybridge"
@@ -9314,9 +8773,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aqG" = (
/obj/machinery/door/poddoor/shutters{
id = "supplybridge"
@@ -9325,9 +8782,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aqH" = (
/obj/machinery/space_heater,
/obj/structure/sign/securearea{
@@ -9335,15 +8790,12 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aqI" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/light/small{
@@ -9353,41 +8805,31 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aqJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aqK" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aqL" = (
/obj/structure/rack,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/item/weapon/storage/toolbox/emergency,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aqM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aqN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
@@ -9399,28 +8841,20 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aqO" = (
/obj/machinery/space_heater,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aqP" = (
/obj/structure/light_construct/small,
/obj/item/weapon/toolbox_tiles_sensor,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aqQ" = (
/obj/item/weapon/vending_refill/cigarette,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aqR" = (
/obj/structure/chair{
dir = 8
@@ -9428,25 +8862,19 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aqS" = (
/obj/structure/closet/crate,
/obj/item/clothing/gloves/color/fyellow,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aqT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating{
icon_plating = "warnplate"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aqU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
@@ -9464,14 +8892,12 @@
/turf/open/floor/plating{
icon_plating = "warnplate"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aqV" = (
/obj/structure/reagent_dispensers/watertank,
/obj/item/weapon/extinguisher,
/turf/open/floor/plating,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"aqW" = (
/obj/structure/closet/crate,
/obj/item/weapon/restraints/handcuffs,
@@ -9482,7 +8908,7 @@
name = "3maintenance loot spawner"
},
/turf/open/floor/plating,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"aqX" = (
/obj/structure/chair,
/obj/item/weapon/restraints/handcuffs,
@@ -9490,7 +8916,7 @@
/obj/item/clothing/under/soviet,
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/plating,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"aqY" = (
/obj/machinery/computer/security{
name = "Labor Camp Monitoring";
@@ -9509,8 +8935,7 @@
dir = 2;
name = "Prison Monitor";
network = list("Prison");
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
@@ -9544,9 +8969,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
@@ -9771,7 +9194,7 @@
/area/maintenance/fore)
"arB" = (
/turf/closed/wall,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"arC" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
@@ -9782,7 +9205,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"arD" = (
/obj/structure/grille,
/obj/structure/window/reinforced/tinted/fulltile,
@@ -9793,7 +9216,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"arE" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
@@ -9804,7 +9227,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"arG" = (
/obj/structure/closet,
/obj/item/weapon/storage/box/lights/mixed,
@@ -9815,32 +9238,32 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"arH" = (
/obj/structure/rack,
/obj/item/weapon/extinguisher,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"arI" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/costume,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"arJ" = (
/obj/structure/rack,
/obj/item/clothing/suit/poncho,
/obj/item/clothing/head/sombrero,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"arK" = (
/obj/effect/landmark/blobstart,
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"arL" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -9848,7 +9271,7 @@
},
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"arM" = (
/obj/structure/rack,
/obj/item/weapon/book/manual/wiki/engineering_guide{
@@ -9858,7 +9281,7 @@
/obj/effect/spawner/lootdrop/maintenance,
/obj/item/weapon/storage/box/lights/mixed,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"arN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
@@ -9893,7 +9316,6 @@
"arQ" = (
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -9908,9 +9330,7 @@
"arR" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/power/terminal,
/obj/effect/turf_decal/stripes/line{
@@ -9926,8 +9346,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/chair/office/light,
/obj/effect/turf_decal/stripes/line{
@@ -9938,7 +9357,7 @@
"arT" = (
/obj/machinery/power/apc{
dir = 8;
- name = "Fore Starboard Solar APC";
+ name = "Starboard Bow Solar APC";
pixel_x = -25;
pixel_y = 3
},
@@ -9949,7 +9368,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"arU" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -9966,7 +9385,7 @@
dir = 2
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"arV" = (
/obj/structure/cable/yellow{
d2 = 8;
@@ -9974,7 +9393,7 @@
},
/obj/machinery/power/smes,
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"arW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
@@ -9989,9 +9408,7 @@
dir = 2
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"arX" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -10007,9 +9424,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"arY" = (
/obj/machinery/door/airlock/glass{
name = "space-bridge access"
@@ -10017,7 +9432,6 @@
/obj/machinery/button/door{
id = "supplybridge";
name = "Shuttle Bay Space Bridge Control";
- pixel_x = 0;
pixel_y = 27;
req_access_txt = "0"
},
@@ -10030,9 +9444,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"arZ" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -10043,9 +9455,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"asa" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -10053,9 +9463,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"asb" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -10066,9 +9474,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"asc" = (
/obj/machinery/door/airlock/glass{
name = "space-bridge access"
@@ -10076,7 +9482,6 @@
/obj/machinery/button/door{
id = "supplybridge";
name = "Shuttle Bay Space Bridge Control";
- pixel_x = 0;
pixel_y = 27;
req_access_txt = "0"
},
@@ -10089,9 +9494,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"asd" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -10108,9 +9511,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"ase" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -10124,9 +9525,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"asf" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Cargo Bay Bridge Access";
@@ -10142,9 +9541,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"asg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
@@ -10159,9 +9556,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"ash" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -10172,9 +9567,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"asi" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -10183,9 +9576,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"asj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -10194,9 +9585,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"ask" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -10210,9 +9599,7 @@
icon_state = "2-8"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"asl" = (
/obj/machinery/door/airlock/maintenance{
name = "Storage Room";
@@ -10220,7 +9607,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"asm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/maintenance{
@@ -10235,7 +9622,7 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"asn" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -10315,7 +9702,6 @@
icon_state = "4-8"
},
/obj/machinery/newscaster/security_unit{
- pixel_x = 0;
pixel_y = -30
},
/obj/item/weapon/folder/red,
@@ -10335,7 +9721,6 @@
},
/obj/item/weapon/pen,
/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 0;
pixel_y = -32
},
/turf/open/floor/plasteel/showroomfloor,
@@ -10378,7 +9763,6 @@
/obj/machinery/button/door{
id = "Prison Gate";
name = "Prison Wing Lockdown";
- pixel_x = 0;
pixel_y = 7;
req_access_txt = "2"
},
@@ -10491,7 +9875,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"asC" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/cable/yellow{
@@ -10557,7 +9941,6 @@
"asG" = (
/obj/machinery/light,
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = -32
},
/obj/structure/disposalpipe/segment{
@@ -10616,9 +9999,7 @@
"asL" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/red/side{
dir = 6
@@ -10636,7 +10017,6 @@
layer = 4;
name = "interrogation monitor";
network = list("interrogation");
- pixel_x = 0;
pixel_y = -30
},
/turf/open/floor/plasteel/grimy,
@@ -10654,7 +10034,6 @@
frequency = 1424;
listening = 1;
name = "Interrogation Intercom";
- pixel_x = 0;
pixel_y = -31
},
/turf/open/floor/plasteel/grimy,
@@ -10705,12 +10084,11 @@
},
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/obj/item/weapon/lighter,
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"asU" = (
/obj/structure/closet/secure_closet/personal/cabinet,
/obj/machinery/airalarm{
@@ -10718,7 +10096,7 @@
},
/obj/item/clothing/under/assistantformal,
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"asV" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet,
@@ -10727,7 +10105,6 @@
name = "Cabin Bolt Control";
normaldoorcontrol = 1;
pixel_x = 25;
- pixel_y = 0;
req_access_txt = "0";
specialfunctions = 4
},
@@ -10737,13 +10114,13 @@
on = 1
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"asW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"asX" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -10752,7 +10129,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"asY" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -10764,7 +10141,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"asZ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
@@ -10775,7 +10152,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"ata" = (
/obj/machinery/light/small{
dir = 1
@@ -10786,20 +10163,17 @@
name = "Cabin Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- pixel_y = 0;
req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/bed,
/obj/item/weapon/bedsheet,
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"atb" = (
/obj/structure/closet/secure_closet/personal/cabinet,
/obj/machinery/airalarm{
@@ -10807,27 +10181,26 @@
},
/obj/item/clothing/under/suit_jacket/burgundy,
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"atc" = (
/obj/structure/dresser,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"atd" = (
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"ate" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"atf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
@@ -10888,20 +10261,19 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/engineering{
- name = "Fore Starboard Solar Access";
+ name = "Starboard Bow Solar Access";
req_access_txt = "10"
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"atl" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 0
+ name = "HIGH VOLTAGE"
},
/turf/closed/wall,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/solars/starboard/fore)
"atm" = (
/turf/closed/wall/r_wall,
/area/maintenance/starboard)
@@ -10910,7 +10282,7 @@
req_access_txt = "13"
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"ato" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/maintenance_hatch{
@@ -10924,9 +10296,7 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"atp" = (
/obj/machinery/door/poddoor/shutters{
id = "supplybridge"
@@ -10935,9 +10305,7 @@
dir = 10
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"atq" = (
/obj/machinery/door/poddoor/shutters{
id = "supplybridge"
@@ -10946,9 +10314,7 @@
dir = 2
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"atr" = (
/obj/machinery/door/poddoor/shutters{
id = "supplybridge"
@@ -10957,9 +10323,7 @@
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"ats" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -10969,9 +10333,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"att" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -10980,9 +10342,7 @@
dir = 2
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"atu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -10991,9 +10351,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"atv" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
@@ -11003,9 +10361,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"atw" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -11014,9 +10370,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"atx" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -11031,7 +10385,7 @@
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"aty" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -11047,7 +10401,7 @@
sortType = 2
},
/turf/open/floor/plating,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"atz" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -11066,7 +10420,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"atA" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -11083,7 +10437,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"atB" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -11101,7 +10455,7 @@
req_one_access_txt = "12;63"
},
/turf/open/floor/plating,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"atC" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -11128,9 +10482,7 @@
},
/obj/structure/grille,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"atE" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -11144,7 +10496,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"atG" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -11159,7 +10511,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"atH" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -11178,7 +10530,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"atI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
@@ -11196,7 +10548,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"atJ" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
@@ -11249,7 +10601,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"atQ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -11376,23 +10728,21 @@
dir = 1
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aue" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"auf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aug" = (
/obj/machinery/door/airlock{
id_tag = "Cabin3";
@@ -11402,7 +10752,7 @@
dir = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"auh" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -11412,7 +10762,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aui" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -11425,7 +10775,7 @@
},
/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"auj" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
@@ -11433,7 +10783,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"auk" = (
/obj/machinery/door/airlock{
id_tag = "Cabin4";
@@ -11443,14 +10793,14 @@
dir = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aul" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aum" = (
/obj/effect/landmark/xeno_spawn,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -11458,10 +10808,10 @@
on = 1
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aun" = (
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"auo" = (
/obj/structure/mopbucket,
/obj/item/weapon/mop,
@@ -11469,12 +10819,12 @@
/turf/open/floor/plating{
icon_state = "platingdmg2"
},
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aup" = (
/obj/structure/closet/crate/hydroponics,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"auq" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -11482,7 +10832,7 @@
},
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aur" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -11507,7 +10857,7 @@
/obj/structure/closet,
/obj/item/weapon/stock_parts/matter_bin,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aut" = (
/obj/machinery/door/airlock/maintenance{
name = "Storage Room";
@@ -11523,7 +10873,6 @@
dir = 1;
icon_state = "radiation";
name = "RADIOACTIVE AREA";
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -11551,12 +10900,10 @@
dir = 1;
icon_state = "radiation";
name = "RADIOACTIVE AREA";
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -11578,27 +10925,27 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"auy" = (
/obj/item/stack/sheet/cardboard,
/obj/item/device/flashlight,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"auz" = (
/obj/structure/rack,
/obj/item/clothing/mask/gas,
/obj/item/clothing/glasses/sunglasses,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"auA" = (
/obj/structure/closet/crate/medical,
/obj/item/stack/cable_coil,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"auB" = (
/obj/structure/closet/emcloset,
/obj/structure/sign/securearea{
@@ -11606,11 +10953,10 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"auC" = (
/obj/structure/closet/crate{
icon_state = "crateopen";
@@ -11628,7 +10974,6 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/decal/cleanable/cobweb,
@@ -11637,9 +10982,7 @@
name = "3maintenance loot spawner"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"auE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -11651,29 +10994,21 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"auF" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"auG" = (
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"auH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"auI" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -11685,9 +11020,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"auJ" = (
/obj/structure/grille,
/obj/structure/disposalpipe/segment{
@@ -11695,9 +11028,7 @@
},
/obj/structure/window/reinforced/tinted/fulltile,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"auK" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j2";
@@ -11710,15 +11041,11 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"auL" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"auM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -11729,9 +11056,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"auN" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -11741,7 +11066,7 @@
icon_state = "0-4"
},
/turf/open/floor/plating,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"auO" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -11754,7 +11079,7 @@
icon_state = "0-4"
},
/turf/open/floor/plating,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"auP" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -11764,15 +11089,14 @@
icon_state = "0-8"
},
/turf/open/floor/plating,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"auQ" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/labor)
"auR" = (
/obj/machinery/computer/shuttle/labor,
/obj/structure/reagent_dispensers/peppertank{
- pixel_x = -31;
- pixel_y = 0
+ pixel_x = -31
},
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/labor)
@@ -11799,8 +11123,7 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/open/floor/plasteel/red/corner{
dir = 8
@@ -11841,11 +11164,10 @@
pixel_y = -26
},
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = -32
},
/turf/open/floor/plasteel/vault,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"auY" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
@@ -11912,7 +11234,6 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 26
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -11927,7 +11248,6 @@
dir = 1
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 30
},
/turf/open/floor/plasteel/red/corner{
@@ -11996,13 +11316,12 @@
},
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"avm" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -12015,44 +11334,41 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"avn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"avo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"avp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/closed/wall,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"avq" = (
/obj/item/weapon/cigbutt,
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"avr" = (
/turf/open/floor/plating{
icon_state = "platingdmg1"
@@ -12079,7 +11395,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"avu" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -12097,14 +11413,13 @@
dir = 1;
icon_state = "radiation";
name = "RADIOACTIVE AREA";
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"avv" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -12121,7 +11436,7 @@
req_access_txt = "12"
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"avw" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -12191,7 +11506,7 @@
req_access_txt = "12"
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"avA" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -12206,14 +11521,13 @@
dir = 1;
icon_state = "radiation";
name = "RADIOACTIVE AREA";
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"avB" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -12224,7 +11538,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"avC" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -12237,7 +11551,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"avD" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -12250,7 +11564,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg2"
},
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"avE" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -12263,7 +11577,7 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"avF" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -12274,13 +11588,13 @@
dir = 9
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"avG" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"avH" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1;
@@ -12312,33 +11626,26 @@
"avJ" = (
/obj/machinery/door/airlock/external,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"avK" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"avL" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"avM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -12349,15 +11656,11 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"avN" = (
/obj/item/hand_labeler_refill,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"avO" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -12372,9 +11675,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"avP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -12396,9 +11697,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"avQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -12416,9 +11715,7 @@
req_one_access_txt = "12;50"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"avR" = (
/obj/structure/disposalpipe/sortjunction{
dir = 1;
@@ -12442,17 +11739,13 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"avS" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating{
icon_state = "platingdmg2"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"avT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -12461,9 +11754,7 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"avU" = (
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/labor)
@@ -12471,7 +11762,6 @@
/obj/machinery/button/flasher{
id = "gulagshuttleflasher";
name = "Flash Control";
- pixel_x = 0;
pixel_y = -26;
req_access_txt = "1"
},
@@ -12509,7 +11799,6 @@
/obj/machinery/button/door{
id = "prison release";
name = "Labor Camp Shuttle Lockdown";
- pixel_x = 0;
pixel_y = -25;
req_access_txt = "2"
},
@@ -12611,9 +11900,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -12754,9 +12041,7 @@
"awq" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/yellow{
d1 = 4;
@@ -12853,12 +12138,11 @@
dir = 1
},
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/dresser,
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"awD" = (
/obj/structure/closet/secure_closet/personal/cabinet,
/obj/machinery/airalarm{
@@ -12866,7 +12150,7 @@
},
/obj/item/clothing/under/suit_jacket/tan,
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"awE" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet,
@@ -12875,7 +12159,6 @@
name = "Cabin Bolt Control";
normaldoorcontrol = 1;
pixel_x = 25;
- pixel_y = 0;
req_access_txt = "0";
specialfunctions = 4
},
@@ -12884,7 +12167,7 @@
on = 1
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"awF" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
@@ -12896,7 +12179,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"awG" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet,
@@ -12905,34 +12188,30 @@
name = "Dorm Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- pixel_y = 0;
req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"awH" = (
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/table/wood,
/obj/item/weapon/paper,
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"awI" = (
/obj/machinery/door/airlock/maintenance{
name = "Storage Room";
req_access_txt = "12"
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"awJ" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -12944,7 +12223,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"awK" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -12978,9 +12257,7 @@
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"awN" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/mining)
@@ -12995,9 +12272,7 @@
/obj/item/clothing/under/color/rainbow,
/obj/item/clothing/head/soft/rainbow,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"awQ" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -13008,9 +12283,7 @@
dir = 2
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"awR" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -13018,16 +12291,12 @@
icon_state = "1-8"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"awS" = (
/obj/structure/closet/crate,
/obj/item/weapon/coin/silver,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"awT" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -13039,18 +12308,14 @@
dir = 2
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"awU" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"awV" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -13063,7 +12328,7 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"awW" = (
/turf/closed/wall/r_wall,
/area/security/nuke_storage)
@@ -13289,7 +12554,6 @@
},
/obj/machinery/button/flasher{
id = "holdingflash";
- pixel_x = 0;
pixel_y = -26;
req_access_txt = "1"
},
@@ -13345,8 +12609,7 @@
dir = 4
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/turf/open/floor/plasteel/red/side{
dir = 6
@@ -13376,9 +12639,7 @@
"axz" = (
/obj/structure/table,
/obj/item/weapon/folder/red,
-/obj/item/device/taperecorder{
- pixel_y = 0
- },
+/obj/item/device/taperecorder,
/obj/item/device/radio/intercom{
anyai = 1;
broadcasting = 1;
@@ -13386,7 +12647,6 @@
frequency = 1424;
listening = 0;
name = "Interrogation Intercom";
- pixel_x = 0;
pixel_y = -24
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -13406,33 +12666,27 @@
"axB" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/black,
/area/security/brig)
"axC" = (
/turf/closed/wall,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"axD" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"axE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"axF" = (
/obj/machinery/door/airlock{
id_tag = "Cabin2";
@@ -13442,7 +12696,7 @@
dir = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"axG" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -13451,7 +12705,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"axH" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -13463,7 +12717,7 @@
initialize_directions = 11
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"axI" = (
/obj/machinery/door/airlock{
id_tag = "Cabin5";
@@ -13473,14 +12727,14 @@
dir = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"axJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"axK" = (
/obj/effect/landmark/xeno_spawn,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -13489,14 +12743,14 @@
},
/obj/machinery/light/small,
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"axL" = (
/obj/item/weapon/caution,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"axM" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -13511,7 +12765,7 @@
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"axN" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -13527,7 +12781,7 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"axO" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -13541,7 +12795,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"axP" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -13558,7 +12812,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"axQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -13574,7 +12828,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"axR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -13599,7 +12853,7 @@
dir = 9
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"axT" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=4";
@@ -13612,7 +12866,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/starboard)
+/area/engine/engineering)
"axU" = (
/obj/machinery/door/window/southright{
dir = 4;
@@ -13659,7 +12913,6 @@
},
/obj/machinery/shower{
dir = 8;
- icon_state = "shower";
name = "emergency shower"
},
/obj/structure/sign/securearea{
@@ -13689,8 +12942,7 @@
/obj/item/weapon/tank/internals/emergency_oxygen/engi,
/obj/item/weapon/tank/internals/emergency_oxygen/engi,
/obj/item/clothing/mask/breath{
- pixel_x = 4;
- pixel_y = 0
+ pixel_x = 4
},
/turf/open/floor/plasteel/black,
/area/engine/engineering)
@@ -13721,14 +12973,10 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"ayj" = (
/turf/closed/wall,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"ayk" = (
/obj/machinery/door/airlock/maintenance{
name = "Mining Dock Maintenance";
@@ -13740,14 +12988,10 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"ayl" = (
/turf/closed/wall,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aym" = (
/obj/machinery/door/airlock/maintenance{
name = "Cargo Bay Warehouse Maintenance";
@@ -13761,9 +13005,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"ayn" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -13773,7 +13015,7 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"ayo" = (
/obj/machinery/computer/bank_machine,
/turf/open/floor/plasteel/vault{
@@ -13803,7 +13045,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "Vault APC";
- pixel_x = 0;
pixel_y = 25
},
/obj/structure/cable/yellow{
@@ -13827,16 +13068,13 @@
"ayu" = (
/obj/machinery/mineral/labor_claim_console{
machinedir = 1;
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
"ayv" = (
/turf/closed/wall,
-/area/prison/solitary{
- name = "Prisoner Education Chamber"
- })
+/area/prison/execution_room)
"ayw" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -14044,43 +13282,33 @@
/area/security/detectives_office)
"ayK" = (
/obj/machinery/shower{
- icon_state = "shower";
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"ayL" = (
/obj/machinery/light/small{
dir = 1
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/airalarm{
pixel_y = 26
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"ayM" = (
/obj/machinery/shower{
- icon_state = "shower";
dir = 8
},
/obj/effect/landmark/start/assistant,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"ayN" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -14089,7 +13317,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"ayO" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -14105,7 +13333,7 @@
initialize_directions = 11
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"ayP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -14117,7 +13345,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"ayQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -14127,11 +13355,11 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"ayR" = (
/obj/item/weapon/wrench,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"ayS" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -14235,9 +13463,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"azk" = (
/obj/structure/closet/crate,
/obj/machinery/light/small{
@@ -14252,23 +13478,18 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"azl" = (
/obj/structure/closet/emcloset,
/obj/machinery/status_display{
density = 0;
- pixel_x = 0;
pixel_y = 32;
supply_display = 1
},
/turf/open/floor/plasteel/brown{
dir = 9
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"azm" = (
/obj/structure/closet/crate,
/obj/item/device/flashlight{
@@ -14290,9 +13511,7 @@
/turf/open/floor/plasteel/brown{
dir = 1
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"azn" = (
/obj/machinery/power/apc{
dir = 1;
@@ -14304,16 +13523,13 @@
icon_state = "0-4"
},
/obj/machinery/light_switch{
- pixel_x = 0;
pixel_y = 38
},
/obj/structure/closet/wardrobe/miner,
/turf/open/floor/plasteel/brown{
dir = 1
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"azo" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -14328,9 +13544,7 @@
/turf/open/floor/plasteel/brown{
dir = 1
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"azp" = (
/obj/structure/rack{
dir = 1
@@ -14343,9 +13557,7 @@
/turf/open/floor/plasteel/brown{
dir = 5
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"azq" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -14379,7 +13591,7 @@
},
/obj/item/weapon/cigbutt,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"azs" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -14390,9 +13602,7 @@
pixel_y = 28
},
/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"azt" = (
/obj/machinery/airalarm{
pixel_y = 28
@@ -14406,9 +13616,7 @@
icon_state = "2-4"
},
/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"azu" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -14420,15 +13628,11 @@
icon_state = "1-8"
},
/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"azv" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/vault{
dir = 1
@@ -14498,9 +13702,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/floorgrime,
/area/security/brig)
@@ -14531,18 +13733,14 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/floorgrime,
/area/security/brig)
"azH" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/flasher{
id = "Cell 3";
@@ -14701,7 +13899,6 @@
desc = "Used for watching Prison Wing holding areas.";
name = "Prison Monitor";
network = list("Prison");
- pixel_x = 0;
pixel_y = 30
},
/turf/open/floor/carpet,
@@ -14719,7 +13916,6 @@
/obj/machinery/button/door{
id = "detective_shutters";
name = "detective's office shutters control";
- pixel_x = 0;
pixel_y = 26;
req_access_txt = "4"
},
@@ -14737,6 +13933,15 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Fore Maintenance APC";
+ pixel_y = 24
+ },
/turf/open/floor/plating,
/area/maintenance/fore)
"azY" = (
@@ -14766,36 +13971,28 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/shower{
- icon_state = "shower";
dir = 4
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aAb" = (
/obj/effect/landmark/xeno_spawn,
/obj/item/weapon/bikehorn/rubberducky,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aAc" = (
/obj/structure/mirror{
pixel_x = 28
},
/obj/machinery/shower{
- icon_state = "shower";
dir = 8
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aAd" = (
/obj/machinery/washing_machine,
/turf/open/floor/plasteel/barber,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aAe" = (
/obj/structure/table,
/obj/item/clothing/under/suit_jacket/female{
@@ -14803,8 +14000,7 @@
pixel_y = 1
},
/obj/item/clothing/under/suit_jacket/really_black{
- pixel_x = -2;
- pixel_y = 0
+ pixel_x = -2
},
/obj/machinery/light/small{
dir = 1
@@ -14813,7 +14009,6 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 28
},
/obj/item/clothing/tie/waistcoat,
@@ -14822,7 +14017,7 @@
/obj/item/clothing/neck/tie/black,
/obj/item/clothing/under/lawyer/blacksuit,
/turf/open/floor/plasteel/barber,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aAf" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -14831,7 +14026,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aAg" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -14849,7 +14044,7 @@
icon_state = "pipe-j2"
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aAh" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -14865,7 +14060,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aAi" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
@@ -14882,7 +14077,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aAj" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -14899,7 +14094,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aAk" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -14915,7 +14110,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aAl" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -14929,7 +14124,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aAm" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -14944,7 +14139,7 @@
},
/obj/structure/grille,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aAn" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -14964,7 +14159,7 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aAo" = (
/obj/structure/closet/secure_closet/engineering_personal,
/obj/effect/turf_decal/delivery,
@@ -14985,7 +14180,6 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 21
},
/obj/machinery/camera{
@@ -15035,7 +14229,6 @@
"aAw" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 10;
- pixel_x = 0;
initialize_directions = 10
},
/turf/open/floor/plasteel/black,
@@ -15089,49 +14282,35 @@
req_access_txt = "0"
},
/turf/open/floor/plating,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aAC" = (
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aAD" = (
/obj/machinery/door/airlock/glass_mining{
name = "Mining Dock";
req_access_txt = "48"
},
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aAE" = (
/turf/open/floor/plasteel/brown{
dir = 8
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aAF" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aAG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aAH" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -15140,9 +14319,7 @@
},
/obj/effect/landmark/start/shaft_miner,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aAI" = (
/obj/machinery/button/door{
id = "qm_mine_warehouse";
@@ -15154,9 +14331,7 @@
/turf/open/floor/plasteel/brown{
dir = 4
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aAJ" = (
/obj/machinery/door/poddoor/shutters{
id = "qm_mine_warehouse";
@@ -15166,9 +14341,7 @@
/turf/open/floor/plasteel{
name = "floor"
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aAK" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/button/door{
@@ -15181,14 +14354,10 @@
/turf/open/floor/plasteel/loadingarea{
dir = 4
},
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aAL" = (
/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aAM" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance{
@@ -15196,9 +14365,7 @@
name = "3maintenance loot spawner"
},
/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aAN" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -15206,23 +14373,18 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aAO" = (
/obj/structure/closet/crate,
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 3;
name = "3maintenance loot spawner"
},
/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aAP" = (
/obj/structure/closet/crate{
name = "Gold Crate"
@@ -15270,8 +14432,7 @@
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/open/floor/circuit/green{
luminosity = 2
@@ -15394,8 +14555,7 @@
},
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/turf/open/floor/plasteel/red/side{
dir = 10
@@ -15412,8 +14572,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/turf/open/floor/plasteel/red/side{
dir = 6
@@ -15422,9 +14581,7 @@
"aBf" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/light/small{
dir = 8
@@ -15513,7 +14670,6 @@
"aBp" = (
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/computer/secure_data,
@@ -15564,32 +14720,24 @@
/area/maintenance/fore)
"aBt" = (
/obj/machinery/shower{
- icon_state = "shower";
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aBu" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aBv" = (
/obj/machinery/shower{
- icon_state = "shower";
dir = 8
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aBw" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -15600,13 +14748,12 @@
dir = 6
},
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aBx" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -15619,7 +14766,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aBy" = (
/obj/structure/cable/yellow{
d2 = 8;
@@ -15635,7 +14782,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "Dormitories APC";
- pixel_x = 0;
pixel_y = 24
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -15644,7 +14790,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aBz" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -15658,7 +14804,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aBA" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -15670,17 +14816,16 @@
initialize_directions = 11
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aBB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/sign/pods{
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aBC" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -15695,7 +14840,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aBD" = (
/obj/effect/decal/cleanable/cobweb,
/obj/item/weapon/twohanded/required/kirbyplants{
@@ -15770,7 +14915,6 @@
"aBJ" = (
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -15838,9 +14982,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aBT" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/camera{
@@ -15850,28 +14992,21 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aBU" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0
+ name = "EXTERNAL AIRLOCK"
},
/turf/closed/wall,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aBV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/holopad,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aBW" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -15879,9 +15014,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aBX" = (
/obj/item/device/radio/intercom{
dir = 4;
@@ -15897,9 +15030,7 @@
/turf/open/floor/plasteel/brown{
dir = 4
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aBY" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -15907,18 +15038,14 @@
},
/obj/item/weapon/storage/box/donkpockets,
/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aBZ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
on = 1
},
/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aCa" = (
/obj/structure/closet/crate/freezer,
/obj/effect/spawner/lootdrop/maintenance{
@@ -15926,9 +15053,7 @@
name = "3maintenance loot spawner"
},
/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aCb" = (
/obj/structure/closet/crate,
/obj/structure/cable/yellow{
@@ -15938,9 +15063,7 @@
},
/obj/item/weapon/ore/glass,
/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aCc" = (
/obj/structure/rack{
dir = 8;
@@ -15956,9 +15079,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aCd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/vault{
@@ -16174,23 +15295,19 @@
/obj/structure/table/wood,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/power/apc{
dir = 8;
name = "Detective APC";
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/structure/cable/yellow{
d2 = 4;
icon_state = "0-4"
},
/obj/item/device/taperecorder{
- pixel_x = 3;
- pixel_y = 0
+ pixel_x = 3
},
/obj/item/weapon/storage/box/evidence,
/obj/item/device/flashlight/seclite,
@@ -16267,9 +15384,7 @@
"aCA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aCB" = (
/obj/machinery/door/airlock{
name = "Unisex Showers";
@@ -16277,9 +15392,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aCC" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -16290,14 +15403,14 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aCD" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aCE" = (
/obj/structure/chair/stool{
pixel_y = 8
@@ -16306,14 +15419,14 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aCF" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/holopad,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aCG" = (
/obj/structure/chair/stool{
pixel_y = 8
@@ -16323,14 +15436,14 @@
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/floorgrime,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aCH" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
initialize_directions = 11
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aCI" = (
/obj/machinery/light/small{
dir = 4
@@ -16342,7 +15455,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aCJ" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet,
@@ -16351,19 +15464,16 @@
name = "Dorm Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- pixel_y = 0;
req_access_txt = "0";
specialfunctions = 4
},
/obj/effect/decal/cleanable/cobweb,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aCK" = (
/obj/structure/closet/secure_closet/personal/cabinet,
/obj/machinery/airalarm{
@@ -16371,7 +15481,7 @@
},
/obj/item/clothing/under/suit_jacket/navy,
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aCM" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -16380,13 +15490,12 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aCN" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/obj/effect/turf_decal/bot{
dir = 1
@@ -16430,9 +15539,7 @@
"aCS" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel,
/area/engine/engineering)
@@ -16475,8 +15582,7 @@
"aCW" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/structure/window/reinforced/highpressure/fulltile,
/turf/open/floor/plating,
@@ -16512,15 +15618,13 @@
/area/shuttle/auxillary_base)
"aDb" = (
/turf/closed/wall,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"aDc" = (
/obj/structure/closet/crate,
/obj/item/weapon/coin/silver,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aDe" = (
/obj/structure/closet/crate,
/turf/open/floor/mineral/titanium/blue,
@@ -16557,38 +15661,29 @@
/turf/open/floor/plasteel/brown{
dir = 9
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aDi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/landmark/start/shaft_miner,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aDj" = (
/obj/structure/closet/secure_closet/miner,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/open/floor/plasteel/brown{
dir = 4
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aDk" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
req_access_txt = 1
},
/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aDl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
@@ -16599,18 +15694,14 @@
name = "3maintenance loot spawner"
},
/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aDm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/effect/landmark/start/cargo_technician,
/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aDn" = (
/obj/item/stack/sheet/cardboard,
/obj/structure/cable/yellow{
@@ -16622,23 +15713,17 @@
dir = 4
},
/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aDo" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/light_construct/small{
dir = 4
},
/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aDp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -16688,7 +15773,6 @@
id = "prison release";
name = "Labor Camp Shuttle Lockdown";
pixel_x = -25;
- pixel_y = 0;
req_access_txt = "2"
},
/obj/effect/turf_decal/delivery,
@@ -16712,7 +15796,6 @@
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
name = "HIGH VOLTAGE";
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/plasteel/red/corner{
@@ -16724,7 +15807,6 @@
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
name = "HIGH VOLTAGE";
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/camera{
@@ -16743,7 +15825,6 @@
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/plasteel/red/corner{
@@ -16876,8 +15957,7 @@
"aDI" = (
/obj/machinery/requests_console{
department = "Detective's office";
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/obj/structure/table/wood,
/obj/machinery/light/small{
@@ -16911,7 +15991,6 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = -26
},
/obj/structure/cable/yellow{
@@ -16927,9 +16006,7 @@
"aDM" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/yellow{
d1 = 2;
@@ -16976,7 +16053,6 @@
dir = 8
},
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/button/door{
@@ -16984,24 +16060,19 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_x = -25;
- pixel_y = 0;
req_access_txt = "0";
specialfunctions = 4
},
/obj/effect/landmark/start/assistant,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aDQ" = (
/obj/machinery/door/airlock{
id_tag = "Toilet3";
name = "Unit 3"
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aDR" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -17012,9 +16083,7 @@
dir = 6
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aDS" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -17028,9 +16097,7 @@
pixel_y = 29
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aDT" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -17045,43 +16112,33 @@
pixel_y = 29
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aDU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aDV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aDW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aDX" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -17098,36 +16155,36 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aDY" = (
/obj/structure/chair/stool{
pixel_y = 8
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aDZ" = (
/obj/structure/table,
/obj/item/weapon/storage/pill_bottle/dice,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aEa" = (
/obj/structure/table,
/obj/item/weapon/storage/crayons,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aEb" = (
/obj/structure/table,
/obj/item/toy/cards/deck,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aEc" = (
/obj/structure/chair/stool{
pixel_y = 8
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aEd" = (
/obj/machinery/door/airlock{
id_tag = "Cabin6";
@@ -17137,30 +16194,29 @@
dir = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aEe" = (
/obj/effect/landmark/xeno_spawn,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aEf" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
on = 1
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aEg" = (
/obj/machinery/light/small,
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aEh" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/effect/turf_decal/bot{
@@ -17187,9 +16243,7 @@
"aEk" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -17288,8 +16342,7 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -17319,9 +16372,7 @@
pixel_y = 28
},
/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aEu" = (
/obj/structure/shuttle/engine/propulsion/burst,
/obj/structure/window/reinforced{
@@ -17335,18 +16386,14 @@
network = list("MINE","AuxBase")
},
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aEw" = (
/obj/structure/chair/office/dark{
dir = 8
},
/obj/effect/landmark/start/shaft_miner,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aEx" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -17354,9 +16401,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aEy" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -17367,22 +16412,17 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aEz" = (
/obj/structure/closet/secure_closet/miner,
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/item/clothing/suit/hooded/wintercoat/miner,
/turf/open/floor/plasteel/brown{
dir = 4
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aEA" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -17396,9 +16436,7 @@
/turf/open/floor/plasteel/loadingarea{
dir = 1
},
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aEB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/yellow{
@@ -17409,14 +16447,11 @@
/obj/machinery/button/door{
id = "qm_warehouse";
name = "Warehouse Door Control";
- pixel_x = 0;
pixel_y = -24;
req_access_txt = "50"
},
/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aED" = (
/obj/structure/closet/crate/internals,
/obj/structure/cable/yellow{
@@ -17434,15 +16469,12 @@
name = "3maintenance loot spawner"
},
/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aEE" = (
/obj/machinery/power/apc{
dir = 4;
name = "Warehouse APC";
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/structure/cable/yellow{
d2 = 8;
@@ -17450,9 +16482,7 @@
},
/obj/effect/landmark/blobstart,
/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aEF" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -17462,9 +16492,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aEG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/yellow{
@@ -17475,9 +16503,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aEH" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -17486,13 +16512,10 @@
icon_state = "0-2"
},
/turf/open/floor/plating,
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aEI" = (
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/open/floor/plasteel,
@@ -17503,7 +16526,6 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/light/small{
@@ -17521,9 +16543,7 @@
"aEL" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
@@ -17696,9 +16716,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/black,
/area/security/brig)
@@ -17710,7 +16728,6 @@
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/light/small{
@@ -17732,7 +16749,6 @@
/obj/machinery/door/window{
dir = 1;
name = "glass door";
- pixel_y = 0;
req_access_txt = "0"
},
/turf/open/floor/plasteel/black,
@@ -17762,20 +16778,15 @@
network = list("SS13")
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aFd" = (
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aFe" = (
/obj/machinery/light/small,
/obj/machinery/power/apc{
dir = 2;
name = "Restrooms APC";
- pixel_x = 0;
pixel_y = -26
},
/obj/structure/cable/yellow{
@@ -17783,9 +16794,7 @@
icon_state = "0-4"
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aFf" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -17798,9 +16807,7 @@
icon_state = "1-4"
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aFg" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -17813,9 +16820,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aFh" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -17826,9 +16831,7 @@
dir = 1
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aFi" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
@@ -17844,9 +16847,7 @@
dir = 4
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aFj" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -17864,24 +16865,24 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aFk" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/floorgrime,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aFl" = (
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aFm" = (
/obj/structure/chair/stool{
pixel_y = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aFn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aFo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/firealarm{
@@ -17891,7 +16892,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aFp" = (
/obj/structure/reagent_dispensers/watertank,
/obj/machinery/firealarm{
@@ -18036,8 +17037,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/corner,
/turf/open/floor/engine,
@@ -18050,8 +17050,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/engine,
@@ -18069,7 +17068,6 @@
"aFE" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/obj/item/weapon/folder,
@@ -18086,15 +17084,12 @@
/obj/machinery/requests_console{
department = "Mining";
departmentType = 0;
- pixel_x = 0;
pixel_y = -30
},
/turf/open/floor/plasteel/brown{
dir = 10
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aFG" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
@@ -18104,9 +17099,7 @@
/turf/open/floor/plasteel/brown{
dir = 2
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aFH" = (
/obj/structure/rack{
dir = 1
@@ -18121,9 +17114,7 @@
/turf/open/floor/plasteel/brown{
dir = 2
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aFI" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -18136,17 +17127,13 @@
/turf/open/floor/plasteel/brown{
dir = 2
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aFJ" = (
/obj/structure/closet/secure_closet/miner,
/turf/open/floor/plasteel/brown{
dir = 6
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aFK" = (
/obj/machinery/door/poddoor/shutters{
id = "qm_warehouse";
@@ -18165,15 +17152,11 @@
/turf/open/floor/plasteel{
name = "floor"
},
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aFL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"aFM" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "0";
@@ -18187,12 +17170,10 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"aFN" = (
/turf/closed/wall,
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aFO" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -18205,9 +17186,7 @@
icon_state = "0-4"
},
/turf/open/floor/plating,
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aFP" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -18220,9 +17199,7 @@
icon_state = "0-4"
},
/turf/open/floor/plating,
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aFQ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -18233,9 +17210,7 @@
/obj/structure/cable/yellow,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aFR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/yellow{
@@ -18250,9 +17225,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aFS" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -18262,9 +17235,7 @@
},
/obj/structure/cable/yellow,
/turf/open/floor/plating,
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aFT" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -18281,9 +17252,7 @@
icon_state = "0-4"
},
/turf/open/floor/plating,
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aFU" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -18292,9 +17261,7 @@
icon_state = "0-8"
},
/turf/open/floor/plating,
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aFV" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -18303,8 +17270,7 @@
},
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/machinery/camera{
c_tag = "Storage Wing - Security Access Door";
@@ -18394,7 +17360,6 @@
icon_state = "4-8"
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/turf/open/floor/plasteel/red/corner{
@@ -18452,7 +17417,6 @@
cell_type = 5000;
dir = 2;
name = "Fore Primary Hallway APC";
- pixel_x = 0;
pixel_y = -27
},
/obj/structure/cable/yellow,
@@ -18477,7 +17441,6 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = -26
},
/turf/open/floor/plasteel/red/corner{
@@ -18560,7 +17523,6 @@
"aGq" = (
/obj/machinery/computer/security,
/obj/machinery/newscaster/security_unit{
- pixel_x = 0;
pixel_y = -30
},
/turf/open/floor/plasteel/black,
@@ -18579,7 +17541,6 @@
dir = 1;
name = "Prison Monitor";
network = list("Prison");
- pixel_x = 0;
pixel_y = -30
},
/obj/item/weapon/restraints/handcuffs,
@@ -18597,7 +17558,6 @@
pixel_x = 24
},
/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 0;
pixel_y = -30
},
/turf/open/floor/plasteel/black,
@@ -18673,7 +17633,6 @@
dir = 8
},
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -32
},
/obj/effect/landmark/blobstart,
@@ -18682,45 +17641,34 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_x = -25;
- pixel_y = 0;
req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aGA" = (
/obj/machinery/door/airlock{
id_tag = "Toilet2";
name = "Unit 2"
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aGB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aGC" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aGD" = (
/obj/machinery/light/small{
dir = 8
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aGE" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -18730,17 +17678,13 @@
/area/maintenance/fore)
"aGF" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aGG" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -18757,14 +17701,14 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aGH" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aGI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -18772,7 +17716,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aGJ" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -18780,13 +17724,12 @@
},
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aGK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -18795,7 +17738,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aGL" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 2
@@ -18803,7 +17746,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aGM" = (
/obj/machinery/door/airlock{
id_tag = "Cabin7";
@@ -18813,14 +17756,12 @@
dir = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aGN" = (
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aGO" = (
/obj/effect/landmark/xeno_spawn,
/obj/machinery/airalarm{
@@ -18834,12 +17775,12 @@
on = 1
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aGP" = (
/obj/structure/closet/secure_closet/personal/cabinet,
/obj/item/clothing/under/assistantformal,
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aGQ" = (
/obj/structure/table,
/obj/item/stack/rods{
@@ -18947,8 +17888,7 @@
/area/engine/engineering)
"aGV" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -19004,9 +17944,7 @@
/obj/structure/window/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aHd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
@@ -19021,9 +17959,7 @@
req_access_txt = "48"
},
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
+/area/quartermaster/miningoffice)
"aHe" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -19043,7 +17979,6 @@
/obj/machinery/button/door{
id = "qm_warehouse";
name = "Warehouse Door Control";
- pixel_x = 0;
pixel_y = 24;
req_access_txt = "50"
},
@@ -19095,9 +18030,7 @@
/turf/open/floor/plasteel{
name = "floor"
},
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aHk" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
@@ -19112,9 +18045,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aHl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -19129,9 +18060,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aHm" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_mining{
@@ -19148,9 +18077,7 @@
/turf/open/floor/plasteel{
name = "floor"
},
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aHn" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -19161,9 +18088,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aHo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -19171,9 +18096,7 @@
/turf/open/floor/plasteel/brown/corner{
dir = 8
},
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aHp" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 2
@@ -19181,9 +18104,7 @@
/turf/open/floor/plasteel/brown/corner{
dir = 8
},
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aHq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -19197,9 +18118,7 @@
/turf/open/floor/plasteel/brown/corner{
dir = 8
},
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aHr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -19212,9 +18131,7 @@
/turf/open/floor/plasteel/brown/corner{
dir = 8
},
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aHs" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -19223,30 +18140,22 @@
/turf/open/floor/plasteel/brown/corner{
dir = 8
},
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aHt" = (
/obj/machinery/vending/cigarette,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/open/floor/plasteel,
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aHu" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -19300,17 +18209,16 @@
desc = "A direction sign, pointing out which way the security department is.";
dir = 1;
icon_state = "direction_sec";
- pixel_x = 0;
pixel_y = 8
},
/turf/closed/wall,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aHD" = (
/turf/closed/wall,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aHE" = (
/turf/closed/wall/r_wall,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aHF" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
@@ -19319,7 +18227,7 @@
req_access_txt = "63"
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aHG" = (
/turf/closed/wall,
/area/lawoffice)
@@ -19338,48 +18246,36 @@
"aHI" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/light_switch{
pixel_x = -26
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aHJ" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/structure/mirror{
pixel_x = 28
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aHK" = (
/obj/machinery/door/airlock{
id_tag = "Toilet4";
name = "Unit 4"
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aHL" = (
/obj/machinery/door/airlock{
name = "Unit B"
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aHM" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -19397,7 +18293,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aHN" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -19405,7 +18301,7 @@
on = 1
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aHO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
@@ -19413,7 +18309,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aHQ" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -19428,21 +18324,20 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aHR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/structure/closet/wardrobe/pjs,
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aHS" = (
/obj/machinery/button/door{
id = "Cabin7";
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- pixel_y = 0;
req_access_txt = "0";
specialfunctions = 4
},
@@ -19450,18 +18345,16 @@
/obj/item/weapon/bedsheet,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aHT" = (
/obj/structure/chair/wood/normal{
dir = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aHU" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
@@ -19470,7 +18363,7 @@
},
/obj/item/weapon/paper,
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aHV" = (
/obj/structure/closet,
/obj/item/weapon/storage/box/donkpockets,
@@ -19479,7 +18372,7 @@
name = "2maintenance loot spawner"
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aHW" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -19490,7 +18383,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aHX" = (
/obj/machinery/firealarm{
dir = 8;
@@ -19543,13 +18436,12 @@
/obj/machinery/button/door{
id = "aux_base_shutters";
name = "Public Shutters Control";
- pixel_x = 0;
pixel_y = -24;
req_access_txt = "0";
req_one_access_txt = "32;47;48"
},
/turf/open/floor/plasteel/yellow/side,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"aIg" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -19564,7 +18456,6 @@
},
/obj/machinery/status_display{
density = 0;
- pixel_x = 0;
pixel_y = 32;
supply_display = 1
},
@@ -19742,9 +18633,7 @@
/turf/open/floor/plasteel{
name = "floor"
},
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aIs" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
@@ -19762,9 +18651,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aIt" = (
/obj/machinery/camera{
c_tag = "Cargo Bay - Storage Wing Entrance";
@@ -19775,20 +18662,15 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aIu" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/power/apc{
dir = 2;
name = "Storage Wing APC";
- pixel_x = 0;
pixel_y = -27
},
/obj/structure/cable/yellow{
@@ -19803,9 +18685,7 @@
/turf/open/floor/plasteel/brown/corner{
dir = 4
},
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aIv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -19816,7 +18696,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aIw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -19834,9 +18714,7 @@
/turf/open/floor/plasteel/brown/corner{
dir = 4
},
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aIx" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -19851,7 +18729,6 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = -26
},
/obj/machinery/camera{
@@ -19868,9 +18745,7 @@
/turf/open/floor/plasteel/brown/corner{
dir = 4
},
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aIy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -19883,9 +18758,7 @@
/turf/open/floor/plasteel/brown/corner{
dir = 4
},
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aIz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -19907,9 +18780,7 @@
/turf/open/floor/plasteel/brown/corner{
dir = 4
},
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aIA" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1;
@@ -19921,9 +18792,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel,
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aIB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -19934,9 +18803,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel,
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"aIC" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -19975,7 +18842,6 @@
/obj/item/weapon/folder/red,
/obj/item/weapon/restraints/handcuffs,
/obj/machinery/newscaster/security_unit{
- pixel_x = 0;
pixel_y = -30
},
/obj/structure/cable/yellow{
@@ -20065,13 +18931,13 @@
/obj/item/weapon/gavelblock,
/obj/item/weapon/gavelhammer,
/turf/open/floor/plasteel,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aIM" = (
/obj/structure/chair{
name = "Bailiff"
},
/turf/open/floor/plasteel,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aIN" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -20080,7 +18946,7 @@
pixel_y = 20
},
/turf/open/floor/plasteel,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aIO" = (
/obj/structure/chair{
name = "Judge"
@@ -20088,7 +18954,7 @@
/turf/open/floor/plasteel/blue/side{
dir = 9
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aIP" = (
/obj/structure/chair{
name = "Judge"
@@ -20096,7 +18962,6 @@
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/light{
@@ -20110,7 +18975,7 @@
/turf/open/floor/plasteel/blue/side{
dir = 1
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aIQ" = (
/obj/structure/chair{
name = "Judge"
@@ -20118,19 +18983,19 @@
/turf/open/floor/plasteel/blue/side{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aIR" = (
/turf/open/floor/plasteel,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aIS" = (
/obj/structure/window/reinforced{
dir = 8
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aIT" = (
/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aIU" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green{
@@ -20139,12 +19004,10 @@
},
/obj/machinery/requests_console{
department = "Law office";
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/newscaster{
- pixel_x = -31;
- pixel_y = 0
+ pixel_x = -31
},
/turf/open/floor/wood,
/area/lawoffice)
@@ -20157,7 +19020,6 @@
desc = "Used for watching Prison Wing holding areas.";
name = "Prison Monitor";
network = list("Prison");
- pixel_x = 0;
pixel_y = 30
},
/turf/open/floor/wood,
@@ -20223,7 +19085,6 @@
dir = 8
},
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -32
},
/obj/effect/landmark/blobstart,
@@ -20232,23 +19093,18 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_x = -25;
- pixel_y = 0;
req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aJb" = (
/obj/machinery/door/airlock{
id_tag = "Toilet1";
name = "Unit 1"
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aJc" = (
/obj/structure/toilet{
dir = 4
@@ -20263,23 +19119,18 @@
id = "Toilet4";
name = "Lock Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = -25;
req_access_txt = "0";
specialfunctions = 4
},
/obj/effect/landmark/start/assistant,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aJd" = (
/obj/machinery/light/small,
/obj/machinery/recharge_station,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aJe" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -20290,22 +19141,20 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aJf" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aJg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aJh" = (
/turf/closed/wall,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aJi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/spawner/lootdrop/maintenance,
@@ -20315,9 +19164,7 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aJj" = (
/obj/effect/decal/cleanable/cobweb,
/obj/machinery/field/generator,
@@ -20385,8 +19232,7 @@
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0
+ name = "EXTERNAL AIRLOCK"
},
/turf/open/floor/plating,
/area/quartermaster/storage)
@@ -20502,9 +19348,7 @@
req_one_access_txt = "12;63;48;50"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aJM" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -20516,9 +19360,7 @@
req_one_access_txt = "12;63;48;50"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aJN" = (
/turf/closed/wall,
/area/storage/primary)
@@ -20594,31 +19436,30 @@
req_access_txt = "63; 42"
},
/turf/open/floor/plasteel,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aJX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/plasteel,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aJY" = (
/turf/open/floor/plasteel/neutral/side{
dir = 9
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aJZ" = (
/obj/structure/table/wood,
/obj/item/device/radio/intercom{
broadcasting = 1;
dir = 8;
listening = 0;
- name = "Station Intercom (Court)";
- pixel_x = 0
+ name = "Station Intercom (Court)"
},
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aKa" = (
/obj/structure/table/wood,
/obj/item/weapon/gavelblock,
@@ -20626,19 +19467,19 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aKb" = (
/obj/structure/table/wood,
/obj/item/weapon/book/manual/wiki/security_space_law,
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aKc" = (
/turf/open/floor/plasteel/neutral/side{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aKd" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -20650,14 +19491,14 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aKe" = (
/obj/machinery/door/window/southleft{
name = "Court Cell";
req_access_txt = "2"
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aKf" = (
/obj/effect/landmark/start/lawyer,
/obj/structure/chair/office/dark{
@@ -20731,9 +19572,7 @@
req_access_txt = "0"
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aKm" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/yellow{
@@ -20749,13 +19588,13 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aKn" = (
/obj/structure/grille,
/obj/structure/window/reinforced/tinted/fulltile,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aKo" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -20766,7 +19605,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aKp" = (
/obj/item/weapon/reagent_containers/spray/plantbgone,
/obj/item/weapon/reagent_containers/spray/pestspray{
@@ -20780,14 +19619,11 @@
},
/obj/structure/table,
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aKq" = (
/obj/machinery/biogenerator,
/obj/machinery/firealarm{
@@ -20795,9 +19631,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aKr" = (
/obj/structure/table,
/obj/item/weapon/cultivator,
@@ -20810,9 +19644,7 @@
/obj/item/weapon/reagent_containers/glass/bucket,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aKs" = (
/obj/machinery/seed_extractor,
/obj/machinery/airalarm{
@@ -20820,9 +19652,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aKt" = (
/obj/item/seeds/apple,
/obj/item/seeds/banana,
@@ -20836,26 +19666,20 @@
/obj/item/seeds/tower,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aKu" = (
/obj/structure/window/reinforced{
dir = 8
},
/turf/open/floor/grass,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aKv" = (
/mob/living/simple_animal/chicken{
name = "Featherbottom";
real_name = "Featherbottom"
},
/turf/open/floor/grass,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aKw" = (
/obj/effect/decal/cleanable/cobweb,
/obj/structure/closet/crate{
@@ -20866,7 +19690,7 @@
/obj/item/weapon/weldingtool,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aKx" = (
/obj/machinery/portable_atmospherics/canister/toxins,
/turf/open/floor/plating,
@@ -20908,7 +19732,6 @@
id = "engsm";
name = "Radiation Shutters Control";
pixel_x = 24;
- pixel_y = 0;
req_access_txt = "10"
},
/obj/machinery/atmospherics/pipe/manifold/general/visible{
@@ -21073,9 +19896,7 @@
opacity = 1
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aLa" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -21089,9 +19910,7 @@
dir = 9
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aLb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -21103,9 +19922,7 @@
},
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aLc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -21116,15 +19933,11 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aLd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aLe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
@@ -21140,9 +19953,7 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aLf" = (
/obj/structure/table,
/obj/item/clothing/gloves/color/fyellow,
@@ -21210,7 +20021,7 @@
},
/obj/item/weapon/cigbutt,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aLl" = (
/obj/machinery/vending/tool,
/turf/open/floor/plasteel/brown{
@@ -21261,12 +20072,9 @@
"aLr" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/flasher{
- pixel_x = 0;
pixel_y = 24;
id = "AI"
},
@@ -21328,7 +20136,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -21341,26 +20148,24 @@
"aLz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aLA" = (
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aLB" = (
/obj/effect/landmark/start/lawyer,
/turf/open/floor/plasteel,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aLC" = (
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aLD" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/light{
icon_state = "tube1";
@@ -21413,7 +20218,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg2"
},
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aLK" = (
/turf/open/floor/plasteel/neutral/corner{
dir = 1
@@ -21442,7 +20247,6 @@
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 30
},
/obj/effect/turf_decal/delivery,
@@ -21455,7 +20259,6 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 26
},
/obj/machinery/light/small{
@@ -21465,10 +20268,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
"aLQ" = (
-/obj/machinery/disposal/bin{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/obj/machinery/camera{
c_tag = "Locker Room Starboard";
@@ -21507,7 +20307,6 @@
/area/crew_quarters/locker)
"aLU" = (
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
@@ -21521,9 +20320,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 9
},
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aLV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -21531,22 +20328,16 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aLW" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/neutral/side{
dir = 5
},
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aLX" = (
/obj/machinery/door/firedoor/border_only{
density = 1;
@@ -21556,20 +20347,16 @@
opacity = 1
},
/turf/open/floor/grass,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aLY" = (
/turf/open/floor/grass,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aLZ" = (
/obj/effect/landmark/blobstart,
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aMa" = (
/obj/machinery/power/emitter,
/turf/open/floor/plating,
@@ -21597,8 +20384,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -21614,8 +20400,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/door/airlock/glass_engineering{
name = "Supermatter Engine";
@@ -21713,9 +20498,7 @@
"aMy" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/loadingarea{
dir = 8
@@ -21803,7 +20586,6 @@
/obj/item/weapon/aiModule/core/full/corp,
/obj/item/weapon/aiModule/core/full/custom,
/obj/machinery/flasher{
- pixel_x = 0;
pixel_y = 24;
id = "AI"
},
@@ -21823,7 +20605,6 @@
},
/obj/structure/window/reinforced,
/obj/machinery/flasher{
- pixel_x = 0;
pixel_y = 24;
id = "AI"
},
@@ -21853,7 +20634,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aML" = (
/obj/structure/chair{
dir = 4;
@@ -21862,26 +20643,26 @@
/turf/open/floor/plasteel/red/side{
dir = 9
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aMM" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/red,
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aMN" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aMO" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/blue,
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aMP" = (
/obj/structure/chair{
dir = 8;
@@ -21890,7 +20671,7 @@
/turf/open/floor/plasteel/green/side{
dir = 5
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aMQ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
@@ -21898,7 +20679,7 @@
req_access_txt = "38"
},
/turf/open/floor/wood,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aMR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
@@ -21925,8 +20706,7 @@
/area/lawoffice)
"aMU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -21939,7 +20719,6 @@
/obj/structure/filingcabinet/employment,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/open/floor/wood,
@@ -22041,8 +20820,7 @@
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
@@ -22055,9 +20833,7 @@
"aNe" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -22079,31 +20855,23 @@
/obj/structure/grille,
/obj/structure/window/reinforced/tinted/fulltile,
/turf/open/floor/plating,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aNh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aNi" = (
/obj/machinery/hydroponics/constructable,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aNj" = (
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aNk" = (
/obj/structure/window/reinforced{
dir = 8
@@ -22114,20 +20882,16 @@
real_name = "Kentucky"
},
/turf/open/floor/grass,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aNl" = (
/obj/structure/window/reinforced,
/turf/open/floor/grass,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aNm" = (
/obj/structure/rack,
/obj/item/clothing/suit/hazardvest,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aNn" = (
/obj/machinery/power/emitter,
/obj/machinery/light/small,
@@ -22206,9 +20970,7 @@
dir = 8
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"aNy" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -22216,9 +20978,7 @@
layer = 2.9
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"aNz" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -22226,9 +20986,7 @@
},
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"aNA" = (
/obj/structure/closet{
name = "Evidence Closet 3"
@@ -22253,9 +21011,7 @@
pixel_y = 1
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"aNC" = (
/obj/structure/window/reinforced{
dir = 8
@@ -22372,9 +21128,7 @@
"aNO" = (
/obj/structure/closet/secure_closet/quartermaster,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -22395,7 +21149,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "Quartermaster's Office APC";
- pixel_x = 0;
pixel_y = 30
},
/obj/structure/cable/yellow{
@@ -22437,7 +21190,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aNT" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -22557,12 +21310,10 @@
"aOf" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aOg" = (
/obj/structure/chair{
dir = 4;
@@ -22571,27 +21322,27 @@
/turf/open/floor/plasteel/red/side{
dir = 10
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aOh" = (
/obj/structure/table/wood,
/obj/item/weapon/paper,
/turf/open/floor/plasteel/neutral/side{
dir = 10
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aOi" = (
/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aOj" = (
/obj/item/device/radio/beacon,
/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aOk" = (
/obj/structure/table/wood,
/turf/open/floor/plasteel/neutral/side{
dir = 6
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aOl" = (
/obj/structure/chair{
dir = 8;
@@ -22603,28 +21354,24 @@
/turf/open/floor/plasteel/green/side{
dir = 6
},
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aOm" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
on = 1
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/turf/open/floor/plasteel,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aOn" = (
-/obj/item/device/taperecorder{
- pixel_y = 0
- },
+/obj/item/device/taperecorder,
/obj/item/weapon/cartridge/lawyer,
/obj/structure/table/wood,
/obj/machinery/button/door{
id = "lawyer_shutters";
name = "law office shutters control";
- pixel_x = 0;
pixel_y = -26;
req_access_txt = "38"
},
@@ -22656,7 +21403,6 @@
"aOr" = (
/obj/structure/closet/lawcloset,
/obj/machinery/light_switch{
- pixel_x = 0;
pixel_y = -28
},
/turf/open/floor/wood,
@@ -22818,9 +21564,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aOH" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -22836,9 +21580,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aOI" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -22849,9 +21591,7 @@
dir = 4
},
/turf/open/floor/plasteel/floorgrime,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aOJ" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -22863,9 +21603,7 @@
},
/obj/machinery/holopad,
/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aOK" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -22881,9 +21619,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aOL" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -22896,9 +21632,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aOM" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -22912,9 +21646,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aON" = (
/obj/machinery/power/apc{
dir = 4;
@@ -22938,16 +21670,13 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aOO" = (
/obj/machinery/power/apc{
cell_type = 10000;
dir = 8;
name = "Engine Room APC";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/structure/cable/yellow{
d2 = 4;
@@ -23003,7 +21732,6 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 21
},
/turf/open/floor/engine,
@@ -23016,9 +21744,7 @@
dir = 8
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"aOU" = (
/obj/structure/window/reinforced{
dir = 8
@@ -23040,9 +21766,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"aOX" = (
/obj/structure/window/reinforced{
dir = 4
@@ -23205,8 +21929,7 @@
/obj/machinery/requests_console{
department = "Cargo Bay";
departmentType = 2;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/open/floor/plasteel,
/area/quartermaster/qm)
@@ -23221,9 +21944,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aPm" = (
/obj/structure/plasticflaps{
opacity = 1
@@ -23278,8 +21999,7 @@
/obj/machinery/requests_console{
department = "Tool Storage";
departmentType = 0;
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/obj/machinery/light{
icon_state = "tube1";
@@ -23399,7 +22119,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aPC" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
@@ -23407,7 +22127,7 @@
req_access_txt = "42"
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aPD" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -23415,7 +22135,7 @@
req_access_txt = 1
},
/turf/open/floor/plating,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aPE" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -23460,8 +22180,7 @@
dir = 8
},
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/turf/open/floor/plasteel/neutral/corner{
dir = 1
@@ -23516,9 +22235,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aPO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
@@ -23526,9 +22243,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aPP" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -23538,9 +22253,7 @@
/obj/machinery/hydroponics/constructable,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aPQ" = (
/obj/structure/window/reinforced{
dir = 1
@@ -23549,9 +22262,7 @@
dir = 8
},
/turf/open/floor/grass,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aPR" = (
/obj/item/device/radio/intercom{
freerange = 0;
@@ -23563,15 +22274,13 @@
dir = 1
},
/turf/open/floor/grass,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aPS" = (
/obj/structure/rack,
/obj/item/clothing/gloves/color/fyellow,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aPT" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -23582,7 +22291,7 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aPU" = (
/obj/machinery/computer/atmos_alert,
/obj/structure/sign/map/left{
@@ -23592,8 +22301,7 @@
},
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/turf/open/floor/plasteel/vault,
/area/engine/engineering)
@@ -23614,7 +22322,6 @@
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/camera{
@@ -23691,7 +22398,6 @@
/obj/machinery/status_display{
density = 0;
layer = 3;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/computer/shuttle/pod{
@@ -23776,7 +22482,6 @@
/obj/structure/table,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/camera{
@@ -23801,8 +22506,7 @@
network = list("MINE","AuxBase")
},
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/open/floor/plasteel/brown{
dir = 8
@@ -23819,14 +22523,10 @@
"aQt" = (
/obj/structure/table,
/obj/item/weapon/clipboard,
-/obj/item/weapon/stamp/qm{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/weapon/stamp/qm,
/obj/machinery/status_display{
density = 0;
pixel_x = 32;
- pixel_y = 0;
supply_display = 1
},
/obj/item/weapon/cartridge/quartermaster{
@@ -23900,12 +22600,10 @@
dir = 8
},
/obj/machinery/ai_status_display{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/flasher{
id = "AI";
- pixel_x = 0;
pixel_y = -24
},
/turf/open/floor/plasteel/black,
@@ -23963,12 +22661,10 @@
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/flasher{
id = "AI";
- pixel_x = 0;
pixel_y = -24
},
/turf/open/floor/plasteel/black,
@@ -23979,8 +22675,7 @@
dir = 8
},
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
@@ -23997,20 +22692,20 @@
},
/obj/structure/window/reinforced/tinted/fulltile,
/turf/open/floor/plating,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aQG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/obj/machinery/vending/cigarette,
/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aQH" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aQI" = (
/obj/structure/chair{
dir = 1
@@ -24019,19 +22714,18 @@
req_access_txt = 1
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aQJ" = (
/obj/machinery/vending/coffee,
/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aQK" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
},
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-03";
@@ -24237,7 +22931,6 @@
/obj/item/clothing/mask/balaclava,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/light/small{
@@ -24255,7 +22948,6 @@
dir = 5
},
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
@@ -24263,23 +22955,17 @@
/turf/open/floor/plasteel/neutral/side{
dir = 10
},
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aRc" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
on = 1
},
/turf/open/floor/plasteel/neutral/side,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aRd" = (
/turf/open/floor/plasteel/neutral/side,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aRe" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -24287,16 +22973,12 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/neutral/side,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aRf" = (
/turf/open/floor/plasteel/neutral/side{
dir = 6
},
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aRg" = (
/obj/machinery/door/firedoor/border_only{
density = 1;
@@ -24306,18 +22988,14 @@
opacity = 1
},
/turf/open/floor/grass,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aRh" = (
/mob/living/simple_animal/cow{
name = "Betsy";
real_name = "Betsy"
},
/turf/open/floor/grass,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aRi" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -24327,7 +23005,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/item/weapon/cigbutt,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aRj" = (
/obj/effect/landmark/start/station_engineer,
/obj/machinery/light{
@@ -24353,8 +23031,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
@@ -24375,8 +23052,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
dir = 5
@@ -24389,8 +23065,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/open/floor/plating,
/area/engine/engineering)
@@ -24398,8 +23073,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -24415,8 +23089,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -24478,20 +23151,14 @@
/area/engine/engineering)
"aRy" = (
/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"aRz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"aRA" = (
/turf/closed/wall,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aRB" = (
/obj/structure/shuttle/engine/propulsion/burst,
/turf/closed/wall/mineral/titanium,
@@ -24515,12 +23182,12 @@
/turf/open/floor/plasteel/yellow/side{
dir = 9
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"aRE" = (
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"aRF" = (
/obj/machinery/light{
icon_state = "tube1";
@@ -24530,13 +23197,11 @@
/turf/open/floor/plasteel/yellow/side{
dir = 5
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"aRG" = (
/obj/effect/landmark/revenantspawn,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aRH" = (
/obj/machinery/conveyor{
dir = 1;
@@ -24665,9 +23330,7 @@
"aRS" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/brown{
dir = 4
@@ -24676,7 +23339,6 @@
"aRT" = (
/obj/machinery/flasher{
id = "AI";
- pixel_x = 0;
pixel_y = -24
},
/obj/machinery/porta_turret/ai{
@@ -24717,25 +23379,25 @@
opacity = 1
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aRY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aRZ" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=16-Fore";
location = "15-Court"
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aSa" = (
/obj/structure/chair{
dir = 1
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aSb" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -24797,8 +23459,7 @@
/obj/item/weapon/cultivator,
/obj/item/weapon/hatchet,
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/item/weapon/paper/hydroponics,
/obj/item/weapon/coin/silver,
@@ -24806,9 +23467,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aSk" = (
/obj/structure/table,
/obj/item/weapon/hatchet,
@@ -24820,9 +23479,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aSl" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,
@@ -24839,9 +23496,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aSm" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -24852,9 +23507,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aSn" = (
/obj/item/weapon/storage/bag/plants/portaseeder,
/obj/structure/table,
@@ -24864,28 +23517,24 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aSo" = (
/obj/item/weapon/book/manual/wiki/engineering_hacking{
pixel_x = 4;
pixel_y = 5
},
/obj/item/weapon/book/manual/wiki/engineering_construction{
- pixel_x = 0;
pixel_y = 3
},
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aSp" = (
/obj/machinery/power/terminal,
/obj/structure/cable,
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -24913,8 +23562,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/door/airlock/glass_engineering{
name = "Power Monitoring";
@@ -24946,9 +23594,7 @@
"aSu" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/yellow{
d1 = 4;
@@ -25020,8 +23666,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/corner{
dir = 8
@@ -25032,8 +23677,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -25052,17 +23696,13 @@
dir = 5
},
/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"aSF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"aSG" = (
/obj/structure/window/reinforced{
dir = 8
@@ -25080,24 +23720,20 @@
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aSI" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aSJ" = (
/obj/structure/closet/toolcloset,
/turf/open/floor/plasteel/yellow/side{
dir = 10
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"aSK" = (
/turf/open/floor/plasteel/yellow/side,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"aSL" = (
/obj/structure/rack{
dir = 4
@@ -25120,11 +23756,10 @@
/obj/machinery/power/apc{
dir = 2;
name = "Auxillary Base Construction APC";
- pixel_x = 0;
pixel_y = -24
},
/turf/open/floor/plasteel/yellow/side,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"aSM" = (
/obj/structure/table,
/obj/item/stack/sheet/metal{
@@ -25139,11 +23774,10 @@
/obj/item/weapon/pipe_dispenser,
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/open/floor/plasteel/yellow/side,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"aSN" = (
/obj/structure/table,
/obj/item/stack/sheet/plasteel{
@@ -25156,7 +23790,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 6
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"aSO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -25168,18 +23802,14 @@
dir = 2
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aSP" = (
/obj/structure/closet/crate{
icon_state = "crateopen";
opened = 1
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aSQ" = (
/obj/machinery/conveyor_switch/oneway{
convdir = 1;
@@ -25245,7 +23875,6 @@
/obj/machinery/status_display{
density = 0;
pixel_x = 32;
- pixel_y = 0;
supply_display = 1
},
/obj/effect/turf_decal/stripes/line{
@@ -25255,9 +23884,7 @@
/area/quartermaster/storage)
"aSX" = (
/turf/closed/wall,
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aSY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -25274,9 +23901,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aSZ" = (
/obj/machinery/door/airlock/maintenance{
name = "Tool Storage Maintenance";
@@ -25288,9 +23913,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aTa" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -25419,29 +24042,25 @@
/obj/structure/grille,
/obj/structure/window/reinforced/tinted/fulltile,
/turf/open/floor/plating,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aTl" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aTm" = (
/obj/item/device/radio/intercom{
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = -26
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aTn" = (
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/light,
@@ -25451,20 +24070,19 @@
network = list("SS13")
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aTo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aTp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aTq" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -25538,7 +24156,6 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = -26
},
/obj/machinery/camera{
@@ -25577,7 +24194,6 @@
},
/obj/machinery/light,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -32
},
/turf/open/floor/plasteel/neutral/corner{
@@ -25594,8 +24210,7 @@
/area/crew_quarters/locker)
"aTB" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/turf/open/floor/plasteel/neutral/corner{
dir = 2
@@ -25611,9 +24226,7 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
+/area/hydroponics/garden)
"aTD" = (
/obj/structure/cable/yellow{
d2 = 4;
@@ -25757,9 +24370,7 @@
req_access_txt = "0"
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"aTS" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -25774,24 +24385,18 @@
network = list("MiniSat")
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"aTT" = (
/obj/structure/window/reinforced{
dir = 8
},
/obj/structure/lattice,
/turf/open/space,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"aTU" = (
/obj/structure/lattice,
/turf/open/space,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"aTV" = (
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai)
@@ -25820,9 +24425,7 @@
dir = 4
},
/turf/open/space,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"aTZ" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -25837,9 +24440,7 @@
network = list("MiniSat")
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"aUa" = (
/obj/structure/window/reinforced{
dir = 4
@@ -25856,23 +24457,17 @@
req_access_txt = "0"
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"aUb" = (
/obj/structure/sign/pods,
/turf/closed/wall,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aUc" = (
/obj/machinery/door/airlock/external{
name = "Escape Pod One"
},
/turf/open/floor/plating,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aUd" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
@@ -25884,9 +24479,7 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aUe" = (
/turf/closed/wall,
/area/quartermaster/storage)
@@ -25918,9 +24511,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
@@ -25942,8 +24533,7 @@
"aUj" = (
/obj/structure/closet/secure_closet/security/cargo,
/obj/machinery/light_switch{
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/obj/machinery/airalarm{
pixel_y = 23
@@ -25951,13 +24541,11 @@
/turf/open/floor/plasteel/red/side{
dir = 9
},
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aUk" = (
/obj/machinery/power/apc{
dir = 1;
- name = "Security Post - Cargo APC";
+ name = "Security Post - Cargo Bay APC";
pixel_x = 1;
pixel_y = 24
},
@@ -25968,9 +24556,7 @@
/turf/open/floor/plasteel/red/side{
dir = 1
},
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aUl" = (
/obj/item/weapon/screwdriver{
pixel_y = 10
@@ -25987,21 +24573,16 @@
/turf/open/floor/plasteel/red/side{
dir = 1
},
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aUm" = (
/obj/structure/filingcabinet,
/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/turf/open/floor/plasteel/red/side{
dir = 5
},
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aUo" = (
/obj/structure/table,
/obj/item/weapon/storage/belt/utility,
@@ -26063,8 +24644,7 @@
"aUu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/light_switch{
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/turf/open/floor/plasteel/brown{
dir = 6
@@ -26087,15 +24667,12 @@
/area/ai_monitored/turret_protected/ai_upload_foyer)
"aUy" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/turretid{
control_area = "AI Upload Chamber";
icon_state = "control_stun";
name = "AI Upload turret control";
- pixel_x = 0;
pixel_y = 28
},
/obj/item/device/radio/intercom{
@@ -26113,7 +24690,6 @@
/obj/machinery/power/apc{
dir = 2;
name = "AI Upload Access APC";
- pixel_x = 0;
pixel_y = -27
},
/obj/machinery/light/small{
@@ -26124,8 +24700,7 @@
dir = 4;
name = "AI Upload Monitor";
network = list("AIUpload");
- pixel_x = -29;
- pixel_y = 0
+ pixel_x = -29
},
/turf/open/floor/plasteel/vault{
dir = 6
@@ -26158,8 +24733,7 @@
dir = 8;
name = "MiniSat Monitor";
network = list("MiniSat","tcomm");
- pixel_x = 29;
- pixel_y = 0
+ pixel_x = 29
},
/obj/machinery/camera/motion{
c_tag = "AI Upload Foyer";
@@ -26177,14 +24751,12 @@
desc = "A direction sign, pointing out which way the security department is.";
dir = 1;
icon_state = "direction_sec";
- pixel_x = 0;
pixel_y = 8
},
/obj/structure/sign/directions/engineering{
desc = "A direction sign, pointing out which way the engineering department is.";
dir = 4;
- icon_state = "direction_eng";
- pixel_y = 0
+ icon_state = "direction_eng"
},
/obj/structure/sign/directions/engineering{
desc = "A direction sign, pointing out which way the bridge is.";
@@ -26248,7 +24820,7 @@
pixel_y = -8
},
/turf/closed/wall,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aUG" = (
/obj/machinery/power/apc{
cell_type = 2500;
@@ -26264,7 +24836,7 @@
/obj/structure/table,
/obj/item/weapon/storage/fancy/donut_box,
/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aUH" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -26276,7 +24848,7 @@
on = 1
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aUI" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
@@ -26287,7 +24859,7 @@
icon_state = "2-8"
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aUJ" = (
/obj/structure/table,
/obj/item/weapon/book/manual/wiki/security_space_law{
@@ -26308,11 +24880,10 @@
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aUK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/yellow{
@@ -26371,7 +24942,7 @@
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aUV" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -26390,7 +24961,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aUW" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -26403,7 +24974,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aUX" = (
/obj/structure/closet/secure_closet/personal,
/obj/item/clothing/under/assistantformal,
@@ -26414,7 +24985,7 @@
/obj/item/clothing/suit/hooded/wintercoat,
/obj/item/clothing/shoes/winterboots,
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aUY" = (
/obj/structure/closet/firecloset,
/obj/effect/turf_decal/delivery,
@@ -26442,8 +25013,7 @@
announcementConsole = 0;
department = "Engineering";
departmentType = 4;
- name = "Engineering RC";
- pixel_y = 0
+ name = "Engineering RC"
},
/turf/closed/wall,
/area/engine/engineering)
@@ -26525,14 +25095,11 @@
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai)
@@ -26544,7 +25111,6 @@
icon = 'icons/mob/robots.dmi';
icon_state = "robot_old";
name = "Cyborg Statue";
- pixel_x = 0;
pixel_y = 20
},
/turf/open/floor/plasteel/black,
@@ -26562,14 +25128,12 @@
icon = 'icons/mob/robots.dmi';
icon_state = "robot_old";
name = "Cyborg Statue";
- pixel_x = 0;
pixel_y = 20
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
@@ -26578,7 +25142,6 @@
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -26607,23 +25170,18 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aVu" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aVv" = (
/obj/item/device/radio/intercom{
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 21
},
/obj/structure/chair,
@@ -26631,18 +25189,14 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aVw" = (
/obj/structure/chair,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aVx" = (
/obj/structure/chair,
/obj/machinery/camera{
@@ -26654,9 +25208,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aVy" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -26665,16 +25217,13 @@
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aVz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -26683,9 +25232,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aVA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -26699,9 +25246,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aVB" = (
/obj/machinery/light{
dir = 1
@@ -26717,9 +25262,7 @@
/turf/open/floor/plasteel/yellow/corner{
dir = 1
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aVC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -26738,9 +25281,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aVD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -26758,9 +25299,7 @@
/turf/open/floor/plasteel/white/corner{
dir = 4
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aVE" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
@@ -26778,14 +25317,10 @@
/turf/open/floor/plasteel/arrival{
dir = 1
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aVG" = (
/obj/machinery/status_display{
density = 0;
- pixel_x = 0;
- pixel_y = 0;
supply_display = 1
},
/turf/closed/wall,
@@ -26794,10 +25329,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
req_access_txt = 1
},
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/weapon/storage/firstaid/regular,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
@@ -26853,9 +25385,7 @@
req_access_txt = "63"
},
/turf/open/floor/plasteel,
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aVN" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -26865,9 +25395,7 @@
/turf/open/floor/plasteel/red/side{
dir = 8
},
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aVO" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -26875,9 +25403,7 @@
icon_state = "1-8"
},
/turf/open/floor/plasteel,
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aVP" = (
/obj/structure/chair/office/dark,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -26886,9 +25412,7 @@
},
/obj/effect/landmark/start/depsec/supply,
/turf/open/floor/plasteel,
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aVQ" = (
/obj/item/device/radio/intercom{
dir = 4;
@@ -26901,9 +25425,7 @@
/turf/open/floor/plasteel/red/side{
dir = 4
},
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aVR" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
@@ -27001,7 +25523,6 @@
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/plasteel/neutral/side{
@@ -27070,8 +25591,7 @@
/area/hallway/primary/central)
"aWk" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-16";
@@ -27081,7 +25601,6 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 21
},
/turf/open/floor/plasteel/neutral/side{
@@ -27102,7 +25621,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
+/area/security/courtroom)
"aWm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/firedoor,
@@ -27134,7 +25653,6 @@
/area/hallway/primary/central)
"aWq" = (
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/disposal/bin,
@@ -27165,7 +25683,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aWt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
@@ -27179,7 +25697,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aWu" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
@@ -27191,7 +25709,7 @@
/area/storage/tech)
"aWw" = (
/turf/closed/wall/r_wall,
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"aWx" = (
/obj/machinery/keycard_auth{
pixel_x = -25;
@@ -27200,40 +25718,37 @@
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/machinery/computer/apc_control,
/turf/open/floor/plasteel/vault,
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"aWy" = (
/obj/machinery/requests_console{
announcementConsole = 1;
department = "Chief Engineer's Desk";
departmentType = 3;
name = "Chief Engineer RC";
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/computer/card/minor/ce,
/turf/open/floor/plasteel/vault,
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"aWz" = (
/obj/machinery/ai_status_display{
pixel_y = 32
},
/obj/machinery/computer/station_alert,
/turf/open/floor/plasteel/vault,
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"aWA" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"aWB" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
@@ -27254,7 +25769,7 @@
/turf/open/floor/plasteel{
dir = 1
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"aWC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
@@ -27293,8 +25808,7 @@
/area/space)
"aWL" = (
/obj/machinery/ai_status_display{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/light{
icon_state = "tube1";
@@ -27343,8 +25857,7 @@
dir = 4
},
/obj/machinery/ai_status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/ai)
@@ -27352,53 +25865,40 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aWT" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aWU" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aWV" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = -32
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aWW" = (
/obj/effect/turf_decal/stripes/corner{
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aWX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aWY" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
@@ -27408,18 +25908,14 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aWZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aXa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -27428,17 +25924,13 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aXb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aXc" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -27449,13 +25941,10 @@
req_access_txt = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aXd" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/machinery/camera{
c_tag = "Arrivals - Fore Arm";
@@ -27469,9 +25958,7 @@
/turf/open/floor/plasteel/arrival{
dir = 4
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aXe" = (
/obj/machinery/conveyor{
dir = 4;
@@ -27561,8 +26048,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -27574,9 +26060,7 @@
dir = 4
},
/turf/closed/wall,
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aXn" = (
/obj/machinery/recharger{
pixel_y = 4
@@ -27588,9 +26072,7 @@
/turf/open/floor/plasteel/red/side{
dir = 10
},
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aXo" = (
/obj/item/weapon/paper_bin{
pixel_x = 1;
@@ -27607,32 +26089,24 @@
network = list("SS13")
},
/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aXp" = (
/obj/item/weapon/book/manual/wiki/security_space_law,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/structure/table/reinforced,
/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aXq" = (
/obj/machinery/computer/secure_data,
/turf/open/floor/plasteel/red/side{
dir = 6
},
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aXr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -27646,9 +26120,7 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aXs" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -27664,9 +26136,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aXt" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -27683,9 +26153,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aXu" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -27703,9 +26171,7 @@
req_one_access_txt = "12;63;48;50"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aXv" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -27842,7 +26308,6 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 21
},
/obj/effect/turf_decal/stripes/line{
@@ -27869,7 +26334,6 @@
dir = 2
},
/obj/machinery/ai_status_display{
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/turf_decal/stripes/line{
@@ -28066,7 +26530,7 @@
},
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aYb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -28079,7 +26543,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aYc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -28098,7 +26562,7 @@
/turf/open/floor/plating{
icon_plating = "warnplate"
},
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aYd" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -28106,9 +26570,7 @@
},
/obj/machinery/holopad,
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"aYe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -28119,7 +26581,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aYf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -28133,7 +26595,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aYg" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
@@ -28147,7 +26609,7 @@
/turf/open/floor/plating{
icon_plating = "warnplate"
},
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aYh" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
@@ -28163,7 +26625,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aYi" = (
/obj/structure/rack{
dir = 8;
@@ -28212,7 +26674,6 @@
},
/obj/item/weapon/circuitboard/computer/arcade/battle,
/obj/machinery/ai_status_display{
- pixel_x = 0;
pixel_y = 31
},
/turf/open/floor/plasteel/black,
@@ -28248,7 +26709,6 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 28
},
/turf/open/floor/plasteel/black,
@@ -28269,12 +26729,12 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"aYp" = (
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"aYq" = (
/obj/item/weapon/storage/secure/safe{
pixel_x = 6;
@@ -28288,14 +26748,13 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"aYr" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/power/apc{
dir = 4;
name = "CE Office APC";
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/obj/structure/cable/yellow,
/obj/structure/cable/yellow{
@@ -28313,7 +26772,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"aYs" = (
/obj/structure/sign/securearea{
pixel_y = 32
@@ -28383,8 +26842,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/circuit,
@@ -28407,27 +26865,20 @@
"aYC" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
+ name = "KEEP CLEAR: DOCKING AREA"
},
/turf/closed/wall,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aYE" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aYF" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-05";
@@ -28437,9 +26888,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aYG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
@@ -28449,14 +26898,11 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = -32
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aYH" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -28473,24 +26919,19 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aYI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/open/floor/plasteel/arrival{
dir = 4
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"aYJ" = (
/obj/machinery/light_switch{
pixel_x = -38
@@ -28587,9 +27028,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/security/checkpoint/supply{
- name = "Security Post - Cargo"
- })
+/area/security/checkpoint/supply)
"aYT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
@@ -28598,9 +27037,7 @@
req_one_access_txt = "12;63;48;50"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"aYU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
@@ -28704,8 +27141,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
@@ -28874,8 +27310,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -28923,7 +27358,7 @@
req_access_txt = "12"
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"aZw" = (
/turf/closed/wall/r_wall,
/area/storage/tech)
@@ -28931,8 +27366,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "Tech Storage APC";
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/structure/cable/yellow{
d2 = 4;
@@ -28956,9 +27390,7 @@
"aZz" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/yellow{
d1 = 4;
@@ -28991,8 +27423,7 @@
maxcharge = 15000
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/machinery/light/small{
dir = 4
@@ -29021,27 +27452,27 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"aZD" = (
/obj/structure/table/reinforced,
/obj/item/device/flashlight/lamp,
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"aZE" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder/yellow,
/obj/item/weapon/stamp/ce,
/obj/item/weapon/reagent_containers/pill/patch/silver_sulf,
/turf/open/floor/plasteel/neutral/side,
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"aZF" = (
/obj/structure/table/reinforced,
/obj/item/weapon/clipboard,
/obj/item/weapon/paper/monitorkey,
/turf/open/floor/plasteel/neutral/side,
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"aZG" = (
/obj/structure/table/reinforced,
/obj/machinery/cell_charger,
@@ -29052,7 +27483,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"aZH" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -29063,7 +27494,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"aZI" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -29071,12 +27502,10 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/shower{
- icon_state = "shower";
dir = 4
},
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/effect/turf_decal/stripes/line{
dir = 9
@@ -29087,8 +27516,7 @@
/obj/effect/landmark/lightsout,
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -29103,12 +27531,9 @@
"aZK" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/shower{
- icon_state = "shower";
dir = 8
},
/obj/effect/turf_decal/stripes/line{
@@ -29119,13 +27544,11 @@
"aZL" = (
/obj/structure/filingcabinet,
/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 0;
pixel_y = 30
},
/obj/machinery/airalarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/open/floor/plasteel/red/side{
dir = 9
@@ -29136,7 +27559,6 @@
/obj/item/device/radio/intercom{
dir = 4;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 29
},
/obj/machinery/recharger{
@@ -29154,8 +27576,7 @@
},
/obj/item/weapon/pen,
/obj/machinery/newscaster/security_unit{
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/turf/open/floor/plasteel/red/side{
dir = 5
@@ -29183,8 +27604,7 @@
freerange = 1;
listening = 1;
name = "Common Channel";
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/item/device/radio/intercom{
anyai = 1;
@@ -29257,8 +27677,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/circuit,
@@ -29289,8 +27708,7 @@
freerange = 1;
listening = 1;
name = "Common Channel";
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/item/device/radio/intercom{
anyai = 1;
@@ -29318,30 +27736,22 @@
dir = 2
},
/turf/open/floor/plating,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"baa" = (
/obj/structure/closet/emcloset,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bab" = (
/obj/machinery/vending/cigarette,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bac" = (
/obj/machinery/vending/coffee,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bad" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -29355,9 +27765,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bae" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -29373,9 +27781,7 @@
/turf/open/floor/plasteel/arrival{
dir = 4
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"baf" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -29387,9 +27793,7 @@
req_one_access_txt = "12;48;50;1"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"bag" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -29399,9 +27803,7 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"bah" = (
/obj/structure/closet/secure_closet/personal,
/obj/item/clothing/under/assistantformal,
@@ -29419,7 +27821,7 @@
dir = 10
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"baj" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -29432,9 +27834,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"bak" = (
/obj/machinery/door/airlock/maintenance{
name = "Cargo Bay Maintenance";
@@ -29568,9 +27968,7 @@
/area/quartermaster/storage)
"bat" = (
/turf/closed/wall,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bau" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -29588,9 +27986,7 @@
/turf/open/floor/plasteel{
name = "floor"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bav" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -29610,9 +28006,7 @@
/turf/open/floor/plasteel{
name = "floor"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"baw" = (
/obj/item/weapon/stamp{
pixel_x = -3;
@@ -29632,25 +28026,20 @@
/obj/machinery/requests_console{
department = "Cargo Bay";
departmentType = 2;
- pixel_x = 0;
pixel_y = 30
},
/obj/item/weapon/pen/red,
/turf/open/floor/plasteel/brown{
dir = 9
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bax" = (
/obj/structure/table/reinforced,
/obj/machinery/computer/stockexchange,
/turf/open/floor/plasteel/brown{
dir = 5
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bay" = (
/obj/structure/sign/directions/engineering{
desc = "A direction sign, pointing out which way the Cargo department is.";
@@ -29659,9 +28048,7 @@
pixel_y = -5
},
/turf/closed/wall,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"baz" = (
/obj/machinery/computer/cargo/request,
/obj/effect/turf_decal/delivery,
@@ -29670,13 +28057,10 @@
"baA" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/status_display{
density = 0;
- pixel_x = 0;
pixel_y = 32;
supply_display = 1
},
@@ -29721,8 +28105,7 @@
"baF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/machinery/light{
dir = 8
@@ -29808,7 +28191,6 @@
dir = 4
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/turf/open/floor/plasteel/neutral/corner{
@@ -29959,7 +28341,6 @@
initialize_directions = 11
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/turf/open/floor/plasteel/neutral/corner{
@@ -30046,7 +28427,6 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 28
},
/turf/open/floor/plasteel/yellow/side{
@@ -30065,7 +28445,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"bbi" = (
/obj/effect/landmark/xeno_spawn,
/obj/item/weapon/cigbutt,
@@ -30076,7 +28456,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"bbj" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -30087,7 +28467,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"bbk" = (
/obj/structure/rack{
dir = 8;
@@ -30134,9 +28514,7 @@
dir = 8;
layer = 2.9
},
-/obj/item/weapon/circuitboard/computer/cloning{
- pixel_x = 0
- },
+/obj/item/weapon/circuitboard/computer/cloning,
/obj/item/weapon/circuitboard/computer/med_data{
pixel_x = 3;
pixel_y = -3
@@ -30148,7 +28526,7 @@
/area/storage/tech)
"bbo" = (
/turf/closed/wall,
-/area/maintenance/auxsolarport)
+/area/maintenance/solars/port/fore)
"bbp" = (
/obj/structure/rack{
dir = 8;
@@ -30204,7 +28582,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bbt" = (
/obj/item/weapon/cartridge/engineering{
pixel_x = 4;
@@ -30222,7 +28600,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bbu" = (
/obj/effect/landmark/start/chief_engineer,
/obj/structure/chair/office/light{
@@ -30232,13 +28610,13 @@
/turf/open/floor/plasteel/neutral{
dir = 8
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bbv" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/neutral{
dir = 8
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bbw" = (
/obj/structure/table/reinforced,
/obj/item/weapon/paper_bin{
@@ -30249,7 +28627,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bbx" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -30266,13 +28644,12 @@
dir = 8;
name = "Engine Monitor";
network = list("Engine");
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bby" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
@@ -30325,8 +28702,7 @@
dir = 4;
name = "MiniSat Monitor";
network = list("MiniSat","tcomm");
- pixel_x = -29;
- pixel_y = 0
+ pixel_x = -29
},
/turf/open/floor/plasteel/red/side{
dir = 8
@@ -30348,8 +28724,7 @@
/obj/machinery/requests_console{
department = "Security";
departmentType = 5;
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/turf/open/floor/plasteel/red/side{
dir = 4
@@ -30413,9 +28788,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bbJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/yellow{
@@ -30426,14 +28799,10 @@
/turf/open/floor/plasteel/arrival{
dir = 4
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bbK" = (
/turf/closed/wall,
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"bbL" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -30441,23 +28810,17 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bbM" = (
/obj/item/stack/sheet/cardboard,
/obj/item/weapon/storage/box/lights/mixed,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"bbN" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bbO" = (
/obj/structure/plasticflaps{
opacity = 1
@@ -30469,15 +28832,11 @@
id = "packageSort2"
},
/turf/open/floor/plasteel/loadingarea,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"bbP" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"bbQ" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -30486,8 +28845,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "Cargo Office APC";
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/structure/cable/yellow{
d2 = 4;
@@ -30496,9 +28854,7 @@
/turf/open/floor/plasteel/brown{
dir = 9
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bbR" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -30514,35 +28870,26 @@
/turf/open/floor/plasteel/brown{
dir = 1
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bbS" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/status_display{
density = 0;
- pixel_x = 0;
pixel_y = 32;
supply_display = 1
},
/turf/open/floor/plasteel/brown{
dir = 1
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bbT" = (
/turf/open/floor/plasteel/brown/corner{
dir = 1
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bbU" = (
/obj/effect/landmark/start/cargo_technician,
/obj/structure/chair/office/dark{
@@ -30551,9 +28898,7 @@
/turf/open/floor/plasteel/brown{
dir = 4
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bbV" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
@@ -30568,9 +28913,7 @@
},
/obj/item/weapon/pen,
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bbW" = (
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
@@ -30615,8 +28958,7 @@
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/open/floor/plasteel/neutral/corner{
dir = 1
@@ -30646,9 +28988,7 @@
/area/janitor)
"bcg" = (
/turf/closed/wall,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"bch" = (
/obj/machinery/door/airlock{
name = "Central Emergency Storage";
@@ -30662,9 +29002,7 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"bci" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -30672,15 +29010,11 @@
/area/hallway/primary/central)
"bcj" = (
/turf/closed/wall/r_wall,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bck" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bcl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
@@ -30702,8 +29036,7 @@
},
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/item/clothing/gloves/color/fyellow,
/obj/item/clothing/suit/hazardvest,
@@ -30727,9 +29060,7 @@
"bcq" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel,
/area/storage/tools)
@@ -30741,7 +29072,6 @@
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/light/small{
@@ -30761,7 +29091,7 @@
on = 1
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"bcu" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -30865,8 +29195,7 @@
"bcE" = (
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -30874,14 +29203,12 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bcF" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -30892,7 +29219,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bcG" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -30903,7 +29230,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bcH" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -30914,7 +29241,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bcI" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -30926,13 +29253,12 @@
icon_state = "1-2"
},
/obj/machinery/newscaster{
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bcJ" = (
/obj/structure/closet/toolcloset,
/obj/effect/turf_decal/delivery,
@@ -30984,8 +29310,7 @@
dir = 8;
name = "Engine Monitor";
network = list("Engine");
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/open/floor/plasteel/red/side{
dir = 4
@@ -30996,14 +29321,13 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"bcP" = (
/obj/machinery/light{
dir = 8
},
/obj/machinery/ai_status_display{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/ai)
@@ -31034,9 +29358,7 @@
"bcV" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/firealarm{
@@ -31051,17 +29373,13 @@
/turf/open/floor/plasteel/arrival{
dir = 4
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bcW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"bcX" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1;
@@ -31075,9 +29393,7 @@
/turf/open/floor/plasteel/red/side{
dir = 9
},
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"bcY" = (
/obj/machinery/power/apc{
dir = 1;
@@ -31090,16 +29406,12 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/red/side{
dir = 1
},
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"bcZ" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -31110,9 +29422,7 @@
/turf/open/floor/plasteel/red/side{
dir = 1
},
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"bda" = (
/obj/machinery/computer/card,
/obj/machinery/light{
@@ -31131,36 +29441,28 @@
/turf/open/floor/plasteel/red/side{
dir = 1
},
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"bdb" = (
/obj/machinery/computer/secure_data,
/obj/machinery/newscaster/security_unit{
- pixel_x = 0;
pixel_y = 30
},
/turf/open/floor/plasteel/red/side{
dir = 1
},
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"bdc" = (
/obj/machinery/light_switch{
pixel_x = 27
},
/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 0;
pixel_y = 30
},
/obj/structure/closet/secure_closet/security,
/turf/open/floor/plasteel/red/side{
dir = 5
},
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"bdd" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -31170,27 +29472,21 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"bde" = (
/obj/machinery/light/small{
dir = 4
},
/obj/machinery/space_heater,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"bdf" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
/turf/closed/wall,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"bdg" = (
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -31203,9 +29499,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"bdh" = (
/obj/machinery/conveyor{
dir = 4;
@@ -31213,18 +29507,14 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"bdi" = (
/obj/machinery/conveyor{
dir = 4;
id = "packageSort2"
},
/turf/open/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"bdj" = (
/obj/machinery/conveyor{
dir = 4;
@@ -31234,9 +29524,7 @@
opacity = 0
},
/turf/open/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"bdk" = (
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -31248,9 +29536,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"bdl" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -31260,15 +29546,12 @@
req_access_txt = 1
},
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/turf/open/floor/plasteel/brown{
dir = 8
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bdm" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -31280,9 +29563,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bdn" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -31292,9 +29573,7 @@
initialize_directions = 11
},
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bdo" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -31304,9 +29583,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bdp" = (
/obj/machinery/computer/cargo,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -31315,9 +29592,7 @@
/turf/open/floor/plasteel/brown{
dir = 4
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bdq" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -31325,9 +29600,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bdr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -31433,9 +29706,7 @@
"bdE" = (
/obj/structure/closet/firecloset,
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"bdF" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -31448,14 +29719,10 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"bdG" = (
/turf/closed/wall/r_wall,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"bdH" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green{
@@ -31465,22 +29732,17 @@
/obj/item/device/radio/intercom{
dir = 0;
name = "Station Intercom (General)";
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bdI" = (
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -31488,18 +29750,14 @@
/obj/item/weapon/pinpointer,
/obj/item/weapon/disk/nuclear,
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bdJ" = (
/obj/machinery/light{
dir = 1
},
/obj/machinery/computer/security/wooden_tv,
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bdK" = (
/obj/machinery/ai_status_display{
pixel_y = 32
@@ -31509,18 +29767,14 @@
icon_state = "pipe-c"
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bdL" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 8
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bdM" = (
/obj/structure/window/reinforced{
dir = 8
@@ -31529,13 +29783,10 @@
pixel_x = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bdN" = (
/obj/machinery/light_switch{
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/obj/structure/dresser,
/obj/item/weapon/storage/secure/safe{
@@ -31543,9 +29794,7 @@
pixel_y = 28
},
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bdO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/firedoor,
@@ -31634,7 +29883,7 @@
/turf/open/floor/plating{
icon_plating = "warnplate"
},
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"bdX" = (
/obj/structure/rack{
dir = 8;
@@ -31692,7 +29941,6 @@
/obj/item/device/multitool,
/obj/item/clothing/glasses/meson,
/obj/machinery/light_switch{
- pixel_x = 0;
pixel_y = -28
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -31711,12 +29959,9 @@
/area/storage/tech)
"bee" = (
/obj/structure/table,
-/obj/machinery/cell_charger{
- pixel_y = 0
- },
+/obj/machinery/cell_charger,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/item/weapon/stock_parts/cell/high{
@@ -31734,23 +29979,21 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = -28
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"beg" = (
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = -29
},
/obj/machinery/suit_storage_unit/ce,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"beh" = (
/obj/structure/rack{
dir = 8;
@@ -31762,13 +30005,12 @@
dir = 1;
name = "MiniSat Monitor";
network = list("MiniSat","tcomm");
- pixel_x = 0;
pixel_y = -30
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bei" = (
/obj/structure/rack{
dir = 8;
@@ -31779,13 +30021,12 @@
/obj/machinery/button/door{
id = "ceprivacy";
name = "Privacy Shutters Control";
- pixel_x = 0;
pixel_y = -26
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bej" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -31793,7 +30034,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bek" = (
/obj/structure/closet/secure_closet/engineering_chief{
req_access_txt = "0"
@@ -31805,13 +30046,12 @@
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bel" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
@@ -31867,9 +30107,7 @@
"ben" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -31911,17 +30149,14 @@
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 0
+ name = "EXTERNAL AIRLOCK"
},
/turf/closed/wall/r_wall,
/area/space)
"ber" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/open/space,
/area/space)
@@ -31933,9 +30168,7 @@
dir = 6
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bet" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -31954,9 +30187,7 @@
network = list("MiniSat")
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"beu" = (
/obj/machinery/airalarm{
pixel_y = 23
@@ -31999,9 +30230,7 @@
network = list("MiniSat")
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bez" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -32009,9 +30238,7 @@
},
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"beA" = (
/obj/structure/window/reinforced{
dir = 4
@@ -32021,9 +30248,7 @@
layer = 2.9
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"beB" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular{
@@ -32094,9 +30319,7 @@
icon_state = "0-4"
},
/turf/open/floor/plating,
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"beL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/table/reinforced,
@@ -32110,9 +30333,7 @@
/turf/open/floor/plasteel/red/side{
dir = 8
},
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"beM" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -32125,9 +30346,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel,
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"beN" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -32140,9 +30359,7 @@
icon_state = "2-4"
},
/turf/open/floor/plasteel,
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"beO" = (
/obj/structure/chair/office/dark,
/obj/structure/cable/yellow{
@@ -32151,9 +30368,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel,
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"beP" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -32170,9 +30385,7 @@
icon_state = "2-4"
},
/turf/open/floor/plasteel,
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"beQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -32185,9 +30398,7 @@
/turf/open/floor/plasteel/red/side{
dir = 4
},
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"beR" = (
/obj/machinery/door/airlock/maintenance{
name = "Security Maintenance";
@@ -32202,9 +30413,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"beS" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -32223,18 +30432,14 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"beT" = (
/obj/effect/landmark/blobstart,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"beU" = (
/obj/machinery/door/airlock/maintenance{
name = "Mailroom Maintenance";
@@ -32242,26 +30447,20 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"beV" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"beW" = (
/obj/structure/chair/stool,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"beX" = (
/obj/machinery/conveyor_switch/oneway{
id = "packageSort2";
@@ -32276,13 +30475,10 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"beY" = (
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -32299,9 +30495,7 @@
/turf/open/floor/plasteel/brown{
dir = 8
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"beZ" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -32312,31 +30506,23 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bfa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bfb" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bfc" = (
/obj/structure/filingcabinet/filingcabinet,
/turf/open/floor/plasteel/brown{
dir = 4
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bfd" = (
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
@@ -32376,8 +30562,7 @@
/obj/machinery/requests_console{
department = "Janitorial";
departmentType = 1;
- pixel_x = -29;
- pixel_y = 0
+ pixel_x = -29
},
/obj/item/weapon/reagent_containers/spray/cleaner,
/obj/machinery/camera{
@@ -32455,9 +30640,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"bfp" = (
/obj/item/device/flashlight{
pixel_x = 1;
@@ -32481,16 +30664,12 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"bfq" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"bfr" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -32605,9 +30784,7 @@
pixel_y = 1
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bfz" = (
/obj/effect/landmark/start/captain,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -32616,26 +30793,18 @@
dir = 8
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bfA" = (
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bfB" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bfC" = (
/obj/machinery/door/window/westright,
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bfD" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/captain,
@@ -32646,14 +30815,11 @@
network = list("SS13")
},
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bfE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/open/floor/plasteel/neutral/corner{
@@ -32673,14 +30839,12 @@
desc = "A direction sign, pointing out which way the security department is.";
dir = 1;
icon_state = "direction_sec";
- pixel_x = 0;
pixel_y = 8
},
/obj/structure/sign/directions/engineering{
desc = "A direction sign, pointing out which way the engineering department is.";
dir = 4;
- icon_state = "direction_eng";
- pixel_y = 0
+ icon_state = "direction_eng"
},
/obj/structure/sign/directions/engineering{
desc = "A direction sign, pointing out which way the bridge is.";
@@ -32739,7 +30903,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"bfN" = (
/turf/closed/wall,
/area/hallway/primary/starboard)
@@ -32777,7 +30941,7 @@
name = "privacy shutter"
},
/turf/open/floor/plating,
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bfR" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -32791,16 +30955,14 @@
name = "privacy shutter"
},
/turf/open/floor/plating,
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bfS" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bfT" = (
/obj/machinery/door/poddoor{
density = 0;
@@ -32830,9 +30992,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"bfV" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -32886,16 +31046,12 @@
req_one_access_txt = "32;19"
},
/turf/open/floor/plating,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bgd" = (
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bge" = (
/obj/machinery/light/small{
dir = 1
@@ -32907,9 +31063,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bgf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -32917,13 +31071,10 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bgg" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/machinery/door/window{
base_state = "right";
@@ -32936,9 +31087,7 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bgh" = (
/obj/structure/table/reinforced,
/obj/item/weapon/paper_bin{
@@ -32947,8 +31096,7 @@
},
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai)
@@ -32973,8 +31121,7 @@
/area/ai_monitored/turret_protected/ai)
"bgl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai)
@@ -32993,8 +31140,7 @@
frequency = 1447;
listening = 0;
name = "Station Intercom (AI Private)";
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai)
@@ -33050,13 +31196,10 @@
/turf/open/floor/plasteel/arrival{
dir = 4
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bgw" = (
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -33067,14 +31210,10 @@
/turf/open/floor/plasteel/red/side{
dir = 10
},
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"bgx" = (
/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"bgy" = (
/obj/item/weapon/paper_bin{
pixel_x = 1;
@@ -33088,9 +31227,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"bgz" = (
/obj/item/weapon/paper,
/obj/structure/table/reinforced,
@@ -33101,9 +31238,7 @@
req_access_txt = "1"
},
/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"bgA" = (
/obj/machinery/recharger{
pixel_y = 4
@@ -33115,9 +31250,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"bgB" = (
/obj/machinery/light/small{
dir = 1
@@ -33170,26 +31303,20 @@
dir = 2
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"bgD" = (
/obj/machinery/space_heater,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"bgE" = (
/obj/structure/disposalpipe/wrapsortjunction{
dir = 1
},
/turf/closed/wall,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"bgF" = (
/obj/structure/disposaloutlet{
dir = 4
@@ -33205,9 +31332,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"bgG" = (
/obj/structure/window/reinforced{
dir = 1
@@ -33219,35 +31344,25 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"bgH" = (
/turf/open/floor/plasteel/loadingarea{
dir = 4
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"bgI" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"bgJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"bgK" = (
/obj/machinery/firealarm{
dir = 2;
@@ -33257,23 +31372,23 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"bgL" = (
/obj/machinery/status_display{
density = 0;
- pixel_x = 0;
pixel_y = 32;
supply_display = 1
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"bgM" = (
/obj/machinery/light_switch{
pixel_y = 28
@@ -33281,10 +31396,13 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"bgN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -33296,22 +31414,28 @@
req_one_access_txt = "48;50"
},
/obj/effect/turf_decal/delivery,
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
/turf/open/floor/plasteel{
name = "floor"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"bgO" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 2
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
/turf/open/floor/plasteel/brown{
dir = 8
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bgP" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -33321,10 +31445,13 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bgQ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
@@ -33335,9 +31462,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bgR" = (
/obj/structure/disposalpipe/segment,
/obj/effect/landmark/start/cargo_technician,
@@ -33350,9 +31475,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bgS" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -33369,9 +31492,7 @@
/turf/open/floor/plasteel/brown{
dir = 4
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bgT" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -33394,9 +31515,7 @@
/turf/open/floor/plasteel{
name = "floor"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bgU" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -33510,9 +31629,7 @@
"bhd" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/item/weapon/reagent_containers/glass/bucket,
/obj/item/weapon/mop,
@@ -33526,23 +31643,18 @@
"bhe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"bhf" = (
/obj/effect/landmark/blobstart,
/obj/machinery/power/apc{
cell_type = 2500;
dir = 4;
name = "Central Maintenance APC";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/structure/cable/yellow,
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"bhg" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -33581,7 +31693,6 @@
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/item/weapon/folder/yellow{
@@ -33688,9 +31799,7 @@
pixel_x = -28
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bhu" = (
/obj/machinery/light_switch{
pixel_y = -25
@@ -33706,9 +31815,7 @@
/obj/item/clothing/mask/cigarette/cigar,
/obj/item/weapon/reagent_containers/food/drinks/flask/gold,
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bhv" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
@@ -33717,45 +31824,35 @@
scrub_Toxins = 1
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bhw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bhx" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
on = 1
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bhy" = (
/obj/structure/window/reinforced{
dir = 8
},
/obj/machinery/holopad,
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bhz" = (
/obj/structure/table/wood,
/obj/machinery/recharger{
pixel_y = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bhA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
@@ -33937,7 +32034,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "Starboard Hallway APC";
- pixel_x = 0;
pixel_y = 26
},
/obj/structure/cable/yellow{
@@ -33979,8 +32075,7 @@
/obj/item/weapon/pen,
/obj/machinery/airalarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/table/glass,
@@ -33997,8 +32092,7 @@
pixel_y = 3
},
/obj/item/weapon/book/manual/wiki/engineering_guide{
- pixel_x = -4;
- pixel_y = 0
+ pixel_x = -4
},
/obj/structure/table/glass,
/turf/open/floor/plasteel/yellow/side{
@@ -34055,7 +32149,6 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 21
},
/obj/structure/disposalpipe/segment{
@@ -34158,13 +32251,10 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bil" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/machinery/door/window{
dir = 8;
@@ -34173,9 +32263,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bim" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder/blue{
@@ -34192,7 +32280,6 @@
dir = 8
},
/obj/machinery/ai_status_display{
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -34206,9 +32293,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai)
@@ -34228,7 +32313,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"bir" = (
/obj/structure/chair/office/dark{
dir = 4
@@ -34236,7 +32321,6 @@
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = -32
},
/turf/open/floor/plasteel/black,
@@ -34261,9 +32345,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"biv" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -34275,23 +32357,17 @@
/turf/open/floor/plasteel/arrival{
dir = 4
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"biw" = (
/obj/structure/sign/pods,
/turf/closed/wall,
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"bix" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
/turf/closed/wall,
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"biy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -34302,9 +32378,7 @@
req_access_txt = "1"
},
/turf/open/floor/plasteel,
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"biz" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -34312,7 +32386,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/security/checkpoint2)
+/area/security/checkpoint/customs)
"biA" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -34335,15 +32409,11 @@
req_one_access_txt = "12;48;50;1"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"biC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"biD" = (
/obj/machinery/door/window/eastleft{
base_state = "right";
@@ -34353,9 +32423,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"biE" = (
/obj/machinery/conveyor_switch/oneway{
convdir = -1;
@@ -34365,38 +32433,33 @@
/turf/open/floor/plasteel/loadingarea{
dir = 4
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"biF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"biG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"biH" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"biI" = (
/obj/structure/chair/office/dark{
dir = 4
},
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"biJ" = (
/obj/structure/table,
/obj/item/device/destTagger{
@@ -34409,9 +32472,7 @@
/turf/open/floor/plasteel/arrival{
dir = 4
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"biK" = (
/obj/structure/table,
/obj/item/weapon/clipboard,
@@ -34422,25 +32483,20 @@
/turf/open/floor/plasteel/brown{
dir = 8
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"biL" = (
/obj/structure/chair/office/dark{
dir = 8
},
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"biM" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
},
/obj/machinery/light_switch{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/machinery/light/small{
dir = 4
@@ -34448,9 +32504,7 @@
/turf/open/floor/plasteel/brown{
dir = 4
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"biN" = (
/turf/open/floor/plasteel/brown{
dir = 8
@@ -34474,9 +32528,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -34516,7 +32568,6 @@
/obj/item/device/radio/intercom{
dir = 0;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = -28
},
/obj/vehicle/janicart,
@@ -34534,15 +32585,11 @@
/obj/item/weapon/storage/box/lights/mixed,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"biX" = (
/obj/item/clothing/mask/gas,
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"biY" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -34634,9 +32681,7 @@
/area/bridge)
"bjg" = (
/turf/closed/wall,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bjh" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green{
@@ -34651,14 +32696,11 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/item/weapon/bikehorn/rubberducky,
/obj/machinery/light_switch{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/item/weapon/card/id/captains_spare,
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bji" = (
/obj/machinery/door/window{
dir = 1;
@@ -34666,9 +32708,7 @@
req_access_txt = "20"
},
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bjj" = (
/obj/structure/closet/secure_closet/captains,
/obj/structure/window/reinforced{
@@ -34676,9 +32716,7 @@
pixel_y = 2
},
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bjk" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -34686,14 +32724,11 @@
},
/obj/machinery/suit_storage_unit/captain,
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bjl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral/corner{
@@ -34857,9 +32892,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -34967,8 +33000,7 @@
icon_state = "2-4"
},
/obj/machinery/light_switch{
- pixel_x = -22;
- pixel_y = 0
+ pixel_x = -22
},
/turf/open/floor/plasteel,
/area/engine/break_room)
@@ -35063,8 +33095,7 @@
/area/engine/break_room)
"bjN" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 1;
@@ -35074,22 +33105,17 @@
/area/space)
"bjO" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bjP" = (
/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/tcomfoyer{
- name = "\improper MiniSat Foyer"
- })
+/area/ai_monitored/turret_protected/aisat/foyer)
"bjQ" = (
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/aisat_interior)
@@ -35111,9 +33137,7 @@
/area/ai_monitored/turret_protected/ai)
"bjT" = (
/turf/closed/wall/r_wall,
-/area/ai_monitored/storage/secure{
- name = "MiniSat Maintenance"
- })
+/area/ai_monitored/storage/satellite)
"bjU" = (
/obj/structure/chair{
dir = 1
@@ -35128,9 +33152,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bjW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -35144,9 +33166,7 @@
/turf/open/floor/plasteel/white/corner{
dir = 4
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bjX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -35154,9 +33174,7 @@
/turf/open/floor/plasteel/arrival{
dir = 5
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bjY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -35194,7 +33212,6 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 21
},
/obj/machinery/light{
@@ -35233,8 +33250,7 @@
/area/hallway/primary/port)
"bkf" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -35264,9 +33280,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"bkh" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder/yellow,
@@ -35278,9 +33292,7 @@
/turf/open/floor/plasteel/arrival{
dir = 2
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"bki" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/chair/office/dark,
@@ -35288,17 +33300,13 @@
/turf/open/floor/plasteel/arrival{
dir = 2
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"bkj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/arrival{
dir = 2
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"bkk" = (
/obj/structure/filingcabinet/filingcabinet,
/obj/item/device/radio/intercom{
@@ -35315,9 +33323,7 @@
/turf/open/floor/plasteel/arrival{
dir = 2
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"bkl" = (
/obj/structure/table,
/obj/item/stack/wrapping_paper,
@@ -35360,12 +33366,15 @@
pixel_y = -3
},
/obj/item/weapon/storage/box/lights/mixed,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
/turf/open/floor/plasteel/arrival{
dir = 2
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"bkm" = (
/obj/item/weapon/storage/box,
/obj/structure/table,
@@ -35376,69 +33385,64 @@
pixel_y = -22
},
/obj/item/weapon/hand_labeler,
+/obj/machinery/power/apc{
+ cell_type = 2500;
+ dir = 4;
+ name = "Delivery Office APC";
+ pixel_x = 26
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
/turf/open/floor/plasteel/arrival{
dir = 6
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"bkn" = (
/obj/structure/table,
/obj/machinery/computer/stockexchange,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/turf/open/floor/plasteel/brown{
dir = 10
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bko" = (
/obj/machinery/photocopier,
/turf/open/floor/plasteel/brown{
dir = 2
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bkp" = (
/turf/open/floor/plasteel/brown{
dir = 2
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bkq" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/holopad,
/turf/open/floor/plasteel/brown{
dir = 2
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bkr" = (
/obj/machinery/autolathe,
/obj/machinery/newscaster{
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/obj/item/device/radio/intercom{
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = -28
},
/turf/open/floor/plasteel/brown{
dir = 6
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bks" = (
/obj/structure/closet/crate{
icon_state = "crateopen";
@@ -35479,8 +33483,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -35540,20 +33543,16 @@
/area/hallway/primary/central)
"bkz" = (
/turf/closed/wall/r_wall,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bkA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/item/weapon/tank/internals/air,
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"bkB" = (
/obj/item/weapon/extinguisher,
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"bkC" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -35562,8 +33561,7 @@
},
/obj/machinery/airalarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/modular_computer/console/preset/command,
/turf/open/floor/plasteel/darkblue/side{
@@ -35574,7 +33572,6 @@
/obj/item/device/radio/intercom{
dir = 0;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 29
},
/obj/machinery/computer/teleporter,
@@ -35633,7 +33630,6 @@
network = list("MINE","AuxBase")
},
/obj/machinery/keycard_auth{
- pixel_x = 0;
pixel_y = 24
},
/turf/open/floor/plasteel/darkblue/side{
@@ -35646,8 +33642,7 @@
department = "Bridge";
departmentType = 5;
name = "Bridge RC";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -35671,9 +33666,7 @@
},
/obj/structure/curtain,
/turf/open/floor/plasteel/white,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bkK" = (
/obj/structure/mirror{
pixel_y = 28
@@ -35686,9 +33679,7 @@
},
/obj/effect/landmark/revenantspawn,
/turf/open/floor/plasteel/white,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bkL" = (
/obj/structure/toilet{
pixel_y = 13
@@ -35705,9 +33696,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bkM" = (
/obj/machinery/door/airlock/silver{
name = "Bathroom"
@@ -35716,23 +33705,17 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bkN" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bkO" = (
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bkP" = (
/obj/effect/landmark/start/captain,
/obj/machinery/airalarm{
@@ -35740,9 +33723,7 @@
pixel_y = -22
},
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bkQ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
@@ -35841,7 +33822,6 @@
dir = 4
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/turf/open/floor/plasteel/caution/corner{
@@ -36076,16 +34056,12 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"blA" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on,
/obj/structure/window/reinforced,
/turf/open/floor/plating/airless,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"blB" = (
/obj/machinery/computer/teleporter,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -36094,37 +34070,29 @@
},
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/ai_monitored/turret_protected/tcomfoyer{
- name = "\improper MiniSat Foyer"
- })
+/area/ai_monitored/turret_protected/aisat/foyer)
"blC" = (
/obj/machinery/teleport/station,
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/ai_monitored/turret_protected/tcomfoyer{
- name = "\improper MiniSat Foyer"
- })
+/area/ai_monitored/turret_protected/aisat/foyer)
"blD" = (
/obj/machinery/teleport/hub,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/ai_monitored/turret_protected/tcomfoyer{
- name = "\improper MiniSat Foyer"
- })
+/area/ai_monitored/turret_protected/aisat/foyer)
"blE" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -36140,7 +34108,6 @@
icon = 'icons/mob/robots.dmi';
icon_state = "robot_old";
name = "Cyborg Statue";
- pixel_x = 0;
pixel_y = 20
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -36162,7 +34129,6 @@
icon = 'icons/mob/robots.dmi';
icon_state = "robot_old";
name = "Cyborg Statue";
- pixel_x = 0;
pixel_y = 20
},
/turf/open/floor/plasteel/darkblue/corner{
@@ -36191,8 +34157,7 @@
frequency = 1447;
listening = 0;
name = "Station Intercom (AI Private)";
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
@@ -36207,15 +34172,12 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/ai_monitored/storage/secure{
- name = "MiniSat Maintenance"
- })
+/area/ai_monitored/storage/satellite)
"blK" = (
/obj/machinery/recharge_station,
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/cable/yellow{
@@ -36226,9 +34188,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/ai_monitored/storage/secure{
- name = "MiniSat Maintenance"
- })
+/area/ai_monitored/storage/satellite)
"blL" = (
/obj/machinery/airalarm{
pixel_y = 26
@@ -36241,9 +34201,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/ai_monitored/storage/secure{
- name = "MiniSat Maintenance"
- })
+/area/ai_monitored/storage/satellite)
"blM" = (
/obj/machinery/power/port_gen/pacman,
/obj/structure/cable{
@@ -36253,9 +34211,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/ai_monitored/storage/secure{
- name = "MiniSat Maintenance"
- })
+/area/ai_monitored/storage/satellite)
"blN" = (
/obj/structure/closet/emcloset,
/turf/open/floor/mineral/titanium/blue,
@@ -36317,9 +34273,7 @@
on = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"blU" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -36329,9 +34283,7 @@
/turf/open/floor/plasteel/arrival{
dir = 4
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"blV" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -36448,9 +34400,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"bmf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/firedoor,
@@ -36463,32 +34413,24 @@
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"bmg" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"bmh" = (
/obj/machinery/door/firedoor,
/obj/machinery/mineral/ore_redemption,
/turf/open/floor/plasteel/black,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bmi" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bmj" = (
/obj/structure/sign/directions/engineering{
desc = "A direction sign, pointing out which way the Suuply department is.";
@@ -36498,9 +34440,7 @@
pixel_y = 8
},
/turf/closed/wall,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bmk" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -36526,14 +34466,12 @@
desc = "A direction sign, pointing out which way the security department is.";
dir = 1;
icon_state = "direction_sec";
- pixel_x = 0;
pixel_y = 8
},
/obj/structure/sign/directions/engineering{
desc = "A direction sign, pointing out which way the engineering department is.";
dir = 4;
- icon_state = "direction_eng";
- pixel_y = 0
+ icon_state = "direction_eng"
},
/obj/structure/sign/directions/engineering{
desc = "A direction sign, pointing out which way the bridge is.";
@@ -36551,7 +34489,6 @@
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/open/floor/plasteel/neutral/corner{
@@ -36566,13 +34503,12 @@
/obj/machinery/button/door{
id = "hop";
name = "Privacy Shutters Control";
- pixel_x = 0;
pixel_y = 25;
req_access_txt = "28"
},
/obj/structure/table/wood,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bmp" = (
/obj/machinery/light{
dir = 1
@@ -36583,44 +34519,36 @@
desc = "Used for watching Prison Wing holding areas.";
name = "Prison Monitor";
network = list("Prison");
- pixel_x = 0;
pixel_y = 30
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bmq" = (
/obj/machinery/recharger,
/obj/item/weapon/storage/secure/safe{
- pixel_x = 34;
- pixel_y = 0
+ pixel_x = 34
},
/obj/structure/table/wood,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bmr" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"bms" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
},
/obj/machinery/portable_atmospherics/canister/air,
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"bmt" = (
/obj/item/device/radio/off,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"bmu" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=4";
@@ -36633,9 +34561,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"bmv" = (
/obj/machinery/door/window/westleft{
dir = 4;
@@ -36798,8 +34724,7 @@
dir = 1
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/machinery/camera{
c_tag = "Bridge - Starboard";
@@ -36819,16 +34744,13 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bmJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral/corner{
@@ -37072,8 +34994,7 @@
/area/engine/break_room)
"bng" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/machinery/camera{
c_tag = "Engineering - Foyer - Starboard";
@@ -37089,8 +35010,7 @@
pixel_y = 5
},
/obj/item/device/taperecorder{
- pixel_x = -4;
- pixel_y = 0
+ pixel_x = -4
},
/turf/open/floor/plasteel,
/area/security/main)
@@ -37106,9 +35026,7 @@
pixel_y = 1
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bnl" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -37118,9 +35036,7 @@
dir = 8
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bnm" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -37130,17 +35046,13 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bnn" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bno" = (
/obj/structure/transit_tube/diagonal,
/turf/open/space,
@@ -37157,9 +35069,7 @@
/turf/open/floor/plasteel/darkblue/corner{
dir = 1
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bnq" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -37174,9 +35084,7 @@
/turf/open/floor/plasteel/darkblue/corner{
dir = 1
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bnr" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -37185,9 +35093,7 @@
/turf/open/floor/plasteel/darkblue/corner{
dir = 1
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bns" = (
/obj/machinery/door/window{
dir = 1;
@@ -37198,9 +35104,7 @@
/turf/open/floor/plasteel/darkblue/corner{
dir = 1
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bnt" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -37212,9 +35116,7 @@
/turf/open/floor/plasteel/darkblue/corner{
dir = 1
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bnu" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -37234,17 +35136,13 @@
/turf/open/floor/plasteel/darkblue/corner{
dir = 1
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bnv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bnw" = (
/obj/structure/showcase{
density = 0;
@@ -37258,7 +35156,6 @@
},
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -37267,9 +35164,7 @@
/turf/open/floor/plasteel/darkblue/corner{
dir = 1
},
-/area/ai_monitored/turret_protected/tcomfoyer{
- name = "\improper MiniSat Foyer"
- })
+/area/ai_monitored/turret_protected/aisat/foyer)
"bnx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -37277,9 +35172,7 @@
/turf/open/floor/plasteel/darkblue/corner{
dir = 1
},
-/area/ai_monitored/turret_protected/tcomfoyer{
- name = "\improper MiniSat Foyer"
- })
+/area/ai_monitored/turret_protected/aisat/foyer)
"bny" = (
/obj/machinery/turretid{
control_area = "AI Satellite Antechamber";
@@ -37287,7 +35180,6 @@
icon_state = "control_standby";
name = "Antechamber Turret Control";
pixel_x = 30;
- pixel_y = 0;
req_access_txt = "65"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -37299,9 +35191,7 @@
/turf/open/floor/plasteel/darkblue/corner{
dir = 1
},
-/area/ai_monitored/turret_protected/tcomfoyer{
- name = "\improper MiniSat Foyer"
- })
+/area/ai_monitored/turret_protected/aisat/foyer)
"bnz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -37353,8 +35243,7 @@
cell_type = 2500;
dir = 4;
name = "MiniSat Antechamber APC";
- pixel_x = 29;
- pixel_y = 0
+ pixel_x = 29
},
/obj/structure/cable/yellow{
d2 = 2;
@@ -37389,15 +35278,12 @@
dir = 1
},
/turf/open/floor/plasteel/black,
-/area/ai_monitored/storage/secure{
- name = "MiniSat Maintenance"
- })
+/area/ai_monitored/storage/satellite)
"bnG" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -37411,15 +35297,12 @@
dir = 1
},
/turf/open/floor/plasteel/black,
-/area/ai_monitored/storage/secure{
- name = "MiniSat Maintenance"
- })
+/area/ai_monitored/storage/satellite)
"bnH" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
@@ -37431,9 +35314,7 @@
dir = 1
},
/turf/open/floor/plasteel/black,
-/area/ai_monitored/storage/secure{
- name = "MiniSat Maintenance"
- })
+/area/ai_monitored/storage/satellite)
"bnI" = (
/obj/structure/showcase{
density = 0;
@@ -37457,9 +35338,7 @@
dir = 1
},
/turf/open/floor/plasteel/black,
-/area/ai_monitored/storage/secure{
- name = "MiniSat Maintenance"
- })
+/area/ai_monitored/storage/satellite)
"bnK" = (
/obj/machinery/firealarm{
dir = 8;
@@ -37477,9 +35356,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bnL" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -37488,16 +35365,12 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bnM" = (
/turf/open/floor/plasteel/arrival{
dir = 4
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bnN" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green{
@@ -37658,7 +35531,6 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 21
},
/turf/open/floor/plasteel/neutral/corner{
@@ -37757,7 +35629,7 @@
name = "privacy shutters"
},
/turf/open/floor/plating,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bom" = (
/obj/item/weapon/folder/blue,
/obj/structure/cable/yellow{
@@ -37768,7 +35640,7 @@
/obj/structure/table/wood,
/obj/item/device/assembly/flash/handheld,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bon" = (
/obj/effect/landmark/start/head_of_personnel,
/obj/structure/chair/office/dark{
@@ -37780,22 +35652,20 @@
icon_state = "2-8"
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"boo" = (
/obj/machinery/newscaster/security_unit{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/computer/security/mining,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bop" = (
/obj/machinery/power/apc{
cell_type = 10000;
dir = 8;
name = "Bridge APC";
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/structure/cable/yellow,
/obj/machinery/camera{
@@ -37908,13 +35778,10 @@
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"boE" = (
/obj/structure/sign/map/left{
desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
@@ -37922,9 +35789,7 @@
pixel_y = 32
},
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"boF" = (
/obj/structure/sign/map/right{
desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
@@ -37932,16 +35797,12 @@
pixel_y = 32
},
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"boG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"boH" = (
/obj/machinery/computer/communications,
/obj/item/device/radio/intercom{
@@ -37958,17 +35819,13 @@
pixel_y = 24
},
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"boI" = (
/obj/structure/rack,
/obj/item/weapon/cane,
/obj/item/weapon/reagent_containers/food/snacks/grown/mushroom/glowshroom,
/turf/open/floor/plating,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"boJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/item/device/radio/intercom{
@@ -38014,9 +35871,7 @@
"boN" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
@@ -38066,7 +35921,7 @@
dir = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"boT" = (
/obj/machinery/door/window/southleft{
base_state = "left";
@@ -38114,7 +35969,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"boX" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/stripes/line{
@@ -38160,8 +36015,7 @@
/area/maintenance/starboard)
"bpd" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/caution/corner{
@@ -38261,8 +36115,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
@@ -38274,15 +36127,12 @@
dir = 8
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bpp" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/open/floor/plasteel/black,
/area/engine/break_room)
@@ -38291,15 +36141,11 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bpr" = (
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bps" = (
/obj/structure/window/reinforced,
/obj/machinery/light/small,
@@ -38310,9 +36156,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bpt" = (
/obj/machinery/firealarm{
dir = 4;
@@ -38322,9 +36166,7 @@
/turf/open/floor/plasteel/red/side{
dir = 6
},
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"bpu" = (
/turf/closed/wall/r_wall,
/area/space)
@@ -38350,8 +36192,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/structure/transit_tube/horizontal,
/turf/open/space,
@@ -38364,8 +36205,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/structure/transit_tube/crossing/horizontal,
/turf/open/space,
@@ -38378,8 +36218,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/structure/transit_tube/horizontal,
/turf/open/space,
@@ -38392,8 +36231,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/structure/transit_tube/junction/flipped{
dir = 8
@@ -38408,8 +36246,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/open/space,
/area/space)
@@ -38424,8 +36261,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/open/space,
/area/space)
@@ -38439,16 +36275,13 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/structure/transit_tube/station{
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bpD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
@@ -38458,9 +36291,7 @@
icon_state = "0-8"
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bpE" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -38476,9 +36307,7 @@
icon_state = "0-4"
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bpF" = (
/obj/machinery/holopad,
/obj/structure/cable/yellow{
@@ -38488,15 +36317,11 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bpG" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/yellow{
icon_state = "4-8";
@@ -38504,9 +36329,7 @@
d2 = 8
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bpH" = (
/obj/structure/cable/yellow{
icon_state = "4-8";
@@ -38517,9 +36340,7 @@
uses = 10
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bpI" = (
/obj/structure/cable/yellow{
icon_state = "4-8";
@@ -38533,9 +36354,7 @@
req_one_access_txt = "32;19"
},
/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/tcomfoyer{
- name = "\improper MiniSat Foyer"
- })
+/area/ai_monitored/turret_protected/aisat/foyer)
"bpJ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -38547,9 +36366,7 @@
d2 = 8
},
/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/tcomfoyer{
- name = "\improper MiniSat Foyer"
- })
+/area/ai_monitored/turret_protected/aisat/foyer)
"bpK" = (
/obj/structure/cable/yellow{
icon_state = "4-8";
@@ -38559,9 +36376,7 @@
/obj/machinery/holopad,
/obj/item/device/radio/beacon,
/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/tcomfoyer{
- name = "\improper MiniSat Foyer"
- })
+/area/ai_monitored/turret_protected/aisat/foyer)
"bpL" = (
/obj/structure/cable/yellow{
icon_state = "4-8";
@@ -38570,9 +36385,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/yellow{
d1 = 2;
@@ -38580,9 +36393,7 @@
icon_state = "2-4"
},
/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/tcomfoyer{
- name = "\improper MiniSat Foyer"
- })
+/area/ai_monitored/turret_protected/aisat/foyer)
"bpM" = (
/obj/structure/cable/yellow{
icon_state = "4-8";
@@ -38616,9 +36427,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
@@ -38693,9 +36502,7 @@
icon_state = "2-8"
},
/turf/open/floor/plasteel/black,
-/area/ai_monitored/storage/secure{
- name = "MiniSat Maintenance"
- })
+/area/ai_monitored/storage/satellite)
"bpU" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -38712,15 +36519,11 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/black,
-/area/ai_monitored/storage/secure{
- name = "MiniSat Maintenance"
- })
+/area/ai_monitored/storage/satellite)
"bpV" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/yellow{
d1 = 2;
@@ -38728,17 +36531,13 @@
icon_state = "2-8"
},
/turf/open/floor/plasteel/black,
-/area/ai_monitored/storage/secure{
- name = "MiniSat Maintenance"
- })
+/area/ai_monitored/storage/satellite)
"bpW" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/open/floor/plasteel/black,
-/area/ai_monitored/storage/secure{
- name = "MiniSat Maintenance"
- })
+/area/ai_monitored/storage/satellite)
"bpX" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/maintenance_hatch{
@@ -38749,13 +36548,10 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/ai_monitored/storage/secure{
- name = "MiniSat Maintenance"
- })
+/area/ai_monitored/storage/satellite)
"bpY" = (
/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 0
+ dir = 1
},
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -38765,22 +36561,17 @@
uses = 10
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bpZ" = (
/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 0
+ dir = 1
},
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bqa" = (
/obj/structure/window/reinforced{
dir = 4
@@ -38790,25 +36581,20 @@
on = 1
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bqb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
req_access_txt = 1
},
/obj/machinery/airalarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bqc" = (
/obj/machinery/holopad,
/obj/structure/cable/yellow{
@@ -38818,15 +36604,12 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bqd" = (
/obj/machinery/power/apc{
dir = 4;
name = "Arrivals APC";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/obj/structure/cable/yellow{
d2 = 2;
@@ -38835,9 +36618,7 @@
/turf/open/floor/plasteel/arrival{
dir = 4
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bqe" = (
/obj/structure/chair/comfy/beige{
dir = 4
@@ -39061,9 +36842,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -39118,8 +36897,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
@@ -39142,7 +36920,7 @@
/obj/structure/window/reinforced,
/obj/structure/table/wood,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bqC" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -39152,16 +36930,15 @@
/obj/machinery/door/window{
dir = 2;
name = "HoP's Desk";
- pixel_y = 0;
req_access_txt = "57"
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bqD" = (
/obj/structure/window/reinforced,
/obj/machinery/computer/cargo/request,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bqE" = (
/obj/machinery/vending/cart{
req_access_txt = "57"
@@ -39170,16 +36947,14 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 21
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bqF" = (
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/plasteel/darkblue/corner{
@@ -39189,21 +36964,19 @@
"bqG" = (
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/filingcabinet/chestdrawer{
pixel_y = 2
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bqH" = (
/turf/closed/wall,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bqI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/darkblue/side{
@@ -39231,7 +37004,6 @@
dir = 1;
name = "MiniSat Monitor";
network = list("MiniSat","tcomm");
- pixel_x = 0;
pixel_y = -29
},
/turf/open/floor/plasteel/darkblue/side{
@@ -39277,7 +37049,6 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = -29
},
/obj/structure/rack,
@@ -39299,7 +37070,6 @@
/obj/item/weapon/wrench,
/obj/item/device/multitool,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -30
},
/turf/open/floor/plasteel/darkblue/side{
@@ -39343,8 +37113,7 @@
pixel_y = 3
},
/obj/machinery/light_switch{
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/obj/structure/table/glass,
/turf/open/floor/plasteel/black,
@@ -39355,8 +37124,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "Captain's Quarters APC";
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/structure/cable/yellow{
d2 = 4;
@@ -39367,16 +37135,12 @@
},
/obj/item/weapon/paper{
info = "Congratulations,
Your station has been selected to carry out the Gateway Project.
The equipment will be shipped to you at the start of the next quarter.
You are to prepare a secure location to house the equipment as outlined in the attached documents.
--Nanotrasen Blue Space Research";
- name = "Confidential Correspondence, Pg 1";
- pixel_x = 0;
- pixel_y = 0
+ name = "Confidential Correspondence, Pg 1"
},
/obj/item/weapon/coin/plasma,
/obj/item/weapon/melee/chainofcommand,
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bqW" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -39384,26 +37148,20 @@
icon_state = "2-8"
},
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bqX" = (
/obj/structure/table/wood,
/obj/item/weapon/stamp/captain,
/obj/machinery/computer/security/wooden_tv,
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bqY" = (
/obj/effect/landmark/start/captain,
/obj/structure/chair/comfy/brown,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bqZ" = (
/obj/machinery/computer/card,
/obj/machinery/light/small{
@@ -39414,13 +37172,10 @@
department = "Captain's Desk";
departmentType = 5;
name = "Captain RC";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bra" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
@@ -39455,8 +37210,7 @@
cell_type = 2500;
dir = 8;
name = "Art Storage APC";
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/obj/structure/cable/yellow{
d2 = 4;
@@ -39484,6 +37238,10 @@
"brf" = (
/obj/structure/table,
/obj/item/weapon/airlock_painter,
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
/turf/open/floor/plasteel,
/area/storage/art)
"brg" = (
@@ -39517,14 +37275,12 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/item/device/radio/intercom{
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = -30
},
/turf/open/floor/wood,
@@ -39723,8 +37479,7 @@
"brz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/sign/securearea{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/open/floor/plasteel/black/corner{
dir = 2
@@ -39738,7 +37493,6 @@
/area/engine/break_room)
"brB" = (
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = -30
},
/obj/machinery/vending/cigarette,
@@ -39748,7 +37502,6 @@
/area/engine/break_room)
"brC" = (
/obj/machinery/microwave{
- pixel_x = 0;
pixel_y = 4
},
/obj/machinery/camera{
@@ -39763,7 +37516,6 @@
/area/engine/break_room)
"brD" = (
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -32
},
/obj/item/weapon/storage/box/donkpockets,
@@ -39827,9 +37579,7 @@
"brI" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -39840,8 +37590,7 @@
/area/engine/break_room)
"brJ" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/machinery/ai_status_display{
pixel_y = 32
@@ -39862,8 +37611,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/open/floor/plasteel/black,
/area/engine/break_room)
@@ -39871,8 +37619,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -39888,8 +37635,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/structure/window/reinforced{
dir = 8
@@ -39901,14 +37647,12 @@
/area/space)
"brN" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/structure/table/glass,
/obj/item/weapon/phone{
@@ -39939,9 +37683,7 @@
/turf/open/floor/plasteel/darkblue/corner{
dir = 8
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"brQ" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -39966,9 +37708,7 @@
/turf/open/floor/plasteel/darkblue/corner{
dir = 8
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"brR" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -39980,9 +37720,7 @@
/turf/open/floor/plasteel/darkblue/corner{
dir = 8
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"brS" = (
/obj/machinery/door/window{
dir = 2;
@@ -39993,9 +37731,7 @@
/turf/open/floor/plasteel/darkblue/corner{
dir = 8
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"brT" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -40004,9 +37740,7 @@
/turf/open/floor/plasteel/darkblue/corner{
dir = 8
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"brU" = (
/obj/structure/window/reinforced,
/obj/structure/showcase{
@@ -40029,33 +37763,25 @@
/turf/open/floor/plasteel/darkblue/corner{
dir = 8
},
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"brV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"brW" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = -28
},
/turf/open/floor/plasteel/darkblue/corner{
dir = 8
},
-/area/ai_monitored/turret_protected/tcomfoyer{
- name = "\improper MiniSat Foyer"
- })
+/area/ai_monitored/turret_protected/aisat/foyer)
"brX" = (
/obj/machinery/ai_status_display{
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/porta_turret/ai{
@@ -40069,8 +37795,7 @@
dir = 4;
name = "Research Monitor";
network = list("RD");
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/turf/open/floor/plasteel/vault{
dir = 1
@@ -40085,7 +37810,6 @@
cell_type = 5000;
dir = 2;
name = "MiniSat Foyer APC";
- pixel_x = 0;
pixel_y = -29
},
/obj/structure/cable/yellow,
@@ -40097,9 +37821,7 @@
/turf/open/floor/plasteel/darkblue/corner{
dir = 8
},
-/area/ai_monitored/turret_protected/tcomfoyer{
- name = "\improper MiniSat Foyer"
- })
+/area/ai_monitored/turret_protected/aisat/foyer)
"brZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -40115,7 +37837,6 @@
},
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/mob/living/simple_animal/bot/floorbot,
@@ -40149,7 +37870,6 @@
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/porta_turret/ai{
@@ -40159,8 +37879,7 @@
dir = 8;
name = "MiniSat Monitor";
network = list("MiniSat","tcomm");
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/turf/open/floor/plasteel/vault{
dir = 4
@@ -40174,9 +37893,7 @@
/turf/open/floor/plasteel/darkblue/corner{
dir = 8
},
-/area/ai_monitored/turret_protected/tcomfoyer{
- name = "\improper MiniSat Foyer"
- })
+/area/ai_monitored/turret_protected/aisat/foyer)
"bsg" = (
/obj/machinery/computer/station_alert,
/obj/machinery/light,
@@ -40185,18 +37902,14 @@
dir = 1;
name = "MiniSat Monitor";
network = list("MiniSat","tcomm");
- pixel_x = 0;
pixel_y = -29
},
/turf/open/floor/plasteel/black,
-/area/ai_monitored/storage/secure{
- name = "MiniSat Maintenance"
- })
+/area/ai_monitored/storage/satellite)
"bsh" = (
/obj/structure/table,
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = -28
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -40205,9 +37918,7 @@
/obj/machinery/computer/monitor,
/obj/structure/cable/yellow,
/turf/open/floor/plasteel/black,
-/area/ai_monitored/storage/secure{
- name = "MiniSat Maintenance"
- })
+/area/ai_monitored/storage/satellite)
"bsi" = (
/obj/machinery/camera/motion{
c_tag = "MiniSat Maintenance";
@@ -40215,8 +37926,7 @@
network = list("MiniSat")
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/structure/rack,
/obj/item/weapon/storage/toolbox/electrical{
@@ -40226,9 +37936,7 @@
/obj/item/weapon/storage/toolbox/mechanical,
/obj/item/device/multitool,
/turf/open/floor/plasteel/black,
-/area/ai_monitored/storage/secure{
- name = "MiniSat Maintenance"
- })
+/area/ai_monitored/storage/satellite)
"bsj" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -40244,30 +37952,22 @@
dir = 1
},
/turf/open/floor/plating,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bsl" = (
/obj/machinery/vending/cola/random,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bsm" = (
/obj/item/device/radio/beacon,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bsn" = (
/obj/structure/closet/firecloset,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bso" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -40282,9 +37982,7 @@
},
/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bsp" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -40302,9 +38000,7 @@
/turf/open/floor/plasteel/arrival{
dir = 4
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bsq" = (
/obj/structure/chair/comfy/beige{
dir = 4
@@ -40402,7 +38098,6 @@
dir = 4
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/turf/open/floor/plasteel/neutral/corner{
@@ -40451,7 +38146,6 @@
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = -32
},
/turf/open/floor/plasteel/neutral/corner{
@@ -40497,7 +38191,6 @@
initialize_directions = 11
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/turf/open/floor/plasteel/neutral/corner{
@@ -40554,7 +38247,7 @@
pixel_y = 5
},
/turf/open/floor/carpet,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bsN" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
@@ -40568,16 +38261,15 @@
icon_state = "1-2"
},
/turf/open/floor/carpet,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bsO" = (
/mob/living/simple_animal/pet/dog/corgi/Ian,
/turf/open/floor/carpet,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bsP" = (
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/bed/dogbed{
@@ -40587,17 +38279,17 @@
pixel_y = 2
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bsQ" = (
/turf/open/floor/carpet,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bsR" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
},
/turf/open/floor/carpet,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bsS" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_command{
@@ -40671,14 +38363,12 @@
/obj/machinery/button/door{
id = "evashutter";
name = "E.V.A. Storage Shutter Control";
- pixel_x = 0;
pixel_y = -24;
req_access_txt = "19"
},
/obj/machinery/button/door{
id = "gateshutter";
name = "Gateway Shutter Control";
- pixel_x = 0;
pixel_y = -34;
req_access_txt = "19"
},
@@ -40686,8 +38376,7 @@
/area/bridge)
"bsZ" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/machinery/vending/snack/random,
/turf/open/floor/plasteel/black,
@@ -40722,20 +38411,15 @@
/obj/structure/table/wood,
/obj/structure/window/reinforced,
/obj/machinery/light_switch{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/item/weapon/storage/secure/briefcase{
pixel_x = -2;
pixel_y = 4
},
-/obj/item/weapon/storage/lockbox/medal{
- pixel_y = 0
- },
+/obj/item/weapon/storage/lockbox/medal,
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"btd" = (
/obj/machinery/door/window{
name = "Captain's Desk";
@@ -40747,9 +38431,7 @@
icon_state = "1-2"
},
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bte" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin{
@@ -40759,9 +38441,7 @@
/obj/item/weapon/pen,
/obj/structure/window/reinforced,
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"btf" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/blue,
@@ -40777,9 +38457,7 @@
/obj/structure/disposalpipe/segment,
/obj/item/weapon/stamp/captain,
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"btg" = (
/obj/structure/table/wood,
/obj/item/weapon/hand_tele,
@@ -40787,13 +38465,10 @@
/obj/item/device/radio/intercom{
dir = 0;
name = "Station Intercom (General)";
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bth" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -40812,9 +38487,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"bti" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -40832,9 +38505,7 @@
req_one_access_txt = "20;12"
},
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"btj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -41037,12 +38708,11 @@
pixel_y = 2
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"btD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/sign/securearea{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/open/floor/plasteel,
/area/engine/break_room)
@@ -41052,7 +38722,6 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = -28
},
/obj/structure/chair/office/dark{
@@ -41063,9 +38732,7 @@
"btF" = (
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -22
},
/obj/machinery/light{
icon_state = "tube1";
@@ -41075,8 +38742,7 @@
/area/engine/break_room)
"btG" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/table/glass,
/obj/item/weapon/folder/blue{
@@ -41088,7 +38754,6 @@
dir = 1;
name = "MiniSat Monitor";
network = list("MiniSat","tcomm");
- pixel_x = 0;
pixel_y = -28
},
/turf/open/floor/plasteel/darkblue/corner,
@@ -41104,7 +38769,7 @@
pixel_y = 24
},
/turf/open/floor/carpet,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"btI" = (
/obj/structure/lattice,
/obj/structure/transit_tube/curved{
@@ -41129,15 +38794,11 @@
/area/space)
"btL" = (
/turf/closed/wall/r_wall,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"btM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"btN" = (
/obj/machinery/door/airlock/hatch{
name = "Telecoms Control Room";
@@ -41152,39 +38813,29 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"btO" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"btP" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"btQ" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"btR" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-18";
@@ -41194,25 +38845,20 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"btS" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"btT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
req_access_txt = 1
@@ -41221,9 +38867,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"btU" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-08";
@@ -41305,9 +38949,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bue" = (
/turf/closed/wall,
/area/library)
@@ -41413,7 +39055,7 @@
dir = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bun" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -41428,7 +39070,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/carpet,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"buo" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -41449,7 +39091,7 @@
icon_state = "1-8"
},
/turf/open/floor/carpet,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bup" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -41457,7 +39099,7 @@
icon_state = "4-8"
},
/turf/open/floor/carpet,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"buq" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -41471,7 +39113,7 @@
},
/obj/machinery/holopad,
/turf/open/floor/carpet,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bur" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -41487,7 +39129,7 @@
icon_state = "4-8"
},
/turf/open/floor/carpet,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bus" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -41498,13 +39140,13 @@
icon_state = "2-8"
},
/turf/open/floor/carpet,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"but" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/carpet,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"buu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -41516,7 +39158,7 @@
req_access_txt = "57"
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"buv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
@@ -41574,8 +39216,7 @@
/obj/item/device/radio/intercom{
dir = 0;
name = "Station Intercom (General)";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/turf/open/floor/plasteel/darkblue/corner,
/area/bridge)
@@ -41589,18 +39230,14 @@
dir = 8
},
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"buG" = (
/obj/machinery/holopad{
pixel_x = 9;
pixel_y = -9
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"buH" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -41608,18 +39245,14 @@
icon_state = "1-2"
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"buI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
req_access_txt = 1
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"buJ" = (
/obj/machinery/camera{
c_tag = "Captain's Office";
@@ -41627,9 +39260,7 @@
network = list("SS13")
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"buK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
@@ -41646,15 +39277,12 @@
/turf/open/floor/plating{
icon_state = "platingdmg2"
},
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"buL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/airalarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/open/floor/plasteel/neutral/corner{
dir = 8
@@ -41665,8 +39293,7 @@
req_access_txt = 1
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral/corner{
@@ -41725,11 +39352,9 @@
/obj/machinery/computer/arcade,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/wood,
@@ -41787,9 +39412,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -41843,7 +39466,6 @@
freerange = 1;
listening = 0;
name = "Custom Channel";
- pixel_x = 0;
pixel_y = -27
},
/obj/item/device/radio/intercom{
@@ -41967,9 +39589,7 @@
"bvp" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/camera{
c_tag = "Engineering - Transit Tube Access";
@@ -41991,17 +39611,14 @@
dir = 4
},
/obj/item/weapon/tank/internals/emergency_oxygen{
- pixel_x = -8;
- pixel_y = 0
+ pixel_x = -8
},
/obj/item/clothing/mask/breath{
- pixel_x = 4;
- pixel_y = 0
+ pixel_x = 4
},
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/turf/open/floor/plasteel/black,
/area/engine/break_room)
@@ -42018,9 +39635,7 @@
/area/engine/break_room)
"bvt" = (
/turf/closed/wall,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bvu" = (
/obj/structure/table/wood,
/obj/machinery/light/small{
@@ -42033,9 +39648,7 @@
pixel_y = 10
},
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bvv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -42055,13 +39668,10 @@
icon = 'icons/mob/robots.dmi';
icon_state = "robot_old";
name = "Cyborg Statue";
- pixel_x = 0;
pixel_y = 20
},
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bvx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -42070,12 +39680,9 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bvy" = (
/obj/machinery/light_switch{
- pixel_x = 0;
pixel_y = 28
},
/obj/structure/showcase{
@@ -42085,24 +39692,18 @@
icon = 'icons/mob/robots.dmi';
icon_state = "robot_old";
name = "Cyborg Statue";
- pixel_x = 0;
pixel_y = 20
},
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bvz" = (
/obj/structure/table/wood,
/obj/machinery/ai_status_display{
- pixel_x = 0;
pixel_y = 31
},
/obj/item/device/flashlight/lamp,
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bvA" = (
/obj/machinery/light/small{
dir = 4
@@ -42111,7 +39712,6 @@
dir = 8;
freerange = 1;
name = "Station Intercom (Telecoms)";
- pixel_x = 0;
pixel_y = 30
},
/obj/structure/table/wood,
@@ -42124,9 +39724,7 @@
pixel_y = -1
},
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bvB" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-20";
@@ -42136,9 +39734,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bvC" = (
/obj/structure/chair,
/obj/structure/sign/securearea{
@@ -42146,16 +39742,13 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bvD" = (
/obj/structure/chair,
/obj/effect/landmark/start/assistant,
@@ -42163,22 +39756,16 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bvE" = (
/obj/effect/turf_decal/stripes/corner{
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bvF" = (
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bvG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -42187,9 +39774,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bvH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -42198,9 +39783,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bvI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -42209,9 +39792,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bvJ" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -42222,9 +39803,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bvK" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -42238,9 +39817,7 @@
req_access_txt = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bvL" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -42257,9 +39834,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bvM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -42267,9 +39842,7 @@
/turf/open/floor/plasteel/arrival{
dir = 4
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bvN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -42336,10 +39909,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"bvU" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4;
@@ -42356,8 +39926,7 @@
/area/hallway/primary/port)
"bvV" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/turf/open/floor/plasteel/neutral/side{
dir = 4
@@ -42365,15 +39934,11 @@
/area/hallway/primary/port)
"bvW" = (
/turf/closed/wall,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"bvX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"bvY" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -42385,14 +39950,11 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bwa" = (
/obj/structure/table/wood,
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/effect/decal/cleanable/cobweb,
/obj/item/device/flashlight/lamp/green{
@@ -42437,7 +39999,6 @@
"bwg" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/obj/item/weapon/folder,
@@ -42449,8 +40010,7 @@
"bwh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/turf/open/floor/plasteel/neutral/corner{
dir = 8
@@ -42462,7 +40022,7 @@
dir = 1
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bwj" = (
/obj/item/weapon/hand_labeler,
/obj/item/stack/packageWrap,
@@ -42473,11 +40033,11 @@
},
/obj/structure/table/wood,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bwk" = (
/obj/structure/closet/secure_closet/hop,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bwl" = (
/obj/machinery/door/airlock/hatch{
icon_state = "door_closed";
@@ -42494,11 +40054,11 @@
},
/obj/machinery/computer/secure_data,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bwn" = (
/obj/machinery/computer/card,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bwo" = (
/obj/structure/chair/office/dark,
/obj/effect/landmark/start/head_of_personnel,
@@ -42531,7 +40091,7 @@
pixel_y = -25
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bwp" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin{
@@ -42543,7 +40103,7 @@
pixel_y = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bwq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/darkblue/corner,
@@ -42579,7 +40139,6 @@
/obj/item/device/radio/intercom{
dir = 0;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 28
},
/turf/open/floor/plasteel/black,
@@ -42589,7 +40148,6 @@
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/light{
@@ -42631,8 +40189,7 @@
},
/obj/item/weapon/pen,
/obj/machinery/light_switch{
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/turf/open/floor/plasteel/black,
/area/bridge)
@@ -42669,17 +40226,13 @@
products = list(/obj/item/weapon/storage/fancy/cigarettes/cigpack_syndicate = 7, /obj/item/weapon/storage/fancy/cigarettes/cigpack_uplift = 3, /obj/item/weapon/storage/fancy/cigarettes/cigpack_robust = 2, /obj/item/weapon/storage/fancy/cigarettes/cigpack_carp = 3, /obj/item/weapon/storage/fancy/cigarettes/cigpack_midori = 1, /obj/item/weapon/storage/box/matches = 10, /obj/item/weapon/lighter/greyscale = 4, /obj/item/weapon/storage/fancy/rollingpapers = 5)
},
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bwB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bwC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -42694,9 +40247,7 @@
dir = 4
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bwD" = (
/obj/structure/table/wood,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -42709,9 +40260,7 @@
},
/obj/item/weapon/storage/fancy/donut_box,
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bwE" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 2
@@ -42730,9 +40279,7 @@
dir = 8
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bwF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -42746,9 +40293,7 @@
dir = 4
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bwG" = (
/obj/machinery/door/airlock/command{
name = "Emergency Escape";
@@ -42770,9 +40315,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bwH" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
@@ -42792,9 +40335,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"bwI" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -42818,8 +40359,7 @@
/obj/structure/table,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/machinery/chem_dispenser/drinks,
/obj/structure/sign/barsign{
@@ -42841,7 +40381,6 @@
/obj/machinery/requests_console{
department = "Bar";
departmentType = 2;
- pixel_x = 0;
pixel_y = 30;
receive_ore_updates = 1
},
@@ -42860,7 +40399,6 @@
dir = 1
},
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/plasteel/bar,
@@ -42881,7 +40419,6 @@
desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'";
icon_state = "monkey_painting";
name = "Mr. Deempisi portrait";
- pixel_x = 0;
pixel_y = 28
},
/obj/structure/disposalpipe/trunk{
@@ -42889,8 +40426,7 @@
},
/obj/machinery/disposal/bin,
/obj/machinery/light_switch{
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
@@ -42899,7 +40435,6 @@
cell_type = 5000;
dir = 1;
name = "Bar APC";
- pixel_x = 0;
pixel_y = 25
},
/obj/structure/cable/yellow{
@@ -42907,8 +40442,7 @@
icon_state = "0-4"
},
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/turf/open/floor/wood,
/area/crew_quarters/bar)
@@ -42938,7 +40472,6 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 21
},
/obj/structure/cable/yellow{
@@ -42969,8 +40502,7 @@
"bwW" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/wood,
@@ -42995,8 +40527,7 @@
"bwZ" = (
/obj/machinery/airalarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
@@ -43019,8 +40550,7 @@
/area/hallway/primary/starboard)
"bxb" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
@@ -43035,10 +40565,10 @@
/area/hallway/primary/starboard)
"bxc" = (
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bxd" = (
/turf/closed/wall,
-/area/atmos)
+/area/engine/atmos)
"bxe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -43052,62 +40582,60 @@
req_access_txt = "24"
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bxf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
/turf/closed/wall,
-/area/atmos)
+/area/engine/atmos)
"bxg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bxh" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1;
initialize_directions = 11
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bxi" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4;
initialize_directions = 11
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bxj" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bxk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bxl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bxm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/light/small{
@@ -43127,18 +40655,14 @@
dir = 1
},
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bxo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bxp" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -43149,44 +40673,33 @@
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bxq" = (
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bxr" = (
/obj/structure/chair/office/dark{
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bxs" = (
/obj/machinery/computer/security/telescreen{
dir = 8;
name = "Telecoms Camera Monitor";
network = list("tcomm");
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/machinery/computer/telecomms/monitor{
network = "tcommsat"
},
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bxt" = (
/obj/machinery/light,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bxu" = (
/obj/machinery/camera{
c_tag = "Arrivals - Middle Arm - Far";
@@ -43196,14 +40709,11 @@
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = -32
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bxv" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -43211,18 +40721,14 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bxw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bxx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -43232,14 +40738,11 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = -32
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bxy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -43247,9 +40750,7 @@
/obj/machinery/light,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bxz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -43261,9 +40762,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bxA" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
@@ -43272,9 +40771,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bxB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -43288,9 +40785,7 @@
/turf/open/floor/plasteel/blue/corner{
dir = 2
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bxC" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 2
@@ -43302,9 +40797,7 @@
/turf/open/floor/plasteel/arrival{
dir = 2
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bxD" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -43317,9 +40810,7 @@
/turf/open/floor/plasteel/arrival{
dir = 2
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bxE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -43328,15 +40819,12 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = -25
},
/turf/open/floor/plasteel/arrival{
dir = 6
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bxF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -43363,9 +40851,7 @@
"bxH" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -43378,7 +40864,6 @@
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = -32
},
/turf/open/floor/plasteel/neutral/side,
@@ -43397,7 +40882,6 @@
"bxJ" = (
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/open/floor/plasteel/neutral/side{
@@ -43462,9 +40946,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/floorgrime,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"bxP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
@@ -43480,9 +40962,7 @@
pixel_y = 28
},
/turf/open/floor/plasteel/floorgrime,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"bxQ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -43495,9 +40975,7 @@
},
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"bxS" = (
/obj/item/weapon/cigbutt,
/obj/machinery/power/apc{
@@ -43514,9 +40992,7 @@
dir = 2
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bxT" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -43530,14 +41006,11 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bxU" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/open/floor/wood,
/area/library)
@@ -43577,7 +41050,7 @@
name = "privacy shutters"
},
/turf/open/floor/plating,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bya" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -43591,7 +41064,7 @@
name = "privacy shutters"
},
/turf/open/floor/plating,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"byb" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/brigdoor{
@@ -43622,7 +41095,7 @@
opacity = 0
},
/turf/open/floor/plasteel,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"byc" = (
/obj/machinery/light{
dir = 8
@@ -43631,8 +41104,7 @@
/obj/item/device/radio/intercom{
dir = 0;
name = "Station Intercom (General)";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/turf/open/floor/plasteel/darkblue/corner,
/area/bridge)
@@ -43721,44 +41193,33 @@
req_access_txt = "20"
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"byp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"byq" = (
/obj/structure/chair/comfy/brown{
icon_state = "comfychair";
dir = 4
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"byr" = (
/obj/structure/table/wood,
/obj/item/weapon/reagent_containers/food/drinks/shaker,
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bys" = (
/obj/structure/chair/comfy/brown{
icon_state = "comfychair";
dir = 8
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"byt" = (
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/light{
@@ -43766,9 +41227,7 @@
dir = 4
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"byu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -43783,9 +41242,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"byv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/firealarm{
@@ -43811,7 +41268,6 @@
},
/obj/machinery/flasher{
id = "AI";
- pixel_x = 0;
pixel_y = 24
},
/turf/open/floor/plasteel/vault{
@@ -43901,9 +41357,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/sorting)
"byJ" = (
/obj/structure/chair/wood/wings{
dir = 8
@@ -43927,7 +41381,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "Theatre APC";
- pixel_x = 0;
pixel_y = 25
},
/obj/structure/cable/yellow{
@@ -43966,7 +41419,6 @@
/obj/machinery/power/apc{
dir = 2;
name = "MiniSat Maint APC";
- pixel_x = 0;
pixel_y = -26
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -43978,9 +41430,7 @@
layer = 3.1
},
/turf/open/floor/plasteel/black,
-/area/ai_monitored/storage/secure{
- name = "MiniSat Maintenance"
- })
+/area/ai_monitored/storage/satellite)
"byP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/item/device/radio/beacon,
@@ -44012,12 +41462,11 @@
/turf/open/floor/plasteel/caution{
dir = 9
},
-/area/atmos)
+/area/engine/atmos)
"byS" = (
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/light{
@@ -44032,7 +41481,7 @@
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"byT" = (
/obj/machinery/computer/atmos_alert,
/obj/structure/sign/map/left{
@@ -44047,7 +41496,7 @@
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"byU" = (
/obj/structure/sign/map/right{
desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
@@ -44058,10 +41507,9 @@
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"byV" = (
/obj/structure/sign/atmosplaque{
- pixel_x = 0;
pixel_y = 32
},
/obj/item/weapon/phone{
@@ -44074,13 +41522,12 @@
},
/obj/structure/table,
/obj/machinery/light_switch{
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/turf/open/floor/plasteel/caution{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"byW" = (
/obj/structure/table,
/obj/item/clothing/head/welding{
@@ -44095,19 +41542,17 @@
pixel_y = 23
},
/obj/machinery/light_switch{
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/turf/open/floor/plasteel/caution{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"byX" = (
/obj/machinery/power/apc{
cell_type = 10000;
dir = 1;
name = "Atmospherics APC";
- pixel_x = 0;
pixel_y = 28
},
/obj/structure/cable/yellow{
@@ -44119,7 +41564,7 @@
network = list("SS13")
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"byY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -44128,7 +41573,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"byZ" = (
/obj/machinery/space_heater,
/obj/machinery/firealarm{
@@ -44139,12 +41584,12 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bza" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bzb" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
dir = 8
@@ -44157,7 +41602,7 @@
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bzc" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
@@ -44169,14 +41614,12 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bzd" = (
/obj/machinery/meter{
frequency = 1441;
@@ -44187,7 +41630,7 @@
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bze" = (
/obj/machinery/atmospherics/pipe/manifold/supply/visible{
dir = 1
@@ -44195,7 +41638,7 @@
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bzf" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
@@ -44214,7 +41657,7 @@
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bzg" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 10;
@@ -44223,7 +41666,7 @@
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bzh" = (
/obj/machinery/atmospherics/components/unary/thermomachine/heater{
dir = 2;
@@ -44232,7 +41675,7 @@
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bzi" = (
/obj/structure/lattice,
/obj/structure/grille,
@@ -44252,9 +41695,7 @@
dir = 5
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bzl" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -44265,9 +41706,7 @@
layer = 2.9
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bzm" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -44289,36 +41728,27 @@
on = 1
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bzn" = (
/obj/machinery/computer/message_monitor,
/obj/machinery/airalarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bzo" = (
/obj/structure/chair/office/dark{
dir = 8
},
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bzp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bzq" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -44336,9 +41766,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bzr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -44349,15 +41777,11 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bzs" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/yellow{
d1 = 4;
@@ -44366,16 +41790,13 @@
},
/obj/structure/chair/office/dark,
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bzt" = (
/obj/machinery/power/apc{
cell_type = 5000;
dir = 4;
name = "Telecoms Control Room APC";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/machinery/computer/telecomms/server{
network = "tcommsat"
@@ -44385,9 +41806,7 @@
icon_state = "0-8"
},
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bzu" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -44405,18 +41824,14 @@
network = list("MiniSat")
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bzv" = (
/obj/structure/window/reinforced{
dir = 4
},
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bzw" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -44429,9 +41844,7 @@
req_access_txt = "0"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bzx" = (
/turf/closed/wall,
/area/security/vacantoffice)
@@ -44465,17 +41878,13 @@
dir = 8
},
/turf/open/floor/plasteel/floorgrime,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"bzB" = (
/obj/structure/mirror{
pixel_x = 28
},
/turf/open/floor/plating,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"bzC" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -44484,9 +41893,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bzD" = (
/obj/machinery/photocopier{
pixel_y = 3
@@ -44538,66 +41945,50 @@
/area/hallway/primary/central)
"bzJ" = (
/turf/closed/wall,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bzK" = (
/obj/machinery/vending/cola/random,
/turf/open/floor/plasteel/black,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bzL" = (
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bzM" = (
/obj/item/device/radio/intercom{
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 21
},
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
name = "HIGH VOLTAGE";
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bzN" = (
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bzO" = (
/obj/item/device/radio/intercom{
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 21
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bzP" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -44611,9 +42002,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bzQ" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
@@ -44623,14 +42012,10 @@
/obj/item/weapon/pen,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bzR" = (
/turf/closed/wall/r_wall,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bzS" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
@@ -44661,7 +42046,6 @@
id = "council blast";
name = "Council Chamber Blast Door Control";
pixel_x = -28;
- pixel_y = 0;
req_access_txt = "19"
},
/turf/open/floor/plasteel/black,
@@ -44704,7 +42088,6 @@
"bzZ" = (
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/vending/cigarette{
@@ -44743,43 +42126,32 @@
pixel_x = -24
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bAd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bAe" = (
/obj/machinery/light,
/obj/machinery/computer/security/telescreen{
dir = 1;
name = "MiniSat Monitor";
network = list("MiniSat","tcomm");
- pixel_x = 0;
pixel_y = -29
},
/mob/living/simple_animal/pet/fox/Renault,
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bAf" = (
/obj/item/device/radio/intercom{
dir = 0;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = -26
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bAg" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
@@ -44788,13 +42160,10 @@
scrub_Toxins = 1
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bAh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -44805,15 +42174,12 @@
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"bAi" = (
/obj/structure/table/reinforced,
/obj/item/weapon/lighter,
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = -31;
- pixel_y = 0
+ pixel_x = -31
},
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
@@ -44843,8 +42209,7 @@
"bAn" = (
/obj/structure/table/reinforced,
/obj/item/weapon/reagent_containers/food/condiment/saltshaker{
- pixel_x = -3;
- pixel_y = 0
+ pixel_x = -3
},
/obj/item/weapon/reagent_containers/food/condiment/peppermill{
pixel_x = 3
@@ -44917,9 +42282,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/carpet,
/area/crew_quarters/theatre)
@@ -44972,56 +42335,51 @@
opacity = 0
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bAB" = (
/obj/item/clothing/mask/breath{
- pixel_x = 4;
- pixel_y = 0
+ pixel_x = 4
},
/obj/item/weapon/tank/internals/emergency_oxygen{
- pixel_x = -8;
- pixel_y = 0
+ pixel_x = -8
},
/obj/structure/table,
/turf/open/floor/plasteel/caution{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"bAC" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bAD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bAE" = (
/obj/structure/chair/office/dark{
dir = 4
},
/obj/effect/landmark/start/atmospheric_technician,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bAF" = (
/obj/machinery/computer/atmos_control,
/obj/machinery/requests_console{
department = "Atmospherics";
departmentType = 4;
name = "Atmos RC";
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/turf/open/floor/plasteel/caution{
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"bAG" = (
/obj/machinery/light{
icon_state = "tube1";
@@ -45039,7 +42397,7 @@
/turf/open/floor/plasteel/caution{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"bAH" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -45052,7 +42410,7 @@
icon_state = "2-4"
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bAI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -45061,29 +42419,29 @@
icon_state = "1-8"
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bAJ" = (
/obj/machinery/space_heater,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bAK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bAL" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bAM" = (
/obj/machinery/atmospherics/components/unary/thermomachine/heater{
dir = 1;
on = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bAN" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
@@ -45091,14 +42449,14 @@
on = 0
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bAO" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bAP" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
dir = 8;
@@ -45106,17 +42464,17 @@
},
/obj/machinery/meter,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bAQ" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bAR" = (
/obj/structure/grille,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bAS" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -45137,37 +42495,29 @@
/area/space)
"bAU" = (
/obj/machinery/microwave{
- pixel_x = 0;
pixel_y = 4
},
/obj/structure/table/wood,
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bAV" = (
/obj/machinery/light/small,
/obj/item/weapon/storage/box/donkpockets,
/obj/structure/table/wood,
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bAW" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/blue,
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 31
},
/obj/item/weapon/folder/blue,
/obj/item/weapon/pen,
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bAX" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -45176,17 +42526,13 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bAY" = (
/obj/structure/filingcabinet{
pixel_x = 3
},
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bAZ" = (
/obj/machinery/camera{
c_tag = "Head of Personnel's Office";
@@ -45202,14 +42548,13 @@
/obj/item/weapon/storage/box/ids,
/obj/machinery/light,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"bBa" = (
/obj/machinery/requests_console{
announcementConsole = 1;
department = "Telecoms Admin";
departmentType = 5;
name = "Telecoms RC";
- pixel_x = 0;
pixel_y = -30
},
/obj/machinery/firealarm{
@@ -45222,9 +42567,7 @@
},
/obj/structure/table/wood,
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bBb" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -45237,9 +42580,7 @@
/obj/structure/closet/emcloset,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bBd" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -45250,21 +42591,16 @@
/turf/open/floor/plasteel/arrival{
dir = 4
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bBe" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bBf" = (
/obj/structure/table/wood,
/obj/machinery/light_switch{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/item/weapon/folder,
@@ -45309,9 +42645,7 @@
pixel_y = 29
},
/turf/open/floor/plating,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"bBm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/yellow{
@@ -45320,23 +42654,17 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/floorgrime,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"bBn" = (
/turf/open/floor/plasteel/floorgrime,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"bBo" = (
/obj/machinery/door/airlock{
id_tag = "AuxToilet1";
name = "Unit 1"
},
/turf/open/floor/plasteel,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"bBp" = (
/obj/structure/toilet{
pixel_y = 8
@@ -45349,31 +42677,24 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_x = 25;
- pixel_y = 0;
req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -32
},
/turf/open/floor/plasteel,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"bBq" = (
/obj/structure/rack,
/obj/item/device/flashlight,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bBr" = (
/obj/machinery/airalarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/structure/displaycase/trophy,
/turf/open/floor/wood,
@@ -45388,11 +42709,10 @@
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bBu" = (
/obj/machinery/vending/coffee,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/wood,
@@ -45424,19 +42744,15 @@
desc = "A direction sign, pointing out which way the security department is.";
dir = 1;
icon_state = "direction_sec";
- pixel_x = 0;
pixel_y = 8
},
/obj/structure/sign/directions/engineering{
desc = "A direction sign, pointing out which way the engineering department is.";
dir = 4;
- icon_state = "direction_eng";
- pixel_y = 0
+ icon_state = "direction_eng"
},
/turf/closed/wall,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bBz" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -45445,9 +42761,7 @@
icon_state = "0-4"
},
/turf/open/floor/plating,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bBA" = (
/obj/machinery/door/poddoor/shutters/preopen{
id = "hopqueue";
@@ -45461,9 +42775,7 @@
/turf/open/floor/plasteel/loadingarea{
dir = 1
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bBB" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -45476,9 +42788,7 @@
icon_state = "0-8"
},
/turf/open/floor/plating,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bBC" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -45495,9 +42805,7 @@
icon_state = "2-8"
},
/turf/open/floor/plasteel/loadingarea,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bBD" = (
/obj/structure/sign/directions/engineering{
desc = "A direction sign, pointing out which way the bridge is.";
@@ -45507,9 +42815,7 @@
pixel_y = -8
},
/turf/closed/wall/r_wall,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bBE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/poddoor/preopen{
@@ -45676,9 +42982,7 @@
pixel_y = -8
},
/turf/closed/wall/r_wall,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"bBO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -45692,21 +42996,17 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"bBP" = (
/obj/structure/sign/directions/engineering{
desc = "A direction sign, pointing out which way the engineering department is.";
dir = 4;
- icon_state = "direction_eng";
- pixel_y = 0
+ icon_state = "direction_eng"
},
/obj/structure/sign/directions/security{
desc = "A direction sign, pointing out which way the security department is.";
dir = 1;
icon_state = "direction_sec";
- pixel_x = 0;
pixel_y = 8
},
/obj/structure/sign/directions/engineering{
@@ -45717,9 +43017,7 @@
pixel_y = -8
},
/turf/closed/wall,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"bBQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/light{
@@ -45856,7 +43154,7 @@
/turf/open/floor/plasteel{
name = "floor"
},
-/area/atmos)
+/area/engine/atmos)
"bCh" = (
/obj/structure/chair{
dir = 8
@@ -45865,23 +43163,23 @@
/turf/open/floor/plasteel/caution{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"bCi" = (
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bCj" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
initialize_directions = 11
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bCk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bCl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -45890,7 +43188,7 @@
/turf/open/floor/plasteel/caution{
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"bCm" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -45898,7 +43196,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bCn" = (
/obj/structure/table,
/obj/item/weapon/storage/belt/utility,
@@ -45911,7 +43209,7 @@
/turf/open/floor/plasteel/caution{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"bCo" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -45922,14 +43220,14 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bCp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bCq" = (
/obj/machinery/space_heater,
/obj/structure/window/reinforced,
@@ -45940,7 +43238,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bCr" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 0;
@@ -45948,7 +43246,7 @@
on = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bCt" = (
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
@@ -45956,20 +43254,20 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bCu" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
color = "purple"
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bCv" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
color = "purple";
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bCw" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 0;
@@ -45981,7 +43279,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bCx" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
@@ -45991,7 +43289,7 @@
/turf/open/floor/plasteel/green/side{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"bCy" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -46000,7 +43298,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bCz" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
@@ -46017,7 +43315,7 @@
},
/obj/structure/grille,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bCB" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -46031,13 +43329,13 @@
pump_direction = 0
},
/turf/open/floor/engine/vacuum,
-/area/atmos)
+/area/engine/atmos)
"bCC" = (
/turf/open/floor/engine{
name = "vacuum floor";
initial_gas_mix = "o2=0.01;n2=0.01"
},
-/area/atmos)
+/area/engine/atmos)
"bCD" = (
/turf/closed/wall/r_wall,
/area/tcommsat/server)
@@ -46065,19 +43363,14 @@
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0
+ name = "EXTERNAL AIRLOCK"
},
/turf/open/floor/plating,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bCH" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -46085,15 +43378,12 @@
icon_state = "1-2"
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/turf/open/floor/plasteel/arrival{
dir = 4
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bCI" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -46104,9 +43394,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bCJ" = (
/obj/item/weapon/storage/toolbox/emergency,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -46115,9 +43403,7 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bCK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -46128,9 +43414,7 @@
"bCL" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/wood,
/area/security/vacantoffice)
@@ -46146,18 +43430,19 @@
/area/security/vacantoffice)
"bCP" = (
/obj/machinery/light/small,
+/obj/machinery/camera{
+ c_tag = "Auxilary Restrooms";
+ dir = 4;
+ network = list("SS13")
+ },
/turf/open/floor/plating,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"bCQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/open/floor/plasteel/floorgrime,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"bCR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
@@ -46170,18 +43455,14 @@
},
/obj/structure/cable/yellow,
/turf/open/floor/plasteel/floorgrime,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"bCS" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
},
/turf/open/floor/plasteel/floorgrime,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"bCT" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green{
@@ -46189,8 +43470,7 @@
pixel_y = 5
},
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/open/floor/wood,
/area/library)
@@ -46256,9 +43536,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bDa" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -46269,9 +43547,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bDb" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
@@ -46282,9 +43558,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bDc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -46296,9 +43570,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bDd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -46314,9 +43586,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bDe" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
@@ -46328,17 +43598,13 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bDf" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bDg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -46347,9 +43613,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bDh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -46358,15 +43622,12 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 21
},
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bDi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -46374,7 +43635,6 @@
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
@@ -46386,9 +43646,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bDj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -46396,9 +43654,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bDk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -46406,9 +43662,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bDl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -46421,9 +43675,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bDm" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
@@ -46431,9 +43683,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bDn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -46441,9 +43691,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bDo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -46454,9 +43702,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bDp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -46465,7 +43711,6 @@
cell_type = 10000;
dir = 1;
name = "Command Hallway APC";
- pixel_x = 0;
pixel_y = 25
},
/obj/structure/cable/yellow{
@@ -46475,9 +43720,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bDq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -46490,17 +43733,13 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bDr" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bDs" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
@@ -46508,9 +43747,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bDt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -46519,9 +43756,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bDu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -46530,7 +43765,6 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 21
},
/obj/machinery/camera{
@@ -46541,9 +43775,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bDv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -46551,7 +43783,6 @@
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
@@ -46563,9 +43794,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bDw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -46577,9 +43806,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bDx" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -46596,9 +43823,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bDy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -46613,9 +43838,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bDz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -46664,8 +43887,7 @@
"bDD" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
@@ -46746,29 +43968,29 @@
/turf/open/floor/plasteel/black/corner{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bDP" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bDQ" = (
/turf/open/floor/plasteel/caution{
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"bDR" = (
/obj/machinery/door/airlock/glass_atmos{
name = "Atmospherics Monitoring";
req_access_txt = "24"
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bDS" = (
/turf/open/floor/plasteel/caution{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"bDT" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -46776,22 +43998,22 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bDU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bDV" = (
/obj/structure/closet/crate,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bDW" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bDX" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
@@ -46799,34 +44021,34 @@
on = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bDY" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
color = "purple";
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bDZ" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 6
},
/obj/effect/landmark/start/atmospheric_technician,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bEa" = (
/obj/machinery/atmospherics/pipe/manifold/green/visible{
dir = 1
},
/obj/machinery/meter,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bEb" = (
/obj/machinery/atmospherics/pipe/manifold/green/visible{
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bEc" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
@@ -46839,20 +44061,20 @@
/turf/open/floor/plasteel/green/side{
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"bEd" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "mix_sensor"
},
/turf/open/floor/engine/vacuum,
-/area/atmos)
+/area/engine/atmos)
"bEe" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/engine/vacuum,
-/area/atmos)
+/area/engine/atmos)
"bEf" = (
/obj/machinery/telecomms/processor/preset_one,
/obj/machinery/camera{
@@ -46873,7 +44095,6 @@
icon = 'icons/mob/robots.dmi';
icon_state = "robot_old";
name = "Cyborg Statue";
- pixel_x = 0;
pixel_y = 20
},
/turf/open/floor/plasteel/black{
@@ -46921,17 +44142,13 @@
name = "Transport Airlock"
},
/turf/open/floor/plating,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bEm" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plating,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bEn" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -46941,15 +44158,12 @@
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/open/floor/plasteel/arrival{
dir = 4
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bEo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -46959,18 +44173,14 @@
},
/obj/item/weapon/storage/box/lights/mixed,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bEp" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
},
/obj/machinery/portable_atmospherics/canister/air,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bEq" = (
/obj/structure/light_construct{
dir = 8
@@ -46996,18 +44206,14 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"bEu" = (
/obj/machinery/door/airlock{
id_tag = "AuxToilet2";
name = "Unit 2"
},
/turf/open/floor/plasteel,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"bEv" = (
/obj/structure/toilet{
pixel_y = 8
@@ -47020,22 +44226,17 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_x = 25;
- pixel_y = 0;
req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -32
},
/turf/open/floor/plasteel,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"bEw" = (
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/camera/autoname{
dir = 4;
@@ -47120,9 +44321,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bEE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -47135,9 +44334,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bEF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -47151,9 +44348,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bEG" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -47172,9 +44367,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bEH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -47188,9 +44381,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bEI" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -47205,7 +44396,6 @@
icon_state = "4-8"
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/obj/machinery/camera{
@@ -47216,9 +44406,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bEJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -47236,9 +44424,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bEK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -47258,9 +44444,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bEL" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -47274,9 +44458,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bEM" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -47293,9 +44475,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bEN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -47313,9 +44493,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bEO" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -47330,9 +44508,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bEP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -47343,9 +44519,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bEQ" = (
/obj/machinery/holopad,
/obj/structure/cable/yellow{
@@ -47367,9 +44541,7 @@
icon_state = "1-8"
},
/turf/open/floor/plasteel,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bER" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -47381,9 +44553,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bES" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -47401,9 +44571,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bET" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -47417,9 +44585,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bEU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -47442,9 +44608,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bEV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -47465,9 +44629,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bEW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -47480,9 +44642,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bEX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -47503,9 +44663,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bEY" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -47519,9 +44677,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bEZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -47532,15 +44688,12 @@
icon_state = "4-8"
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bFa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -47558,9 +44711,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bFb" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -47573,9 +44724,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bFc" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 2;
@@ -47589,9 +44738,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bFd" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -47605,9 +44752,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bFe" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -47630,9 +44775,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bFf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -47649,9 +44792,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bFg" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -48021,7 +45162,7 @@
/turf/open/floor/plasteel{
name = "floor"
},
-/area/atmos)
+/area/engine/atmos)
"bFG" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -48029,20 +45170,20 @@
/turf/open/floor/plasteel/loadingarea{
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"bFH" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bFI" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bFJ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -48054,7 +45195,7 @@
/turf/open/floor/plasteel/black/corner{
dir = 2
},
-/area/atmos)
+/area/engine/atmos)
"bFK" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -48074,13 +45215,13 @@
/turf/open/floor/plasteel/caution{
dir = 6
},
-/area/atmos)
+/area/engine/atmos)
"bFL" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/caution{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"bFM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 6
@@ -48091,21 +45232,21 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bFN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bFO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bFP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
@@ -48115,27 +45256,27 @@
req_access_txt = "24"
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bFQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 9
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bFR" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
color = "purple";
dir = 6
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bFS" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
color = "purple";
dir = 9
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bFT" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
@@ -48143,14 +45284,14 @@
on = 0
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bFU" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 5;
initialize_directions = 12
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bFV" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/components/binary/pump{
@@ -48159,7 +45300,7 @@
on = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bFW" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
@@ -48168,7 +45309,7 @@
/turf/open/floor/plasteel/green/side{
dir = 6
},
-/area/atmos)
+/area/engine/atmos)
"bFX" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -48176,7 +45317,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bFY" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/green/visible{
@@ -48191,7 +45332,7 @@
},
/obj/structure/grille,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bGa" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 8;
@@ -48200,17 +45341,15 @@
pixel_y = 1
},
/turf/open/floor/engine/vacuum,
-/area/atmos)
+/area/engine/atmos)
"bGb" = (
/obj/machinery/camera{
c_tag = "Atmospherics Tank - Mix";
dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
+ network = list("SS13")
},
/turf/open/floor/engine/vacuum,
-/area/atmos)
+/area/engine/atmos)
"bGc" = (
/obj/machinery/telecomms/bus/preset_one,
/turf/open/floor/circuit/green{
@@ -48249,9 +45388,7 @@
"bGh" = (
/obj/machinery/announcement_system,
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bGj" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -48270,39 +45407,32 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/open/floor/wood,
/area/security/vacantoffice)
"bGl" = (
/obj/machinery/shower{
- icon_state = "shower";
dir = 4
},
/obj/machinery/button/door{
id = "AuxShower";
name = "Lock Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = 25;
req_access_txt = "0";
specialfunctions = 4
},
/obj/item/weapon/soap/nanotrasen,
/turf/open/floor/plasteel/floorgrime,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"bGm" = (
/obj/machinery/shower{
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"bGp" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -48322,9 +45452,7 @@
req_one_access_txt = "12;37"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bGr" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
@@ -48346,17 +45474,14 @@
"bGu" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/wood,
/area/library)
"bGv" = (
/obj/item/device/radio/intercom{
dir = 4;
- name = "Station Intercom (General)";
- pixel_x = 0
+ name = "Station Intercom (General)"
},
/turf/closed/wall,
/area/library)
@@ -48390,14 +45515,10 @@
name = "escape arm"
},
/turf/closed/wall/r_wall,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bGy" = (
/turf/closed/wall/r_wall,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bGz" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -48407,15 +45528,11 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bGA" = (
/obj/structure/sign/securearea,
/turf/closed/wall/r_wall,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bGB" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/yellow{
@@ -48435,14 +45552,10 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bGC" = (
/turf/closed/wall/r_wall,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bGD" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -48459,24 +45572,18 @@
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bGE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/sign/securearea,
/turf/closed/wall/r_wall,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bGF" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable/yellow,
/turf/open/floor/plating,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bGG" = (
/obj/structure/chair{
dir = 1
@@ -48489,22 +45596,16 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bGH" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/plasteel,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bGI" = (
/turf/open/floor/plasteel,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bGJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
@@ -48515,17 +45616,13 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bGK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
/turf/open/floor/plasteel,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bGL" = (
/obj/structure/chair{
dir = 1
@@ -48536,8 +45633,7 @@
icon_state = "1-2"
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/machinery/camera{
c_tag = "Command Hallway - Central";
@@ -48547,9 +45643,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bGM" = (
/turf/closed/wall/r_wall,
/area/gateway)
@@ -48581,25 +45675,18 @@
"bGQ" = (
/obj/machinery/vending/cola/random,
/turf/open/floor/plasteel/vault,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bGR" = (
/obj/machinery/vending/cigarette,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -29
},
/turf/open/floor/plasteel/vault,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bGS" = (
/obj/machinery/vending/coffee,
/turf/open/floor/plasteel/vault,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bGT" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "0";
@@ -48611,9 +45698,7 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"bGU" = (
/obj/structure/sign/directions/engineering{
desc = "A direction sign, pointing out which way the escape arm is.";
@@ -48633,9 +45718,7 @@
pixel_y = -8
},
/turf/closed/wall,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"bGV" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
@@ -48845,7 +45928,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bHq" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -48853,7 +45936,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bHr" = (
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -48862,7 +45945,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bHs" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/obj/machinery/light/small{
@@ -48873,7 +45956,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bHt" = (
/obj/machinery/light{
dir = 8
@@ -48881,7 +45964,7 @@
/turf/open/floor/plasteel/caution{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"bHu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/structure/cable/yellow{
@@ -48890,11 +45973,11 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bHv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bHw" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -48903,7 +45986,7 @@
initialize_directions = 6
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bHx" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -48914,7 +45997,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bHy" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -48922,7 +46005,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bHz" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -48931,7 +46014,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bHA" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -48940,7 +46023,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bHB" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -48949,7 +46032,7 @@
initialize_directions = 11
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bHC" = (
/obj/machinery/light/small{
dir = 8
@@ -49013,9 +46096,7 @@
/obj/structure/closet/firecloset,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bHI" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -49024,23 +46105,18 @@
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/open/floor/plasteel/arrival{
dir = 4
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bHJ" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bHK" = (
/obj/item/weapon/book/manual/wiki/security_space_law{
pixel_x = -3;
@@ -49065,7 +46141,6 @@
/area/security/vacantoffice)
"bHN" = (
/obj/machinery/shower{
- icon_state = "shower";
dir = 4
},
/obj/machinery/light/small,
@@ -49073,32 +46148,24 @@
/obj/effect/decal/cleanable/blood/old,
/obj/effect/decal/cleanable/blood/gibs/old,
/turf/open/floor/plasteel/floorgrime,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"bHO" = (
/obj/machinery/shower{
dir = 8
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plating,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"bHP" = (
/obj/machinery/door/airlock{
id_tag = "AuxToilet3";
name = "Unit 3"
},
/turf/open/floor/plating,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"bHQ" = (
/obj/structure/toilet{
pixel_y = 8
@@ -49111,19 +46178,15 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_x = 25;
- pixel_y = 0;
req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -32
},
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"bHR" = (
/obj/structure/bookcase/random/nonfiction,
/turf/open/floor/wood,
@@ -49174,32 +46237,25 @@
"bHY" = (
/obj/machinery/suit_storage_unit/standard_unit,
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bHZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bIa" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bIb" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -49211,9 +46267,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bIc" = (
/obj/machinery/suit_storage_unit/standard_unit,
/obj/machinery/light_switch{
@@ -49223,29 +46277,22 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bId" = (
/turf/closed/wall,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bIe" = (
/obj/structure/table,
/obj/item/weapon/hand_tele,
/obj/item/device/radio/beacon,
/obj/machinery/airalarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/open/floor/plasteel/vault{
dir = 4
},
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bIf" = (
/obj/structure/table,
/obj/machinery/cell_charger,
@@ -49259,9 +46306,7 @@
/turf/open/floor/plasteel/vault{
dir = 4
},
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bIg" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -49278,9 +46323,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bIh" = (
/obj/structure/closet/crate{
icon_state = "crate";
@@ -49304,9 +46347,7 @@
/turf/open/floor/plasteel/vault{
dir = 1
},
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bIi" = (
/obj/structure/chair{
dir = 1
@@ -49324,9 +46365,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bIj" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -49338,9 +46377,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bIk" = (
/obj/structure/chair{
dir = 1
@@ -49358,9 +46395,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bIl" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -49369,14 +46404,11 @@
icon_state = "0-8"
},
/turf/open/floor/plating,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bIm" = (
/obj/structure/closet/secure_closet/exile,
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/effect/turf_decal/bot{
dir = 1
@@ -49436,8 +46468,7 @@
cell_type = 5000;
dir = 4;
name = "Gateway APC";
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/obj/structure/cable/yellow{
d2 = 8;
@@ -49460,9 +46491,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"bIr" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -49471,8 +46500,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
@@ -49488,8 +46516,7 @@
/obj/structure/table,
/obj/item/clothing/head/hardhat/cakehat,
/obj/machinery/newscaster{
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/obj/machinery/airalarm{
dir = 1;
@@ -49502,7 +46529,6 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = -28
},
/turf/open/floor/plasteel/bar,
@@ -49513,7 +46539,7 @@
initialize_directions = 10
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bIw" = (
/obj/machinery/light,
/obj/machinery/camera{
@@ -49528,10 +46554,7 @@
/obj/item/clothing/shoes/winterboots,
/obj/item/clothing/suit/hooded/wintercoat,
/turf/open/floor/plating,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"bIy" = (
/obj/machinery/firealarm{
dir = 1;
@@ -49616,7 +46639,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bIJ" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -49624,7 +46647,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bIK" = (
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -49633,7 +46656,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bIL" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -49641,13 +46664,13 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bIM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bIN" = (
/obj/structure/table,
/obj/item/stack/sheet/glass{
@@ -49671,7 +46694,7 @@
/turf/open/floor/plasteel{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bIO" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
@@ -49681,7 +46704,7 @@
/turf/open/floor/plasteel/caution{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"bIP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
@@ -49693,27 +46716,27 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bIQ" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
dir = 1;
initialize_directions = 11
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bIR" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bIS" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bIT" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
dir = 4;
@@ -49721,25 +46744,25 @@
},
/obj/machinery/meter,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bIU" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
color = "purple"
},
/obj/machinery/meter,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bIV" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 6
},
/obj/machinery/meter,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bIW" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bIX" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 1
@@ -49748,11 +46771,10 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bIY" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
@@ -49763,14 +46785,14 @@
/turf/open/floor/plasteel/escape{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"bIZ" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/atmos)
+/area/engine/atmos)
"bJa" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -49778,7 +46800,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bJb" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
@@ -49799,10 +46821,10 @@
pump_direction = 0
},
/turf/open/floor/engine/n2o,
-/area/atmos)
+/area/engine/atmos)
"bJd" = (
/turf/open/floor/engine/n2o,
-/area/atmos)
+/area/engine/atmos)
"bJe" = (
/obj/structure/lattice,
/obj/structure/grille,
@@ -49829,9 +46851,7 @@
layer = 4.1
},
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bJi" = (
/obj/machinery/light/small,
/obj/item/weapon/folder,
@@ -49844,9 +46864,7 @@
/obj/structure/table/wood,
/obj/item/weapon/pen,
/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bJj" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "0";
@@ -49859,9 +46877,7 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bJk" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -49907,9 +46923,7 @@
/turf/open/floor/plasteel/arrival{
dir = 4
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bJp" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "0";
@@ -49919,9 +46933,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bJq" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -49935,25 +46947,19 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bJr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bJs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bJt" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -49974,8 +46980,7 @@
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/open/floor/wood,
/area/security/vacantoffice)
@@ -50034,8 +47039,7 @@
"bJC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/turf/open/floor/plasteel/neutral/corner{
dir = 4
@@ -50046,9 +47050,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bJE" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -50058,9 +47060,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bJF" = (
/obj/structure/table,
/obj/item/weapon/storage/belt/utility,
@@ -50071,9 +47071,7 @@
/obj/item/device/radio/off,
/obj/item/device/multitool,
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bJG" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -50085,9 +47083,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bJH" = (
/obj/machinery/suit_storage_unit/standard_unit,
/obj/machinery/firealarm{
@@ -50097,9 +47093,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bJI" = (
/obj/structure/window/reinforced,
/obj/structure/table,
@@ -50111,9 +47105,7 @@
/turf/open/floor/plasteel/vault{
dir = 4
},
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bJJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
@@ -50122,9 +47114,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bJK" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -50140,9 +47130,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bJL" = (
/obj/structure/closet/crate{
icon_state = "crate";
@@ -50168,9 +47156,7 @@
/turf/open/floor/plasteel/vault{
dir = 1
},
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bJM" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -50179,9 +47165,7 @@
icon_state = "0-8"
},
/turf/open/floor/plating,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bJN" = (
/obj/structure/chair{
dir = 1
@@ -50194,9 +47178,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bJO" = (
/obj/structure/chair{
dir = 1
@@ -50204,9 +47186,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bJP" = (
/obj/structure/chair{
dir = 1
@@ -50214,9 +47194,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bJQ" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -50227,9 +47205,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 2
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bJR" = (
/obj/structure/chair{
dir = 1
@@ -50242,9 +47218,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
+/area/hallway/secondary/command)
"bJS" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -50355,7 +47329,6 @@
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/plasteel/vault{
@@ -50379,9 +47352,7 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"bKc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/firedoor,
@@ -50437,8 +47408,7 @@
name = "Serving Hatch"
},
/obj/item/weapon/reagent_containers/food/condiment/saltshaker{
- pixel_x = -3;
- pixel_y = 0
+ pixel_x = -3
},
/obj/item/weapon/reagent_containers/food/condiment/peppermill{
pixel_x = 3
@@ -50492,7 +47462,6 @@
network = list("SS13")
},
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = -29
},
/obj/item/clothing/mask/cigarette/pipe,
@@ -50519,15 +47488,11 @@
/area/crew_quarters/theatre)
"bKr" = (
/turf/closed/wall/r_wall,
-/area/maintenance/atmos_control{
- name = "Telecoms Storage"
- })
+/area/storage/tcom)
"bKs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
-/area/maintenance/atmos_control{
- name = "Telecoms Storage"
- })
+/area/storage/tcom)
"bKt" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -50542,15 +47507,13 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/atmos_control{
- name = "Telecoms Storage"
- })
+/area/storage/tcom)
"bKu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bKv" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
@@ -50559,13 +47522,12 @@
},
/obj/machinery/airalarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/open/floor/plasteel/caution{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"bKw" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
dir = 4
@@ -50576,13 +47538,13 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bKx" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 2
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bKy" = (
/obj/item/device/radio/beacon,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -50590,7 +47552,7 @@
initialize_directions = 11
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bKz" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
@@ -50599,7 +47561,7 @@
scrub_Toxins = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bKA" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 0;
@@ -50607,7 +47569,7 @@
on = 0
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bKB" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 0;
@@ -50615,7 +47577,7 @@
on = 0
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bKC" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 0;
@@ -50623,15 +47585,15 @@
on = 0
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bKD" = (
/obj/effect/landmark/start/atmospheric_technician,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bKE" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bKF" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
@@ -50642,36 +47604,35 @@
},
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/open/floor/plasteel/escape{
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"bKG" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/open/floor/plasteel/black,
-/area/atmos)
+/area/engine/atmos)
"bKH" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "n2o_sensor"
},
/turf/open/floor/engine/n2o,
-/area/atmos)
+/area/engine/atmos)
"bKI" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide{
valve_open = 1
},
/turf/open/floor/engine/n2o,
-/area/atmos)
+/area/engine/atmos)
"bKJ" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/engine/n2o,
-/area/atmos)
+/area/engine/atmos)
"bKK" = (
/obj/structure/grille,
/obj/structure/lattice,
@@ -50726,9 +47687,7 @@
dir = 8
},
/turf/open/space,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bKR" = (
/obj/structure/window/reinforced{
dir = 8
@@ -50752,9 +47711,7 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bKS" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-06";
@@ -50764,9 +47721,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bKT" = (
/obj/structure/chair,
/obj/effect/landmark/start/assistant,
@@ -50777,9 +47732,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bKU" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -50789,9 +47742,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bKV" = (
/obj/machinery/light{
dir = 1
@@ -50800,9 +47751,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bKW" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -50821,9 +47770,7 @@
/turf/open/floor/plasteel/arrival{
dir = 4
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bKX" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -50833,9 +47780,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg2"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bKY" = (
/obj/machinery/power/apc{
dir = 8;
@@ -50866,9 +47811,7 @@
/obj/structure/table,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bLc" = (
/obj/structure/closet/crate{
icon_state = "crateopen";
@@ -50879,9 +47822,7 @@
name = "3maintenance loot spawner"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bLd" = (
/obj/structure/closet,
/obj/item/clothing/shoes/jackboots,
@@ -50890,17 +47831,13 @@
name = "2maintenance loot spawner"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bLe" = (
/obj/machinery/vending/autodrobe{
req_access_txt = "0"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bLf" = (
/obj/structure/rack{
dir = 8;
@@ -50909,9 +47846,7 @@
/obj/effect/spawner/lootdrop/costume,
/obj/effect/spawner/lootdrop/costume,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bLg" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/structure/rack{
@@ -50921,9 +47856,7 @@
/obj/effect/spawner/lootdrop/costume,
/obj/effect/spawner/lootdrop/costume,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bLh" = (
/obj/structure/bookcase/random/religion,
/turf/open/floor/wood,
@@ -50986,9 +47919,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bLn" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -50999,9 +47930,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bLo" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -51009,9 +47938,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bLp" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -51023,15 +47950,12 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bLq" = (
/obj/machinery/door/window/northleft{
dir = 8;
name = "Magboot Storage";
pixel_x = -1;
- pixel_y = 0;
req_access_txt = "19"
},
/obj/structure/window/reinforced{
@@ -51046,10 +47970,7 @@
pixel_x = -4;
pixel_y = 3
},
-/obj/item/clothing/shoes/magboots{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/clothing/shoes/magboots,
/obj/item/clothing/shoes/magboots{
pixel_x = 4;
pixel_y = -3
@@ -51057,15 +47978,11 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bLr" = (
/obj/machinery/teleport/hub,
/turf/open/floor/plating,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bLs" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
@@ -51077,9 +47994,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bLt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
@@ -51090,15 +48005,12 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bLu" = (
/obj/machinery/door/window/northleft{
dir = 8;
name = "Disposals Chute";
pixel_x = -1;
- pixel_y = 0;
req_access_txt = "0"
},
/obj/machinery/disposal/deliveryChute{
@@ -51115,9 +48027,7 @@
/turf/open/floor/plasteel/vault{
dir = 1
},
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bLv" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -51130,14 +48040,10 @@
name = "showroom shutters"
},
/turf/open/floor/plating,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bLw" = (
/turf/closed/wall/r_wall,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bLx" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -51150,16 +48056,11 @@
req_access_txt = "19"
},
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bLy" = (
-/obj/structure/closet/secure_closet/medical1{
- pixel_x = 0
- },
+/obj/structure/closet/secure_closet/medical1,
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/effect/turf_decal/bot{
@@ -51233,16 +48134,13 @@
/obj/item/weapon/cigbutt,
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"bLH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/camera{
c_tag = "Central Primary Hallway - Starboard - Kitchen";
@@ -51263,7 +48161,6 @@
id = "kitchenwindow";
name = "Window Shutter Control";
pixel_x = -26;
- pixel_y = 0;
req_access_txt = "28"
},
/turf/open/floor/plasteel/cafeteria{
@@ -51352,15 +48249,13 @@
"bLQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/light_switch{
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/turf/open/floor/wood,
/area/crew_quarters/theatre)
"bLR" = (
/obj/structure/dresser,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/wood,
@@ -51387,9 +48282,7 @@
network = list("SS13")
},
/turf/open/floor/plasteel/black,
-/area/maintenance/atmos_control{
- name = "Telecoms Storage"
- })
+/area/storage/tcom)
"bLV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/holopad,
@@ -51399,22 +48292,17 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/black,
-/area/maintenance/atmos_control{
- name = "Telecoms Storage"
- })
+/area/storage/tcom)
"bLW" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/subspace/analyzer,
/obj/item/weapon/stock_parts/subspace/analyzer,
/obj/item/weapon/stock_parts/subspace/analyzer,
/obj/machinery/light_switch{
- pixel_x = 0;
pixel_y = 26
},
/turf/open/floor/plasteel/black,
-/area/maintenance/atmos_control{
- name = "Telecoms Storage"
- })
+/area/storage/tcom)
"bLX" = (
/obj/structure/closet,
/turf/open/floor/plating{
@@ -51437,7 +48325,7 @@
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"bMb" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
dir = 1;
@@ -51446,7 +48334,7 @@
/turf/open/floor/plasteel/arrival{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"bMc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/structure/cable/yellow{
@@ -51458,21 +48346,20 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bMd" = (
/obj/structure/reagent_dispensers/watertank,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 9
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bMe" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/item/device/radio/intercom{
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = -26
},
/obj/machinery/camera{
@@ -51482,7 +48369,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bMf" = (
/obj/structure/rack{
dir = 8;
@@ -51498,26 +48385,26 @@
/obj/item/clothing/mask/gas,
/obj/item/clothing/mask/gas,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bMg" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bMh" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/obj/machinery/meter,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bMi" = (
/obj/machinery/atmospherics/pipe/manifold4w/general/visible,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bMj" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bMk" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 1;
@@ -51525,21 +48412,20 @@
on = 1
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/escape{
dir = 6
},
-/area/atmos)
+/area/engine/atmos)
"bMl" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/open/floor/plasteel/black,
-/area/atmos)
+/area/engine/atmos)
"bMm" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 8;
@@ -51548,22 +48434,19 @@
pixel_y = 1
},
/turf/open/floor/engine/n2o,
-/area/atmos)
+/area/engine/atmos)
"bMn" = (
/obj/machinery/camera{
c_tag = "Atmospherics Tank - N2O";
dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
+ network = list("SS13")
},
/turf/open/floor/engine/n2o,
-/area/atmos)
+/area/engine/atmos)
"bMo" = (
/obj/machinery/airalarm/server{
dir = 4;
- pixel_x = -22;
- pixel_y = 0
+ pixel_x = -22
},
/obj/machinery/light/small{
dir = 8
@@ -51617,8 +48500,7 @@
cell_type = 5000;
dir = 4;
name = "Telecoms Server Room APC";
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/machinery/light/small{
dir = 4
@@ -51645,9 +48527,7 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bMu" = (
/obj/machinery/camera{
c_tag = "Arrivals - Aft Arm - Far";
@@ -51656,18 +48536,14 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bMv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bMw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -51676,14 +48552,11 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = -25
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bMx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -51692,9 +48565,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bMy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -51702,9 +48573,7 @@
/turf/open/floor/plasteel/blue/corner{
dir = 2
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bMz" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
@@ -51717,9 +48586,7 @@
/turf/open/floor/plasteel/arrival{
dir = 2
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bMA" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 2
@@ -51737,9 +48604,7 @@
/turf/open/floor/plasteel/arrival{
dir = 2
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bMB" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -51762,9 +48627,7 @@
/turf/open/floor/plasteel/arrival{
dir = 6
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bMC" = (
/obj/structure/chair/office/dark,
/turf/open/floor/wood,
@@ -51792,9 +48655,7 @@
},
/obj/structure/table,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bMF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -51802,9 +48663,7 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bMG" = (
/obj/structure/closet/crate{
icon_state = "crateopen";
@@ -51813,9 +48672,7 @@
/obj/item/weapon/rack_parts,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bMH" = (
/obj/machinery/light/small,
/obj/machinery/power/apc{
@@ -51918,7 +48775,6 @@
dir = 4;
name = "RCD Storage";
pixel_x = 1;
- pixel_y = 0;
req_access_txt = "19"
},
/obj/structure/window/reinforced,
@@ -51929,17 +48785,13 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bMT" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bMU" = (
/obj/structure/tank_dispenser/oxygen{
layer = 2.9;
@@ -51947,9 +48799,7 @@
pixel_y = 2
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bMV" = (
/obj/machinery/camera/motion{
c_tag = "E.V.A. Storage";
@@ -51957,8 +48807,7 @@
},
/obj/machinery/requests_console{
department = "EVA";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/light{
dir = 4;
@@ -51969,38 +48818,29 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bMW" = (
/obj/machinery/teleport/station,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/turf/open/floor/plating,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bMX" = (
/obj/machinery/bluespace_beacon,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bMY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bMZ" = (
/obj/machinery/camera{
c_tag = "Teleporter Room";
@@ -52019,9 +48859,7 @@
/turf/open/floor/plasteel/vault{
dir = 1
},
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bNa" = (
/obj/structure/window/reinforced,
/obj/structure/showcase{
@@ -52037,23 +48875,18 @@
},
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/carpet,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bNb" = (
/obj/structure/sign/atmosplaque{
desc = "A guide to the exhibit, detailing the constructive and destructive applications of modern repair drones, as well as the development of the uncorruptable cyborg servants of tomorrow, available today.";
icon_state = "kiddieplaque";
name = "\improper 'Perfect Drone' sign";
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/droneDispenser,
/obj/machinery/door/window/southleft,
/turf/open/floor/carpet,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bNc" = (
/obj/structure/showcase{
desc = "A stand with an empty old NanoTrasen Corporation combat mech bolted to it. It is described as the premier unit used to defend corporate interests and employees.";
@@ -52071,9 +48904,7 @@
icon_state = "1-2"
},
/turf/open/floor/carpet,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bNd" = (
/obj/item/weapon/tank/internals/air,
/obj/item/weapon/tank/internals/air,
@@ -52083,9 +48914,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bNe" = (
/obj/structure/table/wood,
/obj/item/weapon/phone{
@@ -52104,13 +48933,10 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 21
},
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bNf" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -52118,12 +48944,9 @@
icon_state = "1-2"
},
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bNg" = (
/obj/machinery/light_switch{
- pixel_x = 0;
pixel_y = 24
},
/obj/machinery/light/small{
@@ -52139,9 +48962,7 @@
network = list("SS13")
},
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bNh" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/red,
@@ -52172,9 +48993,7 @@
pixel_y = 5
},
/turf/open/floor/carpet,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bNj" = (
/obj/structure/showcase{
desc = "A stand with a model of the perfect Nanotrasen Employee bolted to it. Signs indicate it is robustly genetically engineered, as well as being ruthlessly loyal.";
@@ -52184,14 +49003,11 @@
desc = "A guide to the exhibit, explaining how recent developments in loyalty implant and cloning technologies by NanoTrasen Corporation have led to the development and the effective immortality of the 'perfect man', the loyal Nanotrasen Employee.";
icon_state = "kiddieplaque";
name = "\improper 'Perfect Man' sign";
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/window/reinforced,
/turf/open/floor/carpet,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bNk" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -52206,21 +49022,17 @@
icon_state = "implantchair";
layer = 2.7;
name = "NanoTrasen automated loyalty implanter exhibit";
- pixel_x = 0;
pixel_y = 4
},
/turf/open/floor/carpet,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bNl" = (
/turf/closed/wall,
/area/gateway)
"bNm" = (
/obj/structure/bed/roller,
/obj/machinery/vending/wallmed{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/machinery/camera{
c_tag = "Gateway - Atrium";
@@ -52252,8 +49064,7 @@
/obj/item/device/radio/intercom{
dir = 0;
name = "Station Intercom (General)";
- pixel_x = 29;
- pixel_y = 0
+ pixel_x = 29
},
/obj/effect/turf_decal/bot{
dir = 1
@@ -52295,9 +49106,7 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"bNt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/item/device/radio/intercom{
@@ -52401,8 +49210,7 @@
/area/crew_quarters/kitchen)
"bND" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/structure/closet/secure_closet/freezer/meat,
/turf/open/floor/plasteel/showroomfloor,
@@ -52444,7 +49252,6 @@
/obj/structure/table/wood,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/open/floor/wood,
@@ -52462,23 +49269,18 @@
/obj/machinery/power/apc{
dir = 8;
name = "Telecoms Storage APC";
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/structure/cable/yellow{
d2 = 4;
icon_state = "0-4"
},
/turf/open/floor/plasteel/black,
-/area/maintenance/atmos_control{
- name = "Telecoms Storage"
- })
+/area/storage/tcom)
"bNM" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -52486,9 +49288,7 @@
icon_state = "1-8"
},
/turf/open/floor/plasteel/black,
-/area/maintenance/atmos_control{
- name = "Telecoms Storage"
- })
+/area/storage/tcom)
"bNN" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/subspace/treatment,
@@ -52502,9 +49302,7 @@
pixel_x = 24
},
/turf/open/floor/plasteel/black,
-/area/maintenance/atmos_control{
- name = "Telecoms Storage"
- })
+/area/storage/tcom)
"bNO" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/turf/open/floor/plating,
@@ -52516,11 +49314,10 @@
/turf/open/floor/plasteel/arrival{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"bNQ" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/structure/cable/yellow{
@@ -52529,15 +49326,14 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bNR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/atmos)
+/area/engine/atmos)
"bNS" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/machinery/atmospherics/components/binary/pump{
dir = 0;
@@ -52548,11 +49344,11 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bNT" = (
/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bNU" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 0;
@@ -52561,7 +49357,7 @@
},
/obj/item/weapon/crowbar,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bNV" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/door/window/northleft{
@@ -52571,7 +49367,7 @@
req_access_txt = "24"
},
/turf/open/floor/plasteel/black,
-/area/atmos)
+/area/engine/atmos)
"bNW" = (
/obj/machinery/light/small{
dir = 4
@@ -52593,9 +49389,7 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bNX" = (
/obj/machinery/telecomms/server/presets/common,
/turf/open/floor/circuit{
@@ -52650,9 +49444,7 @@
name = "Auxiliary Airlock"
},
/turf/open/floor/plating,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bOe" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "0";
@@ -52667,9 +49459,7 @@
req_access_txt = 1
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bOf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
@@ -52680,9 +49470,7 @@
icon_state = "2-8"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bOg" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/white{
@@ -52700,17 +49488,13 @@
/obj/structure/table,
/obj/item/clothing/mask/cigarette/pipe,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bOj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
req_access_txt = 1
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bOk" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/centcom{
@@ -52763,7 +49547,6 @@
},
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/item/stack/sheet/glass{
@@ -52781,18 +49564,14 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bOp" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bOq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -52805,24 +49584,19 @@
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"bOr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bOs" = (
/obj/machinery/door/window/northleft{
dir = 8;
name = "Jetpack Storage";
pixel_x = -1;
- pixel_y = 0;
req_access_txt = "19"
},
/obj/structure/window/reinforced,
@@ -52834,10 +49608,7 @@
pixel_x = 4;
pixel_y = -1
},
-/obj/item/weapon/tank/jetpack/carbondioxide{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/weapon/tank/jetpack/carbondioxide,
/obj/item/weapon/tank/jetpack/carbondioxide{
pixel_x = -4;
pixel_y = 1
@@ -52845,23 +49616,17 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bOt" = (
/obj/machinery/computer/teleporter,
/turf/open/floor/plating,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bOu" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bOv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -52872,14 +49637,10 @@
icon_state = "1-4"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bOw" = (
/turf/closed/wall,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bOx" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -52896,9 +49657,7 @@
dir = 8
},
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bOy" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -52907,9 +49666,7 @@
},
/obj/effect/decal/cleanable/oil,
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bOz" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -52922,9 +49679,7 @@
icon_state = "1-4"
},
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bOA" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -52938,9 +49693,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bOB" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -52948,9 +49701,7 @@
icon_state = "4-8"
},
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bOC" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -52959,9 +49710,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bOD" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -52976,9 +49725,7 @@
/turf/open/floor/wood{
icon_state = "wood-broken6"
},
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bOE" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -52987,16 +49734,13 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bOF" = (
/obj/machinery/power/apc{
cell_type = 5000;
dir = 4;
name = "Nanotrasen Corporate Showroom APC";
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -53012,9 +49756,7 @@
dir = 4
},
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bOG" = (
/obj/structure/rack{
dir = 8;
@@ -53076,8 +49818,7 @@
/area/gateway)
"bON" = (
/obj/structure/sign/securearea{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -53087,9 +49828,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg2"
},
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"bOO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/light{
@@ -53148,8 +49887,7 @@
/area/crew_quarters/kitchen)
"bOW" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/structure/closet/secure_closet/freezer/fridge,
/turf/open/floor/plasteel/cafeteria{
@@ -53166,14 +49904,13 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"bOZ" = (
/obj/machinery/chem_master/condimaster{
name = "CondiMaster Neo";
@@ -53220,9 +49957,7 @@
"bPe" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -53274,9 +50009,7 @@
/obj/item/weapon/stock_parts/subspace/crystal,
/obj/item/weapon/stock_parts/subspace/crystal,
/turf/open/floor/plasteel/black,
-/area/maintenance/atmos_control{
- name = "Telecoms Storage"
- })
+/area/storage/tcom)
"bPi" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/micro_laser,
@@ -53294,9 +50027,7 @@
pixel_y = -22
},
/turf/open/floor/plasteel/black,
-/area/maintenance/atmos_control{
- name = "Telecoms Storage"
- })
+/area/storage/tcom)
"bPj" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/subspace/filter,
@@ -53305,9 +50036,7 @@
/obj/item/weapon/stock_parts/subspace/filter,
/obj/item/weapon/stock_parts/subspace/filter,
/turf/open/floor/plasteel/black,
-/area/maintenance/atmos_control{
- name = "Telecoms Storage"
- })
+/area/storage/tcom)
"bPk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
@@ -53340,7 +50069,7 @@
},
/obj/machinery/portable_atmospherics/scrubber,
/turf/open/floor/plasteel/red,
-/area/atmos)
+/area/engine/atmos)
"bPp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
@@ -53348,7 +50077,7 @@
/turf/open/floor/plasteel/escape{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"bPq" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -53359,14 +50088,14 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bPr" = (
/obj/structure/closet/secure_closet/atmospherics,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bPs" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
@@ -53378,7 +50107,7 @@
/turf/open/floor/plasteel{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bPt" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 4;
@@ -53386,7 +50115,7 @@
},
/obj/machinery/meter,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bPu" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 8
@@ -53398,13 +50127,13 @@
/turf/open/floor/plasteel{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bPv" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bPw" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/components/binary/pump{
@@ -53413,15 +50142,14 @@
on = 0
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 1;
pixel_y = 1
},
/turf/open/floor/plasteel/purple,
-/area/atmos)
+/area/engine/atmos)
"bPx" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -53435,14 +50163,14 @@
pump_direction = 0
},
/turf/open/floor/engine/plasma,
-/area/atmos)
+/area/engine/atmos)
"bPy" = (
/turf/open/floor/engine/plasma,
-/area/atmos)
+/area/engine/atmos)
"bPz" = (
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/engine/plasma,
-/area/atmos)
+/area/engine/atmos)
"bPA" = (
/obj/machinery/light/small{
dir = 8
@@ -53451,9 +50179,7 @@
dir = 2
},
/turf/open/floor/plating,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bPB" = (
/obj/structure/chair/office/dark{
dir = 1;
@@ -53481,9 +50207,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bPD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -53492,18 +50216,14 @@
/turf/open/floor/plating{
icon_state = "platingdmg2"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bPF" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bPG" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -53514,18 +50234,14 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bPH" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
/obj/item/trash/candy,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bPI" = (
/obj/machinery/door/airlock/maintenance{
name = "Vacant Office Maintenance";
@@ -53541,9 +50257,7 @@
},
/obj/item/clothing/mask/horsehead,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bPK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
req_access_txt = 1
@@ -53552,16 +50266,12 @@
/turf/open/floor/plating{
icon_plating = "warnplate"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bPL" = (
/obj/structure/rack,
/obj/item/weapon/storage/box,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bPM" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -53572,16 +50282,12 @@
/turf/open/floor/plating{
icon_state = "platingdmg2"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bPN" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bPO" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin{
@@ -53641,8 +50347,7 @@
"bPV" = (
/obj/structure/destructible/cult/tome,
/obj/machinery/newscaster{
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/obj/item/clothing/under/suit_jacket/red,
/obj/effect/decal/cleanable/cobweb,
@@ -53659,8 +50364,7 @@
dir = 1
},
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/obj/structure/closet/crate,
/obj/item/clothing/shoes/workboots/mining,
@@ -53674,7 +50378,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/open/floor/plasteel/neutral/corner{
@@ -53693,9 +50396,7 @@
maxcharge = 15000
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bQa" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
@@ -53707,9 +50408,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bQb" = (
/obj/structure/cable/yellow,
/obj/machinery/shieldwallgen,
@@ -53718,15 +50417,12 @@
pixel_y = 2
},
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/turf/open/floor/plasteel/vault{
dir = 4
},
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bQc" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -53736,9 +50432,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bQd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
@@ -53747,9 +50441,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bQe" = (
/obj/structure/cable/yellow,
/obj/machinery/shieldwallgen,
@@ -53764,9 +50456,7 @@
/turf/open/floor/plasteel/vault{
dir = 1
},
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bQf" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -53786,19 +50476,14 @@
/obj/structure/table/wood,
/obj/machinery/airalarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/open/floor/carpet,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bQg" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bQh" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -53806,16 +50491,12 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bQi" = (
/turf/open/floor/wood{
icon_state = "wood-broken3"
},
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bQj" = (
/obj/machinery/cell_charger,
/obj/item/weapon/stock_parts/cell/crap{
@@ -53823,16 +50504,12 @@
},
/obj/structure/table/wood,
/turf/open/floor/carpet,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bQk" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/holopad,
/turf/open/floor/carpet,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bQl" = (
/obj/structure/table/wood,
/obj/item/toy/carpplushie{
@@ -53840,9 +50517,7 @@
name = "NanoTrasen wildlife department space carp plushie"
},
/turf/open/floor/carpet,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bQm" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -53861,9 +50536,7 @@
scrub_Toxins = 1
},
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bQn" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -53871,9 +50544,7 @@
icon_state = "1-8"
},
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bQp" = (
/obj/structure/rack{
dir = 8;
@@ -54039,14 +50710,11 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"bQz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/turf/open/floor/plasteel/neutral/corner{
dir = 1
@@ -54089,9 +50757,7 @@
"bQD" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/yellow{
d1 = 4;
@@ -54151,8 +50817,7 @@
/obj/machinery/requests_console{
department = "Kitchen";
departmentType = 2;
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/obj/machinery/processor,
/turf/open/floor/plasteel/cafeteria{
@@ -54181,13 +50846,10 @@
"bQN" = (
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/open/floor/plating,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"bQQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/item/weapon/wrench,
@@ -54206,26 +50868,26 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bQT" = (
/obj/structure/sign/nosmoking_2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/atmos)
+/area/engine/atmos)
"bQU" = (
/obj/machinery/atmospherics/components/trinary/filter{
filter_type = -1;
on = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bQV" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
},
/obj/machinery/meter,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bQW" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
@@ -54236,34 +50898,31 @@
},
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/open/floor/plasteel/purple,
-/area/atmos)
+/area/engine/atmos)
"bQX" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "tox_sensor"
},
/turf/open/floor/engine/plasma,
-/area/atmos)
+/area/engine/atmos)
"bQY" = (
/obj/machinery/portable_atmospherics/canister/toxins,
/turf/open/floor/engine/plasma,
-/area/atmos)
+/area/engine/atmos)
"bQZ" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/engine/plasma,
-/area/atmos)
+/area/engine/atmos)
"bRa" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bRb" = (
/obj/machinery/computer/crew{
icon_keyboard = "syndi_key"
@@ -54279,23 +50938,17 @@
icon_state = "1-4"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bRd" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bRe" = (
/obj/item/trash/cheesie,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bRf" = (
/obj/machinery/door/airlock/maintenance{
name = "Storage Room";
@@ -54305,14 +50958,11 @@
req_access_txt = 1
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bRg" = (
/obj/machinery/holopad,
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/turf/open/floor/wood,
/area/library)
@@ -54339,8 +50989,7 @@
/area/library)
"bRk" = (
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/obj/machinery/photocopier,
/obj/machinery/light{
@@ -54359,9 +51008,7 @@
/turf/open/floor/engine/cult,
/area/library)
"bRm" = (
-/obj/item/device/taperecorder{
- pixel_y = 0
- },
+/obj/item/device/taperecorder,
/obj/item/device/camera,
/obj/item/device/radio/intercom{
pixel_y = -25
@@ -54391,59 +51038,45 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bRq" = (
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bRr" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bRs" = (
/obj/structure/cable/yellow,
/obj/machinery/shieldwallgen,
/turf/open/floor/plasteel/vault{
dir = 4
},
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bRt" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bRu" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bRv" = (
/obj/structure/cable/yellow,
/obj/machinery/shieldwallgen,
/turf/open/floor/plasteel/vault{
dir = 1
},
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bRw" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -54452,8 +51085,7 @@
},
/obj/structure/table/wood,
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/item/weapon/folder/blue,
/obj/item/clothing/head/collectable/HoP{
@@ -54463,9 +51095,7 @@
dir = 8
},
/turf/open/floor/carpet,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bRx" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/secure/briefcase{
@@ -54474,17 +51104,13 @@
pixel_y = 2
},
/turf/open/floor/carpet,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bRy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
req_access_txt = 1
},
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bRz" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -54497,14 +51123,11 @@
icon = 'icons/obj/kitchen.dmi';
icon_state = "mw";
name = "NanoTrasen-brand microwave";
- pixel_x = 0;
pixel_y = 2
},
/obj/structure/table/wood,
/turf/open/floor/carpet,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bRA" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -54524,9 +51147,7 @@
},
/obj/structure/table/wood,
/turf/open/floor/carpet,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bRB" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -54548,9 +51169,7 @@
},
/obj/structure/table/wood,
/turf/open/floor/carpet,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bRC" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -54581,9 +51200,7 @@
},
/obj/structure/table/wood,
/turf/open/floor/carpet,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bRD" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -54601,9 +51218,7 @@
},
/obj/structure/table/wood,
/turf/open/floor/carpet,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bRE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/yellow{
@@ -54618,9 +51233,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bRF" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -54638,7 +51251,6 @@
},
/obj/item/weapon/disk/design_disk{
name = "component design disk";
- pixel_x = 0;
pixel_y = 6
},
/obj/structure/table/wood,
@@ -54647,9 +51259,7 @@
pixel_y = 6
},
/turf/open/floor/carpet,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bRG" = (
/obj/item/weapon/book/manual/wiki/security_space_law{
name = "space law";
@@ -54678,9 +51288,7 @@
dir = 4
},
/turf/open/floor/carpet,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bRH" = (
/obj/structure/table,
/obj/item/weapon/storage/fancy/donut_box,
@@ -54731,7 +51339,6 @@
/obj/machinery/button/door{
id = "gateshutter";
name = "Gateway Shutter Control";
- pixel_x = 0;
pixel_y = -26;
req_access_txt = "19"
},
@@ -54751,7 +51358,6 @@
"bRM" = (
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/camera{
@@ -54773,9 +51379,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"bRO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/firealarm{
@@ -54791,8 +51395,7 @@
/obj/item/weapon/reagent_containers/food/snacks/mint,
/obj/machinery/airalarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/power/apc{
dir = 2;
@@ -54823,7 +51426,6 @@
/obj/machinery/button/door{
id = "kitchenhydro";
name = "Service Shutter Control";
- pixel_x = 0;
pixel_y = -24;
req_access_txt = "28"
},
@@ -54834,8 +51436,7 @@
"bRS" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/condiment/saltshaker{
- pixel_x = -3;
- pixel_y = 0
+ pixel_x = -3
},
/obj/item/weapon/reagent_containers/food/condiment/peppermill{
pixel_x = 3
@@ -54855,7 +51456,6 @@
/area/crew_quarters/kitchen)
"bRT" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/obj/structure/table,
@@ -55019,8 +51619,7 @@
/area/maintenance/starboard)
"bSg" = (
/obj/structure/fireaxecabinet{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/camera{
c_tag = "Atmospherics - Port";
@@ -55033,7 +51632,7 @@
/turf/open/floor/plasteel/caution{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"bSh" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
@@ -55041,8 +51640,7 @@
/obj/machinery/portable_atmospherics/canister,
/obj/machinery/airalarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/effect/turf_decal/bot{
dir = 1
@@ -55050,7 +51648,7 @@
/turf/open/floor/plasteel{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bSi" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 4;
@@ -55059,7 +51657,7 @@
/obj/machinery/meter,
/obj/item/weapon/wrench,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bSj" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 1;
@@ -55067,12 +51665,11 @@
on = 1
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/purple,
-/area/atmos)
+/area/engine/atmos)
"bSk" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 8;
@@ -55081,17 +51678,15 @@
pixel_y = 1
},
/turf/open/floor/engine/plasma,
-/area/atmos)
+/area/engine/atmos)
"bSl" = (
/obj/machinery/camera{
c_tag = "Atmospherics Tank - Toxins";
dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
+ network = list("SS13")
},
/turf/open/floor/engine/plasma,
-/area/atmos)
+/area/engine/atmos)
"bSm" = (
/obj/machinery/computer/med_data{
icon_keyboard = "syndi_key"
@@ -55116,9 +51711,7 @@
/turf/open/floor/plating{
icon_plating = "warnplate"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bSo" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -55129,9 +51722,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bSp" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -55139,13 +51730,10 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bSq" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -55159,9 +51747,7 @@
/turf/open/floor/plating{
icon_plating = "warnplate"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bSr" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -55172,9 +51758,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bSs" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -55190,9 +51774,7 @@
icon_state = "2-8"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bSt" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -55205,9 +51787,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bSu" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -55220,9 +51800,7 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bSv" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -55236,9 +51814,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bSw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
@@ -55249,13 +51825,10 @@
icon_state = "2-4"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bSx" = (
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/open/floor/wood,
/area/library)
@@ -55315,9 +51888,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bSF" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters{
@@ -55328,14 +51899,11 @@
id = "evashutter";
name = "E.V.A. Storage Shutter Control";
pixel_x = 30;
- pixel_y = 0;
req_access_txt = "19"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"bSG" = (
/obj/machinery/door/poddoor/shutters{
id = "teleshutter";
@@ -55343,9 +51911,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bSH" = (
/obj/machinery/door/poddoor/shutters{
id = "teleshutter";
@@ -55360,9 +51926,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bSI" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -55372,9 +51936,7 @@
name = "showroom shutters"
},
/turf/open/floor/plating,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bSK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
req_access_txt = 1
@@ -55385,9 +51947,7 @@
req_access_txt = "19"
},
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bSM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/firedoor,
@@ -55396,9 +51956,7 @@
req_access_txt = "19"
},
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bSO" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters{
@@ -55420,9 +51978,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/central)
"bSQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
@@ -55611,8 +52167,7 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/open/floor/plating,
/area/maintenance/starboard)
@@ -55636,14 +52191,13 @@
"bTi" = (
/obj/structure/closet/wardrobe/atmospherics_yellow,
/turf/open/floor/plasteel/black,
-/area/atmos)
+/area/engine/atmos)
"bTj" = (
/obj/machinery/requests_console{
department = "Atmospherics";
departmentType = 4;
name = "Atmos RC";
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/structure/cable/yellow{
@@ -55653,11 +52207,10 @@
},
/obj/machinery/shower{
dir = 8;
- icon_state = "shower";
name = "emergency shower"
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bTk" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 0;
@@ -55673,27 +52226,25 @@
network = list("SS13")
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bTl" = (
/obj/machinery/atmospherics/components/unary/thermomachine/heater{
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bTm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced,
/turf/open/space,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bTn" = (
/turf/closed/wall,
-/area/maintenance/portsolar)
+/area/maintenance/solars/port/aft)
"bTo" = (
/obj/machinery/door/airlock/engineering{
- name = "Aft Port Solar Access";
+ name = "Port Quarter Solar Access";
req_access_txt = "10"
},
/obj/structure/cable/yellow{
@@ -55703,16 +52254,15 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/portsolar)
+/area/maintenance/solars/port/aft)
"bTp" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 0
+ name = "HIGH VOLTAGE"
},
/turf/closed/wall,
-/area/maintenance/portsolar)
+/area/maintenance/solars/port/aft)
"bTq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
icon_state = "intact";
@@ -55727,20 +52277,14 @@
req_access_txt = "12"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bTs" = (
/turf/closed/wall,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bTt" = (
/obj/item/weapon/storage/box,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bTu" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -55751,23 +52295,17 @@
req_access_txt = 1
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bTv" = (
/obj/structure/rack,
/obj/item/weapon/paper,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bTw" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/wood,
/area/library)
@@ -55845,9 +52383,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bTC" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -55862,14 +52398,11 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bTD" = (
/obj/machinery/vending/snack/random,
/obj/machinery/newscaster{
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/turf/open/floor/plasteel/black,
/area/hallway/primary/central)
@@ -55963,7 +52496,6 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 21
},
/obj/effect/turf_decal/stripes/corner{
@@ -55982,7 +52514,6 @@
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/plasteel/neutral/corner{
@@ -56044,7 +52575,6 @@
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/plasteel/neutral/corner{
@@ -56105,7 +52635,6 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 21
},
/turf/open/floor/plasteel/neutral/corner{
@@ -56120,7 +52649,6 @@
/obj/machinery/button/door{
id = "gateshutter";
name = "Gateway Shutter Control";
- pixel_x = 0;
pixel_y = 26;
req_access_txt = "19"
},
@@ -56139,9 +52667,7 @@
name = "bookcase"
},
/turf/open/floor/wood,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"bUa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -56197,7 +52723,6 @@
/obj/structure/noticeboard{
desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests.";
name = "requests board";
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/turf_decal/stripes/line,
@@ -56260,8 +52785,7 @@
/area/hydroponics)
"bUn" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/effect/turf_decal/stripes/line,
/obj/structure/reagent_dispensers/watertank/high,
@@ -56426,14 +52950,14 @@
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/turf/open/floor/plasteel/black,
-/area/atmos)
+/area/engine/atmos)
"bUA" = (
/obj/machinery/pipedispenser,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bUB" = (
/obj/machinery/light{
dir = 1
@@ -56445,13 +52969,12 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bUC" = (
/obj/item/device/radio/intercom{
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 28
},
/obj/machinery/pipedispenser/disposal/transit_tube,
@@ -56459,7 +52982,7 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bUD" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
@@ -56467,7 +52990,7 @@
on = 0
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bUE" = (
/obj/item/weapon/cigbutt,
/obj/machinery/atmospherics/pipe/manifold/general/visible{
@@ -56475,18 +52998,18 @@
initialize_directions = 11
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bUF" = (
/obj/machinery/atmospherics/components/unary/thermomachine/heater{
dir = 4;
on = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bUG" = (
/obj/machinery/atmospherics/pipe/manifold4w/yellow/visible,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bUH" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
@@ -56495,15 +53018,14 @@
},
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 1;
pixel_y = 1
},
/turf/open/floor/plasteel/vault,
-/area/atmos)
+/area/engine/atmos)
"bUI" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -56517,19 +53039,17 @@
pump_direction = 0
},
/turf/open/floor/engine/co2,
-/area/atmos)
+/area/engine/atmos)
"bUJ" = (
/turf/open/floor/engine/co2,
-/area/atmos)
+/area/engine/atmos)
"bUK" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
dir = 8
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bUL" = (
/obj/machinery/telecomms/server/presets/security,
/turf/open/floor/circuit{
@@ -56543,13 +53063,11 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"bUN" = (
/obj/machinery/power/apc{
dir = 8;
- name = "Aft Port Solar APC";
+ name = "Port Quarter Solar APC";
pixel_x = -26;
pixel_y = 3
},
@@ -56560,7 +53078,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/portsolar)
+/area/maintenance/solars/port/aft)
"bUO" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -56577,7 +53095,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/portsolar)
+/area/maintenance/solars/port/aft)
"bUP" = (
/obj/structure/cable/yellow{
d2 = 8;
@@ -56585,7 +53103,7 @@
},
/obj/machinery/power/smes,
/turf/open/floor/plating,
-/area/maintenance/portsolar)
+/area/maintenance/solars/port/aft)
"bUQ" = (
/obj/item/weapon/cigbutt,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -56595,9 +53113,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bUR" = (
/obj/structure/closet,
/obj/item/weapon/storage/box/donkpockets,
@@ -56606,9 +53122,7 @@
name = "2maintenance loot spawner"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bUS" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "0";
@@ -56621,9 +53135,7 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bUT" = (
/obj/structure/rack,
/obj/item/weapon/weldingtool,
@@ -56632,31 +53144,23 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bUU" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bUV" = (
/obj/machinery/recharge_station,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bUW" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bUX" = (
/obj/structure/rack,
/obj/item/stack/cable_coil{
@@ -56667,9 +53171,7 @@
/obj/item/weapon/wirecutters,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bUY" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
@@ -56689,8 +53191,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
@@ -56856,8 +53357,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
@@ -56967,9 +53467,7 @@
"bVy" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/effect/turf_decal/bot{
dir = 2
@@ -57043,7 +53541,7 @@
/turf/open/floor/plasteel/caution{
dir = 9
},
-/area/atmos)
+/area/engine/atmos)
"bVG" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
dir = 1
@@ -57051,7 +53549,7 @@
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bVH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
@@ -57060,7 +53558,7 @@
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bVI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
@@ -57068,7 +53566,7 @@
/turf/open/floor/plasteel/black/corner{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bVJ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
dir = 2
@@ -57080,13 +53578,13 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bVK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bVL" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 0;
@@ -57094,7 +53592,7 @@
on = 0
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bVM" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
@@ -57105,28 +53603,27 @@
},
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/open/floor/plasteel/vault,
-/area/atmos)
+/area/engine/atmos)
"bVN" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "co2_sensor"
},
/turf/open/floor/engine/co2,
-/area/atmos)
+/area/engine/atmos)
"bVO" = (
/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
/turf/open/floor/engine/co2,
-/area/atmos)
+/area/engine/atmos)
"bVP" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/engine/co2,
-/area/atmos)
+/area/engine/atmos)
"bVQ" = (
/obj/structure/chair/stool,
/obj/structure/cable{
@@ -57140,13 +53637,12 @@
network = list("SS13")
},
/turf/open/floor/plating,
-/area/maintenance/portsolar)
+/area/maintenance/solars/port/aft)
"bVR" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/effect/landmark/xeno_spawn,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -57154,7 +53650,7 @@
on = 1
},
/turf/open/floor/plating,
-/area/maintenance/portsolar)
+/area/maintenance/solars/port/aft)
"bVS" = (
/obj/machinery/power/terminal{
icon_state = "term";
@@ -57173,7 +53669,7 @@
pixel_x = 27
},
/turf/open/floor/plating,
-/area/maintenance/portsolar)
+/area/maintenance/solars/port/aft)
"bVT" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -57181,17 +53677,13 @@
},
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bVU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bVV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -57203,38 +53695,28 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bVW" = (
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bVX" = (
/obj/effect/turf_decal/stripes/corner{
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bVZ" = (
/obj/effect/turf_decal/stripes/corner{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bWa" = (
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bWb" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -57245,9 +53727,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bWc" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -57267,9 +53747,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bWd" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -57283,9 +53761,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bWe" = (
/obj/structure/disposalpipe/sortjunction{
dir = 4;
@@ -57306,9 +53782,7 @@
icon_state = "1-4"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bWf" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -57326,9 +53800,7 @@
req_one_access_txt = "12;5;39;37;25;28"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bWg" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -57416,7 +53888,6 @@
dir = 4
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/turf/open/floor/plasteel/neutral/corner{
@@ -57591,7 +54062,6 @@
dir = 2
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/obj/machinery/camera{
@@ -57744,8 +54214,7 @@
/area/hydroponics)
"bWV" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/structure/closet/wardrobe/botanist,
/turf/open/floor/plasteel/hydrofloor,
@@ -57874,7 +54343,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bXf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/structure/cable/yellow{
@@ -57891,7 +54360,7 @@
/turf/open/floor/plasteel/caution{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"bXg" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -57908,7 +54377,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bXh" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -57925,7 +54394,7 @@
on = 0
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bXi" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -57937,7 +54406,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bXj" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -57949,7 +54418,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bXk" = (
/obj/effect/landmark/start/atmospheric_technician,
/obj/machinery/atmospherics/pipe/simple/general/visible{
@@ -57957,27 +54426,25 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bXl" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/atmospherics/pipe/simple/general/visible{
color = "#330000";
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bXm" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
color = "#330000";
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bXn" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
color = "#330000"
@@ -57986,7 +54453,7 @@
color = ""
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bXo" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
@@ -57994,13 +54461,13 @@
on = 0
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bXp" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bXq" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 1;
@@ -58008,12 +54475,11 @@
on = 1
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/vault,
-/area/atmos)
+/area/engine/atmos)
"bXr" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 8;
@@ -58022,21 +54488,19 @@
pixel_y = 1
},
/turf/open/floor/engine/co2,
-/area/atmos)
+/area/engine/atmos)
"bXs" = (
/obj/machinery/camera{
c_tag = "Atmospherics Tank - CO2";
dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
+ network = list("SS13")
},
/turf/open/floor/engine/co2,
-/area/atmos)
+/area/engine/atmos)
"bXt" = (
/obj/machinery/power/solar_control{
id = "aftport";
- name = "Aft Port Solar Control";
+ name = "Port Quarter Solar Control";
track = 0
},
/obj/structure/cable{
@@ -58045,7 +54509,7 @@
},
/obj/structure/cable,
/turf/open/floor/plating,
-/area/maintenance/portsolar)
+/area/maintenance/solars/port/aft)
"bXu" = (
/obj/structure/cable{
d1 = 2;
@@ -58056,33 +54520,28 @@
dir = 2
},
/turf/open/floor/plating,
-/area/maintenance/portsolar)
+/area/maintenance/solars/port/aft)
"bXv" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/open/floor/plating,
-/area/maintenance/portsolar)
+/area/maintenance/solars/port/aft)
"bXx" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bXy" = (
/obj/structure/closet,
/obj/item/device/flashlight,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bXz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -58093,31 +54552,23 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bXA" = (
/obj/structure/table,
/obj/item/device/flashlight/lamp,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bXB" = (
/obj/structure/chair/stool,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bXC" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bXD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
@@ -58125,21 +54576,15 @@
/turf/open/floor/plating{
icon_state = "platingdmg2"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bXE" = (
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bXF" = (
/obj/structure/girder,
/obj/structure/grille,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bXG" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -58154,47 +54599,36 @@
dir = 2
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bXH" = (
/obj/structure/closet/crate,
/obj/item/weapon/coin/silver,
/obj/item/device/flashlight,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bXI" = (
/obj/structure/closet,
/obj/item/clothing/neck/stethoscope,
/obj/item/weapon/hemostat,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bXJ" = (
/obj/item/weapon/storage/box/lights/mixed,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bXK" = (
/turf/closed/wall,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"bXL" = (
/turf/closed/wall,
/area/security/checkpoint/medical)
"bXM" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "applebush";
@@ -58329,9 +54763,7 @@
req_access_txt = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"bYc" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
@@ -58390,9 +54822,7 @@
"bYi" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel,
/area/hydroponics)
@@ -58417,8 +54847,7 @@
pixel_y = 5
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/machinery/light{
icon_state = "tube1";
@@ -58445,7 +54874,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/effect/landmark/start/botanist,
@@ -58495,15 +54923,12 @@
/obj/item/device/radio/intercom{
dir = 0;
name = "Station Intercom (General)";
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/turf/open/floor/plasteel/vault{
dir = 1
},
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"bYr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
@@ -58549,8 +54974,7 @@
},
/obj/machinery/airalarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/camera{
c_tag = "Atmospherics - Port-Aft";
@@ -58560,19 +54984,19 @@
/turf/open/floor/plasteel/caution{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"bYw" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
color = "#330000"
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bYx" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 6
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bYy" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
@@ -58580,26 +55004,24 @@
on = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bYz" = (
/obj/machinery/atmospherics/components/trinary/mixer{
dir = 4;
node1_concentration = 0.8;
node2_concentration = 0.2;
on = 1;
- pixel_x = 0;
- pixel_y = 0;
target_pressure = 4500
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bYA" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 10;
initialize_directions = 10
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bYB" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/machinery/light{
@@ -58607,18 +55029,17 @@
icon_state = "tube1"
},
/turf/open/floor/plasteel/black,
-/area/atmos)
+/area/engine/atmos)
"bYC" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/maintenance/portsolar)
+/area/maintenance/solars/port/aft)
"bYD" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
@@ -58626,7 +55047,7 @@
req_access_txt = "10; 13"
},
/turf/open/floor/plating,
-/area/maintenance/portsolar)
+/area/maintenance/solars/port/aft)
"bYE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -58635,9 +55056,7 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bYG" = (
/obj/structure/table,
/obj/item/weapon/folder/white{
@@ -58650,31 +55069,24 @@
},
/obj/item/weapon/pen,
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bYH" = (
/obj/structure/light_construct,
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bYI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bYJ" = (
/obj/structure/table,
/obj/machinery/cell_charger,
@@ -58683,9 +55095,7 @@
maxcharge = 15000
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bYK" = (
/obj/machinery/mech_bay_recharge_port,
/obj/structure/cable/yellow{
@@ -58693,14 +55103,10 @@
icon_state = "0-2"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bYL" = (
/turf/open/floor/mech_bay_recharge_floor,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bYM" = (
/obj/machinery/computer/mech_bay_power_console,
/obj/structure/cable/yellow{
@@ -58708,23 +55114,17 @@
icon_state = "0-2"
},
/turf/open/floor/circuit,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bYN" = (
/obj/machinery/space_heater,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bYO" = (
/obj/item/weapon/vending_refill/cola,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bYP" = (
/obj/structure/closet/crate{
icon_state = "crateopen";
@@ -58733,9 +55133,7 @@
/obj/item/weapon/storage/box/donkpockets,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bYQ" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -58751,17 +55149,13 @@
req_one_access_txt = "12;5;39;25;28"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bYR" = (
/obj/machinery/vending/medical,
/turf/open/floor/plasteel/whiteblue/side{
dir = 9
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"bYS" = (
/obj/structure/noticeboard{
pixel_y = 32
@@ -58775,8 +55169,7 @@
pixel_y = 2
},
/obj/item/weapon/reagent_containers/glass/bottle/charcoal{
- pixel_x = -5;
- pixel_y = 0
+ pixel_x = -5
},
/obj/item/weapon/reagent_containers/glass/bottle/morphine,
/obj/item/weapon/reagent_containers/syringe/epinephrine{
@@ -58787,24 +55180,19 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"bYT" = (
/obj/structure/closet/secure_closet/medical3,
/obj/item/weapon/screwdriver{
pixel_y = 6
},
/obj/structure/sign/nosmoking_2{
- pixel_x = 0;
pixel_y = 30
},
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"bYU" = (
/obj/structure/closet/secure_closet/medical3,
/obj/machinery/light{
@@ -58819,9 +55207,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"bYV" = (
/obj/item/device/radio/intercom{
broadcasting = 1;
@@ -58829,7 +55215,6 @@
frequency = 1485;
listening = 0;
name = "Station Intercom (Medbay)";
- pixel_x = 0;
pixel_y = 30
},
/obj/structure/closet/wardrobe/white/medical,
@@ -58837,24 +55222,19 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"bYW" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/turf/open/floor/plasteel/whiteblue/side{
dir = 5
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"bYX" = (
/obj/machinery/power/apc{
dir = 8;
name = "Medical Security Checkpoint APC";
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/airalarm{
pixel_y = 28
@@ -58894,8 +55274,7 @@
/obj/item/weapon/pen,
/obj/structure/table/reinforced,
/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/obj/item/weapon/folder/red,
/obj/item/weapon/book/manual/wiki/security_space_law{
@@ -58917,15 +55296,11 @@
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"bZb" = (
/obj/structure/sign/bluecross_2,
/turf/closed/wall,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"bZc" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -58939,31 +55314,25 @@
/turf/open/floor/plasteel/white/side{
dir = 2
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"bZd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white/side{
dir = 2
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"bZe" = (
/obj/structure/sign/directions/security{
desc = "A direction sign, pointing out which way the security department is.";
dir = 1;
icon_state = "direction_sec";
- pixel_x = 0;
pixel_y = 8
},
/obj/structure/sign/directions/engineering{
desc = "A direction sign, pointing out which way the engineering department is.";
dir = 4;
- icon_state = "direction_eng";
- pixel_y = 0
+ icon_state = "direction_eng"
},
/obj/structure/sign/directions/engineering{
desc = "A direction sign, pointing out which way the bridge is.";
@@ -58973,15 +55342,15 @@
pixel_y = -8
},
/turf/closed/wall,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"bZf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
req_access_txt = 1
},
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Aft Primary Hallway"
+ },
/turf/open/floor/plasteel/blue/corner{
dir = 8
},
@@ -58993,13 +55362,17 @@
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Aft Primary Hallway"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"bZh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Aft Primary Hallway"
+ },
/turf/open/floor/plasteel/purple/corner{
dir = 2
},
@@ -59025,31 +55398,23 @@
pixel_y = -8
},
/turf/closed/wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bZj" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bZk" = (
/obj/structure/sign/science,
/turf/closed/wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bZl" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white/side{
dir = 2
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bZm" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -59062,19 +55427,13 @@
/turf/open/floor/plasteel/white/side{
dir = 2
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bZn" = (
/turf/closed/wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bZo" = (
/turf/closed/wall,
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"bZp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
req_access_txt = 1
@@ -59083,17 +55442,14 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"bZq" = (
/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,
/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,
/obj/item/weapon/reagent_containers/food/snacks/grown/citrus/orange,
/obj/item/weapon/reagent_containers/food/snacks/grown/grapes,
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/structure/table/glass,
/turf/open/floor/plasteel/hydrofloor,
@@ -59116,7 +55472,6 @@
/area/hallway/primary/central)
"bZt" = (
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
@@ -59134,8 +55489,7 @@
"bZv" = (
/obj/machinery/biogenerator,
/obj/machinery/light_switch{
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -59145,8 +55499,7 @@
"bZw" = (
/obj/structure/closet/secure_closet/hydroponics,
/obj/machinery/light_switch{
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
@@ -59188,7 +55541,7 @@
"bZC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"bZD" = (
/obj/machinery/door/airlock/maintenance{
name = "Incinerator Access";
@@ -59201,10 +55554,10 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"bZE" = (
/turf/closed/wall,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"bZF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 5
@@ -59218,50 +55571,49 @@
/turf/open/floor/plasteel/caution{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"bZG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 10
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bZH" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
name = "N2 to Pure"
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bZI" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bZJ" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bZK" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bZL" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 4
},
/obj/machinery/meter,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bZM" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/table,
/obj/machinery/atmospherics/pipe/simple/green/visible,
@@ -59276,16 +55628,15 @@
/turf/open/floor/plasteel/caution{
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"bZN" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/open/floor/plating/airless,
-/area/maintenance/portsolar)
+/area/maintenance/solars/port/aft)
"bZO" = (
/obj/machinery/door/airlock/maintenance{
name = "Storage Room";
@@ -59293,9 +55644,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bZP" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -59303,14 +55652,10 @@
icon_state = "1-2"
},
/turf/open/floor/circuit,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bZQ" = (
/turf/open/floor/circuit,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bZR" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -59325,21 +55670,15 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bZS" = (
/obj/structure/closet/firecloset,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bZT" = (
/obj/machinery/space_heater,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bZU" = (
/obj/machinery/light/small{
dir = 1
@@ -59347,17 +55686,13 @@
/obj/structure/mopbucket,
/obj/item/weapon/mop,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bZV" = (
/obj/item/weapon/storage/toolbox/emergency,
/obj/item/weapon/hand_labeler,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bZW" = (
/obj/item/weapon/cigbutt,
/obj/structure/disposalpipe/segment{
@@ -59368,9 +55703,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"bZX" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=4";
@@ -59391,9 +55724,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"bZY" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -59401,17 +55732,13 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 8
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"bZZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"caa" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -59421,9 +55748,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cab" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -59434,9 +55759,7 @@
icon_state = "2-4"
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cac" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -59453,9 +55776,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 4
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cad" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_security{
@@ -59483,9 +55804,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/red/side{
dir = 8
@@ -59521,9 +55840,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"caj" = (
/obj/machinery/light/small{
dir = 1
@@ -59549,17 +55866,13 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cak" = (
/obj/structure/chair,
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cal" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -59570,24 +55883,18 @@
req_access_txt = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cam" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"can" = (
/obj/structure/chair,
/obj/effect/landmark/start/assistant,
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cao" = (
/obj/structure/table,
/obj/item/weapon/storage/box/bodybags{
@@ -59597,9 +55904,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cap" = (
/obj/structure/table,
/obj/item/stack/medical/gauze,
@@ -59608,9 +55913,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"caq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
req_access_txt = 1
@@ -59643,33 +55946,25 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cau" = (
/obj/structure/table,
/obj/item/weapon/paper/pamphlet,
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cav" = (
/obj/structure/chair,
/obj/effect/landmark/start/assistant,
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"caw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cax" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -59679,17 +55974,13 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cay" = (
/obj/structure/chair,
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"caz" = (
/obj/structure/table,
/obj/item/stack/cable_coil,
@@ -59706,9 +55997,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"caA" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/console_screen,
@@ -59720,9 +56009,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"caB" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
@@ -59733,7 +56020,6 @@
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/light/small{
@@ -59751,9 +56037,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"caC" = (
/obj/structure/table,
/obj/machinery/recharger{
@@ -59769,9 +56053,7 @@
/turf/open/floor/plasteel/red/side{
dir = 9
},
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"caD" = (
/obj/structure/table,
/obj/machinery/requests_console{
@@ -59783,7 +56065,6 @@
id = "Biohazard";
name = "Biohazard Shutter Control";
pixel_x = -7;
- pixel_y = 0;
req_access_txt = "47"
},
/obj/machinery/button/door{
@@ -59805,9 +56086,7 @@
/turf/open/floor/plasteel/red/side{
dir = 1
},
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"caE" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
@@ -59822,16 +56101,13 @@
/turf/open/floor/plasteel/red/side{
dir = 5
},
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"caG" = (
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
},
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
@@ -59983,9 +56259,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/yellow{
d1 = 4;
@@ -60068,12 +56342,9 @@
/area/maintenance/starboard)
"caX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light_switch{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/machinery/light_switch,
/turf/closed/wall,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"caY" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -60087,7 +56358,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"caZ" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -60097,11 +56368,10 @@
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/obj/structure/sign/deathsposal{
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"cba" = (
/obj/machinery/power/smes{
capacity = 9e+006;
@@ -60112,7 +56382,7 @@
icon_state = "0-8"
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"cbb" = (
/obj/machinery/door/window/northleft{
dir = 1;
@@ -60121,21 +56391,19 @@
req_access_txt = "24"
},
/turf/open/floor/plasteel/black,
-/area/atmos)
+/area/engine/atmos)
"cbc" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 0
+ dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
dir = 8
},
/turf/open/floor/plasteel/black,
-/area/atmos)
+/area/engine/atmos)
"cbd" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 4;
@@ -60144,7 +56412,7 @@
},
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/red,
-/area/atmos)
+/area/engine/atmos)
"cbe" = (
/obj/structure/window/reinforced,
/obj/machinery/computer/atmos_control/tank{
@@ -60161,7 +56429,7 @@
color = "#330000"
},
/turf/open/floor/plasteel/red,
-/area/atmos)
+/area/engine/atmos)
"cbf" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/components/binary/pump{
@@ -60173,11 +56441,10 @@
dir = 4
},
/turf/open/floor/plasteel/red,
-/area/atmos)
+/area/engine/atmos)
"cbg" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 8
@@ -60192,7 +56459,7 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/atmos)
+/area/engine/atmos)
"cbh" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/components/trinary/filter{
@@ -60201,7 +56468,7 @@
on = 1
},
/turf/open/floor/plasteel/blue,
-/area/atmos)
+/area/engine/atmos)
"cbi" = (
/obj/structure/window/reinforced,
/obj/machinery/computer/atmos_control/tank{
@@ -60215,7 +56482,7 @@
dir = 4
},
/turf/open/floor/plasteel/blue,
-/area/atmos)
+/area/engine/atmos)
"cbj" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/components/binary/pump{
@@ -60227,14 +56494,13 @@
dir = 4
},
/turf/open/floor/plasteel/blue,
-/area/atmos)
+/area/engine/atmos)
"cbk" = (
/obj/structure/window/reinforced{
dir = 8
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/machinery/door/window/northleft{
dir = 1;
@@ -60250,7 +56516,7 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/atmos)
+/area/engine/atmos)
"cbl" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
@@ -60260,7 +56526,7 @@
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"cbm" = (
/obj/docking_port/mobile{
dheight = 0;
@@ -60304,11 +56570,10 @@
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"cbo" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/green/visible{
@@ -60317,7 +56582,7 @@
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"cbp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -60328,9 +56593,7 @@
icon_state = "1-4"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cbq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -60343,9 +56606,7 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cbr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
@@ -60356,36 +56617,27 @@
icon_state = "2-8"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cbs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cbt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cbu" = (
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cbv" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -60401,9 +56653,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cbw" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -60413,9 +56663,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cbx" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -60423,9 +56671,7 @@
icon_state = "1-8"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cby" = (
/obj/machinery/mecha_part_fabricator{
dir = 2;
@@ -60433,9 +56679,7 @@
req_access = null
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cbz" = (
/obj/structure/rack,
/obj/item/stack/sheet/cardboard,
@@ -60445,9 +56689,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cbA" = (
/obj/structure/closet,
/obj/item/stack/sheet/metal{
@@ -60456,9 +56698,7 @@
/obj/item/weapon/extinguisher/mini,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cbB" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -60474,9 +56714,7 @@
req_access_txt = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cbC" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -60485,9 +56723,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cbD" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -60497,9 +56733,7 @@
req_one_access_txt = "12;5"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cbE" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -60509,9 +56743,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cbF" = (
/obj/item/weapon/reagent_containers/glass/bottle/morphine,
/obj/item/trash/candy,
@@ -60522,9 +56754,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cbG" = (
/obj/item/weapon/storage/box/lights/mixed,
/obj/structure/disposalpipe/segment{
@@ -60534,9 +56764,7 @@
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cbH" = (
/obj/item/weapon/tank/internals/air,
/obj/item/weapon/tank/internals/air,
@@ -60553,9 +56781,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cbI" = (
/obj/machinery/door/airlock{
name = "Medbay Emergency Storage";
@@ -60565,9 +56791,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cbJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -60575,34 +56799,26 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 8
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cbK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cbL" = (
/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 2
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cbM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cbN" = (
/obj/machinery/holopad,
/obj/effect/landmark/start/medical_doctor,
@@ -60612,9 +56828,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cbO" = (
/obj/machinery/camera{
c_tag = "Medbay Storage";
@@ -60627,17 +56841,13 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 4
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cbP" = (
/obj/machinery/requests_console{
announcementConsole = 0;
department = "Medbay";
departmentType = 1;
name = "Medbay RC";
- pixel_x = 0;
- pixel_y = 0;
pixel_z = 0
},
/turf/closed/wall,
@@ -60649,7 +56859,6 @@
dir = 1;
name = "Medbay Monitor";
network = list("Medbay");
- pixel_x = 0;
pixel_y = -29
},
/obj/item/device/radio/intercom{
@@ -60690,9 +56899,7 @@
dir = 8
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cbU" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -60704,14 +56911,10 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cbV" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -60722,9 +56925,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cbW" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -60736,85 +56937,63 @@
},
/obj/machinery/holopad,
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cbX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cbY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cbZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cca" = (
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ccb" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white/side{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ccc" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white/side{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ccd" = (
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cce" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ccf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ccg" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cch" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -60827,26 +57006,20 @@
/obj/machinery/holopad,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cci" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ccj" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1;
initialize_directions = 11
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cck" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -60854,9 +57027,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"ccl" = (
/obj/item/weapon/screwdriver{
pixel_y = 10
@@ -60868,9 +57039,7 @@
/turf/open/floor/plasteel/red/side{
dir = 8
},
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"ccm" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
@@ -60880,9 +57049,7 @@
},
/obj/effect/landmark/start/depsec/science,
/turf/open/floor/plasteel,
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"ccn" = (
/obj/machinery/computer/secure_data,
/obj/item/weapon/book/manual/wiki/security_space_law,
@@ -60897,9 +57064,7 @@
/turf/open/floor/plasteel/red/side{
dir = 4
},
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cco" = (
/obj/machinery/light/small,
/obj/item/toy/dummy,
@@ -60984,7 +57149,6 @@
/obj/machinery/power/apc{
dir = 2;
name = "Hydroponics APC";
- pixel_x = 0;
pixel_y = -28
},
/obj/structure/cable/yellow,
@@ -61027,7 +57191,6 @@
/area/hydroponics)
"ccA" = (
/obj/item/weapon/reagent_containers/spray/plantbgone{
- pixel_x = 0;
pixel_y = 3
},
/obj/item/weapon/reagent_containers/spray/plantbgone{
@@ -61108,14 +57271,14 @@
},
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"ccF" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
name = "plasma tank pump"
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"ccG" = (
/obj/structure/sink/kitchen{
desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
@@ -61131,7 +57294,7 @@
dir = 10
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"ccH" = (
/obj/machinery/light{
dir = 1
@@ -61149,7 +57312,7 @@
},
/obj/item/weapon/pen,
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"ccI" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -61160,7 +57323,7 @@
dir = 8
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"ccJ" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
@@ -61173,7 +57336,7 @@
on = 1
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"ccK" = (
/obj/structure/cable{
d2 = 8;
@@ -61188,21 +57351,21 @@
dir = 6
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"ccL" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
color = "#330000";
dir = 4
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"ccM" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
color = "#330000";
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/atmos)
+/area/engine/atmos)
"ccN" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/pipe/simple/general/visible{
@@ -61210,42 +57373,42 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/atmos)
+/area/engine/atmos)
"ccO" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
color = "#330000";
dir = 9
},
/turf/open/floor/plasteel/black,
-/area/atmos)
+/area/engine/atmos)
"ccP" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/turf/open/floor/plasteel/black,
-/area/atmos)
+/area/engine/atmos)
"ccQ" = (
/turf/open/floor/plasteel/black,
-/area/atmos)
+/area/engine/atmos)
"ccR" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/turf/open/floor/plasteel/black,
-/area/atmos)
+/area/engine/atmos)
"ccS" = (
/obj/machinery/light,
/turf/open/floor/plasteel/black,
-/area/atmos)
+/area/engine/atmos)
"ccT" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
dir = 8;
initialize_directions = 11
},
/turf/open/floor/plasteel/black,
-/area/atmos)
+/area/engine/atmos)
"ccU" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/atmos)
+/area/engine/atmos)
"ccV" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 9
@@ -61256,21 +57419,20 @@
network = list("SS13")
},
/turf/open/floor/plasteel/black,
-/area/atmos)
+/area/engine/atmos)
"ccW" = (
/obj/machinery/door/airlock/external{
req_access_txt = "24";
req_one_access_txt = "0"
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"ccX" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/light/small{
@@ -61280,10 +57442,10 @@
dir = 4
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"ccY" = (
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"ccZ" = (
/obj/machinery/door/window/northleft{
dir = 8;
@@ -61298,12 +57460,12 @@
req_access_txt = "24"
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"cda" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable,
/turf/open/space,
-/area/solar/port)
+/area/solar/port/aft)
"cdb" = (
/obj/structure/girder,
/obj/structure/grille,
@@ -61316,9 +57478,7 @@
icon_state = "2-4"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cdc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -61329,9 +57489,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cdd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -61345,9 +57503,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cde" = (
/obj/machinery/door/airlock/maintenance{
name = "Storage Room";
@@ -61362,9 +57518,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cdf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -61378,26 +57532,20 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cdg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cdh" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
on = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cdi" = (
/obj/structure/closet,
/obj/item/stack/sheet/glass{
@@ -61405,9 +57553,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cdj" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -61419,47 +57565,34 @@
req_access_txt = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cdk" = (
/obj/item/trash/semki,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cdl" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cdm" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cdn" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
},
/obj/machinery/portable_atmospherics/canister/air,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cdo" = (
/obj/effect/landmark/xeno_spawn,
/obj/structure/closet/firecloset,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cdp" = (
/obj/machinery/light_switch{
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/machinery/light/small{
dir = 8
@@ -61468,9 +57601,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 10
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cdq" = (
/obj/machinery/firealarm{
dir = 1;
@@ -61480,9 +57611,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 2
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cdr" = (
/obj/item/weapon/storage/box/bodybags{
pixel_x = 3;
@@ -61504,15 +57633,11 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cds" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cdt" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -61520,28 +57645,21 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cdu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cdv" = (
/obj/item/weapon/storage/belt/medical{
- pixel_x = 0;
pixel_y = 2
},
/obj/item/weapon/storage/belt/medical{
- pixel_x = 0;
pixel_y = 2
},
/obj/item/weapon/storage/belt/medical{
- pixel_x = 0;
pixel_y = 2
},
/obj/item/clothing/neck/stethoscope,
@@ -61551,20 +57669,14 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 5
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cdw" = (
/turf/closed/wall,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cdx" = (
/obj/machinery/computer/crew,
/turf/open/floor/plasteel/vault,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cdy" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -61576,35 +57688,27 @@
},
/obj/machinery/shower{
dir = 4;
- icon_state = "shower";
name = "emergency shower"
},
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cdz" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
initialize_directions = 11
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cdA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cdB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -61615,35 +57719,27 @@
name = "Inspector Johnson"
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cdC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cdD" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cdE" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cdF" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
@@ -61652,9 +57748,7 @@
/turf/open/floor/plasteel/white/side{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cdG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
req_access_txt = 1
@@ -61674,9 +57768,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -61698,9 +57790,7 @@
dir = 5
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cdK" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -61715,9 +57805,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cdL" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -61732,9 +57820,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cdM" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -61745,9 +57831,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cdN" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -61759,13 +57843,10 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cdO" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -61782,9 +57863,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cdP" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -61797,9 +57876,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cdQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -61813,21 +57890,16 @@
/turf/open/floor/plasteel/red/side{
dir = 8
},
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cdR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
/turf/open/floor/plasteel,
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cdS" = (
/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/obj/structure/chair{
dir = 8
@@ -61835,23 +57907,18 @@
/obj/machinery/camera{
c_tag = "Security Post - Research Division";
dir = 8;
- network = list("SS13","RD");
- pixel_x = 0
+ network = list("SS13","RD")
},
/turf/open/floor/plasteel/red/side{
dir = 4
},
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cdT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
req_access_txt = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cdU" = (
/obj/machinery/door/airlock/maintenance{
name = "Hydroponics Maintenance";
@@ -61902,14 +57969,14 @@
},
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"cea" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
name = "input port pump"
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"ceb" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -61926,19 +57993,17 @@
},
/obj/machinery/meter,
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"cec" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"ced" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -61947,7 +58012,7 @@
dir = 5
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"cee" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -61956,18 +58021,16 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"cef" = (
/obj/structure/sign/fire{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/atmospherics/components/binary/pump{
dir = 2;
@@ -61975,53 +58038,48 @@
on = 0
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"ceg" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/green/visible,
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"ceh" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"cei" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"cej" = (
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/port)
+/area/solar/port/aft)
"cek" = (
/obj/machinery/door/airlock/external{
req_access_txt = "13"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cel" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cem" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -62037,9 +58095,7 @@
icon_state = "1-4"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cen" = (
/obj/structure/girder,
/obj/structure/grille,
@@ -62052,15 +58108,12 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"ceo" = (
/obj/structure/girder,
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -62068,9 +58121,7 @@
icon_state = "1-8"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cep" = (
/obj/structure/rack,
/obj/item/weapon/screwdriver{
@@ -62079,9 +58130,7 @@
/obj/item/weapon/hand_labeler,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"ceq" = (
/obj/structure/rack,
/obj/item/stack/cable_coil{
@@ -62092,9 +58141,7 @@
/obj/item/device/flashlight/seclite,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cer" = (
/obj/structure/rack,
/obj/item/stack/rods{
@@ -62102,9 +58149,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"ces" = (
/obj/structure/table,
/obj/item/weapon/folder/white{
@@ -62117,20 +58162,14 @@
},
/obj/item/weapon/pen,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"ceu" = (
/obj/structure/grille,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cev" = (
/turf/closed/wall,
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"cew" = (
/obj/item/weapon/storage/firstaid/regular{
pixel_x = 3;
@@ -62149,15 +58188,11 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 8
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cex" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -62165,18 +58200,14 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cey" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4;
initialize_directions = 11
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cez" = (
/obj/item/weapon/storage/firstaid/regular{
pixel_x = 3;
@@ -62195,13 +58226,10 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 4
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"ceA" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -62218,15 +58246,12 @@
dir = 1
},
/obj/machinery/newscaster{
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/turf/open/floor/plasteel/whiteblue/side{
dir = 9
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ceB" = (
/obj/structure/chair/office/light{
dir = 4
@@ -62243,9 +58268,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 5
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ceC" = (
/obj/machinery/telecomms/server/presets/command,
/turf/open/floor/circuit{
@@ -62265,17 +58288,13 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 2
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ceE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/side{
dir = 2
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ceF" = (
/obj/structure/bed/roller,
/obj/item/device/radio/intercom{
@@ -62284,7 +58303,6 @@
frequency = 1485;
listening = 1;
name = "Station Intercom (Medbay)";
- pixel_x = 0;
pixel_y = -30
},
/obj/machinery/camera{
@@ -62295,26 +58313,20 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 2
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ceG" = (
/obj/machinery/light,
/obj/structure/bed/roller,
/turf/open/floor/plasteel/whiteblue/side{
dir = 2
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ceH" = (
/obj/structure/bed/roller,
/turf/open/floor/plasteel/whiteblue/side{
dir = 2
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ceI" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-11"
@@ -62322,16 +58334,12 @@
/turf/open/floor/plasteel/whiteyellow/side{
dir = 2
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ceJ" = (
/turf/open/floor/plasteel/whiteyellow/side{
dir = 2
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ceK" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -62345,9 +58353,7 @@
/turf/open/floor/plasteel/whiteyellow/side{
dir = 2
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ceL" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -62365,9 +58371,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 2
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ceN" = (
/obj/structure/table,
/obj/machinery/cell_charger,
@@ -62378,9 +58382,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 2
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ceO" = (
/obj/structure/table,
/obj/item/device/paicard,
@@ -62391,9 +58393,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 2
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ceP" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/cell/potato,
@@ -62401,9 +58401,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 2
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ceQ" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -62412,9 +58410,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 2
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ceR" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j2";
@@ -62423,9 +58419,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 2
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ceS" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -62434,7 +58428,6 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = -30
},
/obj/item/weapon/twohanded/required/kirbyplants{
@@ -62444,9 +58437,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 2
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ceT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
@@ -62456,9 +58447,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 2
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ceU" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -62468,21 +58457,16 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/turf/open/floor/plasteel/whitepurple/side{
dir = 2
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ceV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
@@ -62495,20 +58479,14 @@
/turf/open/floor/plasteel/red/side{
dir = 8
},
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"ceW" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel,
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"ceX" = (
/obj/item/device/radio/intercom{
dir = 4;
@@ -62524,9 +58502,7 @@
/turf/open/floor/plasteel/red/side{
dir = 4
},
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"ceY" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -62541,9 +58517,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"ceZ" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -62557,9 +58531,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cfa" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -62575,9 +58547,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg2"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cfb" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -62594,9 +58564,7 @@
dir = 2
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cfc" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -62613,9 +58581,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cfd" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -62631,9 +58597,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cff" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -62649,9 +58613,7 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cfg" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -62673,9 +58635,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cfh" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -62692,9 +58652,7 @@
req_access_txt = "12"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cfi" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -62711,9 +58669,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard)
"cfj" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -62764,7 +58720,7 @@
name = "input gas connector port"
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"cfo" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -62774,26 +58730,25 @@
},
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"cfp" = (
/obj/effect/landmark/xeno_spawn,
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"cfq" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"cfr" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/components/binary/pump{
@@ -62801,7 +58756,7 @@
name = "input port pump"
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"cfs" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 4;
@@ -62809,12 +58764,12 @@
},
/obj/machinery/meter,
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"cft" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"cfu" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/green/visible,
@@ -62851,7 +58806,7 @@
d2 = 2
},
/turf/open/space,
-/area/solar/port)
+/area/solar/port/aft)
"cfA" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -62862,9 +58817,7 @@
req_access_txt = "13"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cfB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -62876,9 +58829,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cfC" = (
/obj/item/trash/pistachios,
/obj/structure/closet,
@@ -62886,56 +58837,41 @@
/obj/item/weapon/extinguisher,
/obj/item/weapon/storage/belt/utility,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cfD" = (
/obj/item/weapon/storage/box,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cfE" = (
/obj/structure/closet/crate,
/obj/item/weapon/reagent_containers/dropper,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cfF" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cfG" = (
/obj/structure/closet/wardrobe/pjs,
/turf/open/floor/plasteel/vault,
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"cfH" = (
/obj/structure/closet/wardrobe/pjs,
/obj/machinery/airalarm{
pixel_y = 24
},
/turf/open/floor/plasteel/vault,
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"cfI" = (
/obj/machinery/computer/med_data,
/obj/machinery/light{
dir = 1
},
/obj/structure/sign/nosmoking_2{
- pixel_x = 0;
pixel_y = 30
},
/turf/open/floor/plasteel/vault,
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"cfJ" = (
/obj/structure/table,
/obj/item/weapon/folder/white{
@@ -62958,9 +58894,7 @@
},
/obj/item/clothing/neck/stethoscope,
/turf/open/floor/plasteel/vault,
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"cfK" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
@@ -62972,9 +58906,7 @@
pixel_y = 23
},
/turf/open/floor/plasteel/vault,
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"cfL" = (
/obj/item/weapon/storage/firstaid/regular{
pixel_x = 3;
@@ -62999,17 +58931,14 @@
icon_state = "0-4"
},
/obj/machinery/light_switch{
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/machinery/light/small,
/obj/structure/table/glass,
/turf/open/floor/plasteel/whiteblue/side{
dir = 10
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cfM" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -63022,9 +58951,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 2
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cfN" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -63046,17 +58973,13 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 2
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cfO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/side{
dir = 2
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cfP" = (
/obj/item/weapon/storage/firstaid/regular{
pixel_x = 3;
@@ -63075,46 +58998,35 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 6
},
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cfQ" = (
/obj/machinery/airalarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whiteblue/side{
dir = 10
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cfR" = (
/obj/structure/chair/office/light{
dir = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/whiteblue/side{
dir = 6
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cfS" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
/obj/item/weapon/reagent_containers/food/drinks/britcup,
/turf/open/floor/plasteel/whitegreen,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cfT" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -63125,21 +59037,15 @@
req_access_txt = 1
},
/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cfU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cfV" = (
/obj/structure/sign/directions/medical{
pixel_y = -7
@@ -63206,7 +59112,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/open/floor/plasteel/neutral/corner{
@@ -63215,7 +59120,7 @@
/area/hallway/primary/aft)
"cgd" = (
/turf/closed/wall/r_wall,
-/area/toxins/lab)
+/area/science/lab)
"cge" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -63224,7 +59129,7 @@
name = "research shutters"
},
/turf/open/floor/plating,
-/area/toxins/lab)
+/area/science/lab)
"cgf" = (
/obj/structure/table/reinforced,
/obj/item/weapon/pen,
@@ -63247,13 +59152,13 @@
name = "research shutters"
},
/turf/open/floor/plating,
-/area/toxins/lab)
+/area/science/lab)
"cgg" = (
/obj/structure/sign/directions/science{
pixel_y = -8
},
/turf/closed/wall/r_wall,
-/area/toxins/lab)
+/area/science/lab)
"cgh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
@@ -63263,9 +59168,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cgi" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -63279,9 +59182,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cgj" = (
/obj/machinery/power/apc{
dir = 8;
@@ -63292,28 +59193,21 @@
/turf/open/floor/plasteel/red/side{
dir = 10
},
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cgk" = (
/obj/structure/closet/secure_closet/security/science,
/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cgl" = (
/obj/structure/filingcabinet,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/open/floor/plasteel/red/side{
dir = 6
},
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"cgm" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -63326,22 +59220,16 @@
dir = 2
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cgn" = (
/obj/item/weapon/cigbutt,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cgo" = (
/turf/closed/wall/r_wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cgp" = (
/obj/machinery/door/airlock/maintenance{
name = "Research Maintenance";
@@ -63352,12 +59240,10 @@
req_access_txt = 1
},
/turf/open/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cgq" = (
/turf/closed/wall/r_wall,
-/area/toxins/explab)
+/area/science/explab)
"cgr" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -63368,29 +59254,24 @@
req_access_txt = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cgs" = (
/turf/open/floor/plating{
icon_state = "platingdmg2"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cgt" = (
/obj/machinery/power/apc{
dir = 8;
name = "Incinerator APC";
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/structure/cable/yellow{
d2 = 4;
icon_state = "0-4"
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"cgu" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -63398,7 +59279,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"cgv" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -63410,23 +59291,22 @@
dir = 6
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"cgw" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 10
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"cgx" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"cgy" = (
/obj/machinery/telecomms/server/presets/service,
/turf/open/floor/circuit{
@@ -63436,13 +59316,13 @@
/area/tcommsat/server)
"cgz" = (
/turf/closed/wall/r_wall,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"cgA" = (
/obj/machinery/atmospherics/pipe/simple,
/obj/machinery/meter,
/obj/structure/grille,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"cgB" = (
/obj/machinery/atmospherics/pipe/simple,
/obj/machinery/meter{
@@ -63450,7 +59330,7 @@
},
/obj/structure/grille,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"cgC" = (
/obj/machinery/atmospherics/pipe/simple,
/obj/machinery/meter{
@@ -63458,7 +59338,7 @@
},
/obj/structure/grille,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"cgD" = (
/obj/structure/window/reinforced{
dir = 1
@@ -63467,7 +59347,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"cgE" = (
/obj/structure/window/reinforced{
dir = 1
@@ -63476,7 +59356,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"cgF" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -63504,9 +59384,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cgH" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -63518,9 +59396,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"cgI" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -63540,9 +59416,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cgJ" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -63556,9 +59430,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cgL" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -63581,9 +59453,7 @@
dir = 2
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cgM" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -63594,9 +59464,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cgN" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -63610,9 +59478,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cgO" = (
/obj/machinery/door/airlock/maintenance{
name = "Medbay Maintenance";
@@ -63627,9 +59493,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"cgP" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -63642,9 +59506,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 9
},
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"cgQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -63657,9 +59519,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"cgR" = (
/obj/structure/chair/office/light{
dir = 1
@@ -63676,9 +59536,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"cgS" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -63696,9 +59554,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"cgT" = (
/obj/machinery/firealarm{
dir = 4;
@@ -63709,15 +59565,12 @@
},
/obj/machinery/shower{
dir = 8;
- icon_state = "shower";
name = "emergency shower"
},
/turf/open/floor/plasteel/whiteblue/side{
dir = 5
},
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"cgU" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_medical{
@@ -63726,9 +59579,7 @@
req_access_txt = "5"
},
/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cgV" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -63739,9 +59590,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cgW" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -63751,9 +59600,7 @@
req_access_txt = "5"
},
/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
+/area/medical/storage)
"cgX" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -63768,17 +59615,13 @@
req_access_txt = "5"
},
/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cgY" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cgZ" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -63795,9 +59638,7 @@
req_access_txt = "5"
},
/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cha" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/firedoor,
@@ -63807,23 +59648,18 @@
req_access_txt = "5"
},
/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"chb" = (
/obj/machinery/chem_heater,
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/open/floor/plasteel/whiteyellow/side{
dir = 9
},
/area/medical/chemistry)
"chc" = (
-/obj/machinery/disposal/bin{
- pixel_x = 0
- },
+/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/turf/open/floor/plasteel/whiteyellow/side{
dir = 5
@@ -63897,7 +59733,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"chj" = (
/obj/structure/sink/kitchen{
desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
@@ -63907,23 +59743,22 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 9
},
-/area/toxins/lab)
+/area/science/lab)
"chk" = (
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/toxins/lab)
+/area/science/lab)
"chl" = (
/obj/structure/noticeboard{
desc = "A board for pinning important notices upon.";
name = "notice board";
- pixel_x = 0;
pixel_y = 31
},
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/toxins/lab)
+/area/science/lab)
"chm" = (
/obj/structure/chair/office/light{
dir = 1;
@@ -63933,13 +59768,12 @@
id = "research_shutters";
name = "research shutters control";
pixel_x = 28;
- pixel_y = 0;
req_access_txt = "7"
},
/turf/open/floor/plasteel/whitepurple/side{
dir = 5
},
-/area/toxins/lab)
+/area/science/lab)
"chn" = (
/obj/machinery/telecomms/broadcaster/preset_right,
/turf/open/floor/circuit{
@@ -63956,9 +59790,7 @@
/area/tcommsat/server)
"chp" = (
/turf/closed/wall/r_wall,
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"chq" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_security{
@@ -63966,9 +59798,7 @@
req_access_txt = "63"
},
/turf/open/floor/plasteel/red,
-/area/security/checkpoint/science{
- name = "Security Post - Research Division"
- })
+/area/security/checkpoint/science/research)
"chr" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -63982,9 +59812,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"chs" = (
/obj/item/weapon/paper,
/obj/structure/sign/map/left{
@@ -63993,17 +59821,14 @@
pixel_y = 32
},
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/item/weapon/storage/box/donkpockets,
/obj/structure/table/glass,
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cht" = (
/obj/structure/sign/map/right{
desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
@@ -64015,21 +59840,16 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"chu" = (
/obj/machinery/ai_status_display{
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/chair/stool,
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"chv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
req_access_txt = 1
@@ -64037,18 +59857,14 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"chw" = (
/obj/structure/sign/securearea,
/turf/closed/wall/r_wall,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"chx" = (
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"chy" = (
/obj/structure/sign/nosmoking_2{
pixel_y = 32
@@ -64062,22 +59878,20 @@
dir = 1
},
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"chz" = (
/obj/structure/window/reinforced{
dir = 1;
layer = 2.9
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"chA" = (
/obj/item/device/radio/intercom{
pixel_y = 25
},
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"chB" = (
/obj/machinery/space_heater,
/obj/effect/landmark/blobstart,
@@ -64085,9 +59899,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard)
"chC" = (
/obj/structure/closet/crate,
/obj/item/weapon/storage/belt/utility,
@@ -64134,17 +59946,16 @@
pixel_y = -29
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"chH" = (
/obj/structure/reagent_dispensers/watertank,
/obj/item/weapon/extinguisher,
/obj/machinery/light/small,
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -31
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"chI" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/components/binary/valve{
@@ -64152,10 +59963,9 @@
name = "output gas to space"
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"chJ" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -31
},
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
@@ -64163,24 +59973,23 @@
},
/obj/machinery/portable_atmospherics/canister,
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"chK" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 4
},
/obj/machinery/meter,
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"chL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"chM" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -64196,9 +60005,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"chN" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1;
@@ -64206,14 +60013,14 @@
id = "n2_in"
},
/turf/open/floor/engine/n2,
-/area/atmos)
+/area/engine/atmos)
"chO" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "n2_sensor"
},
/turf/open/floor/engine/n2,
-/area/atmos)
+/area/engine/atmos)
"chP" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -64227,7 +60034,7 @@
pump_direction = 0
},
/turf/open/floor/engine/n2,
-/area/atmos)
+/area/engine/atmos)
"chQ" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1;
@@ -64235,14 +60042,14 @@
id = "o2_in"
},
/turf/open/floor/engine/o2,
-/area/atmos)
+/area/engine/atmos)
"chR" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "o2_sensor"
},
/turf/open/floor/engine/o2,
-/area/atmos)
+/area/engine/atmos)
"chS" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -64256,7 +60063,7 @@
pump_direction = 0
},
/turf/open/floor/engine/o2,
-/area/atmos)
+/area/engine/atmos)
"chT" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1;
@@ -64264,14 +60071,14 @@
id = "air_in"
},
/turf/open/floor/engine/air,
-/area/atmos)
+/area/engine/atmos)
"chU" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "air_sensor"
},
/turf/open/floor/engine/air,
-/area/atmos)
+/area/engine/atmos)
"chV" = (
/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{
dir = 1;
@@ -64285,26 +60092,26 @@
pump_direction = 0
},
/turf/open/floor/engine/air,
-/area/atmos)
+/area/engine/atmos)
"chW" = (
/obj/structure/window/reinforced{
dir = 8
},
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"chX" = (
/obj/structure/window/reinforced{
dir = 4
},
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"chY" = (
/obj/structure/cable,
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/port)
+/area/solar/port/aft)
"chZ" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -64316,9 +60123,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cia" = (
/turf/closed/wall,
/area/medical/surgery)
@@ -64356,25 +60161,17 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 8
},
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"cif" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"cig" = (
/turf/open/floor/plasteel/white,
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"cih" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -64386,9 +60183,7 @@
icon_state = "1-4"
},
/turf/open/floor/plasteel/white,
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"cii" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -64401,9 +60196,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 4
},
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"cij" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -64415,9 +60208,7 @@
},
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/whiteblue,
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"cik" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -64433,9 +60224,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 9
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cil" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -64448,9 +60237,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cim" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -64463,9 +60250,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cin" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -64474,23 +60259,18 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cio" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/structure/sign/nosmoking_2{
- pixel_x = 0;
pixel_y = 28
},
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cip" = (
/obj/machinery/power/apc{
dir = 1;
@@ -64512,9 +60292,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ciq" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 2
@@ -64522,9 +60300,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cir" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -64533,16 +60309,13 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cis" = (
/obj/machinery/button/door{
desc = "A remote control switch for the medbay foyer.";
id = "MedbayFoyer";
name = "Medbay Exit Button";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = 26
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -64551,9 +60324,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cit" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -64571,9 +60342,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ciu" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -64587,9 +60356,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"civ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_medical{
@@ -64664,8 +60431,7 @@
/obj/structure/noticeboard{
desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests.";
name = "requests board";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/open/floor/plasteel/whiteyellow{
dir = 4
@@ -64675,27 +60441,26 @@
/obj/machinery/r_n_d/destructive_analyzer,
/obj/machinery/airalarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"ciC" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"ciD" = (
/obj/machinery/r_n_d/protolathe,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"ciE" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -64705,7 +60470,7 @@
dir = 8
},
/turf/open/floor/plasteel/white,
-/area/toxins/lab)
+/area/science/lab)
"ciF" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -64715,7 +60480,7 @@
on = 1
},
/turf/open/floor/plasteel/white,
-/area/toxins/lab)
+/area/science/lab)
"ciG" = (
/obj/machinery/disposal/bin{
pixel_x = 5
@@ -64724,27 +60489,23 @@
dir = 8
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/turf/open/floor/plasteel/whitepurple/side{
dir = 4
},
-/area/toxins/lab)
+/area/science/lab)
"ciH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/obj/machinery/shower{
- icon_state = "shower";
dir = 4
},
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ciI" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -64759,22 +60520,18 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ciJ" = (
/obj/machinery/power/apc{
cell_type = 10000;
dir = 1;
name = "Research Division APC";
- pixel_x = 0;
pixel_y = 25
},
/obj/structure/cable/yellow{
@@ -64793,21 +60550,15 @@
dir = 5
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ciK" = (
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ciL" = (
/obj/effect/landmark/revenantspawn,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"ciM" = (
/obj/effect/landmark/blobstart,
/obj/structure/cable/yellow{
@@ -64822,29 +60573,22 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"ciN" = (
/obj/structure/chair/stool,
/obj/machinery/newscaster{
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ciO" = (
/obj/structure/chair/stool,
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ciP" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -64853,9 +60597,7 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ciQ" = (
/obj/item/weapon/cigbutt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -64864,22 +60606,17 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ciR" = (
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/vending/cola/random,
/turf/open/floor/plasteel/white/side{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ciS" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -64891,32 +60628,31 @@
real_name = "Pugley IV"
},
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"ciT" = (
/obj/item/device/radio/beacon,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"ciU" = (
/obj/machinery/r_n_d/experimentor,
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"ciV" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"ciW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"ciX" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -64929,22 +60665,20 @@
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"ciY" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/general/visible,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"ciZ" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 2
},
/turf/closed/wall/r_wall,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"cja" = (
/obj/machinery/door/airlock/glass{
autoclose = 0;
@@ -64959,74 +60693,67 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/engine,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"cjb" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/closed/wall/r_wall,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"cjc" = (
/turf/open/floor/engine/n2,
-/area/atmos)
+/area/engine/atmos)
"cjd" = (
/obj/machinery/portable_atmospherics/canister/nitrogen,
/turf/open/floor/engine/n2,
-/area/atmos)
+/area/engine/atmos)
"cje" = (
/obj/machinery/camera{
c_tag = "Atmospherics Tank - N2";
dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
+ network = list("SS13")
},
/turf/open/floor/engine/n2,
-/area/atmos)
+/area/engine/atmos)
"cjf" = (
/turf/open/floor/engine/o2,
-/area/atmos)
+/area/engine/atmos)
"cjg" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/engine/o2,
-/area/atmos)
+/area/engine/atmos)
"cjh" = (
/obj/machinery/camera{
c_tag = "Atmospherics Tank - O2";
dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
+ network = list("SS13")
},
/turf/open/floor/engine/o2,
-/area/atmos)
+/area/engine/atmos)
"cji" = (
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/engine/air,
-/area/atmos)
+/area/engine/atmos)
"cjj" = (
/obj/machinery/portable_atmospherics/canister/air,
/turf/open/floor/engine/air,
-/area/atmos)
+/area/engine/atmos)
"cjk" = (
/obj/machinery/camera{
c_tag = "Atmospherics Tank - Air";
dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
+ network = list("SS13")
},
/turf/open/floor/engine/air,
-/area/atmos)
+/area/engine/atmos)
"cjl" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 2
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"cjm" = (
/obj/machinery/door/airlock/glass_atmos{
heat_proof = 1;
@@ -65034,23 +60761,21 @@
req_access_txt = "24"
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"cjn" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"cjo" = (
/obj/structure/girder/reinforced,
/turf/open/floor/plating/airless,
-/area/atmos)
+/area/engine/atmos)
"cjp" = (
/obj/machinery/vending/boozeomat,
/turf/open/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cjq" = (
/obj/structure/sink/kitchen{
desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
@@ -65060,9 +60785,7 @@
/turf/open/floor/wood{
icon_state = "wood-broken3"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cjr" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -65103,27 +60826,20 @@
dir = 1
},
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
/turf/open/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cjt" = (
/obj/structure/chair/stool,
/turf/open/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cjv" = (
/obj/machinery/computer/arcade,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cjw" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
@@ -65189,8 +60905,7 @@
frequency = 1485;
listening = 0;
name = "Station Intercom (Medbay)";
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
@@ -65203,9 +60918,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 10
},
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"cjF" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4;
@@ -65214,18 +60927,14 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"cjG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/obj/machinery/holopad,
/turf/open/floor/plasteel/white,
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"cjH" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 2
@@ -65233,9 +60942,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 2
},
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"cjI" = (
/obj/structure/bed/roller,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -65244,18 +60951,14 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 6
},
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"cjJ" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/open/floor/plasteel/whiteblue,
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"cjK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -65263,9 +60966,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cjL" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -65284,9 +60985,7 @@
req_access_txt = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cjM" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -65303,9 +61002,7 @@
icon_state = "1-8"
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cjN" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -65317,9 +61014,7 @@
initialize_directions = 11
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cjO" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -65330,9 +61025,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cjP" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -65348,9 +61041,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cjQ" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -65365,24 +61056,19 @@
on = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cjR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/obj/machinery/shower{
dir = 8;
- icon_state = "shower";
name = "emergency shower"
},
/turf/open/floor/plasteel/whiteyellow/corner{
dir = 2
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cjS" = (
/obj/item/stack/sheet/mineral/plasma{
layer = 2.9
@@ -65410,8 +61096,7 @@
"cjU" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -65467,11 +61152,11 @@
/obj/machinery/computer/rdconsole/core,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"cjY" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"cjZ" = (
/obj/machinery/r_n_d/circuit_imprinter{
pixel_y = 4
@@ -65479,14 +61164,14 @@
/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"cka" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel/white,
-/area/toxins/lab)
+/area/science/lab)
"ckb" = (
/obj/effect/landmark/start/scientist,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -65496,7 +61181,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/lab)
+/area/science/lab)
"ckc" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/manipulator,
@@ -65513,7 +61198,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"ckd" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
@@ -65521,7 +61206,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/toxins/lab)
+/area/science/lab)
"cke" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -65529,7 +61214,6 @@
},
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -65537,9 +61221,7 @@
dir = 8
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ckf" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -65551,15 +61233,11 @@
initialize_directions = 11
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ckg" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
@@ -65568,9 +61246,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ckh" = (
/obj/machinery/light{
dir = 4;
@@ -65579,21 +61255,16 @@
/obj/structure/closet/firecloset,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cki" = (
/obj/item/weapon/storage/toolbox/emergency,
/obj/item/clothing/mask/gas,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"ckj" = (
/obj/machinery/light/small,
/obj/item/weapon/stock_parts/cell/high{
@@ -65601,9 +61272,7 @@
maxcharge = 15000
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"ckk" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -65615,15 +61284,11 @@
/obj/item/device/flashlight,
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"ckl" = (
/obj/item/stack/packageWrap,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"ckm" = (
/obj/machinery/firealarm{
dir = 8;
@@ -65631,7 +61296,6 @@
},
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -65639,16 +61303,12 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ckn" = (
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cko" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
@@ -65656,20 +61316,15 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ckp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ckq" = (
/obj/machinery/vending/coffee,
/obj/item/device/radio/intercom{
@@ -65681,26 +61336,23 @@
/turf/open/floor/plasteel/white/side{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ckr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"cks" = (
/obj/machinery/button/door{
id = "telelab";
name = "Test Chamber Blast Doors";
- pixel_x = 0;
pixel_y = -25
},
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"ckt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"cku" = (
/obj/structure/closet,
/obj/item/weapon/storage/box/donkpockets,
@@ -65710,9 +61362,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"ckv" = (
/obj/structure/closet/crate,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -65723,17 +61373,13 @@
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"ckw" = (
/obj/structure/table,
/obj/effect/decal/cleanable/cobweb,
/obj/item/weapon/shard,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"ckx" = (
/obj/structure/table,
/obj/structure/sign/bluecross{
@@ -65741,7 +61387,7 @@
},
/obj/item/weapon/reagent_containers/glass/beaker/large,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/aft)
"cky" = (
/obj/structure/sink/kitchen{
desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
@@ -65751,12 +61397,12 @@
/obj/effect/decal/cleanable/blood/old,
/obj/effect/decal/cleanable/blood/gibs/old,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/aft)
"ckz" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/emergency,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/aft)
"ckA" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{
@@ -65776,7 +61422,7 @@
/obj/item/weapon/reagent_containers/syringe,
/obj/item/weapon/reagent_containers/syringe,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/aft)
"ckB" = (
/obj/item/weapon/reagent_containers/glass/bottle/toxin{
pixel_x = 4;
@@ -65788,7 +61434,7 @@
pixel_y = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/aft)
"ckC" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/components/binary/pump{
@@ -65813,8 +61459,7 @@
dir = 8
},
/obj/structure/sign/fire{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
@@ -65828,24 +61473,22 @@
pixel_y = 24
},
/turf/open/floor/engine,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"ckE" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/engine,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"ckF" = (
/obj/structure/sign/fire{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/light/small{
dir = 4
@@ -65855,22 +61498,22 @@
on = 1
},
/turf/open/floor/engine,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"ckG" = (
/obj/machinery/light/small,
/turf/open/floor/engine/n2,
-/area/atmos)
+/area/engine/atmos)
"ckH" = (
/obj/machinery/light/small,
/turf/open/floor/engine/o2,
-/area/atmos)
+/area/engine/atmos)
"ckI" = (
/turf/open/floor/engine/air,
-/area/atmos)
+/area/engine/atmos)
"ckJ" = (
/obj/machinery/light/small,
/turf/open/floor/engine/air,
-/area/atmos)
+/area/engine/atmos)
"ckK" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1
@@ -65879,7 +61522,7 @@
name = "vacuum floor";
initial_gas_mix = "o2=0.01;n2=0.01"
},
-/area/atmos)
+/area/engine/atmos)
"ckL" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -65889,18 +61532,16 @@
name = "vacuum floor";
initial_gas_mix = "o2=0.01;n2=0.01"
},
-/area/atmos)
+/area/engine/atmos)
"ckM" = (
/obj/structure/girder,
/turf/open/floor/plating/airless,
-/area/atmos)
+/area/engine/atmos)
"ckN" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"ckO" = (
/obj/structure/closet/secure_closet/bar{
pixel_x = -3;
@@ -65908,46 +61549,34 @@
req_access_txt = "25"
},
/turf/open/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"ckP" = (
/turf/open/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"ckQ" = (
/turf/open/floor/wood{
icon_state = "wood-broken7"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"ckR" = (
/obj/item/weapon/reagent_containers/glass/rag,
/obj/structure/table/wood,
/turf/open/floor/wood{
icon_state = "wood-broken4"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"ckS" = (
/turf/open/floor/wood{
icon_state = "wood-broken5"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"ckT" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"ckU" = (
/obj/structure/chair,
/obj/structure/sign/nosmoking_2{
@@ -65997,9 +61626,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/black,
/area/medical/surgery)
@@ -66027,9 +61654,7 @@
dir = 4
},
/turf/open/floor/plasteel/whiteblue,
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"cle" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
@@ -66038,9 +61663,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 10
},
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"clf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
req_access_txt = 1
@@ -66051,9 +61674,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 2
},
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"clg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -66061,9 +61682,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 6
},
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"clh" = (
/obj/machinery/sleeper{
icon_state = "sleeper-open";
@@ -66073,9 +61692,7 @@
dir = 4
},
/turf/open/floor/plasteel/whiteblue,
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"cli" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
@@ -66083,22 +61700,17 @@
dir = 9
},
/turf/open/floor/plating,
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"clj" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"clk" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -66110,23 +61722,17 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cll" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4;
initialize_directions = 11
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"clm" = (
/obj/item/device/radio/intercom{
broadcasting = 1;
@@ -66134,20 +61740,15 @@
frequency = 1485;
listening = 0;
name = "Station Intercom (Medbay)";
- pixel_x = 0;
pixel_y = -30
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cln" = (
/turf/open/floor/plasteel/whiteblue/corner{
dir = 2
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"clo" = (
/obj/structure/bed/roller,
/obj/machinery/iv_drip{
@@ -66156,17 +61757,13 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 2
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"clp" = (
/obj/machinery/light,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"clq" = (
/obj/machinery/airalarm{
dir = 1;
@@ -66175,16 +61772,12 @@
/turf/open/floor/plasteel/whiteyellow/corner{
dir = 2
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"clr" = (
/turf/open/floor/plasteel/whiteyellow/side{
dir = 6
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cls" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
@@ -66206,8 +61799,7 @@
pixel_x = 8
},
/obj/item/weapon/reagent_containers/glass/bottle/charcoal{
- pixel_x = -5;
- pixel_y = 0
+ pixel_x = -5
},
/obj/item/weapon/reagent_containers/syringe/epinephrine,
/turf/open/floor/plasteel/white,
@@ -66253,8 +61845,7 @@
},
/obj/item/device/radio/headset/headset_med,
/obj/structure/extinguisher_cabinet{
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/obj/machinery/firealarm{
dir = 1;
@@ -66269,8 +61860,7 @@
req_access_txt = 1
},
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/turf/open/floor/plasteel/neutral/corner{
dir = 8
@@ -66306,28 +61896,28 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"clA" = (
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/toxins/lab)
+/area/science/lab)
"clB" = (
/obj/structure/chair/stool,
/turf/open/floor/plasteel/white,
-/area/toxins/lab)
+/area/science/lab)
"clC" = (
/obj/structure/disposalpipe/segment,
/obj/structure/chair/stool,
/turf/open/floor/plasteel/white,
-/area/toxins/lab)
+/area/science/lab)
"clD" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/lab)
+/area/science/lab)
"clE" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/matter_bin,
@@ -66339,11 +61929,10 @@
icon_state = "tube1"
},
/obj/structure/sign/nosmoking_2{
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"clF" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
@@ -66356,9 +61945,7 @@
dir = 10
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"clG" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -66374,27 +61961,21 @@
dir = 2
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"clH" = (
/obj/machinery/shower{
- icon_state = "shower";
dir = 8
},
/obj/item/device/radio/intercom{
dir = 8;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = -28
},
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"clI" = (
/obj/machinery/firealarm{
dir = 4;
@@ -66403,9 +61984,7 @@
/obj/structure/closet/firecloset,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"clJ" = (
/obj/structure/plasticflaps{
opacity = 1
@@ -66417,14 +61996,10 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"clK" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"clL" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -66440,9 +62015,7 @@
dir = 2
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"clN" = (
/obj/machinery/microwave{
pixel_x = -3;
@@ -66452,9 +62025,7 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"clO" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -66466,9 +62037,7 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"clP" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -66480,17 +62049,14 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"clQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/noticeboard{
pixel_y = -32
@@ -66504,9 +62070,7 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"clR" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -66515,9 +62079,7 @@
/turf/open/floor/plasteel/white/side{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"clS" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
@@ -66525,7 +62087,7 @@
name = "HIGH VOLTAGE"
},
/turf/closed/wall/r_wall,
-/area/toxins/explab)
+/area/science/explab)
"clT" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -66535,7 +62097,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/toxins/explab)
+/area/science/explab)
"clU" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -66544,7 +62106,7 @@
name = "test chamber blast door"
},
/turf/open/floor/plating,
-/area/toxins/explab)
+/area/science/explab)
"clV" = (
/obj/machinery/door/poddoor/preopen{
id = "telelab";
@@ -66552,7 +62114,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"clW" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -66563,9 +62125,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"clX" = (
/obj/machinery/door/airlock/maintenance{
icon_state = "door_closed";
@@ -66578,9 +62138,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"clY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -66589,9 +62147,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"clZ" = (
/obj/effect/landmark/xeno_spawn,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -66600,26 +62156,20 @@
/obj/effect/decal/cleanable/blood/old,
/obj/effect/decal/cleanable/blood/gibs/old,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cma" = (
/obj/structure/rack,
/obj/item/clothing/suit/apron,
/obj/item/clothing/mask/surgical,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cmb" = (
/obj/machinery/chem_master/condimaster{
name = "CondiMaster Neo";
pixel_x = -4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cmc" = (
/obj/structure/lattice,
/obj/structure/disposalpipe/segment,
@@ -66640,11 +62190,10 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/open/floor/engine,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"cme" = (
/obj/item/stack/rods{
amount = 25
@@ -66653,10 +62202,10 @@
name = "vacuum floor";
initial_gas_mix = "o2=0.01;n2=0.01"
},
-/area/atmos)
+/area/engine/atmos)
"cmf" = (
/turf/open/floor/plating/airless,
-/area/atmos)
+/area/engine/atmos)
"cmg" = (
/obj/structure/table/wood,
/obj/item/weapon/reagent_containers/food/drinks/shaker,
@@ -66667,28 +62216,21 @@
},
/obj/item/weapon/reagent_containers/dropper,
/turf/open/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cmh" = (
/obj/item/weapon/reagent_containers/food/drinks/ale,
/obj/structure/table/wood,
/turf/open/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cmi" = (
/obj/structure/light_construct/small{
dir = 4
},
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/turf/open/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cmk" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
@@ -66722,9 +62264,7 @@
/obj/structure/window/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"cmp" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -66732,19 +62272,14 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/sleeper{
- name = "Sleepers"
- })
+/area/medical/sleeper)
"cmr" = (
/obj/machinery/door/firedoor,
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cms" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -66756,19 +62291,15 @@
},
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cmt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cmu" = (
/turf/closed/wall,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"cmv" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -66781,7 +62312,7 @@
name = "privacy shutter"
},
/turf/open/floor/plating,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"cmw" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -66798,7 +62329,7 @@
name = "privacy shutter"
},
/turf/open/floor/plating,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"cmx" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -66815,23 +62346,20 @@
name = "privacy shutter"
},
/turf/open/floor/plating,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"cmy" = (
/obj/machinery/door/airlock/maintenance{
name = "Medbay Maintenance";
req_access_txt = "5"
},
/turf/open/floor/plating,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cmz" = (
/obj/machinery/reagentgrinder,
/obj/machinery/requests_console{
department = "Chemistry";
departmentType = 2;
pixel_x = -30;
- pixel_y = 0;
receive_ore_updates = 1
},
/obj/structure/table/glass,
@@ -66906,7 +62434,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/toxins/lab)
+/area/science/lab)
"cmG" = (
/obj/item/weapon/paper_bin{
pixel_x = -2;
@@ -66914,7 +62442,7 @@
},
/obj/structure/table,
/turf/open/floor/plasteel/white,
-/area/toxins/lab)
+/area/science/lab)
"cmH" = (
/obj/structure/table,
/obj/structure/disposalpipe/segment,
@@ -66922,24 +62450,18 @@
pixel_x = 4;
pixel_y = -3
},
-/obj/item/weapon/disk/tech_disk{
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/item/weapon/disk/tech_disk{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/weapon/disk/tech_disk,
+/obj/item/weapon/disk/tech_disk,
/obj/item/weapon/disk/design_disk,
/obj/item/weapon/disk/design_disk,
/turf/open/floor/plasteel/white,
-/area/toxins/lab)
+/area/science/lab)
"cmI" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/lab)
+/area/science/lab)
"cmJ" = (
/obj/machinery/camera{
c_tag = "Research and Development";
@@ -66958,13 +62480,11 @@
},
/obj/item/weapon/stock_parts/scanning_module,
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"cmK" = (
/obj/structure/chair,
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"cmL" = (
/obj/machinery/door/window/westleft{
dir = 2;
@@ -66973,9 +62493,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/science/research)
"cmM" = (
/obj/machinery/door/airlock{
name = "Research Emergency Storage";
@@ -66990,9 +62508,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cmN" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
@@ -67008,30 +62524,24 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cmO" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/window/reinforced/tinted/fulltile,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cmP" = (
/turf/closed/wall,
-/area/toxins/explab)
+/area/science/explab)
"cmQ" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/machinery/requests_console{
department = "Science";
departmentType = 2;
name = "Science Requests Console";
- pixel_x = 0;
pixel_y = 30;
receive_ore_updates = 1
},
@@ -67041,7 +62551,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"cmR" = (
/obj/structure/table/reinforced,
/obj/item/weapon/paper_bin{
@@ -67053,29 +62563,27 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"cmS" = (
/obj/structure/table/reinforced,
/obj/item/weapon/hand_labeler,
/obj/item/stack/packageWrap,
/obj/item/stack/packageWrap,
/obj/item/stack/packageWrap,
-/obj/item/device/taperecorder{
- pixel_y = 0
- },
+/obj/item/device/taperecorder,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"cmT" = (
/obj/machinery/computer/rdconsole/experiment,
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"cmU" = (
/obj/structure/table/reinforced,
/obj/item/weapon/clipboard,
@@ -67084,12 +62592,11 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"cmV" = (
/obj/machinery/button/door{
id = "telelab";
name = "Test Chamber Blast Doors";
- pixel_x = 0;
pixel_y = 25
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -67115,7 +62622,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"cmW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
@@ -67124,14 +62631,12 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"cmX" = (
/obj/structure/window/reinforced,
/obj/machinery/holopad,
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"cmY" = (
/obj/structure/closet/crate{
icon_state = "crateopen";
@@ -67142,18 +62647,14 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cmZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cna" = (
/obj/structure/rack,
/obj/item/clothing/under/color/white,
@@ -67163,22 +62664,16 @@
/obj/item/clothing/mask/surgical,
/obj/item/clothing/mask/surgical,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cnb" = (
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cnc" = (
/obj/machinery/chem_heater,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cnd" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -67191,7 +62686,7 @@
pump_direction = 0
},
/turf/open/floor/engine/vacuum,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"cne" = (
/obj/machinery/igniter{
icon_state = "igniter0";
@@ -67202,18 +62697,16 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/open/floor/engine/vacuum,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"cnf" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
@@ -67222,56 +62715,45 @@
id = "air_in"
},
/turf/open/floor/engine/vacuum,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"cng" = (
/obj/machinery/door/poddoor{
id = "auxincineratorvent";
name = "Incineration Chamber Vent"
},
/turf/open/floor/engine/vacuum,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"cnh" = (
/obj/item/device/flashlight/lamp,
/obj/structure/table/wood,
/turf/open/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cni" = (
/obj/item/weapon/reagent_containers/food/drinks/bottle/tequila,
/obj/structure/table/wood,
/turf/open/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cnj" = (
/obj/item/weapon/reagent_containers/food/drinks/beer,
/obj/structure/table/wood,
/turf/open/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cnk" = (
/turf/open/floor/wood{
icon_state = "wood-broken"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cnl" = (
/obj/structure/mineral_door/wood{
name = "The Gobbetting Barmaid"
},
/turf/open/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cnm" = (
/obj/structure/table,
/obj/item/weapon/hemostat,
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/turf/open/floor/plasteel,
/area/medical/surgery)
@@ -67314,8 +62796,7 @@
"cnr" = (
/obj/machinery/computer/med_data,
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/turf/open/floor/plasteel/white/side{
dir = 2
@@ -67337,8 +62818,7 @@
frequency = 1485;
listening = 0;
name = "Station Intercom (Medbay)";
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/obj/structure/bedsheetbin{
pixel_x = 2
@@ -67440,24 +62920,18 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cnB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cnC" = (
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/table/glass,
@@ -67472,7 +62946,7 @@
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"cnD" = (
/obj/item/weapon/cartridge/medical{
pixel_x = -2;
@@ -67490,7 +62964,7 @@
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"cnE" = (
/obj/item/weapon/folder/blue,
/obj/structure/table/glass,
@@ -67498,7 +62972,7 @@
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"cnF" = (
/obj/item/weapon/folder/white{
pixel_x = 4;
@@ -67514,7 +62988,7 @@
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"cnG" = (
/obj/structure/closet/secure_closet/CMO,
/obj/item/weapon/storage/secure/safe{
@@ -67522,8 +62996,7 @@
pixel_y = 26
},
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/obj/item/weapon/screwdriver{
pixel_y = 6
@@ -67531,7 +63004,7 @@
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"cnH" = (
/obj/item/clothing/glasses/science{
pixel_x = 2;
@@ -67655,7 +63128,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/toxins/lab)
+/area/science/lab)
"cnS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -67663,14 +63136,14 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/toxins/lab)
+/area/science/lab)
"cnT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/structure/chair/stool,
/turf/open/floor/plasteel/white,
-/area/toxins/lab)
+/area/science/lab)
"cnU" = (
/obj/structure/disposalpipe/segment,
/obj/structure/chair/stool,
@@ -67678,18 +63151,17 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/lab)
+/area/science/lab)
"cnV" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/lab)
+/area/science/lab)
"cnW" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/console_screen,
@@ -67701,12 +63173,12 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"cnX" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
-/area/toxins/lab)
+/area/science/lab)
"cnY" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -67718,9 +63190,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 9
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cnZ" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -67739,9 +63209,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"coa" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -67753,9 +63221,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cob" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -67769,9 +63235,7 @@
network = list("SS13","RD")
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"coc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
@@ -67780,20 +63244,15 @@
dir = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cod" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 29
},
/turf/open/floor/plasteel/white/side{
dir = 10
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"coe" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -67805,16 +63264,12 @@
/turf/open/floor/plasteel/white/side{
dir = 2
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cof" = (
/turf/open/floor/plasteel/white/side{
dir = 6
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cog" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -67825,26 +63280,20 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"coh" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"coi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"coj" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-10";
@@ -67853,26 +63302,23 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 2
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cok" = (
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/toxins/explab)
+/area/science/explab)
"col" = (
/obj/structure/chair/office/light{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/explab)
+/area/science/explab)
"com" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder/white{
@@ -67891,7 +63337,7 @@
pixel_y = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/explab)
+/area/science/explab)
"con" = (
/obj/effect/landmark/start/scientist,
/obj/structure/chair/office/light{
@@ -67902,7 +63348,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/explab)
+/area/science/explab)
"coo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -67917,7 +63363,7 @@
pixel_x = 3
},
/turf/open/floor/plasteel/white,
-/area/toxins/explab)
+/area/science/explab)
"cop" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -67925,11 +63371,10 @@
},
/obj/machinery/holopad,
/turf/open/floor/plasteel/white,
-/area/toxins/explab)
+/area/science/explab)
"coq" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
@@ -67938,26 +63383,21 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"cor" = (
/obj/structure/girder,
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cos" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
- pixel_x = 0;
pixel_y = 6
},
/obj/item/weapon/pen,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cot" = (
/obj/structure/table,
/obj/item/weapon/folder/white{
@@ -67975,21 +63415,15 @@
pixel_y = -3
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cou" = (
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cov" = (
/obj/structure/bed,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cow" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -68012,9 +63446,7 @@
/turf/open/floor/wood{
icon_state = "wood-broken6"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"coy" = (
/obj/structure/table,
/obj/item/clothing/gloves/color/latex,
@@ -68022,7 +63454,6 @@
/obj/item/clothing/suit/apron/surgical,
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/open/floor/plasteel/white/side{
@@ -68045,8 +63476,7 @@
/obj/machinery/power/apc{
dir = 4;
name = "Surgery APC";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/structure/cable/yellow{
d2 = 2;
@@ -68074,9 +63504,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/white,
/area/medical/surgery)
@@ -68112,9 +63540,7 @@
"coI" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
@@ -68161,9 +63587,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"coO" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -68174,7 +63598,7 @@
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"coP" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -68183,7 +63607,7 @@
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"coQ" = (
/obj/structure/chair/office/light{
dir = 1
@@ -68192,7 +63616,7 @@
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"coR" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -68208,13 +63632,12 @@
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"coS" = (
/obj/machinery/power/apc{
dir = 4;
name = "CMO's Office APC";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/structure/cable/yellow{
d2 = 8;
@@ -68228,7 +63651,7 @@
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"coT" = (
/obj/structure/closet/wardrobe/chemistry_white{
pixel_x = -3
@@ -68236,7 +63659,6 @@
/obj/item/weapon/storage/backpack/satchel/chem,
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/structure/window/reinforced{
@@ -68347,7 +63769,7 @@
name = "research shutters"
},
/turf/open/floor/plating,
-/area/toxins/lab)
+/area/science/lab)
"cpd" = (
/obj/effect/landmark/start/scientist,
/obj/structure/cable/yellow{
@@ -68358,7 +63780,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/toxins/lab)
+/area/science/lab)
"cpe" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -68366,7 +63788,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
-/area/toxins/lab)
+/area/science/lab)
"cpf" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -68378,7 +63800,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/white,
-/area/toxins/lab)
+/area/science/lab)
"cpg" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -68389,7 +63811,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/lab)
+/area/science/lab)
"cph" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -68403,7 +63825,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 4
},
-/area/toxins/lab)
+/area/science/lab)
"cpj" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -68413,9 +63835,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cpk" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -68431,9 +63851,7 @@
icon_state = "1-8"
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cpl" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -68445,9 +63863,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cpm" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -68463,9 +63879,7 @@
dir = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cpn" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -68477,9 +63891,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cpo" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -68495,9 +63907,7 @@
icon_state = "2-8"
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cpp" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -68508,9 +63918,7 @@
dir = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cpq" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -68530,9 +63938,7 @@
dir = 2
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cpr" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -68546,9 +63952,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cps" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -68563,9 +63967,7 @@
},
/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cpt" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -68581,9 +63983,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cpu" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -68597,14 +63997,11 @@
dir = 2
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cpv" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -68618,9 +64015,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cpw" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -68642,9 +64037,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cpx" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
@@ -68665,7 +64058,7 @@
/turf/open/floor/plasteel/whitepurple{
dir = 4
},
-/area/toxins/explab)
+/area/science/explab)
"cpy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -68682,7 +64075,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/toxins/explab)
+/area/science/explab)
"cpz" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
@@ -68698,11 +64091,10 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
-/area/toxins/explab)
+/area/science/explab)
"cpA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/structure/cable/yellow{
d1 = 4;
@@ -68710,7 +64102,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
-/area/toxins/explab)
+/area/science/explab)
"cpB" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -68718,7 +64110,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
-/area/toxins/explab)
+/area/science/explab)
"cpC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
@@ -68729,7 +64121,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
-/area/toxins/explab)
+/area/science/explab)
"cpD" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4;
@@ -68741,7 +64133,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
-/area/toxins/explab)
+/area/science/explab)
"cpE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -68755,7 +64147,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"cpF" = (
/obj/machinery/door/airlock/maintenance{
name = "Experimentation Lab Maintenance";
@@ -68770,7 +64162,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/toxins/explab)
+/area/science/explab)
"cpG" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -68789,54 +64181,39 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cpH" = (
/obj/structure/bed/roller,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cpI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cpJ" = (
/obj/structure/barricade/wooden,
/obj/structure/girder,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cpK" = (
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cpL" = (
/obj/effect/decal/cleanable/blood/gibs/limb,
/obj/structure/rack,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/weapon/storage/firstaid/regular,
/obj/item/stack/medical/bruise_pack,
/obj/item/stack/medical/bruise_pack,
/obj/item/stack/medical/ointment,
/obj/item/clothing/glasses/hud/health,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cpM" = (
/obj/structure/lattice,
/obj/structure/disposalpipe/segment,
@@ -68850,16 +64227,14 @@
dir = 8
},
/turf/open/floor/plating/airless,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"cpO" = (
/obj/structure/window/reinforced{
dir = 8
},
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/black,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/aisat)
"cpP" = (
/obj/structure/lattice/catwalk,
/obj/item/weapon/wrench,
@@ -68870,9 +64245,7 @@
/turf/open/floor/wood{
icon_state = "wood-broken7"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cpR" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
@@ -68887,8 +64260,8 @@
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
locked = 0;
+ name = "Engine Air Alarm";
pixel_x = 24;
req_access = null;
req_one_access_txt = "24;10"
@@ -68909,9 +64282,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cpT" = (
/obj/machinery/door/airlock/maintenance{
name = "Surgery Maintenance";
@@ -69088,9 +64459,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cqj" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -69106,9 +64475,7 @@
icon_state = "2-8"
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cqk" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -69124,7 +64491,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"cql" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
@@ -69142,7 +64509,7 @@
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"cqm" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -69154,7 +64521,7 @@
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"cqn" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -69165,7 +64532,7 @@
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"cqo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -69181,7 +64548,7 @@
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"cqp" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -69194,7 +64561,7 @@
req_access_txt = "40"
},
/turf/open/floor/plating,
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"cqq" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -69207,15 +64574,12 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cqr" = (
/obj/machinery/power/apc{
dir = 8;
name = "Chemistry APC";
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/structure/closet/secure_closet/chemical{
pixel_x = -3
@@ -69258,7 +64622,6 @@
desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests.";
dir = 1;
name = "requests board";
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/button/door{
@@ -69288,7 +64651,7 @@
name = "research shutters"
},
/turf/open/floor/plating,
-/area/toxins/lab)
+/area/science/lab)
"cqx" = (
/obj/machinery/cell_charger,
/obj/item/weapon/stock_parts/cell/high{
@@ -69298,7 +64661,6 @@
/obj/machinery/power/apc{
dir = 2;
name = "Research Lab APC";
- pixel_x = 0;
pixel_y = -26
},
/obj/structure/cable/yellow,
@@ -69314,7 +64676,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"cqy" = (
/obj/item/weapon/storage/toolbox/mechanical{
pixel_x = 2;
@@ -69335,7 +64697,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"cqz" = (
/obj/item/stack/packageWrap,
/obj/item/stack/packageWrap,
@@ -69344,7 +64706,6 @@
department = "Science";
departmentType = 2;
name = "Science Requests Console";
- pixel_x = 0;
pixel_y = -30;
receive_ore_updates = 1
},
@@ -69353,11 +64714,10 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"cqA" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/machinery/door/window/eastleft{
dir = 1;
@@ -69369,14 +64729,14 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"cqB" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"cqC" = (
/obj/machinery/airalarm{
dir = 1;
@@ -69384,32 +64744,25 @@
},
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cqD" = (
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cqE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cqF" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -69421,9 +64774,7 @@
on = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cqG" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -69434,9 +64785,7 @@
initialize_directions = 11
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cqH" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -69450,9 +64799,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cqI" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -69462,9 +64809,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cqJ" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -69474,9 +64819,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cqK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -69487,9 +64830,7 @@
network = list("SS13","RD")
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cqL" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -69497,9 +64838,7 @@
initialize_directions = 11
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cqM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -69509,9 +64848,7 @@
pixel_y = -24
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cqN" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 2;
@@ -69520,9 +64857,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 2
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cqO" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -69537,19 +64872,16 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 6
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cqP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
-/area/toxins/explab)
+/area/science/explab)
"cqQ" = (
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -69557,7 +64889,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/toxins/explab)
+/area/science/explab)
"cqR" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -69573,7 +64905,7 @@
},
/obj/structure/cable/yellow,
/turf/open/floor/plasteel/white,
-/area/toxins/explab)
+/area/science/explab)
"cqS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -69589,38 +64921,36 @@
},
/obj/machinery/light,
/turf/open/floor/plasteel/white,
-/area/toxins/explab)
+/area/science/explab)
"cqT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/explab)
+/area/science/explab)
"cqU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/plasteel/white,
-/area/toxins/explab)
+/area/science/explab)
"cqV" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/white,
-/area/toxins/explab)
+/area/science/explab)
"cqW" = (
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"cqX" = (
/obj/structure/bed/roller,
/obj/effect/decal/cleanable/blood/old,
@@ -69629,17 +64959,13 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cqY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cqZ" = (
/obj/structure/barricade/wooden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -69647,9 +64973,7 @@
},
/obj/structure/girder,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cra" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -69657,17 +64981,13 @@
},
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"crb" = (
/obj/structure/bed,
/obj/effect/decal/cleanable/blood/old,
/obj/effect/decal/cleanable/blood/gibs/old,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"crc" = (
/obj/structure/lattice,
/obj/structure/disposalpipe/segment{
@@ -69687,49 +65007,38 @@
/turf/open/space,
/area/space)
"cre" = (
-/obj/structure/sign/fire{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/structure/sign/fire,
/turf/closed/wall/r_wall,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"crf" = (
/obj/machinery/door/poddoor{
id = "turbinevent";
name = "Turbine Vent"
},
/turf/open/floor/engine/vacuum,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"crg" = (
/obj/item/toy/cards/deck,
/obj/structure/table/wood/poker,
/turf/open/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"crh" = (
/turf/open/floor/wood{
icon_state = "wood-broken4"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"crj" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
/obj/machinery/light_switch{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/turf/open/floor/plasteel/white/side{
dir = 4
@@ -69781,15 +65090,13 @@
/obj/structure/bed,
/obj/item/weapon/bedsheet/medical,
/obj/machinery/light_switch{
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/turf/open/floor/plasteel/white,
/area/medical/surgery)
"crr" = (
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -69832,7 +65139,6 @@
frequency = 1485;
listening = 0;
name = "Station Intercom (Medbay)";
- pixel_x = 0;
pixel_y = -30
},
/obj/machinery/light,
@@ -69859,7 +65165,6 @@
},
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/machinery/light_switch{
- pixel_x = 0;
pixel_y = -24
},
/obj/effect/turf_decal/stripes/line{
@@ -69871,9 +65176,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"crx" = (
/obj/machinery/light{
dir = 4;
@@ -69883,14 +65186,11 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 2
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cry" = (
/obj/machinery/airalarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
@@ -69903,7 +65203,7 @@
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"crz" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -69916,7 +65216,7 @@
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"crA" = (
/obj/structure/table/glass,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -69926,13 +65226,11 @@
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"crB" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -69942,7 +65240,7 @@
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"crC" = (
/obj/machinery/light{
dir = 4;
@@ -69963,16 +65261,14 @@
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"crD" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
req_access_txt = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"crE" = (
/obj/machinery/door/airlock/maintenance{
name = "Chemistry Lab Maintenance";
@@ -70017,8 +65313,7 @@
cell_type = 5000;
dir = 4;
name = "Aft Hallway APC";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/yellow{
@@ -70041,16 +65336,14 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"crJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
req_access_txt = 1
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"crK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
@@ -70058,9 +65351,7 @@
/turf/open/floor/plasteel/white/side{
dir = 5
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"crL" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -70069,17 +65360,13 @@
},
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"crM" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"crN" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -70097,7 +65384,7 @@
name = "privacy shutter"
},
/turf/open/floor/plating,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"crO" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -70117,7 +65404,7 @@
name = "privacy shutter"
},
/turf/open/floor/plating,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"crP" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -70133,17 +65420,17 @@
name = "privacy shutter"
},
/turf/open/floor/plating,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"crQ" = (
/turf/closed/wall,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"crR" = (
/turf/closed/wall/r_wall,
-/area/toxins/storage)
+/area/science/storage)
"crS" = (
/obj/structure/sign/biohazard,
/turf/closed/wall/r_wall,
-/area/toxins/storage)
+/area/science/storage)
"crT" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -70163,21 +65450,21 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"crU" = (
/obj/structure/closet/emcloset,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"crV" = (
/obj/structure/closet/radiation,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"crW" = (
/obj/structure/closet/l3closet/scientist{
pixel_x = -2
@@ -70186,14 +65473,14 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"crX" = (
/obj/structure/closet/wardrobe/science_white,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"crY" = (
/obj/structure/rack,
/obj/item/weapon/reagent_containers/blood/random,
@@ -70201,9 +65488,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"crZ" = (
/obj/structure/table,
/obj/structure/bedsheetbin{
@@ -70211,41 +65496,31 @@
},
/obj/item/clothing/mask/muzzle,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"csa" = (
/obj/structure/table,
/obj/item/weapon/restraints/handcuffs/cable/white,
/obj/item/weapon/gun/syringe,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"csb" = (
/obj/structure/rack,
/obj/item/weapon/hatchet,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"csc" = (
/obj/machinery/iv_drip{
density = 0
},
/obj/item/roller,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"csd" = (
/obj/structure/rack,
/obj/item/weapon/tank/internals/anesthetic,
/obj/item/clothing/mask/gas,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cse" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -70258,9 +65533,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"csf" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -70269,9 +65542,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"csg" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -70286,17 +65557,13 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"csh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"csi" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -70308,9 +65575,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"csj" = (
/obj/structure/closet/secure_closet/medical2,
/obj/structure/sign/nosmoking_2{
@@ -70321,7 +65586,6 @@
"csk" = (
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/open/floor/plasteel/white/side{
@@ -70353,7 +65617,6 @@
frequency = 1485;
listening = 0;
name = "Station Intercom (Medbay)";
- pixel_x = 0;
pixel_y = -30
},
/obj/structure/closet/crate/freezer/blood,
@@ -70366,7 +65629,6 @@
},
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/structure/sign/nosmoking_2{
@@ -70396,7 +65658,6 @@
},
/obj/item/weapon/bedsheet/medical,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/camera{
@@ -70431,9 +65692,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"csu" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -70449,9 +65708,7 @@
dir = 8
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"csv" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -70469,9 +65726,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"csw" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -70493,7 +65748,7 @@
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"csx" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -70516,7 +65771,7 @@
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"csy" = (
/obj/structure/chair{
dir = 4
@@ -70531,13 +65786,12 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"csz" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -70551,7 +65805,7 @@
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"csA" = (
/obj/structure/chair/office/light{
dir = 8
@@ -70561,7 +65815,6 @@
department = "Chief Medical Officer's Desk";
departmentType = 5;
name = "Chief Medical Officer RC";
- pixel_x = 0;
pixel_y = -32
},
/obj/effect/landmark/start/chief_medical_officer,
@@ -70573,15 +65826,14 @@
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"csB" = (
/obj/machinery/computer/security/telescreen{
desc = "Used for monitoring medbay to ensure patient safety.";
dir = 8;
name = "Medbay Monitor";
network = list("Medbay");
- pixel_x = 29;
- pixel_y = 0
+ pixel_x = 29
},
/obj/item/device/radio/intercom{
dir = 1;
@@ -70592,7 +65844,7 @@
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"csC" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -70603,9 +65855,7 @@
},
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"csD" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -70614,9 +65864,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"csE" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -70627,9 +65875,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"csF" = (
/obj/structure/disposalpipe/sortjunction{
dir = 8;
@@ -70637,16 +65883,13 @@
sortType = 11
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"csH" = (
/obj/structure/disposalpipe/sortjunction{
dir = 8;
@@ -70657,9 +65900,7 @@
dir = 2
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"csI" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -70669,9 +65910,7 @@
req_one_access_txt = "12;5;9"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"csJ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -70722,9 +65961,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"csN" = (
/obj/structure/disposalpipe/sortjunction{
dir = 8;
@@ -70738,9 +65975,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"csO" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -70752,9 +65987,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"csP" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -70767,9 +66000,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"csQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -70781,9 +66012,7 @@
dir = 9
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"csR" = (
/obj/structure/disposalpipe/sortjunction{
dir = 8;
@@ -70797,9 +66026,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"csS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -70811,9 +66038,7 @@
dir = 2
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"csT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -70825,9 +66050,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"csU" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -70841,9 +66064,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"csV" = (
/obj/structure/disposalpipe/junction{
dir = 8;
@@ -70855,9 +66076,7 @@
/turf/open/floor/plasteel/white/side{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"csW" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -70870,9 +66089,7 @@
sortType = 13
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"csX" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -70880,9 +66097,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"csY" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -70896,20 +66111,19 @@
name = "privacy shutter"
},
/turf/open/floor/plating,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"csZ" = (
/obj/machinery/computer/security/telescreen{
desc = "Used for watching the RD's goons from the safety of his office.";
name = "Research Monitor";
network = list("RD");
- pixel_x = 0;
pixel_y = 2
},
/obj/structure/table/reinforced,
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"ctb" = (
/obj/structure/window/reinforced{
dir = 4
@@ -70919,7 +66133,6 @@
department = "Research Director's Desk";
departmentType = 5;
name = "Research Director RC";
- pixel_x = 0;
pixel_y = 30;
receive_ore_updates = 1
},
@@ -70927,12 +66140,11 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"ctc" = (
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/landmark/xmastree/rdrod,
@@ -70940,7 +66152,7 @@
dir = 8
},
/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"ctd" = (
/obj/structure/displaycase/labcage,
/obj/machinery/light/small{
@@ -70950,11 +66162,10 @@
pixel_y = 32
},
/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"cte" = (
/obj/item/weapon/storage/secure/safe{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/ai_status_display{
pixel_y = 32
@@ -70963,18 +66174,17 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"ctf" = (
/obj/machinery/portable_atmospherics/scrubber/huge,
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
-/area/toxins/storage)
+/area/science/storage)
"ctg" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -70987,7 +66197,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"cth" = (
/obj/machinery/light/small{
dir = 1
@@ -70999,14 +66209,13 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"cti" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/machinery/power/apc{
cell_type = 5000;
dir = 1;
name = "Toxins Storage APC";
- pixel_x = 0;
pixel_y = 25
},
/obj/structure/cable/yellow{
@@ -71015,14 +66224,14 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"ctj" = (
/obj/machinery/portable_atmospherics/scrubber/huge,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
-/area/toxins/storage)
+/area/science/storage)
"ctk" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -71035,9 +66244,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg2"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"ctl" = (
/obj/machinery/camera{
active_power_usage = 0;
@@ -71058,18 +66265,14 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cto" = (
/obj/machinery/vending/assist,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"ctp" = (
/obj/machinery/door/airlock/maintenance{
name = "Medbay Maintenance";
@@ -71082,23 +66285,21 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ctr" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/medical,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
},
/turf/open/floor/plasteel/whiteblue/side{
dir = 8
},
-/area/medical/patients_rooms{
- name = "Patient Room A"
- })
+/area/medical/patients_rooms/room_a)
"cts" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -71110,13 +66311,10 @@
icon_state = "2-4"
},
/obj/machinery/vending/wallmed{
- pixel_x = 0;
pixel_y = 28
},
/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms{
- name = "Patient Room A"
- })
+/area/medical/patients_rooms/room_a)
"ctt" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -71127,15 +66325,12 @@
dir = 10
},
/obj/machinery/light_switch{
- pixel_x = 0;
pixel_y = 24
},
/turf/open/floor/plasteel/whiteblue/side{
dir = 4
},
-/area/medical/patients_rooms{
- name = "Patient Room A"
- })
+/area/medical/patients_rooms/room_a)
"ctu" = (
/obj/machinery/door/airlock/medical{
name = "Patient Room A";
@@ -71147,9 +66342,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms{
- name = "Patient Room A"
- })
+/area/medical/patients_rooms/room_a)
"ctv" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -71165,41 +66358,35 @@
icon_state = "1-8"
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ctw" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"ctx" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
},
/obj/machinery/light_switch{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -30
},
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"cty" = (
/obj/machinery/suit_storage_unit/cmo,
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"ctz" = (
/obj/structure/table/glass,
/obj/item/weapon/pen,
@@ -71211,7 +66398,7 @@
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/medical/cmo)
+/area/crew_quarters/heads/cmo)
"ctA" = (
/turf/closed/wall/r_wall,
/area/medical/genetics)
@@ -71228,9 +66415,7 @@
/turf/open/floor/plating,
/area/medical/genetics)
"ctD" = (
-/obj/structure/sign/directions/evac{
- pixel_y = 0
- },
+/obj/structure/sign/directions/evac,
/turf/closed/wall,
/area/medical/genetics)
"ctE" = (
@@ -71259,21 +66444,15 @@
},
/area/hallway/primary/aft)
"ctH" = (
-/obj/structure/sign/directions/evac{
- pixel_y = 0
- },
+/obj/structure/sign/directions/evac,
/turf/closed/wall,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ctJ" = (
/obj/item/weapon/storage/toolbox/emergency,
/obj/structure/closet/firecloset,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ctK" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -71288,14 +66467,10 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ctL" = (
/turf/closed/wall/r_wall,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"ctM" = (
/obj/machinery/door/airlock/maintenance{
name = "Research Testing Range Maintenance";
@@ -71303,9 +66478,7 @@
req_one_access_txt = "7;47;29"
},
/turf/open/floor/plating,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"ctN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/light{
@@ -71315,9 +66488,7 @@
/turf/open/floor/plasteel/white/side{
dir = 6
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ctO" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -71326,15 +66497,11 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ctP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"ctQ" = (
/obj/machinery/button/door{
id = "xeno_blastdoor";
@@ -71367,7 +66534,7 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"ctR" = (
/obj/structure/chair/office/light{
dir = 8
@@ -71377,7 +66544,7 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"ctS" = (
/obj/machinery/computer/robotics,
/obj/structure/window/reinforced{
@@ -71386,35 +66553,34 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"ctT" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"ctU" = (
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"ctV" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"ctW" = (
/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"ctX" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -71432,7 +66598,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"ctY" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -71451,7 +66617,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"ctZ" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/structure/cable/yellow{
@@ -71461,17 +66627,16 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"cua" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"cub" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -71482,9 +66647,7 @@
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cuc" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -71495,17 +66658,13 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cud" = (
/obj/structure/closet,
/obj/item/weapon/storage/toolbox/emergency,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cue" = (
/obj/structure/cable{
icon_state = "0-2";
@@ -71516,7 +66675,7 @@
name = "Aft-Port Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/port)
+/area/solar/port/aft)
"cuf" = (
/obj/structure/closet,
/obj/item/weapon/extinguisher,
@@ -71524,9 +66683,7 @@
/obj/item/device/flashlight,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cug" = (
/obj/structure/closet,
/obj/item/weapon/reagent_containers/glass/beaker{
@@ -71536,9 +66693,7 @@
/obj/item/weapon/reagent_containers/dropper,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cuh" = (
/obj/structure/closet/crate,
/obj/item/stack/cable_coil,
@@ -71549,9 +66704,7 @@
name = "2maintenance loot spawner"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cui" = (
/obj/structure/closet/crate,
/obj/item/weapon/coin/silver,
@@ -71562,15 +66715,20 @@
name = "2maintenance loot spawner"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cuj" = (
/obj/effect/decal/cleanable/cobweb,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Port Quarter Maintenance APC";
+ pixel_y = 24
+ },
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cuk" = (
/obj/structure/table,
/obj/item/weapon/folder/white{
@@ -71584,8 +66742,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "Patient Room A APC";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/structure/cable/yellow{
d2 = 4;
@@ -71595,9 +66752,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 8
},
-/area/medical/patients_rooms{
- name = "Patient Room A"
- })
+/area/medical/patients_rooms/room_a)
"cul" = (
/obj/structure/chair/office/light{
dir = 8
@@ -71608,9 +66763,7 @@
icon_state = "1-8"
},
/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms{
- name = "Patient Room A"
- })
+/area/medical/patients_rooms/room_a)
"cum" = (
/obj/structure/closet/secure_closet/personal/patient,
/obj/machinery/button/door{
@@ -71624,9 +66777,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 4
},
-/area/medical/patients_rooms{
- name = "Patient Room A"
- })
+/area/medical/patients_rooms/room_a)
"cun" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
@@ -71638,9 +66789,7 @@
name = "privacy shutters"
},
/turf/open/floor/plating,
-/area/medical/patients_rooms{
- name = "Patient Room A"
- })
+/area/medical/patients_rooms/room_a)
"cuo" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
@@ -71648,9 +66797,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cup" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
@@ -71661,24 +66808,19 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cuq" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cur" = (
/obj/item/weapon/storage/box/rxglasses{
pixel_x = 3;
@@ -71709,7 +66851,6 @@
department = "Genetics";
departmentType = 0;
name = "Genetics Requests Console";
- pixel_x = 0;
pixel_y = 30
},
/obj/machinery/light{
@@ -71825,9 +66966,7 @@
/turf/open/floor/plating{
icon_plating = "warnplate"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cuC" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
@@ -71836,24 +66975,18 @@
/obj/effect/spawner/lootdrop/maintenance,
/obj/item/weapon/wrench,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cuD" = (
/obj/structure/reagent_dispensers/watertank,
/obj/item/weapon/storage/box/lights/mixed,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cuE" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cuF" = (
/obj/machinery/light/small{
dir = 1
@@ -71862,17 +66995,13 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"cuG" = (
/turf/open/floor/engine{
dir = 9;
icon_state = "floor"
},
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"cuH" = (
/obj/machinery/light/small{
dir = 1
@@ -71881,9 +67010,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"cuI" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
@@ -71891,9 +67018,7 @@
/turf/open/floor/plasteel/white/side{
dir = 5
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cuJ" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -71906,17 +67031,13 @@
on = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cuK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 2
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cuL" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -71926,19 +67047,19 @@
name = "privacy shutter"
},
/turf/open/floor/plating,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"cuM" = (
/obj/machinery/computer/card/minor/rd,
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"cuN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"cuO" = (
/obj/machinery/computer/mecha,
/obj/structure/window/reinforced{
@@ -71947,7 +67068,7 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"cuP" = (
/obj/structure/table,
/obj/item/device/aicard,
@@ -71958,12 +67079,12 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"cuQ" = (
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"cuR" = (
/obj/structure/table,
/obj/item/device/taperecorder{
@@ -71980,7 +67101,7 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"cuS" = (
/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
/obj/machinery/light/small{
@@ -71988,13 +67109,13 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"cuT" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"cuU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
@@ -72002,14 +67123,14 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"cuV" = (
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
-/area/toxins/storage)
+/area/science/storage)
"cuW" = (
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/machinery/light/small{
@@ -72024,7 +67145,7 @@
/turf/open/floor/plasteel{
name = "floor"
},
-/area/toxins/storage)
+/area/science/storage)
"cuX" = (
/obj/effect/landmark/xeno_spawn,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -72032,9 +67153,7 @@
on = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cuY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -72044,9 +67163,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cuZ" = (
/obj/machinery/door/airlock/maintenance{
name = "Storage Room";
@@ -72057,9 +67174,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cva" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -72070,9 +67185,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cvb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -72081,9 +67194,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cvc" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -72093,9 +67204,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cvd" = (
/obj/structure/cable{
d1 = 2;
@@ -72109,7 +67218,7 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/port)
+/area/solar/port/aft)
"cve" = (
/obj/structure/cable{
d1 = 2;
@@ -72124,12 +67233,11 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/port)
+/area/solar/port/aft)
"cvf" = (
/obj/structure/cable{
d2 = 8;
@@ -72137,7 +67245,7 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/port)
+/area/solar/port/aft)
"cvg" = (
/obj/structure/cable{
icon_state = "0-4";
@@ -72145,7 +67253,7 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/port)
+/area/solar/port/aft)
"cvh" = (
/obj/structure/cable{
d1 = 1;
@@ -72160,12 +67268,11 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/port)
+/area/solar/port/aft)
"cvi" = (
/obj/structure/cable{
d1 = 1;
@@ -72179,7 +67286,7 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/port)
+/area/solar/port/aft)
"cvj" = (
/obj/structure/closet/emcloset,
/obj/structure/sign/securearea{
@@ -72187,13 +67294,10 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cvk" = (
/obj/structure/closet/crate,
/obj/item/weapon/crowbar/red,
@@ -72204,9 +67308,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cvl" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -72226,9 +67328,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cvm" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -72243,28 +67343,20 @@
dir = 10
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cvn" = (
/obj/structure/chair{
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cvo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/medical/patients_rooms{
- name = "Patient Room A"
- })
+/area/medical/patients_rooms/room_a)
"cvp" = (
/turf/closed/wall,
-/area/medical/patients_rooms{
- name = "Patient Room A"
- })
+/area/medical/patients_rooms/room_a)
"cvq" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -72274,9 +67366,7 @@
pixel_x = -32
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cvr" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -72285,23 +67375,18 @@
},
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cvs" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"cvt" = (
/turf/closed/wall,
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"cvu" = (
/obj/machinery/shower{
- icon_state = "shower";
dir = 4
},
/obj/machinery/door/window/southleft{
@@ -72312,7 +67397,7 @@
pixel_x = -28
},
/turf/open/floor/plasteel/vault,
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"cvv" = (
/obj/machinery/door/window/southleft{
base_state = "right";
@@ -72326,7 +67411,7 @@
pixel_y = 28
},
/turf/open/floor/plasteel/vault,
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"cvw" = (
/obj/machinery/clonepod{
pixel_y = 2
@@ -72339,7 +67424,7 @@
},
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/vault,
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"cvx" = (
/obj/machinery/computer/scan_consolenew,
/obj/machinery/camera{
@@ -72435,8 +67520,7 @@
"cvG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/turf/open/floor/plasteel/neutral/corner{
dir = 2
@@ -72444,7 +67528,7 @@
/area/hallway/primary/aft)
"cvH" = (
/turf/closed/wall,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"cvI" = (
/obj/machinery/door/airlock/maintenance{
name = "Mech Bay Maintenance";
@@ -72452,19 +67536,16 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"cvJ" = (
/obj/structure/sign/nosmoking_2{
- pixel_x = -29;
- pixel_y = 0
+ pixel_x = -29
},
/turf/open/floor/engine{
dir = 9;
icon_state = "floor"
},
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"cvK" = (
/obj/machinery/magnetic_module,
/obj/effect/landmark/blobstart,
@@ -72475,9 +67556,7 @@
/turf/open/floor/plasteel{
dir = 9
},
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"cvL" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -72486,17 +67565,13 @@
name = "blast door"
},
/turf/open/floor/plating,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"cvM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white/side{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cvN" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -72513,9 +67588,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cvO" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -72532,9 +67605,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cvP" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -72556,7 +67627,7 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"cvQ" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -72572,7 +67643,7 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"cvR" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -72587,7 +67658,7 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"cvS" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -72598,12 +67669,11 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"cvT" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -72612,22 +67682,21 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"cvU" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"cvV" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"cvW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
@@ -72636,14 +67705,14 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"cvX" = (
/obj/machinery/portable_atmospherics/canister/toxins,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
-/area/toxins/storage)
+/area/science/storage)
"cvY" = (
/obj/machinery/portable_atmospherics/canister/toxins,
/obj/item/device/radio/intercom{
@@ -72656,22 +67725,18 @@
/turf/open/floor/plasteel{
name = "floor"
},
-/area/toxins/storage)
+/area/science/storage)
"cvZ" = (
/obj/structure/closet/crate,
/obj/item/device/multitool,
/obj/item/clothing/gloves/color/fyellow,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cwa" = (
/obj/structure/rack,
/obj/item/hand_labeler_refill,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cwb" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -72684,24 +67749,18 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cwc" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cwd" = (
/obj/structure/closet/crate,
/obj/item/weapon/coin/silver,
/obj/item/device/flashlight/seclite,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cwe" = (
/obj/structure/cable,
/obj/machinery/power/solar{
@@ -72709,7 +67768,7 @@
name = "Aft-Port Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/port)
+/area/solar/port/aft)
"cwf" = (
/obj/structure/cable/yellow{
d2 = 4;
@@ -72737,9 +67796,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cwi" = (
/obj/machinery/door/airlock/external{
req_access_txt = "13"
@@ -72750,15 +67807,11 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cwj" = (
/obj/item/weapon/cigbutt,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cwm" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -72770,20 +67823,14 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cwn" = (
/obj/structure/rack,
/obj/item/clothing/glasses/sunglasses,
-/obj/item/device/flashlight/pen{
- pixel_x = 0
- },
+/obj/item/device/flashlight/pen,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cwo" = (
/obj/structure/table,
/obj/item/weapon/folder/white{
@@ -72797,8 +67844,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "Patient Room B APC";
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/structure/cable/yellow{
d2 = 4;
@@ -72808,15 +67854,12 @@
dir = 8
},
/obj/machinery/light_switch{
- pixel_x = 0;
pixel_y = 24
},
/turf/open/floor/plasteel/whiteblue/side{
dir = 8
},
-/area/medical/exam_room{
- name = "Patient Room B"
- })
+/area/medical/patients_rooms/room_b)
"cwp" = (
/obj/structure/chair/office/light{
dir = 8
@@ -72834,9 +67877,7 @@
pixel_y = 28
},
/turf/open/floor/plasteel/white,
-/area/medical/exam_room{
- name = "Patient Room B"
- })
+/area/medical/patients_rooms/room_b)
"cwq" = (
/obj/structure/closet/secure_closet/personal/patient,
/obj/machinery/button/door{
@@ -72850,9 +67891,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 4
},
-/area/medical/exam_room{
- name = "Patient Room B"
- })
+/area/medical/patients_rooms/room_b)
"cwr" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
@@ -72864,9 +67903,7 @@
name = "privacy shutters"
},
/turf/open/floor/plating,
-/area/medical/exam_room{
- name = "Patient Room B"
- })
+/area/medical/patients_rooms/room_b)
"cws" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
req_access_txt = 1
@@ -72877,9 +67914,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cwt" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -72890,40 +67925,32 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cwu" = (
/obj/structure/disposalpipe/segment,
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4;
initialize_directions = 11
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cwv" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/open/floor/plasteel/whiteblue/side{
dir = 9
},
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"cww" = (
/obj/effect/landmark/start/geneticist,
/obj/machinery/holopad,
@@ -72933,7 +67960,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"cwx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
@@ -72945,12 +67972,11 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 5
},
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"cwy" = (
/obj/machinery/dna_scannernew,
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/open/floor/plasteel/whiteblue,
/area/medical/genetics)
@@ -73010,7 +68036,6 @@
id = "genetics_shutters";
name = "genetics shutters control";
pixel_x = 28;
- pixel_y = 0;
req_access_txt = "9"
},
/turf/open/floor/plasteel/blue/side{
@@ -73037,11 +68062,10 @@
},
/obj/structure/disposalpipe/segment,
/obj/structure/sign/nosmoking_2{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"cwH" = (
/obj/machinery/mech_bay_recharge_port,
/obj/structure/cable/yellow{
@@ -73049,7 +68073,7 @@
icon_state = "0-8"
},
/turf/open/floor/plating,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"cwI" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
@@ -73058,7 +68082,7 @@
pixel_y = 31
},
/turf/open/floor/mech_bay_recharge_floor,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"cwJ" = (
/obj/machinery/computer/mech_bay_power_console,
/obj/item/device/radio/intercom{
@@ -73072,23 +68096,19 @@
icon_state = "0-4"
},
/turf/open/floor/circuit/green,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"cwK" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plasteel,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"cwL" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"cwM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/camera{
@@ -73098,15 +68118,12 @@
},
/obj/machinery/airalarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/open/floor/plasteel/white/side{
dir = 6
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cwN" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -73114,9 +68131,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cwO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/firealarm{
@@ -73126,39 +68141,32 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cwP" = (
/obj/machinery/power/apc{
dir = 2;
name = "RD Office APC";
- pixel_x = 0;
pixel_y = -27
},
/obj/structure/cable/yellow,
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/item/weapon/twohanded/required/kirbyplants/dead,
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"cwQ" = (
/obj/item/weapon/paper_bin{
- pixel_x = 0;
pixel_y = 7
},
/obj/structure/table,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -30
},
/obj/item/weapon/stamp/rd{
pixel_x = -11;
- pixel_y = 0;
pixel_x = 3;
pixel_y = -2
},
@@ -73170,7 +68178,7 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"cwR" = (
/obj/structure/table,
/obj/item/weapon/cartridge/signal/toxins,
@@ -73191,35 +68199,32 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"cwS" = (
/obj/structure/closet/secure_closet/RD,
/obj/machinery/keycard_auth{
- pixel_x = 0;
pixel_y = -24
},
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"cwT" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
},
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = -32
},
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"cwU" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/item/device/radio/intercom{
@@ -73229,12 +68234,12 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"cwV" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"cwW" = (
/obj/item/weapon/cigbutt,
/obj/machinery/light_switch{
@@ -73244,7 +68249,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"cwX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
@@ -73253,7 +68258,7 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"cwY" = (
/obj/machinery/portable_atmospherics/canister/toxins,
/obj/machinery/firealarm{
@@ -73265,7 +68270,7 @@
/turf/open/floor/plasteel{
name = "floor"
},
-/area/toxins/storage)
+/area/science/storage)
"cwZ" = (
/obj/machinery/door/airlock/maintenance{
name = "airlock access";
@@ -73273,14 +68278,12 @@
req_one_access_txt = "12;47"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cxa" = (
/obj/item/stack/cable_coil,
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/port)
+/area/solar/port/aft)
"cxb" = (
/obj/structure/rack,
/obj/item/weapon/tank/internals/air,
@@ -73289,34 +68292,30 @@
/turf/open/floor/plating{
icon_state = "platingdmg2"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cxc" = (
/obj/item/trash/chips,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cxd" = (
/obj/structure/reagent_dispensers/watertank,
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cxe" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/medical,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
/turf/open/floor/plasteel/whiteblue/side{
dir = 8
},
-/area/medical/exam_room{
- name = "Patient Room B"
- })
+/area/medical/patients_rooms/room_b)
"cxf" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -73325,13 +68324,10 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/exam_room{
- name = "Patient Room B"
- })
+/area/medical/patients_rooms/room_b)
"cxg" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -73345,9 +68341,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 4
},
-/area/medical/exam_room{
- name = "Patient Room B"
- })
+/area/medical/patients_rooms/room_b)
"cxh" = (
/obj/machinery/door/airlock/medical{
name = "Patient Room B";
@@ -73362,9 +68356,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/exam_room{
- name = "Patient Room B"
- })
+/area/medical/patients_rooms/room_b)
"cxi" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
@@ -73377,9 +68369,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 8
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cxj" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -73393,9 +68383,7 @@
},
/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel/white,
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cxk" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
@@ -73405,9 +68393,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 2
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cxl" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -73415,7 +68401,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"cxm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -73423,19 +68409,17 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 8
},
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"cxn" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"cxo" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 2;
@@ -73445,7 +68429,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 4
},
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"cxp" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -73493,9 +68477,7 @@
"cxu" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/whiteblue/side{
dir = 5
@@ -73564,9 +68546,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
@@ -73590,7 +68570,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"cxD" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -73602,19 +68582,17 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"cxE" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/circuit/green,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"cxF" = (
/turf/open/floor/circuit/green,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"cxG" = (
/obj/machinery/camera{
c_tag = "Mech Bay";
@@ -73622,12 +68600,10 @@
network = list("SS13","RD")
},
/turf/open/floor/circuit/green,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"cxH" = (
/turf/open/floor/plating,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"cxI" = (
/obj/machinery/camera{
c_tag = "Research Testing Range";
@@ -73637,13 +68613,10 @@
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/open/floor/plating,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"cxJ" = (
/obj/item/device/radio/intercom{
freerange = 0;
@@ -73653,15 +68626,11 @@
},
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cxK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/firedoor,
@@ -73671,7 +68640,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"cxL" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -73684,9 +68653,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cxM" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -73694,13 +68661,10 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cxN" = (
/obj/machinery/light/small{
dir = 1
@@ -73710,29 +68674,23 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cxO" = (
/obj/machinery/door/airlock/external{
req_access_txt = "0";
req_one_access_txt = "13;8"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cxP" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/light/small{
@@ -73742,9 +68700,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cxQ" = (
/obj/machinery/computer/slot_machine{
pixel_y = 2
@@ -73752,48 +68708,35 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cxR" = (
/obj/structure/rack,
/obj/item/clothing/mask/gas,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cxS" = (
/obj/item/latexballon,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cxT" = (
/obj/item/clothing/suit/ianshirt,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cxU" = (
/turf/closed/wall,
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cxV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
req_access_txt = 1
},
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cxW" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -73806,9 +68749,7 @@
icon_state = "1-4"
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cxX" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -73820,9 +68761,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 4
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cxY" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/yellow{
@@ -73836,7 +68775,7 @@
req_access_txt = "5; 68"
},
/turf/open/floor/plasteel/whiteblue,
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"cxZ" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -73846,7 +68785,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 8
},
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"cya" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -73858,7 +68797,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"cyb" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -73876,7 +68815,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 4
},
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"cyc" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_research{
@@ -74016,7 +68955,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"cyq" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -74028,14 +68967,13 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"cyr" = (
/turf/open/floor/circuit,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"cys" = (
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/effect/landmark/start/roboticist,
@@ -74044,35 +68982,26 @@
dir = 4
},
/turf/open/floor/circuit,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"cyt" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"cyu" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"cyv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cyw" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -74081,28 +69010,21 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cyx" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4;
initialize_directions = 11
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cyy" = (
/obj/structure/sign/biohazard,
/turf/closed/wall,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cyz" = (
/obj/machinery/light_switch{
pixel_y = 28
@@ -74114,9 +69036,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cyA" = (
/obj/structure/closet/wardrobe/science_white,
/obj/structure/window/reinforced{
@@ -74126,9 +69046,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cyB" = (
/obj/machinery/firealarm{
dir = 2;
@@ -74139,9 +69057,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cyC" = (
/obj/item/device/radio/intercom{
pixel_y = 25
@@ -74152,18 +69068,14 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cyD" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cyE" = (
/obj/structure/window/reinforced{
dir = 4
@@ -74179,9 +69091,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cyF" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/structure/window/reinforced{
@@ -74195,9 +69105,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cyG" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/structure/sign/nosmoking_2{
@@ -74210,9 +69118,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cyH" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/structure/window/reinforced{
@@ -74223,21 +69129,16 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cyI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cyJ" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/machinery/light_switch{
pixel_y = 28
@@ -74247,14 +69148,10 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cyK" = (
/turf/closed/wall/r_wall,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cyL" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -74268,9 +69165,7 @@
dir = 2
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cyM" = (
/obj/machinery/door/airlock/research{
name = "Toxins Space Access";
@@ -74282,9 +69177,7 @@
/turf/open/floor/plasteel{
dir = 1
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cyN" = (
/obj/machinery/firealarm{
dir = 8;
@@ -74301,24 +69194,19 @@
/turf/open/floor/plasteel/white/side{
dir = 2
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cyO" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/plasteel/white/side{
dir = 2
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cyP" = (
/obj/machinery/vending/coffee,
/obj/structure/sign/map/left{
@@ -74329,9 +69217,7 @@
/turf/open/floor/plasteel/white/side{
dir = 2
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cyQ" = (
/obj/structure/sign/map/right{
desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
@@ -74342,9 +69228,7 @@
/turf/open/floor/plasteel/white/side{
dir = 2
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cyR" = (
/obj/machinery/vending/cigarette,
/obj/structure/noticeboard{
@@ -74353,9 +69237,7 @@
/turf/open/floor/plasteel/white/side{
dir = 2
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cyT" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -74367,9 +69249,7 @@
on = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cyU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/sign/nosmoking_2{
@@ -74379,9 +69259,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cyV" = (
/obj/machinery/button/door{
desc = "A remote control switch for the cloning door.";
@@ -74394,7 +69272,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 10
},
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"cyW" = (
/obj/effect/landmark/start/geneticist,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -74403,18 +69281,16 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 2
},
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"cyX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/power/apc{
dir = 4;
locked = 0;
name = "Cloning Lab APC";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/obj/structure/cable/yellow,
/obj/machinery/camera{
@@ -74425,7 +69301,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 6
},
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"cyY" = (
/turf/open/floor/plasteel/whiteblue/side{
dir = 10
@@ -74439,9 +69315,7 @@
"cza" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/structure/mirror{
pixel_x = 28
@@ -74468,8 +69342,7 @@
/area/medical/genetics)
"czd" = (
/obj/machinery/light_switch{
- pixel_x = 23;
- pixel_y = 0
+ pixel_x = 23
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -74553,10 +69426,10 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"czj" = (
/turf/open/floor/mech_bay_recharge_floor,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"czk" = (
/obj/machinery/computer/mech_bay_power_console,
/obj/structure/cable/yellow{
@@ -74564,15 +69437,14 @@
icon_state = "0-4"
},
/turf/open/floor/circuit,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"czl" = (
/obj/structure/table/reinforced,
/obj/structure/window/reinforced{
dir = 1
},
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/item/weapon/folder/white{
pixel_x = 4;
@@ -74587,9 +69459,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"czm" = (
/obj/machinery/door/window/westleft{
base_state = "right";
@@ -74602,9 +69472,7 @@
dir = 9;
icon_state = "floor"
},
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"czn" = (
/obj/structure/table/reinforced,
/obj/machinery/magnetic_controller{
@@ -74619,9 +69487,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"czo" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
@@ -74629,9 +69495,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"czp" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -74642,9 +69506,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"czq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -74653,9 +69515,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 2
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"czr" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -74663,9 +69523,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"czs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -74674,17 +69532,13 @@
dir = 8
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"czt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"czu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
@@ -74693,38 +69547,28 @@
dir = 5
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"czv" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"czw" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/obj/machinery/meter,
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"czx" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 9
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"czy" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 5
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"czz" = (
/obj/machinery/atmospherics/components/trinary/filter{
density = 0;
@@ -74732,25 +69576,19 @@
req_access = "0"
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"czA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"czB" = (
/obj/machinery/portable_atmospherics/pump,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"czC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -74763,14 +69601,10 @@
req_one_access_txt = "12;47"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"czD" = (
/turf/closed/wall,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"czE" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder/white{
@@ -74786,9 +69620,7 @@
/obj/item/weapon/reagent_containers/syringe,
/obj/item/weapon/pen,
/turf/open/floor/plasteel/whitegreen,
-/area/medical/medbay{
- name = "Medbay Central"
- })
+/area/medical/medbay/central)
"czF" = (
/obj/effect/turf_decal/bot{
dir = 1
@@ -74796,9 +69628,7 @@
/turf/open/floor/plasteel{
dir = 1
},
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"czG" = (
/obj/item/stack/rods{
amount = 50
@@ -74827,14 +69657,11 @@
/turf/open/floor/plasteel{
dir = 1
},
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"czH" = (
/obj/machinery/airalarm{
desc = "This particular atmos control unit appears to have no access restrictions.";
dir = 8;
- icon_state = "alarm0";
locked = 0;
name = "all-access air alarm";
pixel_x = 24;
@@ -74846,24 +69673,22 @@
pixel_y = 8
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"czI" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'BOMB RANGE";
name = "BOMB RANGE"
},
/turf/closed/wall,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"czJ" = (
/turf/closed/wall,
-/area/toxins/test_area)
+/area/science/test_area)
"czK" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/toxins/test_area)
+/area/science/test_area)
"czL" = (
/obj/structure/cable{
icon_state = "0-2";
@@ -74871,23 +69696,19 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/port)
+/area/solar/port/aft)
"czN" = (
/obj/machinery/door/airlock/maintenance{
name = "Medbay Maintenance";
req_access_txt = "5"
},
/turf/open/floor/plating,
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"czO" = (
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"czP" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -74896,25 +69717,19 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"czQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"czR" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -74925,9 +69740,7 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"czS" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -74939,9 +69752,7 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"czT" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -74957,9 +69768,7 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"czU" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -74978,9 +69787,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 8
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"czV" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -75004,15 +69811,12 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"czW" = (
/obj/machinery/power/apc{
dir = 4;
name = "Medbay Aft APC";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/structure/cable/yellow{
d2 = 8;
@@ -75024,9 +69828,7 @@
initialize_directions = 11
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"czX" = (
/obj/item/weapon/book/manual/medical_cloning{
pixel_y = 6
@@ -75038,7 +69840,7 @@
},
/obj/structure/table/glass,
/turf/open/floor/plasteel/vault,
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"czY" = (
/obj/item/weapon/storage/box/rxglasses{
pixel_x = 3;
@@ -75049,16 +69851,15 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/table/glass,
/turf/open/floor/plasteel/vault,
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"czZ" = (
/obj/structure/closet/secure_closet/personal/patient,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/open/floor/plasteel/vault,
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"cAa" = (
/obj/machinery/airalarm{
dir = 1;
@@ -75109,8 +69910,7 @@
pixel_y = 1
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/bed/roller,
/mob/living/carbon/monkey,
@@ -75119,13 +69919,10 @@
"cAf" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/open/floor/plasteel/vault,
@@ -75137,7 +69934,6 @@
"cAh" = (
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/camera{
@@ -75183,7 +69979,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"cAl" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -75198,7 +69994,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"cAm" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -75212,7 +70008,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"cAn" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -75233,20 +70029,19 @@
on = 1
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"cAo" = (
/obj/machinery/power/apc{
dir = 4;
name = "Mech Bay APC";
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/obj/structure/cable/yellow{
d2 = 8;
icon_state = "0-8"
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"cAp" = (
/obj/structure/rack,
/obj/item/target,
@@ -75265,9 +70060,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"cAq" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -75277,9 +70070,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"cAr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -75293,9 +70084,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"cAs" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
@@ -75312,9 +70101,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/purple,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"cAt" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
@@ -75327,9 +70114,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cAu" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -75347,9 +70132,7 @@
icon_state = "1-8"
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cAv" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -75360,9 +70143,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cAw" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/yellow{
@@ -75380,9 +70161,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cAx" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -75393,9 +70172,7 @@
dir = 8
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cAy" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -75407,9 +70184,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cAz" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -75420,9 +70195,7 @@
dir = 2
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cAA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -75433,9 +70206,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cAB" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -75446,9 +70217,7 @@
dir = 10
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cAC" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -75460,9 +70229,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cAD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
@@ -75476,9 +70243,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cAE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -75489,9 +70254,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cAF" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4;
@@ -75502,9 +70265,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cAG" = (
/obj/structure/window/reinforced,
/obj/machinery/portable_atmospherics/scrubber,
@@ -75513,24 +70274,18 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cAH" = (
/obj/structure/sign/biohazard,
/turf/closed/wall/r_wall,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cAI" = (
/obj/effect/landmark/blobstart,
/obj/effect/turf_decal/stripes/corner{
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cAJ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
@@ -75541,9 +70296,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/floorgrime,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cAK" = (
/obj/machinery/light/small{
dir = 4
@@ -75555,17 +70308,13 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cAL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cAM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
@@ -75579,17 +70328,13 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cAN" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cAO" = (
/obj/structure/chair{
dir = 4
@@ -75600,23 +70345,18 @@
layer = 4;
name = "Test Chamber Telescreen";
network = list("Toxins");
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cAP" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cAQ" = (
/obj/structure/window/reinforced,
/obj/item/target,
@@ -75624,7 +70364,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/toxins/test_area)
+/area/science/test_area)
"cAS" = (
/obj/structure/chair/stool,
/obj/item/device/radio/intercom{
@@ -75633,32 +70373,25 @@
frequency = 1485;
listening = 0;
name = "Station Intercom (Medbay)";
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cAT" = (
/obj/structure/chair/stool,
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cAU" = (
/obj/item/weapon/cigbutt,
/obj/machinery/holopad,
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cAV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
@@ -75666,25 +70399,19 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cAW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cAX" = (
/obj/structure/grille,
/obj/structure/window/reinforced/tinted/fulltile,
@@ -75692,9 +70419,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cAY" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 2
@@ -75702,9 +70427,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cAZ" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -75715,9 +70438,7 @@
dir = 10
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cBa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
@@ -75727,19 +70448,16 @@
frequency = 1485;
listening = 0;
name = "Station Intercom (Medbay)";
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cBb" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/medical/genetics_cloning)
+/area/medical/genetics/cloning)
"cBc" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/centcom{
@@ -75750,9 +70468,7 @@
/turf/open/floor/plasteel/black,
/area/medical/genetics)
"cBd" = (
-/obj/structure/sign/directions/evac{
- pixel_y = 0
- },
+/obj/structure/sign/directions/evac,
/turf/closed/wall,
/area/hallway/primary/aft)
"cBe" = (
@@ -75765,16 +70481,14 @@
},
/area/hallway/primary/aft)
"cBf" = (
-/obj/structure/sign/directions/evac{
- pixel_y = 0
- },
+/obj/structure/sign/directions/evac,
/turf/closed/wall,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"cBg" = (
/obj/machinery/recharge_station,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"cBh" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -75784,7 +70498,7 @@
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"cBi" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/firealarm{
@@ -75793,14 +70507,13 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"cBj" = (
/obj/structure/table,
/obj/item/device/radio/intercom{
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = -25
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -75811,9 +70524,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"cBk" = (
/obj/structure/table,
/obj/machinery/recharger{
@@ -75825,22 +70536,18 @@
/obj/machinery/button/door{
id = "researchrangeshutters";
name = "Blast Door Control";
- pixel_x = 0;
pixel_y = -24;
req_access_txt = "0"
},
/obj/machinery/light,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"cBl" = (
/obj/item/weapon/gun/energy/laser/practice,
/obj/machinery/power/apc{
dir = 2;
name = "Research Firing Range APC";
- pixel_x = 0;
pixel_y = -28
},
/obj/structure/table,
@@ -75852,9 +70559,7 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"cBm" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -75866,9 +70571,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
+/area/science/misc_lab/range)
"cBn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -75877,9 +70580,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cBo" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -75890,9 +70591,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cBp" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4;
@@ -75901,9 +70600,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cBq" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -75912,9 +70609,7 @@
name = "biohazard containment door"
},
/turf/open/floor/plating,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cBr" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -75927,14 +70622,10 @@
/obj/structure/disposalpipe/segment,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cBs" = (
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cBt" = (
/obj/item/device/assembly/prox_sensor{
pixel_x = -4;
@@ -75949,7 +70640,6 @@
pixel_y = -2
},
/obj/item/device/assembly/prox_sensor{
- pixel_x = 0;
pixel_y = 2
},
/obj/structure/table/reinforced,
@@ -75957,9 +70647,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cBu" = (
/obj/structure/chair/stool,
/obj/effect/landmark/start/scientist,
@@ -75967,9 +70655,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cBv" = (
/obj/structure/table/reinforced,
/obj/item/weapon/wrench,
@@ -75980,21 +70666,15 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cBw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cBx" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cBy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/yellow{
@@ -76003,36 +70683,28 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cBz" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cBA" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 2;
initialize_directions = 11
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cBB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cBC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -76047,9 +70719,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cBD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -76058,9 +70728,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cBE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -76072,9 +70740,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/floorgrime,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cBF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -76083,9 +70749,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cBG" = (
/obj/machinery/door/airlock/research{
name = "Toxins Launch Room";
@@ -76096,9 +70760,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cBH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -76107,26 +70769,19 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cBI" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cBJ" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cBK" = (
/obj/machinery/light/small,
/obj/machinery/airalarm{
@@ -76135,9 +70790,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cBL" = (
/obj/structure/chair{
dir = 4
@@ -76154,50 +70807,47 @@
layer = 4;
name = "Test Chamber Telescreen";
network = list("Toxins");
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cBM" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'BOMB RANGE";
name = "BOMB RANGE"
},
/turf/closed/wall,
-/area/toxins/test_area)
+/area/science/test_area)
"cBN" = (
/obj/structure/chair,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"cBO" = (
/obj/item/device/flashlight/lamp,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"cBP" = (
/obj/structure/chair,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"cBQ" = (
/obj/effect/landmark/xeno_spawn,
/obj/structure/cable,
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/port)
+/area/solar/port/aft)
"cBR" = (
/turf/closed/wall/r_wall,
/area/medical/virology)
@@ -76210,15 +70860,12 @@
/obj/item/weapon/cigbutt,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cBU" = (
/obj/machinery/light{
dir = 8
},
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -30
},
/obj/item/weapon/storage/box/donkpockets{
@@ -76229,12 +70876,9 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cBV" = (
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = -30
},
/obj/item/weapon/reagent_containers/spray/cleaner,
@@ -76242,9 +70886,7 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cBW" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -76252,7 +70894,6 @@
},
/obj/machinery/light/small,
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -29
},
/obj/machinery/camera{
@@ -76263,9 +70904,7 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cBX" = (
/obj/machinery/microwave{
pixel_x = -3;
@@ -76275,15 +70914,11 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cBY" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white,
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cBZ" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -76295,9 +70930,7 @@
},
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white,
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cCa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
@@ -76305,9 +70938,7 @@
/turf/open/floor/plasteel/white/side{
dir = 9
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cCb" = (
/obj/machinery/firealarm{
dir = 8;
@@ -76317,26 +70948,20 @@
/turf/open/floor/plasteel/white/corner{
dir = 2
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cCc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/closet/secure_closet/personal/patient,
/turf/open/floor/plasteel/white/side{
dir = 2
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cCd" = (
/obj/structure/closet/secure_closet/personal/patient,
/turf/open/floor/plasteel/white/corner{
dir = 8
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cCe" = (
/turf/closed/wall,
/area/medical/morgue)
@@ -76395,7 +71020,7 @@
/area/hallway/primary/aft)
"cCn" = (
/turf/closed/wall/r_wall,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"cCo" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -76404,7 +71029,7 @@
name = "robotics shutters"
},
/turf/open/floor/plating,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"cCp" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -76418,36 +71043,29 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"cCq" = (
/turf/closed/wall/r_wall,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cCr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cCs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cCt" = (
/obj/structure/closet/bombcloset,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cCu" = (
/obj/item/device/assembly/signaler{
- pixel_x = 0;
pixel_y = 8
},
/obj/item/device/assembly/signaler{
@@ -76467,9 +71085,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cCv" = (
/obj/item/device/transfer_valve{
pixel_x = -5
@@ -76477,12 +71093,8 @@
/obj/item/device/transfer_valve{
pixel_x = -5
},
-/obj/item/device/transfer_valve{
- pixel_x = 0
- },
-/obj/item/device/transfer_valve{
- pixel_x = 0
- },
+/obj/item/device/transfer_valve,
+/obj/item/device/transfer_valve,
/obj/item/device/transfer_valve{
pixel_x = 5
},
@@ -76493,16 +71105,13 @@
department = "Science";
departmentType = 2;
name = "Science Requests Console";
- pixel_x = 0;
pixel_y = -30;
receive_ore_updates = 1
},
/obj/structure/table/reinforced,
/obj/machinery/light,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cCw" = (
/obj/item/device/assembly/timer{
pixel_x = 5;
@@ -76516,18 +71125,13 @@
pixel_x = 6;
pixel_y = -4
},
-/obj/item/device/assembly/timer{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/device/assembly/timer,
/obj/structure/table/reinforced,
/obj/effect/turf_decal/stripes/corner{
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cCx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/item/device/radio/intercom{
@@ -76541,9 +71145,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cCy" = (
/obj/machinery/disposal/bin{
pixel_x = -2;
@@ -76556,9 +71158,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cCz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
@@ -76569,9 +71169,7 @@
icon_state = "1-4"
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cCA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -76582,9 +71180,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cCB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
@@ -76595,9 +71191,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cCC" = (
/obj/structure/table,
/obj/item/device/assembly/igniter{
@@ -76619,8 +71213,7 @@
/obj/machinery/power/apc{
dir = 4;
name = "Toxins Lab APC";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/structure/cable/yellow{
d2 = 8;
@@ -76633,17 +71226,13 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cCD" = (
/obj/effect/turf_decal/stripes/corner{
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cCE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -76652,26 +71241,20 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/floorgrime,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cCF" = (
/obj/effect/turf_decal/stripes/corner{
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cCG" = (
/obj/machinery/door/window/southleft{
name = "Mass Driver Door";
req_access_txt = "7"
},
/turf/open/floor/plasteel/loadingarea,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cCH" = (
/obj/structure/chair{
dir = 4
@@ -76680,10 +71263,10 @@
dir = 9
},
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"cCI" = (
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"cCJ" = (
/obj/structure/chair{
dir = 8
@@ -76692,16 +71275,14 @@
dir = 5
},
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"cCK" = (
/mob/living/carbon/monkey,
/turf/open/floor/plasteel/freezer,
/area/medical/virology)
"cCL" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/freezer,
/area/medical/virology)
@@ -76723,9 +71304,7 @@
/turf/open/floor/plasteel/white/side{
dir = 5
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cCO" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -76741,9 +71320,7 @@
icon_state = "1-4"
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cCP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -76758,9 +71335,7 @@
/turf/open/floor/plasteel/white/side{
dir = 8
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cCQ" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -76772,9 +71347,7 @@
},
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cCR" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -76787,9 +71360,7 @@
/turf/open/floor/plasteel/white/side{
dir = 4
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cCS" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -76800,9 +71371,7 @@
dir = 2
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cCT" = (
/obj/machinery/light{
dir = 4;
@@ -76819,9 +71388,7 @@
/turf/open/floor/plasteel/white/side{
dir = 8
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cCU" = (
/obj/machinery/light/small{
dir = 8
@@ -76841,9 +71408,7 @@
"cCW" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/black,
/area/medical/morgue)
@@ -76878,7 +71443,7 @@
name = "robotics shutters"
},
/turf/open/floor/plating,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cDb" = (
/obj/structure/filingcabinet/chestdrawer{
pixel_x = -2;
@@ -76893,7 +71458,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cDc" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -76903,7 +71468,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cDd" = (
/obj/machinery/mecha_part_fabricator{
dir = 2
@@ -76919,7 +71484,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cDe" = (
/obj/structure/sign/nosmoking_2{
pixel_y = 32
@@ -76933,7 +71498,7 @@
/obj/item/weapon/reagent_containers/glass/beaker/large,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cDf" = (
/obj/machinery/mecha_part_fabricator{
dir = 2
@@ -76945,12 +71510,11 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cDg" = (
/obj/machinery/power/apc{
dir = 1;
name = "Robotics Lab APC";
- pixel_x = 0;
pixel_y = 25
},
/obj/structure/cable/yellow{
@@ -76972,7 +71536,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cDh" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -76990,12 +71554,10 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cDi" = (
/turf/closed/wall,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cDj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/light{
@@ -77003,39 +71565,28 @@
dir = 8
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cDk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cDl" = (
/obj/structure/sign/securearea,
/turf/closed/wall/r_wall,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cDm" = (
/obj/machinery/shower{
dir = 4;
- icon_state = "shower";
name = "emergency shower"
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cDn" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cDo" = (
/obj/structure/table,
/obj/item/weapon/crowbar,
@@ -77046,9 +71597,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cDp" = (
/obj/structure/table,
/obj/item/clothing/glasses/science,
@@ -77060,49 +71609,38 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cDq" = (
/obj/machinery/mass_driver{
dir = 4;
id = "toxinsdriver"
},
/turf/open/floor/plating,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cDr" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/light/small,
/turf/open/floor/plating,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cDs" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plating,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cDt" = (
/obj/machinery/door/poddoor{
id = "toxinsdriver";
name = "Toxins Launcher Bay Door"
},
/turf/open/floor/plating,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cDu" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -77114,17 +71652,17 @@
dir = 8
},
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"cDw" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"cDx" = (
/obj/item/device/radio/beacon,
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"cDy" = (
/obj/machinery/camera{
active_power_usage = 0;
@@ -77149,14 +71687,14 @@
initial_gas_mix = "o2=0.01;n2=0.01";
temperature = 2.7
},
-/area/toxins/test_area)
+/area/science/test_area)
"cDz" = (
/turf/closed/indestructible{
desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease";
icon_state = "riveted";
name = "hyper-reinforced wall"
},
-/area/toxins/test_area)
+/area/science/test_area)
"cDA" = (
/obj/structure/bed/roller,
/turf/open/floor/plasteel/freezer,
@@ -77194,7 +71732,6 @@
cell_type = 5000;
dir = 1;
name = "Virology APC";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable/yellow{
@@ -77250,7 +71787,6 @@
/obj/item/clothing/glasses/hud/health,
/obj/structure/reagent_dispensers/virusfood{
density = 0;
- pixel_x = 0;
pixel_y = 30
},
/obj/structure/table/glass,
@@ -77272,9 +71808,7 @@
icon_state = "1-4"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cDL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -77288,9 +71822,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cDM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -77306,9 +71838,7 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cDN" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -77326,9 +71856,7 @@
/turf/open/floor/plating{
icon_plating = "warnplate"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cDO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -77337,9 +71865,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cDP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -77349,9 +71875,7 @@
req_access_txt = "5"
},
/turf/open/floor/plating,
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cDQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -77359,9 +71883,7 @@
/turf/open/floor/plasteel/white/side{
dir = 4
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cDR" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -77372,9 +71894,7 @@
dir = 9
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cDS" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -77384,18 +71904,14 @@
/turf/open/floor/plasteel/white/side{
dir = 8
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cDT" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cDU" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
@@ -77404,18 +71920,14 @@
/turf/open/floor/plasteel/white/side{
dir = 4
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cDV" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/landmark/start/medical_doctor,
/turf/open/floor/plasteel/white,
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cDW" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -77431,9 +71943,7 @@
/turf/open/floor/plasteel/white/side{
dir = 8
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cDX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -77527,8 +72037,7 @@
/obj/machinery/power/apc{
dir = 4;
name = "Morgue APC";
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/structure/cable/yellow{
d2 = 8;
@@ -77582,7 +72091,7 @@
/area/hallway/primary/aft)
"cEi" = (
/turf/open/floor/plasteel/purple,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cEj" = (
/obj/structure/table/reinforced,
/obj/item/weapon/pen,
@@ -77605,7 +72114,7 @@
name = "robotics shutters"
},
/turf/open/floor/plating,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cEk" = (
/obj/effect/landmark/start/roboticist,
/obj/structure/chair/office/light{
@@ -77615,7 +72124,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cEl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
@@ -77633,7 +72142,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cEm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -77650,7 +72159,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cEn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
@@ -77673,7 +72182,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cEo" = (
/obj/structure/table,
/obj/item/stack/sheet/plasteel{
@@ -77687,52 +72196,41 @@
/obj/item/device/assembly/flash/handheld,
/obj/item/device/assembly/flash/handheld,
/obj/machinery/ai_status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cEp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/turf/open/floor/plasteel/white/side{
dir = 9
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cEq" = (
/obj/structure/lattice,
/turf/open/space,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cEr" = (
/obj/machinery/door/poddoor{
id = "mixvent";
name = "Mixer Room Vent"
},
/turf/open/floor/engine/vacuum,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cEs" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/engine/vacuum,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cEt" = (
/obj/machinery/sparker{
dir = 2;
@@ -77749,17 +72247,13 @@
pump_direction = 0
},
/turf/open/floor/engine/vacuum,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cEu" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
/turf/closed/wall/r_wall,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cEv" = (
/obj/machinery/airlock_sensor{
id_tag = "tox_airlock_sensor";
@@ -77772,9 +72266,7 @@
on = 1
},
/turf/open/floor/engine,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cEw" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
@@ -77786,7 +72278,6 @@
id_tag = "tox_airlock_control";
interior_door_tag = "tox_airlock_interior";
pixel_x = -24;
- pixel_y = 0;
sanitize_external = 1;
sensor_tag = "tox_airlock_sensor"
},
@@ -77794,9 +72285,7 @@
dir = 1
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cEx" = (
/obj/machinery/atmospherics/components/binary/valve{
dir = 4;
@@ -77806,9 +72295,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cEy" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 8
@@ -77825,15 +72312,11 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cEz" = (
/obj/structure/closet/wardrobe/grey,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cEA" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -77847,7 +72330,7 @@
dir = 10
},
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"cEC" = (
/obj/structure/chair{
dir = 8
@@ -77856,17 +72339,16 @@
dir = 6
},
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"cED" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/port)
+/area/solar/port/aft)
"cEE" = (
/turf/closed/wall,
/area/medical/virology)
@@ -77908,8 +72390,7 @@
},
/obj/structure/table/glass,
/obj/structure/sign/deathsposal{
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/turf/open/floor/plasteel/whitegreen/side{
dir = 8
@@ -77960,7 +72441,6 @@
department = "Virology";
name = "Virology Requests Console";
pixel_x = 29;
- pixel_y = 0;
receive_ore_updates = 1
},
/obj/item/stack/sheet/mineral/plasma{
@@ -77992,16 +72472,12 @@
req_access_txt = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cEO" = (
/turf/open/floor/plasteel/white/side{
dir = 6
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cEP" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -78012,9 +72488,7 @@
dir = 6
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cEQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
@@ -78022,9 +72496,7 @@
/turf/open/floor/plasteel/white/side{
dir = 10
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cER" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -78033,37 +72505,29 @@
/turf/open/floor/plasteel/white/corner{
dir = 4
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cES" = (
/obj/item/device/healthanalyzer{
pixel_x = 1;
pixel_y = 4
},
/obj/structure/sign/nosmoking_2{
- pixel_x = 0;
pixel_y = -30
},
/obj/structure/table/glass,
/turf/open/floor/plasteel/white/side{
dir = 1
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cET" = (
/obj/machinery/vending/medical,
/turf/open/floor/plasteel/white/corner{
dir = 1
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cEU" = (
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/structure/bodycontainer/morgue,
/obj/effect/landmark/revenantspawn,
@@ -78138,30 +72602,29 @@
"cFd" = (
/obj/structure/noticeboard{
dir = 4;
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cFe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cFf" = (
/obj/effect/landmark/start/roboticist,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cFg" = (
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cFh" = (
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cFi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
@@ -78174,7 +72637,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cFj" = (
/obj/machinery/firealarm{
dir = 4;
@@ -78196,7 +72659,7 @@
/obj/item/stack/cable_coil,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cFk" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
@@ -78207,9 +72670,7 @@
network = list("SS13","RD")
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cFl" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -78221,22 +72682,16 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cFm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white/side{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cFn" = (
/turf/open/floor/engine/vacuum,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cFo" = (
/obj/machinery/door/airlock/glass_research{
autoclose = 0;
@@ -78250,9 +72705,7 @@
req_access_txt = "8"
},
/turf/open/floor/engine,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cFp" = (
/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{
dir = 2;
@@ -78261,9 +72714,7 @@
},
/obj/effect/landmark/blobstart,
/turf/open/floor/engine,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cFq" = (
/obj/machinery/door/airlock/glass_research{
autoclose = 0;
@@ -78277,21 +72728,16 @@
req_access_txt = "8"
},
/turf/open/floor/engine,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cFr" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cFs" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/camera{
@@ -78303,15 +72749,11 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cFt" = (
/obj/effect/decal/cleanable/oil,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cFu" = (
/obj/structure/closet,
/obj/item/device/assembly/prox_sensor{
@@ -78323,9 +72765,7 @@
pixel_y = 5
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cFv" = (
/obj/structure/chair{
dir = 1
@@ -78334,14 +72774,14 @@
dir = 10
},
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"cFw" = (
/obj/item/device/flashlight/lamp,
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"cFx" = (
/obj/structure/chair{
dir = 1
@@ -78350,11 +72790,10 @@
dir = 6
},
/turf/open/floor/plating/airless,
-/area/toxins/test_area)
+/area/science/test_area)
"cFy" = (
/obj/item/device/radio/intercom{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/structure/table/glass,
/obj/item/weapon/hand_labeler,
@@ -78415,7 +72854,6 @@
/obj/structure/rack,
/obj/item/weapon/crowbar/red,
/obj/machinery/light_switch{
- pixel_x = 0;
pixel_y = 26
},
/obj/item/weapon/wrench,
@@ -78481,8 +72919,7 @@
dir = 4
},
/obj/item/device/radio/intercom{
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/turf/open/floor/plasteel/whitegreen/side{
dir = 4
@@ -78507,7 +72944,6 @@
pixel_y = 32
},
/obj/machinery/shower{
- icon_state = "shower";
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -78532,7 +72968,6 @@
/area/medical/virology)
"cFN" = (
/obj/structure/sign/securearea{
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/shower{
@@ -78557,9 +72992,7 @@
/turf/open/floor/plasteel/whitegreen/side{
dir = 8
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cFP" = (
/obj/machinery/light/small{
dir = 4
@@ -78582,9 +73015,7 @@
/turf/open/floor/plasteel/whitegreen/side{
dir = 4
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cFQ" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-21";
@@ -78595,14 +73026,10 @@
/turf/open/floor/plasteel/whitegreen/corner{
dir = 8
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cFR" = (
/turf/open/floor/plasteel/white,
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cFS" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -78611,20 +73038,15 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cFT" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/turf/open/floor/plasteel/white/side{
dir = 9
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cFU" = (
/obj/machinery/light/small,
/turf/open/floor/plasteel/black,
@@ -78652,8 +73074,7 @@
"cFX" = (
/obj/machinery/disposal/bin,
/obj/machinery/light_switch{
- pixel_x = 23;
- pixel_y = 0
+ pixel_x = 23
},
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -78679,33 +73100,31 @@
departmentType = 2;
name = "Robotics RC";
pixel_x = -31;
- pixel_y = 0;
receive_ore_updates = 1
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cGb" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cGc" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cGd" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cGe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
@@ -78721,7 +73140,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cGf" = (
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -78732,15 +73151,13 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cGg" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cGh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
@@ -78752,9 +73169,7 @@
},
/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cGi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/firealarm{
@@ -78764,9 +73179,7 @@
/turf/open/floor/plasteel/white/side{
dir = 10
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cGj" = (
/obj/machinery/sparker{
dir = 2;
@@ -78779,9 +73192,7 @@
id = "air_in"
},
/turf/open/floor/engine/vacuum,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cGk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/sign/fire{
@@ -78792,9 +73203,7 @@
on = 1
},
/turf/open/floor/engine,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cGl" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
@@ -78820,9 +73229,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cGm" = (
/obj/machinery/atmospherics/components/binary/valve{
dir = 4;
@@ -78832,9 +73239,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cGn" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 8
@@ -78845,16 +73250,12 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cGo" = (
/obj/structure/closet/crate,
/obj/item/clothing/mask/gas,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cGp" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -78863,7 +73264,7 @@
/obj/item/target,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
-/area/toxins/test_area)
+/area/science/test_area)
"cGq" = (
/obj/structure/table/glass,
/obj/item/weapon/folder/white{
@@ -78999,9 +73400,7 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/white,
/area/medical/virology)
@@ -79147,7 +73546,6 @@
idDoor = "virology_airlock_exterior";
idSelf = "virology_airlock_control";
name = "Virology Access Button";
- pixel_x = 0;
pixel_y = 24;
req_access_txt = "39"
},
@@ -79177,9 +73575,7 @@
/turf/open/floor/plasteel/whitegreen/side{
dir = 8
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cGK" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -79203,9 +73599,7 @@
/turf/open/floor/plasteel/whitegreen/side{
dir = 4
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cGL" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -79218,9 +73612,7 @@
req_access_txt = "39"
},
/turf/open/floor/plasteel/whitegreen,
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cGM" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -79228,9 +73620,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cGN" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -79239,35 +73629,25 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cGO" = (
/turf/open/floor/plasteel/white/side{
dir = 8
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cGP" = (
/obj/machinery/door/airlock{
name = "Medical Surplus Storeroom";
req_access_txt = "5"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cGQ" = (
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cGR" = (
/obj/structure/table,
/obj/machinery/light/small{
@@ -79279,9 +73659,7 @@
pixel_y = 3
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cGS" = (
/obj/structure/table,
/obj/item/weapon/retractor,
@@ -79294,9 +73672,7 @@
},
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cGT" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -79311,8 +73687,7 @@
req_access_txt = 1
},
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/turf/open/floor/plasteel/neutral/corner{
dir = 1
@@ -79321,7 +73696,6 @@
"cGV" = (
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/light{
@@ -79331,13 +73705,13 @@
/obj/machinery/r_n_d/circuit_imprinter,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cGW" = (
/obj/effect/landmark/start/roboticist,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cGX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -79351,7 +73725,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cGY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -79391,7 +73765,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cGZ" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
@@ -79404,7 +73778,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cHa" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
@@ -79417,9 +73791,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cHb" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -79433,9 +73805,7 @@
icon_state = "1-8"
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cHc" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
@@ -79444,47 +73814,36 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 2
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cHd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'SERVER ROOM'.";
- name = "SERVER ROOM";
- pixel_y = 0
+ name = "SERVER ROOM"
},
/turf/closed/wall/r_wall,
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"cHe" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"cHf" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 2;
initialize_directions = 11
},
/turf/closed/wall/r_wall,
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"cHg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cHh" = (
/obj/machinery/door/airlock/maintenance{
name = "Toxins Lab Maintenance";
@@ -79501,17 +73860,13 @@
dir = 1
},
/turf/open/floor/plating,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cHi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/closed/wall/r_wall,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cHj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -79522,14 +73877,12 @@
/turf/open/floor/plating{
icon_state = "platingdmg2"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cHk" = (
/obj/structure/cable,
/obj/machinery/power/tracker,
/turf/open/floor/plating/airless,
-/area/solar/port)
+/area/solar/port/aft)
"cHl" = (
/obj/structure/table/glass,
/obj/item/weapon/paper_bin{
@@ -79542,8 +73895,7 @@
icon_state = "1-2"
},
/obj/structure/extinguisher_cabinet{
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whitegreen/side{
@@ -79585,9 +73937,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/turf/open/floor/plasteel/whitegreen/side{
dir = 6
@@ -79642,13 +73992,10 @@
},
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/machinery/light_switch{
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/turf/open/floor/plasteel/whitegreen/side{
dir = 6
@@ -79657,8 +74004,7 @@
"cHw" = (
/obj/structure/closet/emcloset,
/obj/item/device/radio/intercom{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -79696,9 +74042,7 @@
/turf/open/floor/plasteel/whitegreen/side{
dir = 8
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cHA" = (
/obj/machinery/camera{
c_tag = "Virology - Entrance";
@@ -79720,9 +74064,7 @@
/turf/open/floor/plasteel/whitegreen/side{
dir = 4
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cHB" = (
/obj/structure/sign/biohazard{
pixel_x = -32
@@ -79731,20 +74073,14 @@
pixel_x = 3;
pixel_y = 4
},
-/obj/item/weapon/storage/box/masks{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/weapon/storage/box/masks,
/obj/structure/table/glass,
/turf/open/floor/plasteel/whitegreen/corner{
dir = 1
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cHC" = (
/obj/structure/sign/nosmoking_2{
- pixel_x = 0;
pixel_y = -30
},
/obj/item/weapon/storage/box/beakers{
@@ -79754,9 +74090,7 @@
/obj/item/weapon/storage/box/bodybags,
/obj/structure/table/glass,
/turf/open/floor/plasteel/white,
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cHD" = (
/obj/machinery/firealarm{
dir = 1;
@@ -79776,9 +74110,7 @@
/obj/item/weapon/pen,
/obj/structure/table/glass,
/turf/open/floor/plasteel/white,
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cHE" = (
/obj/item/weapon/paper_bin{
pixel_x = -2;
@@ -79788,49 +74120,34 @@
/turf/open/floor/plasteel/white/side{
dir = 10
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cHF" = (
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cHG" = (
/obj/effect/decal/cleanable/oil,
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cHH" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/glass/beaker{
pixel_x = 8;
pixel_y = 2
},
-/obj/item/weapon/reagent_containers/blood/empty{
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/item/weapon/reagent_containers/blood/empty{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/weapon/reagent_containers/blood/empty,
+/obj/item/weapon/reagent_containers/blood/empty,
/obj/item/weapon/reagent_containers/syringe,
/obj/item/weapon/reagent_containers/dropper,
/obj/structure/sign/biohazard{
pixel_x = 32
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cHI" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -79845,9 +74162,7 @@
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cHJ" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -79863,9 +74178,7 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cHK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -79879,9 +74192,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cHL" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -79899,9 +74210,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cHM" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -79916,9 +74225,7 @@
req_one_access_txt = "12;5;39;6"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cHN" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -79952,19 +74259,19 @@
/obj/structure/bodycontainer/morgue,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cHQ" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cHR" = (
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cHS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
@@ -79973,7 +74280,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cHT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -79982,14 +74289,14 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cHU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cHV" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
@@ -80001,7 +74308,7 @@
dir = 4
},
/turf/open/floor/plasteel/purple,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cHW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -80009,9 +74316,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cHX" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -80028,9 +74333,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cHY" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -80044,9 +74347,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cHZ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
@@ -80060,9 +74361,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/black,
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"cIa" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -80073,9 +74372,7 @@
pixel_y = 28
},
/turf/open/floor/plasteel/black,
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"cIb" = (
/obj/machinery/camera{
c_tag = "Research Division - Server Room";
@@ -80086,7 +74383,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "Research Division Server Room APC";
- pixel_x = 0;
pixel_y = 25
},
/obj/structure/cable/yellow{
@@ -80095,9 +74391,7 @@
},
/obj/effect/landmark/revenantspawn,
/turf/open/floor/plasteel/black,
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"cIc" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
target_temperature = 80;
@@ -80106,9 +74400,7 @@
},
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plasteel/black,
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"cId" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -80118,18 +74410,14 @@
pixel_y = 32
},
/turf/open/floor/plating,
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"cIe" = (
/obj/machinery/r_n_d/server/robotics,
/turf/open/floor/circuit{
name = "Server Base";
initial_gas_mix = "n2=500;TEMP=80"
},
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"cIf" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -80141,23 +74429,17 @@
name = "Server Base";
initial_gas_mix = "n2=500;TEMP=80"
},
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"cIg" = (
/turf/closed/wall/r_wall,
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"cIh" = (
/obj/structure/closet,
/obj/item/weapon/storage/box/lights/mixed,
/obj/item/device/flashlight,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cIi" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -80171,9 +74453,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cIj" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -80187,9 +74467,7 @@
pixel_y = 32
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cIk" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -80201,9 +74479,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cIl" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -80218,10 +74494,13 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 2
},
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cIm" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -80237,7 +74516,7 @@
/turf/open/floor/plasteel/whitepurple{
dir = 4
},
-/area/toxins/lab)
+/area/science/lab)
"cIn" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -80248,9 +74527,7 @@
dir = 10
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cIp" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
@@ -80293,8 +74570,7 @@
},
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/turf/open/floor/plasteel/vault,
/area/medical/virology)
@@ -80335,7 +74611,6 @@
"cIx" = (
/obj/structure/closet/l3closet/virology,
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/turf/open/floor/plasteel/vault,
@@ -80361,9 +74636,7 @@
req_one_access_txt = "12;5;39;6"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cIA" = (
/obj/structure/bed/roller,
/obj/structure/bed/roller,
@@ -80374,18 +74647,14 @@
density = 0
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cIB" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cIC" = (
/obj/item/clothing/gloves/color/latex/nitrile,
/obj/structure/rack{
@@ -80399,9 +74668,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg2"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cID" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -80411,9 +74678,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cIE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
req_access_txt = 1
@@ -80444,9 +74709,7 @@
},
/area/hallway/primary/aft)
"cIH" = (
-/obj/structure/sign/directions/evac{
- pixel_y = 0
- },
+/obj/structure/sign/directions/evac,
/turf/closed/wall/r_wall,
/area/hallway/primary/aft)
"cII" = (
@@ -80465,28 +74728,26 @@
/turf/open/floor/plasteel/white/side{
dir = 4
},
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cIJ" = (
/obj/effect/landmark/start/roboticist,
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cIK" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cIL" = (
/obj/structure/table,
/obj/item/clothing/gloves/color/latex,
/obj/item/weapon/surgical_drapes,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 1;
@@ -80495,11 +74756,11 @@
/turf/open/floor/plasteel/white/side{
dir = 8
},
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cIM" = (
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cIN" = (
/obj/structure/window/reinforced{
dir = 8
@@ -80512,7 +74773,7 @@
/obj/item/borg/upgrade/rename,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cIO" = (
/obj/structure/rack,
/obj/item/weapon/storage/toolbox/electrical{
@@ -80533,24 +74794,21 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cIP" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cIQ" = (
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cIR" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -80559,9 +74817,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cIS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
@@ -80579,36 +74835,26 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cIT" = (
/turf/closed/wall,
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"cIU" = (
/obj/machinery/light/small{
dir = 8
},
/turf/open/floor/plasteel/black,
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"cIV" = (
/obj/structure/chair/office/light,
/turf/open/floor/plasteel/black,
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"cIW" = (
/obj/machinery/atmospherics/pipe/simple{
dir = 5
},
/turf/open/floor/plasteel/black,
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"cIX" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_command{
@@ -80619,9 +74865,7 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"cIY" = (
/obj/machinery/atmospherics/pipe/simple{
dir = 4
@@ -80630,9 +74874,7 @@
name = "Server Walkway";
initial_gas_mix = "n2=500;TEMP=80"
},
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"cIZ" = (
/obj/effect/landmark/blobstart,
/obj/machinery/atmospherics/pipe/manifold{
@@ -80643,16 +74885,13 @@
},
/obj/machinery/airalarm/server{
dir = 8;
- pixel_x = 22;
- pixel_y = 0
+ pixel_x = 22
},
/turf/open/floor/plasteel/black{
name = "Server Walkway";
initial_gas_mix = "n2=500;TEMP=80"
},
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"cJa" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -80661,15 +74900,11 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cJb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cJc" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -80685,9 +74920,7 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cJd" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -80698,16 +74931,13 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cJe" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = -32
},
/obj/structure/cable/yellow{
@@ -80719,9 +74949,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cJf" = (
/obj/structure/cable/yellow{
d2 = 8;
@@ -80739,9 +74967,7 @@
"cJh" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/freezer,
/area/medical/virology)
@@ -80768,9 +74994,7 @@
"cJl" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cJm" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/maintenance{
@@ -80782,7 +75006,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/toxins/lab)
+/area/science/lab)
"cJn" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -80793,9 +75017,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cJo" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -80818,9 +75040,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cJq" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -80832,9 +75052,7 @@
},
/obj/machinery/space_heater,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cJr" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -80852,9 +75070,7 @@
name = "2maintenance loot spawner"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cJs" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -80866,9 +75082,7 @@
},
/obj/structure/closet/firecloset,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cJt" = (
/obj/structure/rack{
dir = 8;
@@ -80880,9 +75094,7 @@
/obj/item/weapon/crowbar,
/obj/item/weapon/storage/pill_bottle,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cJu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -80891,9 +75103,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cJv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -80903,9 +75113,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cJw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -80916,9 +75124,7 @@
req_one_access_txt = "0"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cJx" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -80933,38 +75139,27 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cJy" = (
/obj/structure/closet/firecloset,
/turf/open/floor/plasteel/vault,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cJz" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel/vault,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cJA" = (
/obj/machinery/computer/arcade,
/turf/open/floor/plasteel/vault,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cJB" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/turf/open/floor/plasteel/vault,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cJC" = (
/obj/machinery/vending/coffee,
/obj/structure/sign/map/left{
@@ -80973,9 +75168,7 @@
pixel_y = 32
},
/turf/open/floor/plasteel/vault,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cJD" = (
/obj/machinery/vending/snack/random,
/obj/structure/sign/map/right{
@@ -80984,9 +75177,7 @@
pixel_y = 32
},
/turf/open/floor/plasteel/vault,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cJE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
req_access_txt = 1
@@ -80998,9 +75189,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cJF" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -81012,9 +75201,7 @@
name = "Departure Lounge"
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cJG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/firedoor,
@@ -81024,9 +75211,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cJH" = (
/obj/structure/table,
/obj/item/weapon/retractor,
@@ -81040,7 +75225,7 @@
/turf/open/floor/plasteel/white/corner{
dir = 4
},
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cJI" = (
/obj/structure/table/optable,
/obj/item/weapon/surgical_drapes,
@@ -81061,20 +75246,19 @@
/turf/open/floor/plasteel/white/side{
dir = 1
},
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cJK" = (
/obj/structure/table,
/obj/item/device/mmi,
/obj/item/device/mmi,
/obj/item/device/mmi,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/open/floor/plasteel/white/corner{
dir = 1
},
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cJL" = (
/obj/machinery/door/window/eastleft{
dir = 1;
@@ -81083,7 +75267,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cJM" = (
/obj/structure/closet/wardrobe/robotics_black{
pixel_x = 2
@@ -81093,7 +75277,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cJN" = (
/obj/structure/table,
/obj/machinery/cell_charger,
@@ -81120,20 +75304,17 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cJO" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
/turf/open/floor/plasteel/whitepurple/corner{
dir = 2
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cJP" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -81144,9 +75325,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 2
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cJQ" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-10";
@@ -81155,9 +75334,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cJR" = (
/obj/machinery/firealarm{
dir = 1;
@@ -81165,9 +75342,7 @@
},
/obj/structure/filingcabinet/chestdrawer,
/turf/open/floor/plasteel/black,
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"cJS" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -81177,9 +75352,7 @@
},
/obj/machinery/computer/rdservercontrol,
/turf/open/floor/plasteel/black,
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"cJT" = (
/obj/structure/table,
/obj/item/weapon/folder/white{
@@ -81188,25 +75361,19 @@
},
/obj/item/weapon/pen,
/turf/open/floor/plasteel/black,
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"cJU" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"cJV" = (
/obj/machinery/r_n_d/server/core,
/turf/open/floor/circuit{
name = "Server Base";
initial_gas_mix = "n2=500;TEMP=80"
},
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"cJW" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -81221,9 +75388,7 @@
name = "Server Base";
initial_gas_mix = "n2=500;TEMP=80"
},
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
+/area/science/server)
"cJX" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -81234,9 +75399,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cJY" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/costume,
@@ -81248,9 +75411,7 @@
dir = 2
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cJZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/reagent_dispensers/watertank,
@@ -81258,9 +75419,7 @@
dir = 2
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cKa" = (
/obj/structure/closet,
/obj/item/clothing/glasses/science,
@@ -81269,17 +75428,13 @@
dir = 2
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cKb" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cKc" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -81291,9 +75446,7 @@
dir = 2
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cKe" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -81337,7 +75490,6 @@
/obj/item/weapon/paper,
/obj/item/weapon/pen/red,
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 30
},
/turf/open/floor/plasteel/whitegreen/side{
@@ -81352,7 +75504,6 @@
dir = 1
},
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = 29
},
/turf/open/floor/plasteel/whitegreen/side{
@@ -81372,7 +75523,6 @@
pixel_y = 3
},
/obj/machinery/light_switch{
- pixel_x = 0;
pixel_y = 26
},
/obj/machinery/camera{
@@ -81406,9 +75556,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cKo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -81416,17 +75564,13 @@
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cKp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cKq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -81436,9 +75580,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cKr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
@@ -81455,47 +75597,36 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cKs" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cKu" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cKv" = (
/obj/machinery/airalarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cKw" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cKx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
@@ -81504,9 +75635,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cKy" = (
/obj/machinery/power/apc{
cell_type = 5000;
@@ -81525,9 +75654,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cKz" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -81537,9 +75664,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cKA" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
@@ -81548,9 +75673,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cKB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -81559,9 +75682,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cKC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -81573,9 +75694,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cKD" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
@@ -81584,9 +75703,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cKE" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -81605,9 +75722,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cKF" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -81625,9 +75740,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cKG" = (
/obj/structure/plasticflaps{
opacity = 1
@@ -81640,29 +75753,25 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cKH" = (
/obj/machinery/door/airlock/maintenance{
name = "Robotics Maintenance";
req_access_txt = "29"
},
/turf/open/floor/plating,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cKI" = (
/obj/structure/sign/securearea,
/turf/closed/wall/r_wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cKJ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cKK" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -81676,9 +75785,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cKL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -81691,9 +75798,7 @@
req_one_access_txt = "12;47"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cKM" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -81703,18 +75808,14 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cKN" = (
/obj/item/weapon/storage/box/lights/mixed,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cKO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
@@ -81722,15 +75823,13 @@
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cKP" = (
/turf/closed/wall/r_wall,
-/area/maintenance/starboardsolar)
+/area/maintenance/solars/starboard/aft)
"cKQ" = (
/obj/machinery/door/airlock/engineering{
- name = "Aft Starboard Solar Access";
+ name = "Starboard Quarter Solar Access";
req_access_txt = "10"
},
/obj/structure/cable/yellow{
@@ -81740,16 +75839,15 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
+/area/maintenance/solars/starboard/aft)
"cKR" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 0
+ name = "HIGH VOLTAGE"
},
/turf/closed/wall/r_wall,
-/area/maintenance/starboardsolar)
+/area/maintenance/solars/starboard/aft)
"cKS" = (
/obj/structure/table/glass,
/obj/item/weapon/reagent_containers/dropper,
@@ -81788,9 +75886,7 @@
"cKW" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/white,
/area/medical/virology)
@@ -81810,9 +75906,7 @@
"cKZ" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/turf/open/floor/plasteel/whitegreen/side{
dir = 4
@@ -81829,9 +75923,7 @@
req_one_access_txt = "0"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cLc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
@@ -81846,18 +75938,14 @@
req_one_access_txt = "0"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cLd" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cLe" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -81871,9 +75959,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cLf" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -81887,9 +75973,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cLg" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -81910,9 +75994,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cLh" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -81924,9 +76006,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cLi" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -81942,9 +76022,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg2"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cLj" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -81962,31 +76040,23 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cLk" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "0";
req_one_access_txt = "12;5;39;6"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cLl" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cLm" = (
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cLn" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -81998,9 +76068,7 @@
location = "9.4-Escape-4"
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cLo" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -82011,9 +76079,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cLp" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -82025,9 +76091,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cLq" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -82039,9 +76103,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cLr" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -82049,9 +76111,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cLs" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -82062,9 +76122,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cLt" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -82081,9 +76139,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cLu" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -82097,9 +76153,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cLv" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "0";
@@ -82114,9 +76168,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cLw" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -82130,9 +76182,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cLx" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -82145,9 +76195,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cLy" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -82161,9 +76209,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cLz" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -82182,9 +76228,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cLA" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -82199,9 +76243,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cLB" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -82214,9 +76256,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cLC" = (
/obj/machinery/doorButtons/airlock_controller{
idExterior = "incinerator_airlock_exterior";
@@ -82237,8 +76277,7 @@
dir = 8;
name = "turbine vent monitor";
network = list("Turbine");
- pixel_x = 29;
- pixel_y = 0
+ pixel_x = 29
},
/obj/machinery/button/door{
id = "turbinevent";
@@ -82259,15 +76298,13 @@
id = "incineratorturbine"
},
/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"cLD" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cLE" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
dir = 1;
@@ -82276,7 +76313,7 @@
target_temperature = 80
},
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cLF" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -82289,9 +76326,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg2"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cLG" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -82302,18 +76337,14 @@
dir = 9
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cLH" = (
/obj/machinery/space_heater,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cLJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/closet,
@@ -82322,9 +76353,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cLK" = (
/obj/machinery/power/smes,
/obj/structure/cable/yellow{
@@ -82332,7 +76361,7 @@
icon_state = "0-4"
},
/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
+/area/maintenance/solars/starboard/aft)
"cLL" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -82349,12 +76378,11 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
+/area/maintenance/solars/starboard/aft)
"cLM" = (
/obj/machinery/power/apc{
dir = 1;
- name = "Aft Starboard Solar APC";
- pixel_x = 0;
+ name = "Starboard Quarter Solar APC";
pixel_y = 24
},
/obj/structure/cable/yellow{
@@ -82362,7 +76390,7 @@
icon_state = "0-8"
},
/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
+/area/maintenance/solars/starboard/aft)
"cLN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
@@ -82371,8 +76399,7 @@
"cLO" = (
/obj/machinery/airalarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
@@ -82390,8 +76417,7 @@
"cLQ" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/open/floor/plasteel/whitegreen/side,
/area/medical/virology)
@@ -82418,15 +76444,14 @@
/obj/effect/landmark/blobstart,
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"cLV" = (
/obj/item/device/radio/intercom{
pixel_y = 25
},
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/structure/table/wood,
/obj/item/clothing/under/burial,
@@ -82468,9 +76493,7 @@
"cLY" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/grimy,
/area/chapel/office)
@@ -82516,44 +76539,32 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cMd" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cMe" = (
/obj/effect/turf_decal/stripes/corner{
dir = 2
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cMf" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cMg" = (
/obj/effect/turf_decal/stripes/corner{
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cMh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cMi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/yellow{
@@ -82566,9 +76577,7 @@
location = "9.1-Escape-1"
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cMj" = (
/obj/machinery/light{
dir = 4
@@ -82579,8 +76588,7 @@
network = list("SS13")
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-14";
@@ -82590,9 +76598,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cMk" = (
/obj/machinery/power/apc{
cell_type = 5000;
@@ -82603,16 +76609,12 @@
/obj/structure/cable/yellow,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cMl" = (
/obj/machinery/space_heater,
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cMm" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -82627,9 +76629,7 @@
icon_state = "2-4"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cMo" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -82641,24 +76641,18 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cMp" = (
/obj/structure/chair,
/obj/item/weapon/cigbutt,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cMq" = (
/obj/machinery/power/terminal{
icon_state = "term";
@@ -82674,7 +76668,7 @@
network = list("SS13")
},
/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
+/area/maintenance/solars/starboard/aft)
"cMr" = (
/obj/effect/landmark/xeno_spawn,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -82684,7 +76678,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/starboardsolar)
+/area/maintenance/solars/starboard/aft)
"cMs" = (
/obj/structure/cable{
d1 = 2;
@@ -82695,7 +76689,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
+/area/maintenance/solars/starboard/aft)
"cMt" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -82764,9 +76758,7 @@
"cMC" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/button/crematorium{
pixel_x = -25
@@ -82817,8 +76809,7 @@
dir = 4
},
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/turf/open/floor/plasteel/grimy,
/area/chapel/office)
@@ -82840,7 +76831,6 @@
dir = 1
},
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/camera{
@@ -82905,7 +76895,6 @@
"cMP" = (
/obj/item/candle,
/obj/machinery/light_switch{
- pixel_x = 0;
pixel_y = 25
},
/obj/effect/decal/cleanable/cobweb/cobweb2,
@@ -82928,9 +76917,7 @@
/obj/item/candle,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cMS" = (
/obj/structure/chair{
dir = 4
@@ -82940,9 +76927,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cMT" = (
/obj/structure/chair{
dir = 8
@@ -82951,20 +76936,14 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cMU" = (
/obj/machinery/status_display{
density = 0;
- layer = 4;
- pixel_x = 0;
- pixel_y = 0
+ layer = 4
},
/turf/closed/wall,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cMV" = (
/obj/structure/chair{
dir = 4
@@ -82973,17 +76952,13 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cMW" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cMX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -82995,9 +76970,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cMY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -83006,9 +76979,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cMZ" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/westleft{
@@ -83029,9 +77000,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cNa" = (
/obj/structure/chair/office/dark{
dir = 8
@@ -83043,30 +77012,24 @@
desc = "Used for watching output from station security cameras.";
name = "Security Camera Monitor";
network = list("SS13");
- pixel_x = 0;
pixel_y = 30
},
/turf/open/floor/plasteel/red/side{
dir = 9
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cNb" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
on = 1
},
/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 0;
pixel_y = 28
},
/turf/open/floor/plasteel/red/side{
dir = 1
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cNc" = (
/obj/structure/chair,
/obj/structure/sign/map/left{
@@ -83077,9 +77040,7 @@
/turf/open/floor/plasteel/red/side{
dir = 1
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cNd" = (
/obj/structure/table,
/obj/machinery/recharger{
@@ -83087,7 +77048,6 @@
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/structure/sign/map/right{
@@ -83098,17 +77058,13 @@
/turf/open/floor/plasteel/red/side{
dir = 5
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cNe" = (
/obj/machinery/door/airlock/external{
name = "Auxiliary Escape Airlock"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cNf" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -83120,13 +77076,10 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cNg" = (
/obj/structure/rack{
dir = 8;
@@ -83136,9 +77089,7 @@
/obj/effect/spawner/lootdrop/maintenance,
/obj/machinery/light/small,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cNh" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
@@ -83150,16 +77101,12 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"cNi" = (
/obj/machinery/biogenerator,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cNj" = (
/obj/item/weapon/reagent_containers/food/snacks/grown/banana,
/obj/item/weapon/reagent_containers/food/snacks/grown/banana,
@@ -83180,9 +77127,7 @@
/obj/item/seeds/glowshroom,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cNk" = (
/obj/item/weapon/storage/bag/plants/portaseeder,
/obj/item/weapon/storage/bag/plants/portaseeder,
@@ -83199,9 +77144,7 @@
/obj/item/weapon/reagent_containers/food/snacks/grown/mushroom/glowshroom,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cNl" = (
/obj/machinery/hydroponics/soil{
pixel_y = 8
@@ -83209,9 +77152,7 @@
/obj/item/seeds/carrot,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cNm" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -83229,9 +77170,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cNn" = (
/obj/machinery/hydroponics/soil{
pixel_y = 8
@@ -83239,9 +77178,7 @@
/obj/item/device/plant_analyzer,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cNo" = (
/obj/structure/cable{
d1 = 1;
@@ -83249,21 +77186,20 @@
icon_state = "1-4"
},
/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
+/area/maintenance/solars/starboard/aft)
"cNp" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/structure/chair/stool,
/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
+/area/maintenance/solars/starboard/aft)
"cNq" = (
/obj/machinery/power/solar_control{
id = "aftstarboard";
- name = "Aft Starboard Solar Control";
+ name = "Starboard Quarter Solar Control";
track = 0
},
/obj/structure/cable,
@@ -83276,11 +77212,10 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = -32
},
/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
+/area/maintenance/solars/starboard/aft)
"cNr" = (
/obj/structure/disposaloutlet,
/obj/structure/disposalpipe/trunk{
@@ -83331,7 +77266,7 @@
luminosity = 2
},
/turf/open/floor/engine/vacuum,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"cNx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/yellow{
@@ -83340,7 +77275,6 @@
icon_state = "1-2"
},
/obj/item/weapon/storage/fancy/candle_box{
- pixel_x = 0;
pixel_y = 5
},
/obj/structure/table/wood,
@@ -83368,9 +77302,7 @@
"cNB" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/carpet,
/area/chapel/main)
@@ -83440,9 +77372,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cNJ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -83454,9 +77384,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cNK" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -83465,9 +77393,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cNL" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -83477,15 +77403,11 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cNM" = (
/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cNN" = (
/obj/structure/flora/ausbushes/fernybush,
/obj/structure/flora/ausbushes/fullgrass,
@@ -83493,9 +77415,7 @@
/obj/structure/flora/ausbushes/palebush,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/grass,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cNO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/yellow{
@@ -83504,9 +77424,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cNP" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -83515,9 +77433,7 @@
icon_state = "0-4"
},
/turf/open/floor/plating,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cNQ" = (
/obj/machinery/computer/secure_data,
/obj/structure/cable/yellow{
@@ -83528,17 +77444,13 @@
/turf/open/floor/plasteel/red/side{
dir = 8
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cNR" = (
/obj/structure/chair/office/dark{
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cNS" = (
/obj/structure/table,
/obj/item/weapon/folder/red{
@@ -83557,24 +77469,19 @@
/obj/machinery/requests_console{
department = "Security";
departmentType = 5;
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/turf/open/floor/plasteel/red/side{
dir = 4
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cNT" = (
/obj/structure/sign/vacuum{
pixel_x = 32
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cNU" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -83587,9 +77494,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"cNW" = (
/obj/structure/sink/kitchen{
desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
@@ -83602,44 +77507,35 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cNX" = (
/obj/item/seeds/watermelon,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cNY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/structure/grille,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cNZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/structure/chair,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cOa" = (
/obj/structure/cable,
/obj/machinery/power/turbine{
luminosity = 2
},
/turf/open/floor/engine/vacuum,
-/area/maintenance/incinerator)
+/area/maintenance/disposal/incinerator)
"cOb" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -83688,8 +77584,7 @@
/area/chapel/office)
"cOg" = (
/obj/machinery/light_switch{
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/obj/machinery/light/small{
dir = 4
@@ -83778,9 +77673,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cOp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -83789,34 +77682,23 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cOq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cOr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cOs" = (
-/obj/machinery/ai_status_display{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/machinery/ai_status_display,
/turf/closed/wall,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cOt" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -83828,9 +77710,7 @@
initialize_directions = 11
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cOu" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -83844,9 +77724,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cOv" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_security{
@@ -83862,9 +77740,7 @@
dir = 4
},
/turf/open/floor/plasteel/red,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cOw" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -83873,9 +77749,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/structure/cable/yellow{
d1 = 4;
@@ -83889,9 +77763,7 @@
/turf/open/floor/plasteel/red/side{
dir = 10
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cOx" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -83899,9 +77771,7 @@
icon_state = "2-8"
},
/turf/open/floor/plasteel/red/side,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cOy" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
@@ -83910,9 +77780,7 @@
},
/obj/item/weapon/pen,
/turf/open/floor/plasteel/red/side,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cOz" = (
/obj/structure/table,
/obj/machinery/newscaster/security_unit{
@@ -83929,8 +77797,7 @@
pixel_y = 4
},
/obj/item/device/taperecorder{
- pixel_x = 4;
- pixel_y = 0
+ pixel_x = 4
},
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -83941,9 +77808,7 @@
/turf/open/floor/plasteel/red/side{
dir = 6
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cOA" = (
/obj/structure/rack,
/obj/item/clothing/mask/gas,
@@ -83953,15 +77818,11 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cOB" = (
/obj/item/seeds/sunflower/moonflower,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cOC" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -83969,22 +77830,16 @@
},
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cOD" = (
/obj/item/seeds/berry,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cOE" = (
/obj/structure/reagent_dispensers/watertank,
/obj/item/weapon/reagent_containers/glass/bucket,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cOF" = (
/obj/machinery/airalarm{
dir = 1;
@@ -83996,8 +77851,7 @@
/obj/structure/closet/wardrobe/chaplain_black,
/obj/machinery/airalarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/open/floor/plasteel/grimy,
/area/chapel/office)
@@ -84013,7 +77867,6 @@
dir = 2;
lighting = 3;
name = "Chapel Office APC";
- pixel_x = 0;
pixel_y = -25
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -84092,23 +77945,17 @@
"cOT" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cOU" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 2;
initialize_directions = 11
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cOV" = (
/obj/structure/chair{
dir = 8
@@ -84120,9 +77967,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cOW" = (
/obj/structure/flora/ausbushes/fernybush,
/obj/structure/flora/ausbushes/fullgrass,
@@ -84133,9 +77978,7 @@
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/grass,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cOX" = (
/obj/structure/chair{
dir = 4
@@ -84147,27 +77990,21 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cOY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cOZ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4;
initialize_directions = 11
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cPa" = (
/obj/structure/chair{
dir = 8
@@ -84179,14 +78016,10 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cPb" = (
/turf/closed/wall,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cPc" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -84196,9 +78029,7 @@
icon_state = "0-4"
},
/turf/open/floor/plating,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cPd" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -84207,9 +78038,7 @@
icon_state = "0-8"
},
/turf/open/floor/plating,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cPe" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -84221,9 +78050,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cPf" = (
/obj/machinery/hydroponics/soil{
pixel_y = 8
@@ -84233,9 +78060,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cPg" = (
/obj/machinery/hydroponics/soil{
pixel_y = 8
@@ -84245,9 +78070,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cPh" = (
/obj/machinery/hydroponics/soil{
pixel_y = 8
@@ -84257,9 +78080,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cPi" = (
/obj/machinery/hydroponics/soil{
pixel_y = 8
@@ -84269,9 +78090,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cPj" = (
/obj/machinery/hydroponics/soil{
pixel_y = 8
@@ -84281,9 +78100,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cPk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
@@ -84299,8 +78116,7 @@
"cPm" = (
/obj/machinery/airalarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/light{
icon_state = "tube1";
@@ -84342,23 +78158,17 @@
"cPs" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cPt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cPu" = (
/obj/structure/chair{
dir = 8
@@ -84368,16 +78178,12 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cPv" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cPx" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -84388,9 +78194,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cPz" = (
/obj/structure/closet,
/obj/item/device/flashlight,
@@ -84399,9 +78203,7 @@
name = "3maintenance loot spawner"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"cPA" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -84446,7 +78248,6 @@
desc = "A plaque commemorating the fallen, may they rest in peace, forever asleep amongst the stars. Someone has drawn a picture of a crying badger at the bottom.";
icon_state = "kiddieplaque";
name = "Remembrance Plaque";
- pixel_x = 0;
pixel_y = 32
},
/obj/item/weapon/reagent_containers/food/snacks/grown/poppy{
@@ -84558,8 +78359,7 @@
dir = 8
},
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-04";
@@ -84569,25 +78369,19 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cPP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cPQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cPR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -84596,9 +78390,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cPS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -84608,9 +78400,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cPT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -84619,17 +78409,13 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cPU" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cPV" = (
/obj/machinery/camera{
c_tag = "Departure Lounge - Starboard Aft";
@@ -84653,9 +78439,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cPW" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -84664,9 +78448,7 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cPX" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -84683,9 +78465,7 @@
/turf/open/floor/plasteel/whitepurple{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"cPY" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -84700,16 +78480,13 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cPZ" = (
/obj/structure/closet/coffin,
/turf/open/floor/plating,
/area/chapel/main)
"cQa" = (
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/light/small{
@@ -84731,7 +78508,6 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 21
},
/obj/machinery/light/small{
@@ -84804,17 +78580,13 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cQn" = (
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cQo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/navbeacon{
@@ -84825,9 +78597,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cQp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/navbeacon{
@@ -84838,17 +78608,13 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cQq" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cQr" = (
/obj/machinery/light/small{
dir = 1
@@ -84869,7 +78635,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cQs" = (
/obj/machinery/light/small{
dir = 1
@@ -84889,7 +78655,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cQt" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -84913,7 +78679,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cQv" = (
/obj/machinery/camera{
c_tag = "Toxins - Launch Area";
@@ -84927,9 +78693,7 @@
/turf/open/floor/plasteel{
dir = 1
},
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cQx" = (
/obj/structure/chair{
pixel_y = -2
@@ -84952,9 +78716,7 @@
/turf/open/floor/plasteel{
dir = 1
},
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cQC" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -84964,16 +78726,13 @@
dir = 8
},
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"cQD" = (
/obj/structure/table,
/obj/item/stack/sheet/glass{
@@ -85000,14 +78759,13 @@
amount = 50
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/item/stack/packageWrap,
/obj/item/stack/packageWrap,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cQE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
@@ -85050,15 +78808,11 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cQK" = (
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cQL" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -85066,25 +78820,19 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cQM" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cQN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cQO" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -85092,18 +78840,14 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cQP" = (
/obj/structure/sign/vacuum{
pixel_x = 32
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cQR" = (
/obj/machinery/door/poddoor/preopen{
id = "xeno_blastdoor";
@@ -85111,7 +78855,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cQS" = (
/obj/item/device/radio/intercom{
freerange = 0;
@@ -85125,7 +78869,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cQT" = (
/obj/structure/closet/coffin,
/obj/machinery/light/small,
@@ -85157,9 +78901,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cQZ" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -85172,15 +78914,15 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRa" = (
/obj/structure/sign/biohazard,
/turf/closed/wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRb" = (
/obj/structure/sign/securearea,
/turf/closed/wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRc" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -85195,11 +78937,11 @@
/turf/open/floor/plasteel/whitepurple{
dir = 4
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRe" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRf" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -85209,7 +78951,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRg" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -85220,25 +78962,23 @@
dir = 8
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRh" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/open/floor/plasteel/whitepurple/side{
dir = 9
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRi" = (
/turf/closed/wall/r_wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRj" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
@@ -85255,7 +78995,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRl" = (
/obj/machinery/door/window{
dir = 4;
@@ -85277,7 +79017,6 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/light/small{
@@ -85341,29 +79080,24 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cRt" = (
/obj/machinery/light/small{
dir = 4
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cRu" = (
/obj/structure/sign/biohazard,
/turf/closed/wall/r_wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRv" = (
/obj/machinery/doorButtons/access_button{
idDoor = "xeno_airlock_exterior";
idSelf = "xeno_airlock_control";
name = "Access Button";
pixel_x = -24;
- pixel_y = 0;
req_access_txt = "0"
},
/obj/structure/cable/yellow{
@@ -85384,24 +79118,24 @@
/turf/open/floor/plasteel/whitepurple{
dir = 4
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRw" = (
/obj/structure/sign/securearea,
/turf/closed/wall/r_wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRz" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
@@ -85409,15 +79143,14 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRA" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/light{
@@ -85427,20 +79160,20 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRC" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8;
initialize_directions = 11
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRD" = (
/obj/machinery/atmospherics/components/unary/tank/air{
dir = 4
},
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRE" = (
/obj/machinery/hydroponics/soil{
pixel_y = 8
@@ -85474,7 +79207,6 @@
/obj/machinery/button/door{
id = "chapel_shutters_parlour";
name = "chapel shutters control";
- pixel_x = 0;
pixel_y = -25;
req_access_txt = "0"
},
@@ -85535,7 +79267,7 @@
dir = 2
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRN" = (
/obj/machinery/monkey_recycler,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -85544,11 +79276,11 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRO" = (
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/starboard)
+/area/solar/starboard/aft)
"cRP" = (
/obj/machinery/door/poddoor{
id = "chapelgun";
@@ -85569,17 +79301,16 @@
/turf/open/floor/plasteel{
name = "floor"
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRS" = (
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/light_switch{
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/open/floor/plasteel/black,
/area/chapel/office)
@@ -85597,14 +79328,14 @@
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRW" = (
/obj/structure/cable/yellow{
d2 = 2;
@@ -85616,11 +79347,11 @@
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRY" = (
/obj/structure/cable/yellow{
d2 = 4;
@@ -85632,7 +79363,7 @@
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cRZ" = (
/obj/structure/cable/yellow,
/obj/structure/cable/yellow{
@@ -85645,7 +79376,7 @@
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSa" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -85664,7 +79395,7 @@
icon_state = "1-8"
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSb" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -85676,7 +79407,7 @@
dir = 2
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSc" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -85692,10 +79423,10 @@
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSd" = (
/turf/closed/wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/firedoor,
@@ -85703,7 +79434,7 @@
/turf/open/floor/plasteel{
name = "floor"
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSf" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -85717,27 +79448,27 @@
/turf/open/floor/plasteel{
name = "floor"
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSg" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSh" = (
/obj/structure/disposalpipe/trunk{
dir = 4
},
/obj/structure/disposaloutlet,
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSj" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -85748,7 +79479,7 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSk" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 1
@@ -85757,7 +79488,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSl" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -85770,14 +79501,13 @@
dir = 1
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSm" = (
/obj/structure/window/reinforced,
/obj/structure/table/reinforced,
/obj/machinery/button/door{
id = "xenobio8";
name = "Containment Blast Doors";
- pixel_x = 0;
pixel_y = 4;
req_access_txt = "55"
},
@@ -85785,14 +79515,14 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSn" = (
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSo" = (
/obj/effect/landmark/revenantspawn,
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSp" = (
/obj/machinery/light/small{
dir = 8
@@ -85803,7 +79533,7 @@
network = list("SS13","RD","Xeno")
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSq" = (
/obj/machinery/door/window/northleft{
base_state = "right";
@@ -85822,11 +79552,11 @@
icon_state = "1-2"
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSs" = (
/obj/machinery/door/window/northleft{
dir = 4;
@@ -85837,10 +79567,10 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSt" = (
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSu" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -85850,7 +79580,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSv" = (
/obj/machinery/door/window/northleft{
dir = 4;
@@ -85867,7 +79597,7 @@
icon_state = "1-2"
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSw" = (
/obj/machinery/door/window/northleft{
base_state = "right";
@@ -85880,7 +79610,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSx" = (
/obj/machinery/light/small{
dir = 4
@@ -85891,11 +79621,11 @@
network = list("SS13","RD","Xeno")
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSy" = (
/mob/living/simple_animal/slime,
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSz" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -85903,7 +79633,7 @@
icon_state = "0-8"
},
/turf/open/space,
-/area/solar/starboard)
+/area/solar/starboard/aft)
"cSA" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -85915,13 +79645,12 @@
dir = 1
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSB" = (
/obj/structure/table/reinforced,
/obj/machinery/button/door{
id = "xenobio3";
name = "Containment Blast Doors";
- pixel_x = 0;
pixel_y = 4;
req_access_txt = "55"
},
@@ -85937,7 +79666,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSC" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -85945,7 +79674,7 @@
d2 = 2
},
/turf/open/space,
-/area/solar/starboard)
+/area/solar/starboard/aft)
"cSD" = (
/obj/structure/cable/yellow,
/obj/structure/cable/yellow{
@@ -85958,7 +79687,7 @@
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSE" = (
/obj/structure/window/reinforced{
dir = 1
@@ -85976,7 +79705,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSF" = (
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -85985,7 +79714,7 @@
dir = 1
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/light{
@@ -85995,7 +79724,7 @@
dir = 8
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSH" = (
/obj/structure/chair/stool{
pixel_y = 8
@@ -86009,7 +79738,7 @@
name = "HIGH VOLTAGE"
},
/turf/closed/wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSJ" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -86018,14 +79747,14 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/corner{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSL" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4
@@ -86038,14 +79767,13 @@
dir = 1
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSM" = (
/obj/structure/window/reinforced,
/obj/structure/table/reinforced,
/obj/machinery/button/door{
id = "xenobio7";
name = "Containment Blast Doors";
- pixel_x = 0;
pixel_y = 4;
req_access_txt = "55"
},
@@ -86053,7 +79781,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSN" = (
/obj/machinery/door/window/northleft{
base_state = "right";
@@ -86072,7 +79800,7 @@
icon_state = "1-2"
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSO" = (
/obj/machinery/door/window/northleft{
dir = 4;
@@ -86083,7 +79811,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSP" = (
/obj/docking_port/stationary/random{
id = "pod_lavaland1";
@@ -86107,7 +79835,7 @@
icon_state = "1-2"
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSR" = (
/obj/machinery/door/window/northleft{
base_state = "right";
@@ -86120,13 +79848,12 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSS" = (
/obj/structure/table/reinforced,
/obj/machinery/button/door{
id = "xenobio2";
name = "Containment Blast Doors";
- pixel_x = 0;
pixel_y = 4;
req_access_txt = "55"
},
@@ -86142,7 +79869,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cST" = (
/obj/structure/window/reinforced{
dir = 1
@@ -86156,7 +79883,6 @@
/obj/machinery/button/door{
id = "xenobio1";
name = "Containment Blast Doors";
- pixel_x = 0;
pixel_y = 4;
req_access_txt = "55"
},
@@ -86164,7 +79890,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSU" = (
/obj/structure/chair{
dir = 1
@@ -86172,8 +79898,7 @@
/obj/machinery/status_display{
density = 0;
layer = 3;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/computer/shuttle/pod{
pixel_x = -32;
@@ -86200,10 +79925,9 @@
icon_state = "1-4"
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSW" = (
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
@@ -86213,7 +79937,7 @@
dir = 8
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSX" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/general/visible{
@@ -86225,7 +79949,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cSY" = (
/obj/structure/disposalpipe/segment,
/obj/structure/table/wood,
@@ -86246,7 +79970,7 @@
dir = 1
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTa" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
@@ -86255,7 +79979,7 @@
dir = 8
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTb" = (
/obj/machinery/door/window/northleft{
dir = 4;
@@ -86266,7 +79990,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTc" = (
/obj/machinery/door/window/northleft{
base_state = "right";
@@ -86285,7 +80009,7 @@
icon_state = "1-2"
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTd" = (
/obj/structure/chair{
dir = 1
@@ -86313,7 +80037,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTf" = (
/obj/structure/table,
/obj/machinery/light/small{
@@ -86321,7 +80045,6 @@
},
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/item/weapon/storage/box/bodybags{
@@ -86346,7 +80069,7 @@
icon_state = "1-2"
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTh" = (
/obj/machinery/door/poddoor{
id = "QMLoaddoor";
@@ -86365,7 +80088,6 @@
/obj/machinery/status_display{
density = 0;
layer = 3;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/computer/shuttle/pod{
@@ -86387,7 +80109,7 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTk" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/obj/structure/window/reinforced{
@@ -86415,7 +80137,7 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTl" = (
/obj/machinery/door/poddoor{
id = "smindicate";
@@ -86425,7 +80147,6 @@
id = "smindicate";
name = "external door control";
pixel_x = -26;
- pixel_y = 0;
req_access_txt = "150"
},
/obj/docking_port/mobile{
@@ -86473,17 +80194,14 @@
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTn" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"cTo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -86493,10 +80211,7 @@
"cTp" = (
/obj/structure/closet,
/turf/open/floor/plating,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"cTq" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -86508,13 +80223,12 @@
req_one_access_txt = "0"
},
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTr" = (
/obj/machinery/computer/security/telescreen{
dir = 1;
name = "Test Chamber Monitor";
network = list("Xeno");
- pixel_x = 0;
pixel_y = 2
},
/obj/structure/table/reinforced,
@@ -86522,7 +80236,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTs" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -86535,7 +80249,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTt" = (
/obj/machinery/door/window/southleft{
dir = 1;
@@ -86546,7 +80260,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTu" = (
/obj/structure/chair{
dir = 4
@@ -86566,8 +80280,7 @@
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0
+ name = "EXTERNAL AIRLOCK"
},
/turf/closed/wall/mineral/plastitanium,
/area/shuttle/syndicate)
@@ -86598,32 +80311,23 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTA" = (
/turf/open/floor/plating,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"cTB" = (
/obj/machinery/space_heater,
/turf/open/floor/plating,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"cTC" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"cTD" = (
/obj/structure/cable/yellow,
/obj/machinery/shieldwallgen/xenobiologyaccess,
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTE" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder/red,
@@ -86746,7 +80450,7 @@
"cTT" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall/r_wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cTU" = (
/obj/machinery/door/airlock/external{
name = "Ready Room";
@@ -86809,8 +80513,7 @@
/area/shuttle/syndicate)
"cUc" = (
/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{
- pixel_x = 6;
- pixel_y = 0
+ pixel_x = 6
},
/obj/item/weapon/reagent_containers/glass/bottle/charcoal{
pixel_x = -3
@@ -87133,9 +80836,7 @@
"cUI" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/structure/mirror{
pixel_x = 30
@@ -87179,7 +80880,7 @@
/obj/effect/landmark/lightsout,
/obj/machinery/holopad,
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cUN" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -87199,7 +80900,7 @@
},
/obj/effect/landmark/start/scientist,
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cUO" = (
/obj/structure/shuttle/engine/propulsion,
/obj/effect/turf_decal/stripes/line,
@@ -87228,7 +80929,7 @@
name = "Waste Release"
},
/turf/open/floor/plasteel/black,
-/area/atmos)
+/area/engine/atmos)
"cUS" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/supply)
@@ -87323,7 +81024,7 @@
dir = 2
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cVb" = (
/obj/structure/table/wood,
/obj/item/device/camera_film{
@@ -87365,15 +81066,13 @@
desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests.";
dir = 8;
name = "requests board";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/open/floor/wood,
/area/library)
"cVf" = (
/obj/machinery/light_switch{
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/turf/open/floor/wood,
/area/library)
@@ -87447,8 +81146,7 @@
dir = 8
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/open/floor/plating,
/area/shuttle/transport)
@@ -87481,7 +81179,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"cVz" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1;
@@ -87489,7 +81187,7 @@
id = "n2_in"
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"cVB" = (
/obj/structure/chair{
dir = 1
@@ -87504,7 +81202,7 @@
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"cVE" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -87550,7 +81248,7 @@
/turf/open/floor/plasteel/barber{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"cVK" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -87601,14 +81299,11 @@
/area/shuttle/auxillary_base)
"cVR" = (
/obj/structure/mirror{
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
@@ -87987,7 +81682,6 @@
/area/shuttle/abandoned)
"cWu" = (
/obj/machinery/shower{
- icon_state = "shower";
dir = 4
},
/obj/machinery/door/window/westright{
@@ -88010,8 +81704,7 @@
"cWv" = (
/obj/effect/decal/cleanable/blood/old,
/obj/structure/mirror{
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
@@ -88089,9 +81782,7 @@
"cWA" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"cWB" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/decal/cleanable/dirt{
@@ -88177,7 +81868,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"cWL" = (
/obj/machinery/door/airlock/titanium{
name = "recovery shuttle interior airlock"
@@ -88201,7 +81892,7 @@
req_one_access_txt = "0"
},
/turf/open/floor/plating,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"cWN" = (
/obj/machinery/door/airlock/titanium{
name = "cargo bay"
@@ -88350,7 +82041,7 @@
},
/obj/structure/easel,
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"cXe" = (
/obj/structure/chair/office/light{
dir = 4
@@ -88652,14 +82343,12 @@
"cXE" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"cXF" = (
/obj/machinery/vending/snack/random,
/turf/open/floor/mineral/titanium,
@@ -88765,7 +82454,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"cXS" = (
/obj/item/weapon/storage/bag/plants/portaseeder,
/obj/structure/table,
@@ -88796,7 +82485,6 @@
/area/shuttle/abandoned)
"cXU" = (
/obj/machinery/vending/hydroseeds{
- pixel_x = 0;
use_power = 0
},
/obj/effect/decal/cleanable/dirt{
@@ -88889,7 +82577,6 @@
name = "Robotics Operating Table"
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/obj/machinery/camera{
@@ -88900,7 +82587,7 @@
/turf/open/floor/plasteel/white/side{
dir = 1
},
-/area/assembly/robotics)
+/area/science/robotics/lab)
"cYd" = (
/obj/structure/table,
/obj/item/weapon/wrench,
@@ -88929,9 +82616,7 @@
"cYf" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
@@ -88941,7 +82626,6 @@
/area/shuttle/abandoned)
"cYg" = (
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
@@ -88995,13 +82679,11 @@
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
pixel_x = -28;
- pixel_y = 0;
req_access_txt = "0";
use_power = 0
},
/obj/machinery/iv_drip{
- density = 0;
- pixel_x = 0
+ density = 0
},
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
@@ -89038,9 +82720,7 @@
"cYp" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/effect/decal/cleanable/xenoblood,
/obj/effect/decal/cleanable/xenoblood/xgibs/limb,
@@ -89193,8 +82873,7 @@
"cYC" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{
- pixel_x = 6;
- pixel_y = 0
+ pixel_x = 6
},
/obj/item/weapon/reagent_containers/glass/bottle/charcoal{
pixel_x = -3
@@ -89223,7 +82902,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/mining_construction)
+/area/construction/mining/aux_base)
"cYF" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
@@ -89237,7 +82916,7 @@
icon_state = "2-4"
},
/turf/open/floor/plasteel/yellow/side,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"cYH" = (
/obj/machinery/door/airlock/titanium{
name = "Emergency Shuttle Airlock"
@@ -89281,12 +82960,11 @@
dir = 1;
name = "Auxillary Base Monitor";
network = list("AuxBase");
- pixel_x = 0;
pixel_y = -28
},
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plasteel/yellow/side,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"cYL" = (
/obj/machinery/door/poddoor/shutters{
id = "aux_base_shutters";
@@ -89294,7 +82972,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"cYM" = (
/obj/structure/tank_dispenser/oxygen{
layer = 2.7;
@@ -89405,11 +83083,11 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"cYQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
-/area/mining_construction)
+/area/construction/mining/aux_base)
"cYR" = (
/obj/structure/table,
/obj/item/stack/medical/gauze,
@@ -89421,7 +83099,6 @@
/obj/item/device/radio/intercom{
dir = 4;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 27
},
/obj/structure/chair,
@@ -89437,7 +83114,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cYU" = (
/obj/structure/table,
/obj/item/weapon/clipboard,
@@ -89487,8 +83164,6 @@
"cYZ" = (
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- pixel_x = 0;
- pixel_y = 0;
req_access_txt = "0";
use_power = 0
},
@@ -89501,7 +83176,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cZb" = (
/obj/structure/closet/crate{
name = "emergency supplies crate"
@@ -89551,9 +83226,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"cZg" = (
/obj/structure/sign/nosmoking_2,
/turf/closed/wall/mineral/titanium,
@@ -89565,9 +83238,7 @@
/turf/open/floor/plasteel/yellow/corner{
dir = 4
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"cZi" = (
/obj/structure/chair,
/turf/open/floor/mineral/titanium,
@@ -89582,7 +83253,6 @@
/obj/item/device/radio/intercom{
dir = 2;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = -31
},
/obj/structure/chair{
@@ -89637,9 +83307,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"cZr" = (
/obj/structure/sign/bluecross_2,
/turf/closed/wall/mineral/titanium,
@@ -89665,8 +83333,7 @@
"cZu" = (
/obj/machinery/status_display{
dir = 8;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/holopad,
/turf/open/floor/mineral/titanium/blue,
@@ -89676,12 +83343,11 @@
name = "Killroom Floor";
initial_gas_mix = "n2=500;TEMP=80"
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"cZw" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{
- pixel_x = 6;
- pixel_y = 0
+ pixel_x = 6
},
/obj/item/weapon/reagent_containers/glass/bottle/charcoal{
pixel_x = -3
@@ -89726,7 +83392,6 @@
/obj/item/device/radio/intercom{
dir = 2;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = -31
},
/turf/open/floor/mineral/titanium/blue,
@@ -89744,7 +83409,6 @@
/obj/item/weapon/folder/blue,
/obj/structure/extinguisher_cabinet{
dir = 4;
- pixel_x = 0;
pixel_y = -27
},
/turf/open/floor/mineral/titanium/blue,
@@ -89753,7 +83417,6 @@
/obj/machinery/space_heater,
/obj/structure/extinguisher_cabinet{
dir = 4;
- pixel_x = 0;
pixel_y = -27
},
/obj/effect/turf_decal/bot,
@@ -89937,7 +83600,6 @@
pixel_y = 1
},
/obj/item/weapon/storage/toolbox/mechanical{
- pixel_x = 0;
pixel_y = -1
},
/obj/item/weapon/storage/toolbox/emergency{
@@ -90041,7 +83703,6 @@
/obj/item/device/radio/intercom{
dir = 2;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = -31
},
/obj/item/weapon/book/manual/wiki/security_space_law{
@@ -90071,16 +83732,13 @@
/obj/item/device/radio/intercom{
dir = 2;
name = "Station Intercom (General)";
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
"dat" = (
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- pixel_x = 0;
- pixel_y = 0;
req_access_txt = "0";
use_power = 0
},
@@ -90107,7 +83765,6 @@
/obj/item/device/radio/intercom{
dir = 2;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = -31
},
/obj/machinery/portable_atmospherics/canister/oxygen,
@@ -90144,11 +83801,11 @@
icon_state = "4-8"
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"daB" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"daC" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
@@ -90156,7 +83813,7 @@
name = "HIGH VOLTAGE"
},
/turf/closed/wall/r_wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"daD" = (
/obj/structure/disposaloutlet{
dir = 2
@@ -90165,7 +83822,7 @@
dir = 1
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"daE" = (
/obj/structure/table,
/obj/item/stack/sheet/metal{
@@ -90173,24 +83830,24 @@
},
/obj/item/device/electropack,
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"daF" = (
/obj/machinery/sparker{
id = "Xenobio";
pixel_x = -25
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"daG" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"daH" = (
/obj/item/device/radio/beacon,
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"daI" = (
/obj/structure/table,
/obj/machinery/cell_charger{
@@ -90203,11 +83860,11 @@
maxcharge = 15000
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"daJ" = (
/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner,
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"daK" = (
/obj/machinery/camera{
c_tag = "Xenobiology Lab - Test Chamber";
@@ -90215,11 +83872,11 @@
network = list("SS13","RD","Xeno")
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"daL" = (
/obj/machinery/light/small,
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"daM" = (
/obj/structure/table,
/obj/item/device/assembly/igniter{
@@ -90239,23 +83896,20 @@
pixel_y = -1
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"daN" = (
/obj/item/device/radio/intercom{
pixel_y = -25
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"daO" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"daP" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -90268,10 +83922,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"daQ" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -90281,7 +83932,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"daR" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -90293,14 +83944,14 @@
name = "Killroom Floor";
initial_gas_mix = "n2=500;TEMP=80"
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"daS" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/circuit{
name = "Killroom Floor";
initial_gas_mix = "n2=500;TEMP=80"
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"daT" = (
/turf/open/space,
/obj/machinery/porta_turret/syndicate{
@@ -90330,9 +83981,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg2"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"daY" = (
/obj/machinery/power/rad_collector{
anchored = 1
@@ -90365,11 +84014,10 @@
/area/crew_quarters/bar)
"dbe" = (
/obj/machinery/keycard_auth{
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/turf/open/floor/carpet,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"dbg" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 1
@@ -90403,20 +84051,14 @@
/obj/item/hand_labeler_refill,
/obj/structure/easel,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"dbl" = (
/obj/structure/easel,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"dbm" = (
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva{
- name = "E.V.A. Storage"
- })
+/area/ai_monitored/storage/eva)
"dbn" = (
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
@@ -90430,7 +84072,7 @@
network = list("SS13","RD","Xeno")
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dbp" = (
/obj/machinery/light/small{
dir = 4
@@ -90441,14 +84083,12 @@
network = list("SS13","RD","Xeno")
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dbq" = (
/turf/open/floor/wood{
icon_state = "wood-broken6"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"dbr" = (
/obj/machinery/camera{
c_tag = "Morgue";
@@ -90467,7 +84107,7 @@
network = list("SS13","RD","Xeno")
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dbt" = (
/obj/machinery/light/small{
dir = 4
@@ -90478,10 +84118,10 @@
network = list("SS13","RD","Xeno")
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dbu" = (
/turf/open/floor/engine/vacuum,
-/area/atmos)
+/area/engine/atmos)
"dbv" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/light/small,
@@ -90489,7 +84129,7 @@
name = "Killroom Floor";
initial_gas_mix = "n2=500;TEMP=80"
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dbw" = (
/obj/machinery/camera{
c_tag = "Xenobiology Lab - Kill Chamber";
@@ -90501,7 +84141,7 @@
name = "Killroom Floor";
initial_gas_mix = "n2=500;TEMP=80"
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dbx" = (
/obj/structure/table/optable,
/obj/item/weapon/surgical_drapes,
@@ -90607,9 +84247,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dbI" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -90627,9 +84265,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"dbJ" = (
/obj/structure/cable{
icon_state = "0-4";
@@ -90640,7 +84276,7 @@
name = "Aft-Starboard Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/starboard)
+/area/solar/starboard/aft)
"dbK" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -90654,7 +84290,7 @@
icon_state = "2-8"
},
/turf/open/space,
-/area/solar/starboard)
+/area/solar/starboard/aft)
"dbL" = (
/obj/structure/cable{
d2 = 8;
@@ -90665,7 +84301,7 @@
name = "Aft-Starboard Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/starboard)
+/area/solar/starboard/aft)
"dbM" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -90682,16 +84318,16 @@
icon_state = "1-2"
},
/turf/open/space,
-/area/solar/starboard)
+/area/solar/starboard/aft)
"dbN" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
+/area/maintenance/solars/starboard/aft)
"dbO" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable,
/turf/open/space,
-/area/solar/starboard)
+/area/solar/starboard/aft)
"dbP" = (
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
@@ -90701,45 +84337,42 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
+/area/maintenance/solars/starboard/aft)
"dbQ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
+/area/maintenance/solars/starboard/aft)
"dbR" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/open/space,
-/area/solar/starboard)
+/area/solar/starboard/aft)
"dbS" = (
/obj/structure/lattice/catwalk,
/obj/item/stack/cable_coil,
/turf/open/space,
-/area/solar/starboard)
+/area/solar/starboard/aft)
"dbT" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "0-4"
},
/turf/open/space,
-/area/solar/starboard)
+/area/solar/starboard/aft)
"dbU" = (
/obj/machinery/power/tracker,
/obj/structure/cable{
@@ -90747,7 +84380,7 @@
icon_state = "0-8"
},
/turf/open/floor/plating/airless,
-/area/solar/starboard)
+/area/solar/starboard/aft)
"dbV" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -90766,7 +84399,7 @@
icon_state = "1-2"
},
/turf/open/space,
-/area/solar/starboard)
+/area/solar/starboard/aft)
"dbW" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -90780,13 +84413,12 @@
icon_state = "1-8"
},
/turf/open/space,
-/area/solar/starboard)
+/area/solar/starboard/aft)
"dbX" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
@@ -90795,7 +84427,7 @@
dir = 9
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dbY" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -90806,7 +84438,7 @@
dir = 1
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dbZ" = (
/obj/machinery/doorButtons/access_button{
idDoor = "xeno_airlock_interior";
@@ -90822,8 +84454,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/light{
dir = 4
@@ -90832,7 +84463,7 @@
dir = 5
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dca" = (
/obj/machinery/firealarm{
dir = 2;
@@ -90841,7 +84472,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcb" = (
/obj/machinery/airalarm{
frequency = 1439;
@@ -90855,7 +84486,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcc" = (
/obj/structure/table/glass,
/obj/item/stack/sheet/mineral/plasma{
@@ -90887,7 +84518,6 @@
cell_type = 10000;
dir = 1;
name = "Xenobiology APC";
- pixel_x = 0;
pixel_y = 27
},
/obj/structure/cable/yellow{
@@ -90897,7 +84527,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcd" = (
/obj/structure/table/glass,
/obj/item/weapon/paper_bin{
@@ -90914,7 +84544,6 @@
department = "Science";
departmentType = 2;
name = "Science Requests Console";
- pixel_x = 0;
pixel_y = 30;
receive_ore_updates = 1
},
@@ -90924,7 +84553,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dce" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/box/beakers{
@@ -90942,22 +84571,19 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcf" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/turf/open/floor/plasteel/whitepurple/side{
dir = 5
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/shower{
- icon_state = "shower";
dir = 4
},
/obj/item/device/radio/intercom{
@@ -90970,7 +84596,7 @@
dir = 8
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dch" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -90981,7 +84607,7 @@
dir = 6
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dci" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -90996,7 +84622,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcj" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
@@ -91019,7 +84645,7 @@
/turf/open/floor/plasteel/whitepurple{
dir = 4
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dck" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -91040,7 +84666,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcl" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1;
@@ -91052,7 +84678,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -91067,7 +84693,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -91087,7 +84713,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dco" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
@@ -91102,7 +84728,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcp" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -91110,18 +84736,18 @@
icon_state = "1-8"
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcq" = (
/obj/structure/chair/office/light{
dir = 1
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcr" = (
/turf/open/floor/plasteel/whitepurple/side{
dir = 4
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcs" = (
/obj/structure/closet/emcloset,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -91136,7 +84762,7 @@
dir = 10
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dct" = (
/obj/structure/closet/l3closet/scientist,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -91147,7 +84773,7 @@
dir = 2
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcu" = (
/obj/structure/closet/l3closet/scientist,
/obj/machinery/airalarm{
@@ -91161,7 +84787,7 @@
dir = 6
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
@@ -91173,7 +84799,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcw" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -91182,7 +84808,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/chair/comfy/black{
@@ -91192,34 +84818,34 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcy" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcB" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
on = 1
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcC" = (
/obj/structure/chair/office/light,
/obj/effect/landmark/start/scientist,
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcD" = (
/obj/machinery/reagentgrinder{
pixel_x = -1;
@@ -91229,20 +84855,20 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 4
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcE" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 4
},
/turf/open/floor/plating/airless,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcH" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -91257,7 +84883,7 @@
dir = 2
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
@@ -91267,7 +84893,7 @@
dir = 2
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcJ" = (
/obj/structure/reagent_dispensers/watertank,
/obj/item/weapon/extinguisher{
@@ -91282,11 +84908,10 @@
dir = 1
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcK" = (
/obj/machinery/disposal/bin,
/obj/structure/sign/deathsposal{
- pixel_x = 0;
pixel_y = -32
},
/obj/structure/disposalpipe/trunk{
@@ -91295,12 +84920,12 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 2
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcL" = (
/obj/machinery/chem_dispenser/constructable,
/obj/machinery/light,
/turf/open/floor/plasteel/whitepurple/side,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcM" = (
/obj/machinery/chem_master{
pixel_x = -2;
@@ -91311,19 +84936,17 @@
pixel_y = -29
},
/turf/open/floor/plasteel/whitepurple/side,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcN" = (
/obj/machinery/chem_heater,
/turf/open/floor/plasteel/whitepurple/side{
dir = 6
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcO" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/machinery/camera{
c_tag = "Xenobiology Lab - Central";
@@ -91335,7 +84958,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcP" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -91350,14 +84973,14 @@
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/corner{
dir = 8
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcR" = (
/obj/structure/cable/yellow{
d2 = 2;
@@ -91369,7 +84992,7 @@
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcS" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -91385,14 +85008,14 @@
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcU" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -91407,13 +85030,12 @@
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcV" = (
/obj/structure/window/reinforced,
/obj/machinery/button/door{
id = "xenobio6";
name = "Containment Blast Doors";
- pixel_x = 0;
pixel_y = 4;
req_access_txt = "55"
},
@@ -91422,7 +85044,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcW" = (
/obj/structure/cable/yellow{
d2 = 2;
@@ -91434,7 +85056,7 @@
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcX" = (
/obj/structure/cable/yellow{
d2 = 4;
@@ -91447,7 +85069,7 @@
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -91459,7 +85081,7 @@
dir = 1
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dcZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/yellow{
@@ -91469,7 +85091,7 @@
},
/obj/effect/turf_decal/stripes/corner,
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dda" = (
/obj/structure/window/reinforced{
dir = 1
@@ -91487,7 +85109,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"ddb" = (
/obj/structure/cable/yellow,
/obj/structure/cable/yellow{
@@ -91503,7 +85125,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"ddc" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -91513,12 +85135,11 @@
dir = 8
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"ddd" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/obj/machinery/light{
dir = 4
@@ -91527,14 +85148,11 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dde" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"ddf" = (
/obj/machinery/portable_atmospherics/canister,
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
@@ -91549,7 +85167,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"ddg" = (
/obj/machinery/portable_atmospherics/canister,
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
@@ -91564,30 +85182,21 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"ddh" = (
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"ddi" = (
/obj/structure/rack,
/turf/open/floor/plating,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"ddj" = (
/turf/open/floor/plating{
icon_state = "platingdmg2"
},
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"ddk" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -91601,7 +85210,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"ddl" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -91625,7 +85234,7 @@
dir = 2
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"ddm" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -91645,7 +85254,7 @@
dir = 2
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"ddn" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -91656,7 +85265,7 @@
dir = 2
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"ddo" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -91672,7 +85281,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"ddp" = (
/obj/machinery/door/airlock/hatch{
icon_state = "door_closed";
@@ -91686,7 +85295,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"ddq" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -91694,17 +85303,11 @@
icon_state = "2-8"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"ddr" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dds" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -91715,7 +85318,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"ddt" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -91723,10 +85326,7 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"ddu" = (
/obj/structure/cable/yellow{
d2 = 8;
@@ -91743,7 +85343,7 @@
/obj/structure/disposalpipe/segment,
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"ddv" = (
/obj/structure/cable/yellow{
d2 = 8;
@@ -91755,14 +85355,16 @@
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"ddw" = (
/obj/structure/cable/yellow,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Test Chamber Maintenance APC";
+ pixel_x = 26
+ },
/turf/open/floor/plating,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"ddx" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -91774,20 +85376,17 @@
initialize_directions = 11
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"ddy" = (
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"ddz" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"ddA" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
@@ -91798,7 +85397,7 @@
req_access_txt = "55"
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"ddB" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -91813,14 +85412,14 @@
name = "Killroom Floor";
initial_gas_mix = "n2=500;TEMP=80"
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"ddC" = (
/obj/structure/disposalpipe/trunk{
dir = 1
},
/obj/structure/disposaloutlet,
/turf/open/floor/plating/airless,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"ddD" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
@@ -91842,7 +85441,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"ddG" = (
/obj/effect/turf_decal/stripes/line,
/obj/docking_port/stationary/public_mining_dock,
@@ -91918,8 +85517,7 @@
},
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/turf/open/floor/plasteel/black,
/area/engine/engineering)
@@ -92103,7 +85701,6 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 21
},
/turf/open/floor/plasteel/black,
@@ -92113,8 +85710,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line,
/obj/machinery/light,
@@ -92128,8 +85724,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
@@ -92147,8 +85742,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
@@ -92161,7 +85755,6 @@
"deu" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 10;
- pixel_x = 0;
initialize_directions = 10
},
/obj/structure/cable/white{
@@ -92299,7 +85892,6 @@
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 10;
- pixel_x = 0;
initialize_directions = 10
},
/obj/structure/window/reinforced/highpressure/fulltile,
@@ -92372,7 +85964,6 @@
"dfb" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 10;
- pixel_x = 0;
initialize_directions = 10
},
/obj/machinery/meter,
@@ -92547,8 +86138,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -92559,8 +86149,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -92578,8 +86167,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -92598,8 +86186,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
icon_state = "1-8"
@@ -92628,7 +86215,6 @@
"dfJ" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 10;
- pixel_x = 0;
initialize_directions = 10
},
/obj/structure/cable/white{
@@ -92714,7 +86300,6 @@
"dfV" = (
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -92765,8 +86350,7 @@
/area/engine/engineering)
"dgb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/closed/wall/r_wall,
/area/engine/engineering)
@@ -92942,8 +86526,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/structure/transit_tube/horizontal,
/obj/machinery/atmospherics/pipe/simple/orange/visible,
@@ -92968,17 +86551,16 @@
"dhe" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 10;
- pixel_x = 0;
initialize_directions = 10
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"dhg" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 5
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"dhh" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/machinery/atmospherics/components/binary/pump{
@@ -92987,7 +86569,7 @@
on = 0
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"dhi" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/door/window/northleft{
@@ -93000,14 +86582,14 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/atmos)
+/area/engine/atmos)
"dhj" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/atmos)
+/area/engine/atmos)
"dhk" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -93015,7 +86597,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"dhl" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/orange/visible{
@@ -93050,9 +86632,7 @@
/obj/item/weapon/poster/random_contraband,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"dhp" = (
/obj/machinery/light{
icon_state = "tube1";
@@ -93070,9 +86650,7 @@
pixel_x = -32
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"dhq" = (
/obj/structure/table/reinforced,
/obj/structure/light_construct/small{
@@ -93086,9 +86664,7 @@
/obj/item/weapon/poster/random_official,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"dhr" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -93116,25 +86692,21 @@
pixel_y = -32
},
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
+/area/crew_quarters/fitness/recreation)
"dht" = (
/obj/item/weapon/cigbutt,
/obj/structure/sign/poster/contraband/random{
pixel_x = -32
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"dhu" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/structure/sign/poster/contraband/random{
pixel_y = 32
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"dhv" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/westleft{
@@ -93171,7 +86743,7 @@
name = "2maintenance loot spawner"
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"dhx" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -93193,7 +86765,7 @@
pixel_y = 32
},
/turf/open/floor/plating,
-/area/maintenance/fore)
+/area/maintenance/port/fore)
"dhy" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -93203,9 +86775,7 @@
pixel_y = 32
},
/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"dhz" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -93221,7 +86791,7 @@
pixel_y = 32
},
/turf/open/floor/plasteel/barber,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"dhB" = (
/obj/item/clothing/glasses/meson,
/obj/structure/closet/crate,
@@ -93231,7 +86801,7 @@
name = "2maintenance loot spawner"
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"dhC" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -93252,9 +86822,7 @@
pixel_y = -32
},
/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
+/area/quartermaster/warehouse)
"dhD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -93263,17 +86831,13 @@
pixel_y = -32
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"dhE" = (
/obj/structure/sign/poster/contraband/random{
pixel_x = 32
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"dhF" = (
/obj/structure/closet/wardrobe/pjs,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -93283,7 +86847,7 @@
pixel_y = -32
},
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"dhG" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -93299,9 +86863,7 @@
/turf/open/floor/plasteel/brown/corner{
dir = 4
},
-/area/construction/Storage{
- name = "Storage Wing"
- })
+/area/construction/storage/wing)
"dhH" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -93314,7 +86876,7 @@
pixel_x = -32
},
/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"dhI" = (
/obj/machinery/vending/assist,
/obj/machinery/light/small{
@@ -93341,16 +86903,13 @@
/obj/item/weapon/poster/random_contraband,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"dhL" = (
/obj/structure/table,
/obj/item/device/analyzer,
/obj/machinery/power/apc{
dir = 2;
name = "Tool Storage APC";
- pixel_x = 0;
pixel_y = -27
},
/obj/structure/cable/yellow,
@@ -93367,7 +86926,6 @@
freerange = 0;
frequency = 1459;
name = "Station Intercom (General)";
- pixel_x = 0;
pixel_y = 21
},
/obj/structure/sign/poster/official/random{
@@ -93376,9 +86934,7 @@
/turf/open/floor/plasteel/arrival{
dir = 5
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"dhN" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -93394,7 +86950,7 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/starboard)
+/area/maintenance/starboard/fore)
"dhO" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -93405,9 +86961,7 @@
pixel_x = -32
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port/fore)
"dhP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -93443,18 +86997,14 @@
/obj/item/weapon/poster/random_contraband,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"dhS" = (
/obj/machinery/vending/cigarette,
/obj/structure/sign/poster/official/random{
pixel_x = 32
},
/turf/open/floor/plating,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"dhT" = (
/obj/structure/sign/poster/random,
/turf/closed/wall,
@@ -93484,7 +87034,6 @@
/obj/item/weapon/wrench,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/structure/sign/poster/random{
@@ -93511,9 +87060,7 @@
pixel_x = -32
},
/turf/open/floor/plating,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"dib" = (
/obj/structure/table/wood,
/obj/item/weapon/lipstick{
@@ -93549,9 +87096,7 @@
/turf/open/floor/plasteel/arrival{
dir = 4
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"did" = (
/obj/structure/table/wood,
/obj/item/weapon/folder,
@@ -93583,9 +87128,7 @@
pixel_y = -32
},
/turf/open/floor/plating,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
+/area/crew_quarters/toilet/auxiliary)
"dii" = (
/obj/machinery/door/window{
base_state = "right";
@@ -93656,16 +87199,13 @@
},
/obj/item/weapon/poster/random_official,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"dip" = (
/obj/structure/table/wood,
/obj/machinery/button/door{
id = "corporate_privacy";
name = "corporate showroom shutters control";
pixel_x = 28;
- pixel_y = 0;
req_access_txt = "19"
},
/obj/item/weapon/poster/random_official,
@@ -93678,9 +87218,7 @@
name = "NanoTrasen-brand personal AI device exhibit"
},
/turf/open/floor/carpet,
-/area/assembly/showroom{
- name = "\improper Corporate Showroom"
- })
+/area/bridge/showroom/corporate)
"diq" = (
/obj/machinery/light/small{
dir = 8
@@ -93737,9 +87275,7 @@
pixel_y = 32
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"diu" = (
/obj/structure/reagent_dispensers/watertank,
/obj/item/weapon/storage/box/lights/mixed,
@@ -93764,9 +87300,7 @@
pixel_y = 32
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"diw" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -93785,9 +87319,7 @@
/obj/item/weapon/poster/random_contraband,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"diy" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
@@ -93796,16 +87328,12 @@
},
/obj/item/weapon/poster/random_contraband,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"diz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/structure/sign/poster/official/cleanliness{
pixel_x = 32
@@ -93822,9 +87350,7 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"diB" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -93841,9 +87367,7 @@
pixel_y = 32
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"diC" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -93860,15 +87384,12 @@
pixel_y = 32
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"diD" = (
/obj/machinery/vending/cigarette,
/obj/machinery/status_display{
density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/sign/poster/official/random{
@@ -93877,9 +87398,7 @@
/turf/open/floor/plasteel/white/side{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"diE" = (
/obj/structure/rack,
/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka{
@@ -93895,18 +87414,14 @@
pixel_y = 32
},
/turf/open/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"diF" = (
/obj/structure/chair/stool,
/obj/structure/sign/poster/contraband/random{
pixel_y = 32
},
/turf/open/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"diG" = (
/obj/structure/chair/stool,
/obj/structure/sign/poster/contraband/random{
@@ -93915,9 +87430,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"diH" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 8
@@ -93927,9 +87440,7 @@
pixel_x = 32
},
/turf/open/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"diI" = (
/obj/item/weapon/poster/random_contraband,
/obj/item/weapon/poster/random_contraband,
@@ -93950,9 +87461,7 @@
pixel_x = 32
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"diJ" = (
/obj/structure/light_construct/small,
/obj/structure/table/wood/poker,
@@ -93961,9 +87470,7 @@
pixel_y = -32
},
/turf/open/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"diK" = (
/obj/item/weapon/dice/d20,
/obj/item/weapon/dice,
@@ -93978,9 +87485,7 @@
pixel_y = -32
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"diL" = (
/obj/item/weapon/tank/internals/air,
/obj/item/weapon/tank/internals/air,
@@ -93992,9 +87497,7 @@
pixel_x = 32
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"diM" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -94011,10 +87514,13 @@
/obj/structure/sign/poster/contraband/random{
pixel_y = 32
},
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/port/aft)
"diN" = (
/obj/structure/chair/stool,
/obj/structure/sign/poster/official/random{
@@ -94023,9 +87529,7 @@
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
-/area/medical/medbay3{
- name = "Medbay Aft"
- })
+/area/medical/medbay/aft)
"diP" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -94039,9 +87543,7 @@
pixel_y = -32
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"diQ" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -94053,9 +87555,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg2"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"diR" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -94067,9 +87567,7 @@
},
/obj/item/weapon/ore/slag,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"diS" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -94081,9 +87579,7 @@
},
/obj/item/weapon/storage/box/lights/mixed,
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"diT" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -94097,9 +87593,7 @@
pixel_y = 32
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"diU" = (
/obj/structure/closet/crate,
/obj/item/weapon/poster/random_official,
@@ -94109,9 +87603,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"diV" = (
/obj/machinery/light{
icon_state = "tube1";
@@ -94133,9 +87625,7 @@
pixel_x = -32
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"diW" = (
/obj/machinery/hydroponics/soil{
pixel_y = 8
@@ -94147,13 +87637,11 @@
pixel_y = 32
},
/turf/open/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/starboard/aft)
"diX" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/space,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"djg" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -94161,7 +87649,7 @@
icon_state = "1-4"
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"djh" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -94172,14 +87660,13 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"djj" = (
/obj/machinery/light/small{
dir = 4
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/camera{
@@ -94189,9 +87676,7 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/black,
/area/chapel/main)
@@ -94211,7 +87696,7 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"djt" = (
/obj/structure/cable{
d1 = 1;
@@ -94286,18 +87771,14 @@
name = "Arrival Airlock"
},
/turf/open/floor/plating,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"djA" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 2;
name = "Arrival Airlock"
},
/turf/open/floor/plating,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"djB" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -94320,18 +87801,14 @@
name = "Arrival Airlock"
},
/turf/open/floor/plating,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"djD" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 1;
name = "Arrival Airlock"
},
/turf/open/floor/plating,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"djE" = (
/obj/structure/chair{
dir = 8
@@ -94432,36 +87909,28 @@
name = "Arrival Airlock"
},
/turf/open/floor/plating,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"djT" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 2;
name = "Arrival Airlock"
},
/turf/open/floor/plating,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"djU" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 1;
name = "Arrival Airlock"
},
/turf/open/floor/plating,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"djV" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 1;
name = "Arrival Airlock"
},
/turf/open/floor/plating,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"djW" = (
/obj/structure/table/wood,
/obj/item/weapon/clipboard,
@@ -94976,8 +88445,7 @@
/obj/item/stack/medical/ointment,
/obj/machinery/status_display{
dir = 8;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/light{
icon_state = "tube1";
@@ -95121,130 +88589,67 @@
/area/engine/supermatter)
"dlV" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dlW" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dlX" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dlY" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dlZ" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dma" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dmb" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dmc" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dmd" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dme" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dmf" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dmg" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dmh" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dmi" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dmj" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dmk" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dml" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dmm" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dmn" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dmo" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dmp" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dmq" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -95259,7 +88664,7 @@
req_access_txt = "55"
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dmr" = (
/obj/machinery/door/airlock/research{
glass = 1;
@@ -95268,73 +88673,40 @@
req_access_txt = "55"
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"dms" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dmt" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dmu" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dmv" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dmw" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dmx" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dmy" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dmz" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dmA" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dmB" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dmC" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft{
- icon_state = "xenomaint";
- name = "Xeno Maintenance"
- })
+/area/maintenance/department/science/xenobiology)
"dmD" = (
/obj/structure/displaycase/trophy,
/turf/open/floor/wood,
@@ -95343,6 +88715,2978 @@
/obj/structure/displaycase/trophy,
/turf/open/floor/wood,
/area/library)
+"dmF" = (
+/turf/closed/wall,
+/area/quartermaster/sorting)
+"dmG" = (
+/turf/closed/wall,
+/area/quartermaster/sorting)
+"dmH" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"dmI" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"dmJ" = (
+/turf/closed/wall,
+/area/quartermaster/sorting)
+"dmK" = (
+/turf/closed/wall,
+/area/quartermaster/sorting)
+"dmL" = (
+/turf/closed/wall,
+/area/quartermaster/sorting)
+"dmM" = (
+/turf/closed/wall,
+/area/quartermaster/sorting)
+"dmN" = (
+/turf/closed/wall,
+/area/quartermaster/sorting)
+"dmO" = (
+/turf/closed/wall,
+/area/quartermaster/sorting)
+"dmP" = (
+/turf/closed/wall,
+/area/quartermaster/sorting)
+"dmQ" = (
+/turf/closed/wall,
+/area/quartermaster/sorting)
+"dmR" = (
+/turf/closed/wall,
+/area/quartermaster/sorting)
+"dmS" = (
+/turf/closed/wall,
+/area/quartermaster/sorting)
+"dmT" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"dmU" = (
+/turf/closed/wall,
+/area/quartermaster/sorting)
+"dmV" = (
+/turf/closed/wall,
+/area/quartermaster/sorting)
+"dmW" = (
+/turf/closed/wall,
+/area/quartermaster/sorting)
+"dmX" = (
+/turf/closed/wall,
+/area/quartermaster/sorting)
+"dmY" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"dmZ" = (
+/turf/closed/wall,
+/area/quartermaster/sorting)
+"dna" = (
+/turf/closed/wall,
+/area/quartermaster/sorting)
+"dnb" = (
+/turf/closed/wall,
+/area/quartermaster/sorting)
+"dnc" = (
+/turf/closed/wall,
+/area/quartermaster/sorting)
+"dnd" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dne" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dnf" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dng" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dnh" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dni" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dnj" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dnk" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dnl" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dnm" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dnn" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dno" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dnp" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dnq" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dnr" = (
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ cell_type = 2500;
+ dir = 4;
+ name = "Port Bow Maintenance APC";
+ pixel_x = 26
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/port/fore)
+"dns" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dnt" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dnu" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dnv" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dnw" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dnx" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dny" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dnz" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dnA" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dnB" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dnC" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dnD" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dnE" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dnF" = (
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/port/fore)
+"dnG" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dnH" = (
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dnI" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dnJ" = (
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dnK" = (
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dnL" = (
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dnM" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dnN" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dnO" = (
+/obj/machinery/space_heater,
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dnP" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/effect/landmark/xeno_spawn,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dnQ" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dnR" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dnS" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dnT" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dnU" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dnV" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dnW" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dnX" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dnY" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dnZ" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/port/fore)
+"doa" = (
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dob" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"doc" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dod" = (
+/obj/item/weapon/cigbutt,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"doe" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dof" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dog" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"doh" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/starboard/fore)
+"doi" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"doj" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dok" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dol" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dom" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"don" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"doo" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dop" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"doq" = (
+/obj/machinery/space_heater,
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dor" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dos" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dot" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dou" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dov" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dow" = (
+/obj/item/weapon/cigbutt,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dox" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"doy" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/port/fore)
+"doz" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"doA" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"doB" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"doC" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"doD" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"doE" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"doF" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"doG" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"doH" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"doI" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"doJ" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"doK" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"doL" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"doM" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"doN" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"doO" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"doP" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"doQ" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"doR" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"doS" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"doT" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"doU" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"doV" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"doW" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"doX" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"doY" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"doZ" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dpa" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dpb" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dpc" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dpd" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dpe" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dpf" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dpg" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dph" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dpi" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dpj" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dpk" = (
+/obj/item/weapon/cigbutt,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dpl" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dpm" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dpn" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dpo" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dpp" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dpq" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dpr" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dps" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/starboard/fore)
+"dpt" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dpu" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dpv" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dpw" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dpx" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dpy" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dpz" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dpA" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dpB" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dpC" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dpD" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dpE" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dpF" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dpG" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dpH" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dpI" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dpJ" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dpK" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dpL" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/starboard/fore)
+"dpM" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dpN" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dpO" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dpP" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Storage Room";
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dpQ" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dpR" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dpS" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/starboard/fore)
+"dpT" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dpU" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dpV" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dpW" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dpX" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dpY" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dpZ" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dqa" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dqb" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dqc" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dqd" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dqe" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dqf" = (
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dqg" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dqh" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dqi" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dqj" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dqk" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dql" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dqm" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dqn" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dqo" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dqp" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/starboard/fore)
+"dqq" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dqr" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dqs" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dqt" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dqu" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dqv" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dqw" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dqx" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dqy" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/starboard/fore)
+"dqz" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dqA" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dqB" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dqC" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dqD" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dqE" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dqF" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/port/fore)
+"dqG" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dqH" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dqI" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dqJ" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dqK" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dqL" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dqM" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Storage Room";
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dqN" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dqO" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dqP" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dqQ" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dqR" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/starboard/fore)
+"dqS" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dqT" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"dqU" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"dqV" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"dqW" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"dqX" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"dqY" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"dqZ" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"dra" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"drb" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"drc" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"drd" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"dre" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"drf" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"drg" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"drh" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"dri" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"drj" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"drk" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"drl" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"drm" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"drn" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dro" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"drp" = (
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"drq" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"drr" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"drs" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"drt" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dru" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"drv" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"drw" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"drx" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dry" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"drz" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"drA" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"drB" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"drC" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"drD" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"drE" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"drF" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"drG" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"drH" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"drI" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"drJ" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"drK" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"drL" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"drM" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"drN" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"drO" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"drP" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"drQ" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/port/fore)
+"drR" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"drS" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"drT" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"drU" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"drV" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"drW" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"drX" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"drY" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"drZ" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"dsa" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dsb" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dsc" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dsd" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dse" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dsf" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dsg" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"dsh" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dsi" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"dsj" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dsk" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dsl" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dsm" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dsn" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"dso" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dsp" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dsq" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dsr" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"dss" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dst" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dsu" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dsv" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dsw" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"dsx" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dsy" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dsz" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"dsA" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dsB" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"dsC" = (
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dsD" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dsE" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"dsF" = (
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dsG" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dsH" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dsI" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dsJ" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dsK" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dsL" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dsM" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"dsN" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dsO" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"dsP" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dsQ" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dsR" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dsS" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dsT" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dsU" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dsV" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dsW" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"dsX" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dsY" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dsZ" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dta" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dtb" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"dtc" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dtd" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dte" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"dtf" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dtg" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dth" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dti" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"dtj" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dtk" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"dtl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dtm" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dtn" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dto" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dtp" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"dtq" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dtr" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dts" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dtt" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dtu" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dtv" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dtw" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dtx" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/fore)
+"dty" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dtz" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dtA" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dtB" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dtC" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dtD" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dtE" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/locker)
+"dtF" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dtG" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dtH" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dtI" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dtJ" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dtK" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dtL" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dtM" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dtN" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dtO" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dtP" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dtQ" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dtR" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dtS" = (
+/obj/item/weapon/cigbutt,
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Starboard Bow Maintenance APC";
+ pixel_y = -28
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dtT" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dtU" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dtV" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dtW" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dtX" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dtY" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dtZ" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dua" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dub" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"duc" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"dud" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"due" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"duf" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dug" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"duh" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dui" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"duj" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"duk" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dul" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dum" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dun" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"duo" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dup" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"duq" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dur" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dus" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dut" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"duu" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"duv" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"duw" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"dux" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"duy" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"duz" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"duA" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"duB" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"duC" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"duD" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"duE" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"duF" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"duG" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"duH" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"duI" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"duJ" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"duK" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"duL" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"duM" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"duN" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"duO" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"duP" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"duQ" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"duR" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"duS" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"duT" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"duU" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"duV" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"duW" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"duX" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"duY" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"duZ" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dva" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvb" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvc" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvd" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dve" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvf" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvg" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvh" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvi" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvj" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvk" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvl" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvm" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvn" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvo" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvp" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvq" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"dvr" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvs" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvt" = (
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/port/aft)
+"dvu" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvv" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"dvx" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvy" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvz" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvA" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvB" = (
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/port/aft)
+"dvC" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvD" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvE" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"dvF" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvG" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvH" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvI" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvJ" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvK" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvL" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvM" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvN" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvO" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvP" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvQ" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvR" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvS" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvT" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvU" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvV" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvW" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvX" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dvY" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dvZ" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dwa" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dwb" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"dwc" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/sign/poster/contraband/random{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"dwd" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"dwe" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"dwf" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"dwg" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"dwh" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"dwi" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"dwj" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"dwk" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dwl" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dwm" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dwn" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dwo" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dwp" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dwq" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dwr" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dws" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dwt" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dwu" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dwv" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dww" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dwx" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dwy" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dwz" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dwA" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dwB" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dwC" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dwD" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dwE" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dwF" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dwG" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dwH" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dwI" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dwJ" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dwK" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dwL" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/aft)
+"dwM" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dwN" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dwO" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dwP" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dwQ" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dwR" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dwS" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dwT" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dwU" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dwV" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dwW" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dwX" = (
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/starboard/aft)
+"dwY" = (
+/obj/effect/landmark/blobstart,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dwZ" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dxa" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dxb" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dxc" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dxd" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dxe" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dxf" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dxg" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dxh" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dxi" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dxj" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dxk" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dxl" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dxm" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dxn" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dxo" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dxp" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dxq" = (
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/port/aft)
+"dxr" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dxs" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dxt" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dxu" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dxv" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/port/aft)
+"dxw" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dxx" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dxy" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dxz" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dxA" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dxB" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dxC" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dxD" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dxE" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dxF" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dxG" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dxH" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dxI" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dxJ" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dxK" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"dxL" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dxM" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/aft)
+"dxN" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dxO" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dxP" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dxQ" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dxR" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dxS" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dxT" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dxU" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dxV" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dxW" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dxX" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dxY" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"dxZ" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dya" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dyb" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/aft)
+"dyc" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dyd" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dye" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dyf" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dyg" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"dyh" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"dyi" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"dyj" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/port/aft)
+"dyk" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"dyl" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dym" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/aft)
+"dyn" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dyo" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dyp" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dyq" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dyr" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dys" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dyt" = (
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/port/aft)
+"dyu" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"dyv" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"dyw" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"dyx" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dyy" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/aft)
+"dyz" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dyA" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dyB" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dyC" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dyD" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dyE" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dyF" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dyG" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dyH" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dyI" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dyJ" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dyK" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dyL" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dyM" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dyN" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dyO" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dyP" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/aft)
+"dyQ" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/starboard/aft)
+"dyR" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dyS" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dyT" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dyU" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dyV" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dyW" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dyX" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"dyY" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dyZ" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"dza" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dzb" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dzc" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dzd" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dze" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dzf" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dzg" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dzh" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dzi" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dzj" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dzk" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dzl" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dzm" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dzn" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dzo" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dzp" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dzq" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dzr" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dzs" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dzt" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dzu" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dzv" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dzw" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"dzx" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dzy" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dzz" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dzA" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dzB" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dzC" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dzD" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dzE" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dzF" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dzG" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dzH" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/aft)
+"dzI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dzJ" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dzK" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/port/aft)
+"dzL" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/port/aft)
+"dzM" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/port/aft)
+"dzN" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/port/aft)
+"dzO" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/port/aft)
+"dzP" = (
+/turf/closed/wall,
+/area/maintenance/port/aft)
+"dzQ" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dzR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dzS" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dzT" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dzU" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dzV" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dzW" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dzX" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dzY" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dzZ" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dAa" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAb" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAc" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dAd" = (
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 2;
+ name = "Starboard Quarter Maintenance APC";
+ pixel_y = -24
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dAe" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAf" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAg" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAh" = (
+/obj/item/weapon/storage/box,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dAi" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAj" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAk" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAl" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAm" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAn" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/external{
+ req_access_txt = "13"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dAo" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/external{
+ req_access_txt = "13"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dAp" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/starboard/aft)
+"dAq" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAr" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAs" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAt" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAu" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAv" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dAw" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;47"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dAx" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dAy" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dAz" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dAA" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dAB" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dAC" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAD" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAE" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dAF" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dAG" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAH" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAI" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAJ" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAK" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAL" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAM" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAN" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAO" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAP" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAQ" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAR" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAS" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dAT" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAU" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAV" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAW" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dAX" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dAY" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dAZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dBa" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dBb" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dBc" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dBd" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dBe" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/starboard/aft)
+"dBf" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dBg" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dBh" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/aft)
+"dBi" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dBj" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dBk" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dBl" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dBm" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dBn" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dBo" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dBp" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dBq" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dBr" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dBs" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"dBt" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
(1,1,1) = {"
aaa
@@ -104450,9 +100794,9 @@ aRA
aRA
aRA
aVs
-aWS
-aWS
-aWS
+aVs
+aVs
+aVs
aaf
aaa
aaa
@@ -104462,20 +100806,20 @@ aaa
aaa
aaa
aaf
-aWS
-aWS
-aWS
-aWS
-aWS
+aVs
+aVs
+aVs
+aVs
+aVs
aaa
cVm
cVw
cVm
aaa
-aWS
-aWS
-aWS
-aWS
+aVs
+aVs
+aVs
+aVs
aaa
aaf
cVF
@@ -104708,7 +101052,7 @@ aSH
aUb
aVt
aWT
-aWS
+aVs
aaf
aaf
aaa
@@ -104720,21 +101064,21 @@ bcS
aaa
aaf
aaf
-aWS
+aVs
bvB
aWT
-aWS
+aVs
aaa
cVr
cVv
ddL
aaa
-aWS
+aVs
bKS
aWT
-aWS
-aWS
-aWS
+aVs
+aVs
+aVs
cVF
cVW
cWn
@@ -105222,7 +101566,7 @@ aSI
aRA
aVv
aWU
-aWS
+aVs
aaf
aaf
aaa
@@ -105234,16 +101578,16 @@ bcS
aaa
aaf
aaf
-aWS
+aVs
aVw
aWU
-aWS
+aVs
cVn
cVn
ddJ
cVn
cVn
-aWS
+aVs
aVw
aWU
bOd
@@ -105503,9 +101847,9 @@ cVp
aYC
bKT
aWU
-aWS
-aWS
-aWS
+aVs
+aVs
+aVs
cVF
cVF
cWr
@@ -105736,9 +102080,9 @@ aaf
aRA
aVx
aWU
-aWS
-aWS
-aWS
+aVs
+aVs
+aVs
bcS
beB
beC
@@ -105746,21 +102090,21 @@ beC
beC
blN
bcS
-aWS
-aWS
-aWS
+aVs
+aVs
+aVs
bvD
aWU
-aWS
+aVs
cVn
cVu
cVv
cVB
cVn
-aWS
+aVs
aVw
aWU
-aWS
+aVs
aaa
aaf
cVF
@@ -106017,7 +102361,7 @@ cVn
aRA
aVu
aWU
-aWS
+aVs
aaf
aaf
cVG
@@ -106250,9 +102594,9 @@ aSJ
aDb
aVy
aWU
-aWS
-aWS
-aWS
+aVs
+aVs
+aVs
bcS
beD
beC
@@ -106260,18 +102604,18 @@ beC
beC
blO
bcS
-aWS
-aWS
-aWS
+aVs
+aVs
+aVs
aVu
bxv
-aWS
+aVs
ddH
cVv
ddK
cVv
ddM
-aWS
+aVs
aVu
bMu
aRA
@@ -106509,7 +102853,7 @@ aVz
aWW
aWT
baa
-aWS
+aVs
bcU
beE
djE
@@ -106517,21 +102861,21 @@ djE
djE
beC
bcU
-aWS
+aVs
bsl
btO
bvE
bxw
-aWS
+aVs
cVn
cVv
cVv
dlG
cVn
-aWS
+aVs
bKU
bMv
-aWS
+aVs
aaa
aaf
cVF
@@ -106766,7 +103110,7 @@ aVz
bvF
aWU
baa
-aWS
+aVs
bcS
beF
beC
@@ -106774,18 +103118,18 @@ beC
beC
blP
bcS
-aWS
+aVs
bsm
aVu
bvF
bxw
-aWS
+aVs
cVn
cVu
cVv
cVB
cVn
-aWS
+aVs
aVu
bMw
aRA
@@ -107023,7 +103367,7 @@ cZh
bvF
aWU
bab
-aWS
+aVs
bcS
beG
djE
@@ -107031,7 +103375,7 @@ djE
djE
blQ
bcS
-aWS
+aVs
baa
btP
aWX
@@ -107045,7 +103389,7 @@ cVp
aRA
btS
bxw
-aWS
+aVs
aaf
aaf
aaa
@@ -107280,7 +103624,7 @@ aVA
aWY
aYE
bac
-aWS
+aVs
bcU
beH
beC
@@ -107288,18 +103632,18 @@ beC
beC
beC
bcU
-aWS
+aVs
bsn
btQ
bvG
bxw
-aWS
+aVs
cVn
cVp
cVx
cVp
cVn
-aWS
+aVs
aVu
bxw
aRA
@@ -107535,9 +103879,9 @@ cYK
cYQ
aVB
aWZ
-aWS
-aWS
-aWS
+aVs
+aVs
+aVs
bcS
beI
djE
@@ -107545,16 +103889,16 @@ djE
djE
blR
bcS
-aWS
-aWS
-aWS
+aVs
+aVs
+aVs
bvH
bxy
aRA
aaf
bCG
bEl
-aWS
+aVs
aaf
aRA
bKV
@@ -107769,9 +104113,9 @@ anS
aaa
aaa
aaf
-alK
+dne
avJ
-alK
+dne
aaf
aaa
aaf
@@ -107808,11 +104152,11 @@ djC
bvH
bMw
aRA
-aWS
-aWS
+aVs
+aVs
bEm
-aWS
-aWS
+aVs
+aVs
aRA
btS
bMy
@@ -108026,13 +104370,13 @@ aaa
aaa
aaf
aaf
-alK
+dne
avK
-alK
+dne
aaf
aaf
-alK
-alK
+dne
+dne
aDb
cVE
cVL
@@ -108049,9 +104393,9 @@ aSM
aDb
cZq
aWZ
-aWS
-aWS
-aWS
+aVs
+aVs
+aVs
bcS
bcS
bgt
@@ -108059,16 +104403,16 @@ bgt
bgt
bcS
bcS
-aWS
-aWS
-aWS
+aVs
+aVs
+aVs
bvH
bxz
aRA
bBc
-aWS
+aVs
bEl
-aWS
+aVs
bHH
aRA
aVu
@@ -108282,14 +104626,14 @@ aaf
aaf
aaa
aaf
-alK
-alK
+dne
+dne
avJ
-alK
-alK
+dne
+dne
aip
-alK
-alC
+dne
+dnk
aDb
cVH
cVM
@@ -108307,7 +104651,7 @@ aDb
aVC
aXa
aYF
-aWS
+aVs
aaa
bcS
beJ
@@ -108317,7 +104661,7 @@ bgu
blS
bcS
aaa
-aWS
+aVs
btR
bvI
bxA
@@ -108536,17 +104880,17 @@ aaa
aaa
aaa
aaf
-alK
-alK
+dne
+dne
aip
-alK
+dne
auD
avL
awM
-alC
-auF
-aqK
-alC
+dnk
+dqe
+doA
+dnk
aDb
aDb
aDb
@@ -108567,11 +104911,11 @@ aYG
aRA
aRA
aRA
-aWS
-aWS
-aWS
-aWS
-aWS
+aVs
+aVs
+aVs
+aVs
+aVs
aRA
aRA
aRA
@@ -108793,7 +105137,7 @@ aaa
aaa
aaa
aaf
-alK
+dne
aqC
arW
ato
@@ -108805,7 +105149,7 @@ avT
avT
aJi
avT
-bzC
+dss
avM
avT
avT
@@ -108816,7 +105160,7 @@ avT
avT
avT
avT
-aSO
+dtl
aUd
aVE
aXc
@@ -109053,28 +105397,28 @@ aaa
aip
aqD
arX
-alK
-alK
-alK
-aob
+dne
+dne
+dne
+dnH
aoc
-amU
-alK
+drQ
+dne
aip
-alK
-bPN
+dne
+dst
aDc
dhE
-aob
-aob
+dnH
+dnH
cWA
auG
-ako
+dnd
dhK
-alC
+dnk
aRG
aSP
-alK
+dne
dhM
aXd
aYI
@@ -109307,34 +105651,34 @@ aaa
aaa
aaa
aaa
-alK
-alK
+dne
+dne
arY
-alK
+dne
aaf
-alK
-alK
+dne
+dne
aip
-alK
-alK
+dne
+dne
aaa
-alK
-alK
-alK
-alK
+dne
+dne
+dne
+dne
aip
-alK
-alK
-alK
-alK
-alK
-alK
+dne
+dne
+dne
+dne
+dne
+dne
aip
-alK
-alK
-alK
-alK
-alK
+dne
+dne
+dne
+dne
+dne
baf
bbK
bcW
@@ -109591,7 +105935,7 @@ aaf
aaf
aaa
aaa
-alK
+dne
arZ
bbK
bcX
@@ -109823,7 +106167,7 @@ aaa
aaa
aaa
aqF
-asa
+doJ
atq
aaf
aaa
@@ -109848,8 +106192,8 @@ cUS
cUS
aaa
aaa
-alK
-asa
+dne
+doJ
bbK
bcY
beM
@@ -110080,7 +106424,7 @@ aaa
aaa
aaf
aqF
-asa
+doJ
atq
aaf
aaa
@@ -110105,7 +106449,7 @@ cVc
cUS
cVk
aaf
-alK
+dne
bag
bbK
bcZ
@@ -110337,7 +106681,7 @@ aaa
aaf
aaf
aqF
-asa
+doJ
atq
aaf
aaa
@@ -110363,7 +106707,7 @@ cVg
cVj
aaf
aip
-asa
+doJ
bbK
bda
beO
@@ -110594,7 +106938,7 @@ aaa
aaa
aaf
aqF
-asa
+doJ
atq
aaf
aaa
@@ -110851,7 +107195,7 @@ aaa
aaf
aaf
aqF
-asa
+doJ
atq
aaf
aaa
@@ -110877,7 +107221,7 @@ cVg
cVj
aaa
aip
-asa
+doJ
bbK
bdc
beQ
@@ -110908,15 +107252,15 @@ alK
alK
alK
bXy
-bTs
-bTs
-bTs
-bTs
+dux
+dux
+dux
+dux
cek
-bTs
-bTs
-bTs
-bTs
+dux
+dux
+dux
+dux
ckN
ckN
ckN
@@ -111133,7 +107477,7 @@ cVc
cUS
cVl
aaf
-alK
+dne
daX
bbK
bbK
@@ -111168,11 +107512,11 @@ bXz
bYE
bYE
cbp
-bTs
+dux
cel
bUU
cgG
-bTs
+dux
cjp
ckO
cmg
@@ -111363,10 +107707,10 @@ aaf
aaf
aaf
aaf
-alK
-alK
+dne
+dne
asc
-alK
+dne
aaf
aaa
aaf
@@ -111390,7 +107734,7 @@ cUS
cUS
aaa
aaf
-alK
+dne
baj
dhO
bdd
@@ -111418,18 +107762,18 @@ bOh
bzx
aqO
bSt
-bTs
-bTs
-bTs
-bTs
-bTs
-bTs
+dux
+dux
+dux
+dux
+dux
+dux
cbq
-bTs
-bTs
+dux
+dux
cfA
-bTs
-bTs
+dux
+dux
cjq
ckP
ckS
@@ -111621,9 +107965,9 @@ aaa
aaf
aaa
aip
-aoe
+dnO
asd
-alK
+dne
aaf
aaa
aaf
@@ -111647,7 +107991,7 @@ aaf
aaf
aaf
aaf
-alK
+dne
asb
bbM
bde
@@ -111675,18 +108019,18 @@ bzx
bzx
alK
bSr
-bTs
+dux
bUT
bVW
bXA
diy
-bTs
+dux
cbr
bYE
cem
cfB
cbp
-bTs
+dux
diE
ckQ
ckP
@@ -111880,7 +108224,7 @@ ahp
ahp
aqH
ase
-alK
+dne
aaf
aaf
aaf
@@ -111906,7 +108250,7 @@ aUe
aUe
aUe
bak
-bat
+dmF
bdf
beU
bgE
@@ -111932,18 +108276,18 @@ bOi
bPJ
alK
cgH
-bTs
+dux
bUU
bVX
bXB
bYG
-bTs
-bTs
-bTs
+dux
+dux
+dux
cen
-bTs
+dux
cbq
-bTs
+dux
cjs
ckR
cmh
@@ -111952,8 +108296,8 @@ cjt
ckP
cjt
diJ
-bTs
-bTs
+dux
+dux
ack
cwg
ack
@@ -112135,12 +108479,12 @@ alx
amO
anU
ahp
-alK
+dne
asf
-alK
-alK
-alK
-alK
+dne
+dne
+dne
+dne
ayj
azl
aAE
@@ -112163,13 +108507,13 @@ aVG
aXe
aYJ
bal
-bat
+dmF
bdg
byI
bgF
-bat
-bat
-bat
+dmF
+dmF
+dmF
bnU
bql
bsw
@@ -112189,18 +108533,18 @@ aGN
aqK
alK
dit
-bTs
+dux
bUV
-ctq
+duH
bXC
bYH
-bTs
+dux
cbs
cdb
ceo
-bTs
+dux
cdc
-bTs
+dux
diF
cjt
cjt
@@ -112208,13 +108552,13 @@ cjt
ckP
ckP
crh
-cnb
+dxv
ctn
-bTs
-bTs
+dux
+dux
cfA
-bTs
-bTs
+dux
+dux
aaf
aaf
aaf
@@ -112395,8 +108739,8 @@ apr
aqI
asg
ats
-amZ
-alK
+dnu
+dne
awP
ayj
azm
@@ -112420,7 +108764,7 @@ aRH
aRH
aYK
bam
-bbN
+dmH
bdh
byI
bgG
@@ -112446,7 +108790,7 @@ aob
alC
alK
bSu
-bTs
+dux
bUW
bVZ
bXD
@@ -112454,24 +108798,24 @@ bYI
bZO
cbt
cdc
-bTs
-bTs
+dux
+dux
csT
-bTs
+dux
cxQ
ckS
cmi
cnk
ckP
cmi
-cbu
+dvt
csf
cto
-bTs
+dux
cvj
cwh
cxb
-bTs
+dux
aaa
aaa
aaa
@@ -112652,9 +108996,9 @@ aps
aqJ
ash
att
-auF
-alK
-alK
+dqe
+dne
+dne
ayj
azn
aAG
@@ -112683,7 +109027,7 @@ beV
bgH
biE
bkh
-bbN
+dmH
bnW
bqn
bsy
@@ -112703,33 +109047,33 @@ apz
aob
alK
bSr
-bTs
+dux
bUX
bWa
bXE
bYJ
-bTs
-cbu
+dux
+dvt
cdd
-bTs
+dux
cfC
cdc
-bTs
+dux
cjv
diG
-bTs
+dux
cnl
cox
-bTs
+dux
diI
diK
-bTs
-bTs
-bTs
+dux
+dux
+dux
cwi
-bTs
-bTs
-bTs
+dux
+dux
+dux
aaa
aaa
cBR
@@ -112906,11 +109250,11 @@ alz
amP
anX
apt
-alC
-asa
+dnk
+doJ
atu
-aob
-aGN
+dnH
+dnZ
awQ
ayk
azo
@@ -112934,7 +109278,7 @@ cVC
aXf
aYM
bao
-bbN
+dmH
bdh
beW
bgI
@@ -112960,33 +109304,33 @@ bOj
bPK
bRf
bSv
-bTs
-bTs
-bTs
-bTs
-bTs
-bTs
-bTs
+dux
+dux
+dux
+dux
+dux
+dux
+dux
cde
-bTs
-bTs
+dux
+dux
cdc
-bTs
-bTs
-bTs
-bTs
+dux
+dux
+dux
+dux
bXF
bXF
-bTs
-bTs
+dux
+dux
csh
-bTs
+dux
cuf
cvk
cwh
bXE
-bZT
-bTs
+dvq
+dux
aaa
aaa
cBR
@@ -113164,11 +109508,11 @@ amQ
anY
ahp
dhu
-asa
+doJ
atu
-alC
-alC
-asa
+dnk
+dnk
+doJ
ayj
azp
aAI
@@ -113191,7 +109535,7 @@ aMv
aMv
aYM
bap
-bat
+dmF
bdi
beX
bgJ
@@ -113220,13 +109564,13 @@ bOf
bOv
alC
dbk
-bTs
+dux
bYK
bZP
cbv
cdf
cep
-bTs
+dux
cgI
chZ
chZ
@@ -113242,8 +109586,8 @@ chZ
cvl
cbx
ceu
-bTs
-bTs
+dux
+dux
aaf
aaa
aaa
@@ -113425,7 +109769,7 @@ asi
atu
auG
avN
-asa
+doJ
ayj
ayj
aAJ
@@ -113448,13 +109792,13 @@ aVH
aXg
aYN
baq
-bat
+dmF
bdj
-bat
+dmF
bgK
-biH
+dmT
bkk
-bat
+dmF
bnZ
bql
bsB
@@ -113477,14 +109821,14 @@ alC
bSs
bTu
bWb
-bTs
+dux
bYL
bZQ
cbw
cdg
ceq
-bTs
-cgJ
+dux
+dwb
cia
cia
cia
@@ -113496,11 +109840,11 @@ cia
cia
cia
ceu
-ceZ
-cbu
+dyg
+dvt
bXE
-cdm
-bTs
+dvE
+dux
aaf
aaf
aaf
@@ -113677,12 +110021,12 @@ ahp
ahp
ahp
ahp
-alK
-asa
+dne
+doJ
atD
-alC
-alC
-asa
+dnk
+dnk
+doJ
ayl
aEt
aAK
@@ -113705,13 +110049,13 @@ aVI
aXh
aMv
bar
-bat
+dmF
bdi
-bat
+dmF
bgL
biI
bkl
-bat
+dmF
bnW
bqp
bsC
@@ -113734,14 +110078,14 @@ bzC
bSp
alC
bSr
-bTs
+dux
bYM
bZP
cbx
cdh
bXE
-bTs
-diC
+dux
+dwc
cia
cjw
ckU
@@ -113753,11 +110097,11 @@ crj
csj
cia
cug
-ceZ
+dyg
bXE
bXE
cNg
-bTs
+dux
aaa
aaa
aaa
@@ -113930,10 +110274,10 @@ ahr
ail
bbo
akm
-alC
+dnk
amS
-aoa
-alC
+dnF
+dnk
aqM
asj
atv
@@ -113964,11 +110308,11 @@ aYO
bas
bbP
bdk
-bat
+dmF
bgM
biJ
bkm
-bat
+dmF
boa
bqq
bsD
@@ -113991,14 +110335,14 @@ bTt
bTv
alC
bSr
-bTs
-bTs
-bTs
+dux
+dux
+dux
cby
bXE
cer
-bTs
-cgJ
+dux
+dwb
cib
cjx
ckV
@@ -114014,7 +110358,7 @@ cvm
cDK
cxc
cxR
-bTs
+dux
aaa
aaa
aaa
@@ -114189,11 +110533,11 @@ ajh
akn
alD
amT
-amT
+dnG
apu
aqN
ask
-atw
+dpG
auI
avP
awS
@@ -114219,13 +110563,13 @@ aVJ
aXj
aYP
bat
-bat
-bat
-bat
+dmF
+dmF
+dmF
bgN
-bat
-bat
-bat
+dmF
+dmF
+dmF
bob
bqr
bsE
@@ -114248,14 +110592,14 @@ bue
bue
bue
cgH
-bTs
+dux
bYN
-bTs
+dux
cbz
bXE
ces
-bTs
-ctK
+dux
+dwe
cic
cjy
ckW
@@ -114268,10 +110612,10 @@ csl
cia
ceu
ceu
-ceZ
-bTs
-bTs
-bTs
+dyg
+dux
+dux
+dux
aaa
aaa
aaa
@@ -114443,17 +110787,17 @@ agD
aht
ain
aji
-ako
+dnd
alE
-amU
-aob
+dnr
+dnH
alE
-aqO
-agq
-agq
+dou
+dne
+dne
auJ
avQ
-alK
+dne
ayl
azt
aAN
@@ -114507,12 +110851,12 @@ bue
bSr
bXF
bYO
-bTs
+dux
bXE
-cbu
-bTs
-bTs
-cgJ
+dvt
+dux
+dux
+dwb
cic
cjz
ckX
@@ -114525,10 +110869,10 @@ csm
cia
cui
cwj
-ceZ
-bTs
+dyg
+dux
cxS
-bTs
+dux
aaf
aaf
aaf
@@ -114703,10 +111047,10 @@ agA
aio
alF
aio
-alK
+dne
apv
-alK
-agq
+dne
+dne
atx
auK
avR
@@ -114762,14 +111106,14 @@ bSy
bTx
bue
bSu
-bTs
+dux
bYP
-bTs
+dux
cbA
cdi
-bTs
+dux
cdl
-cgJ
+dwb
cic
cjA
ckY
@@ -114783,9 +111127,9 @@ cia
cdl
cMm
cMo
-bTs
+dux
cxT
-bTs
+dux
aaa
aaa
aaa
@@ -114963,7 +111307,7 @@ dhq
aoc
alG
aoc
-agq
+dne
aty
auL
avS
@@ -114977,9 +111321,9 @@ ayl
ayl
aHj
aIr
-alK
+dne
aKZ
-alK
+dne
aNN
aPg
aQp
@@ -115019,14 +111363,14 @@ bSz
bTy
bue
bSr
-bTs
-bTs
-bTs
-bTs
-bTs
-bTs
+dux
+dux
+dux
+dux
+dux
+dux
cfD
-cgJ
+dwb
cic
cia
ckZ
@@ -115038,11 +111382,11 @@ cia
cia
cia
ceu
-ceZ
-cJl
-bTs
+dyg
+dyw
+dux
cxS
-bTs
+dux
aaa
aaa
aaa
@@ -115217,10 +111561,10 @@ dho
akq
alH
amW
-aob
+dnH
apw
-apz
-agq
+dod
+dne
atz
auM
avT
@@ -115236,7 +111580,7 @@ aHk
aIs
aJL
aLa
-alK
+dne
aNO
aPh
aQq
@@ -115295,16 +111639,16 @@ cro
cso
cia
cfD
-cff
+dyj
ceu
-bTs
-bTs
-bTs
-bTs
-bTs
-bTs
-bTs
-bTs
+dux
+dux
+dux
+dux
+dux
+dux
+dux
+dux
aaa
cFK
cGE
@@ -115474,26 +111818,26 @@ ajl
akr
alI
amX
-aob
-aGN
+dnH
+dnZ
aqP
-agq
+dne
atA
-agq
-agq
-agq
-agq
-agq
-agq
-agq
-agq
-agq
-agq
+dne
+dne
+dne
+dne
+dne
+dne
+dne
+dne
+dne
+dne
aHl
aIt
-alK
+dne
aLb
-alK
+dne
aNP
aPi
aQr
@@ -115534,13 +111878,13 @@ bBs
bue
bWd
bXH
-bTs
+dux
bZS
-cbC
+dvw
cdk
ceu
cfE
-cgM
+dwi
cic
cjC
clb
@@ -115551,8 +111895,8 @@ cpZ
crp
csp
ctp
-ctq
-ceZ
+duH
+dyg
ceu
cMm
cwm
@@ -115561,15 +111905,15 @@ cDK
ceu
cBT
cfF
-bTs
-clK
+dux
+dzK
cFJ
cGF
cBR
clK
bTs
bTs
-bTs
+cLa
cLT
cMC
cNt
@@ -115731,12 +112075,12 @@ aio
aks
alJ
amY
-aob
-aob
+dnH
+dnH
aqQ
-agq
+dne
atB
-agq
+dne
aaa
aaa
aaf
@@ -115748,9 +112092,9 @@ aaa
aFN
aHm
aHj
-alK
+dne
aLc
-alK
+dne
aNQ
aPj
aQs
@@ -115791,13 +112135,13 @@ bPR
bue
div
bXI
-bTs
-bTs
+dux
+dux
cbD
-bTs
-bTs
+dux
+dux
cfF
-cgN
+dwj
cic
cjD
clc
@@ -115808,18 +112152,18 @@ cqa
crq
csq
cia
-bTs
+dux
diM
cwm
cNf
ceu
-bZT
+dvq
cNm
cNU
cwm
cwm
cDK
-clK
+dzK
cFL
cGG
cHw
@@ -115988,12 +112332,12 @@ aio
aio
aio
aio
-aod
+dnM
apy
aqR
-agq
-atC
-agq
+dne
+akm
+dne
aaf
awW
awW
@@ -116005,9 +112349,9 @@ aaf
aFO
aHn
aIu
-alK
+dne
bOq
-alK
+dne
aNR
aPk
aQt
@@ -116048,8 +112392,8 @@ bTA
bue
bWd
alC
-bTs
-bZT
+dux
+dvq
cbE
cdl
cev
@@ -116066,7 +112410,7 @@ cia
cia
cia
cuj
-bXE
+cbx
bXE
bXE
cxU
@@ -116076,14 +112420,14 @@ cxU
cxU
cxU
cDL
-clK
+dzK
cFM
cGs
cHx
clK
bZT
cKo
-bTs
+cLa
cLa
cLa
cLa
@@ -116244,11 +112588,11 @@ aaf
aaf
aaf
aaf
-alK
-alK
-alK
-alK
-agq
+dne
+dne
+dne
+dne
+dne
dhx
auN
aaa
@@ -116262,18 +112606,18 @@ aaa
aFP
aHo
dhG
-alK
+dne
aLc
-alK
-alK
-alK
-alK
-alK
-alK
-alK
-alK
-alK
-alK
+dne
+dne
+dne
+dne
+dne
+dne
+dne
+dne
+dne
+dne
baA
bbX
bds
@@ -116305,10 +112649,10 @@ bTB
bue
bWd
aqK
-bTs
+dux
bZU
cbF
-cdm
+dvE
cev
cfG
cgP
@@ -116321,7 +112665,7 @@ coH
cqc
crr
csr
-ctq
+duH
bXE
cvn
cwn
@@ -116333,14 +112677,14 @@ cAS
cBU
cxU
cDL
-clK
+dzK
cFN
cGH
cHy
clK
cJl
cKp
-bTs
+cLa
cLV
cME
cNv
@@ -116500,12 +112844,12 @@ aaa
aaa
aaf
aaa
-alK
-alK
-aoe
-alC
+dne
+dne
+dnO
+dnk
aqS
-agq
+dne
atE
auO
aaa
@@ -116530,7 +112874,7 @@ aSY
avT
avT
aXr
-alK
+dne
baB
bbY
bdt
@@ -116562,7 +112906,7 @@ bTC
atw
bWe
bXJ
-bTs
+dux
bZV
cbG
cdn
@@ -116578,11 +112922,11 @@ coI
cqd
crs
css
-bTs
-bTs
-bTs
-bTs
-bTs
+dux
+dux
+dux
+dux
+dux
cxU
cyO
czP
@@ -116590,14 +112934,14 @@ cAT
cBV
cxU
cDM
-clK
+dzK
cBR
cGI
cBR
clK
diQ
cKq
-bTs
+cLa
cLW
cMF
cSY
@@ -116757,12 +113101,12 @@ aax
aaa
aaf
aaa
-alK
-amZ
-aof
-apz
-aGN
-agq
+dne
+dnu
+dnP
+dod
+dnZ
+dne
atP
auO
aaa
@@ -116819,7 +113163,7 @@ auF
alC
aXt
aqO
-bTs
+dux
bZW
cbH
cdo
@@ -116847,7 +113191,7 @@ cAU
diN
cxU
cDL
-bTs
+dux
cFO
cGJ
cHz
@@ -117017,7 +113361,7 @@ aaf
aip
ana
aog
-aLd
+doe
aqT
asl
atG
@@ -117043,8 +113387,8 @@ aRO
aTa
dhL
aJN
-aXt
-alK
+dtP
+dne
baD
bca
bdv
@@ -117111,7 +113455,7 @@ cHA
cIz
cJo
cKs
-bTs
+cLa
cLY
cMH
cNy
@@ -117271,12 +113615,12 @@ afW
aaf
aaf
aaa
-alK
-ako
+dne
+dnd
aoh
-alK
-alK
-agq
+dne
+dne
+dne
atH
auP
aaa
@@ -117301,7 +113645,7 @@ aTb
aUo
aJN
aXu
-alK
+dne
baE
baE
bdw
@@ -117368,7 +113712,7 @@ cxU
cxU
diR
cPW
-bTs
+cLa
cLZ
cLa
cLa
@@ -117528,14 +113872,14 @@ aax
aaa
aaf
aaa
-alK
-alK
-alK
-alK
+dne
+dne
+dne
+dne
aqU
asm
atI
-agq
+dne
aaf
awW
awW
@@ -117625,7 +113969,7 @@ cHB
cxU
diS
cKs
-bTs
+cLa
cMa
cLa
cNz
@@ -117786,13 +114130,13 @@ aaa
aaf
aaa
aaa
-agq
+dne
aoi
apB
apC
-agq
-agq
-agq
+dne
+dne
+dne
aaa
aaa
aaa
@@ -117882,8 +114226,8 @@ cHC
cxU
cJq
cKs
-bTs
-bTs
+cLa
+cLa
cMI
cNA
cLa
@@ -118041,13 +114385,13 @@ agH
aax
aaa
aaf
-agq
-agq
-agq
+dne
+dne
+dne
aoj
apC
-ahd
-agq
+doA
+dne
auQ
auQ
atJ
@@ -118140,7 +114484,7 @@ cxU
cJr
cKu
cLd
-bTs
+cLa
cMJ
cNB
cOi
@@ -118298,13 +114642,13 @@ agI
afW
aaf
aaf
-agq
+dne
alL
anb
aok
aox
aqV
-agq
+dne
atJ
auR
avU
@@ -118397,7 +114741,7 @@ cxU
cJs
cJX
cLe
-bTs
+cLa
cMK
cNC
cOj
@@ -118555,13 +114899,13 @@ agH
aax
aaf
aaf
-agq
+dne
alL
anc
aol
apD
aqW
-agq
+dne
atJ
auS
avV
@@ -118654,7 +114998,7 @@ bTs
bTs
bTs
cLf
-bTs
+cLa
cML
cND
cOk
@@ -118817,8 +115161,8 @@ ajm
ajm
aom
ajm
-agq
-agq
+dne
+dne
atJ
auT
avW
@@ -119075,7 +115419,7 @@ and
aon
ajm
aqX
-agq
+dne
auQ
auQ
avX
@@ -119168,7 +115512,7 @@ cIB
cJu
bTs
cPY
-bTs
+cLa
cMN
cNF
cOm
@@ -119425,7 +115769,7 @@ cIC
cJv
bTs
cLf
-bTs
+cLa
cMO
cNG
cNC
@@ -119623,7 +115967,7 @@ bcd
bcd
bcg
bmr
-bdG
+bkz
bqE
bsQ
bup
@@ -119682,7 +116026,7 @@ bTs
cJw
bTs
cLi
-bTs
+cLa
cMP
cNG
cNC
@@ -119851,10 +116195,10 @@ atL
ahx
avZ
ahx
-ayv
-aaZ
-aaZ
-aaZ
+ahx
+ajm
+ajm
+ajm
aDu
aEJ
aGa
@@ -119880,7 +116224,7 @@ bhe
biW
bkA
bms
-bdG
+bkz
btC
bsR
bur
@@ -119939,7 +116283,7 @@ cID
cJx
cID
cLj
-bTs
+cLa
cMI
cNH
cOn
@@ -120137,7 +116481,7 @@ bhf
biX
bkB
bmt
-bdG
+bkz
bsP
bsQ
bus
@@ -120196,7 +116540,7 @@ bTs
bTs
bTs
cLk
-bTs
+cPb
cMR
cNI
cOo
@@ -120394,7 +116738,7 @@ bdG
bdG
bcg
bmu
-bdG
+bkz
bqG
dbe
but
@@ -121221,7 +117565,7 @@ cFV
cCe
cHK
bTs
-bTs
+cPb
cKy
cLo
cLm
@@ -122249,7 +118593,7 @@ cFY
bTs
cHM
ctH
-bTs
+cPb
cKC
cLr
cLm
@@ -123280,7 +119624,7 @@ cIH
cCq
cCq
cLv
-bTs
+cPb
cMZ
cNP
cOv
@@ -123537,7 +119881,7 @@ cII
cJH
cCq
cLw
-bTs
+cPb
cNa
cNQ
cOw
@@ -123794,7 +120138,7 @@ cIJ
cYc
cCq
cLx
-bTs
+cPb
cNb
cLm
cOx
@@ -124051,7 +120395,7 @@ cIK
cJJ
cCq
cgM
-bTs
+cPb
cNc
cNR
cOy
@@ -124308,7 +120652,7 @@ cIL
cJK
cCq
cgM
-bTs
+cPb
cNd
cNS
cOz
@@ -124565,11 +120909,11 @@ cIM
cJL
cKG
cLy
-bTs
-bTs
-bTs
-bTs
-bTs
+cPb
+cPb
+cPb
+cPb
+cPb
aaa
aaa
aaa
@@ -126592,7 +122936,7 @@ cdS
ceX
cgl
bZo
-cdm
+dwv
cki
clJ
cmL
@@ -126620,9 +122964,9 @@ cHZ
cIT
cIT
cIg
-cLA
-bTs
-bTs
+dAw
+dvY
+dvY
aaa
aaf
aaa
@@ -126851,7 +123195,7 @@ bZo
bZo
ciL
ckj
-clK
+dwL
cgo
cod
cpp
@@ -126877,9 +123221,9 @@ cIa
cIU
cJR
cIg
-cLw
-cdm
-bTs
+dAx
+dwv
+dvY
aaa
aaf
aaa
@@ -127134,9 +123478,9 @@ cIb
cIV
cJS
cIg
-cgM
-bZT
-bTs
+dxQ
+dzc
+dvY
aaf
aaf
aaf
@@ -127362,8 +123706,8 @@ bSS
bSS
ceZ
cgn
-bTs
-bZS
+dvY
+dww
ckl
diH
cgo
@@ -127393,7 +123737,7 @@ cJT
cIg
diT
cMp
-ckN
+dxk
aaa
aaa
aaf
@@ -127649,12 +123993,12 @@ cIX
cJU
cIg
cLF
-bTs
-bTs
-bTs
-bTs
-bTs
-bTs
+dvY
+dvY
+dvY
+dvY
+dvY
+dvY
cRe
djh
cYT
@@ -127820,8 +124164,8 @@ awx
axz
ahx
azX
-aoP
-agq
+dsg
+axC
axC
axC
axC
@@ -127906,12 +124250,12 @@ cIY
cJV
cIg
cPe
-bTs
+dvY
cNi
cgs
cOB
cPf
-bTs
+dvY
cRe
cRe
cRe
@@ -128078,7 +124422,7 @@ axA
ahx
dhz
aoP
-agq
+axC
aDP
axC
aGz
@@ -128092,9 +124436,9 @@ aOv
aQR
aOv
aTw
-alq
+aUM
aWs
-alq
+dnh
aZt
aZt
aZt
@@ -128162,13 +124506,13 @@ cIf
cIZ
cJW
cIg
-cgM
-bTs
+dxQ
+dvY
cNj
-bXE
-bXE
+dwN
+dwN
cPg
-bTs
+dvY
aaa
aaa
aaa
@@ -128335,7 +124679,7 @@ axB
ahx
azY
aoP
-agq
+axC
aDQ
axC
aGA
@@ -128349,7 +124693,7 @@ aOw
aQR
aOu
aTx
-alq
+aUM
aWt
aYa
aZt
@@ -128419,13 +124763,13 @@ cIg
cIg
cIg
cIg
-cgM
-bTs
+dxQ
+dvY
cNk
-bXE
-bXE
+dwN
+dwN
cPh
-bTs
+dvY
aaa
aaa
aaf
@@ -128606,8 +124950,8 @@ aPI
aQS
aSf
aTy
-alq
-alq
+aUM
+aUM
aYb
aZt
bbd
@@ -128673,16 +125017,16 @@ cFr
cGl
cHg
cIh
-cfD
+dAh
dbl
-ceu
-cgM
-bTs
-bTs
+dyc
+dxQ
+dvY
+dvY
cNW
cOC
-bTs
-bTs
+dvY
+dvY
aaa
aaa
aaa
@@ -128849,7 +125193,7 @@ aqb
aqb
azZ
aBs
-agq
+axC
aDS
aFd
aGC
@@ -128864,7 +125208,7 @@ aQT
aOu
aTt
aUN
-alq
+aUM
aYc
aZu
bbe
@@ -128931,15 +125275,15 @@ cGm
cHh
cIi
cJa
-cJX
+dAp
cKK
cLG
-bTs
+dvY
cNl
-cdg
+dAZ
cOD
cPi
-bTs
+dvY
aaa
aaa
aaf
@@ -129121,7 +125465,7 @@ aQU
aSg
aTt
aUO
-alq
+aUM
boW
aZt
bbf
@@ -129187,16 +125531,16 @@ cFs
cGn
cHi
cIj
-bTs
-bTs
+dvY
+dvY
cKL
-bTs
-bTs
+dvY
+dvY
diW
cNX
-bVW
+dBe
cPj
-bTs
+dvY
aaa
aaa
aaf
@@ -129378,7 +125722,7 @@ aQV
aOv
aTt
aUP
-alq
+aUM
aYe
aZt
bbg
@@ -129444,16 +125788,16 @@ cyK
cyK
cyK
cPe
-bTs
+dvY
cJY
cKM
cLH
-bTs
+dvY
cNn
-cdg
+dAZ
cOE
cPh
-bTs
+dvY
aaa
aaa
aaf
@@ -129635,7 +125979,7 @@ aQW
aOw
aTt
aUQ
-aWu
+dtE
aYf
aZt
aZt
@@ -129696,21 +126040,21 @@ cAH
cBC
cyK
cyK
-clK
-cdl
-ceu
+cyK
+dzQ
+dyc
cub
diP
-bTs
+dvY
cJZ
cKN
diU
-bTs
-bTs
+dvY
+dvY
cNY
-bTs
-bTs
-bTs
+dvY
+dvY
+dvY
aaa
aaa
aaa
@@ -129862,10 +126206,10 @@ agr
acP
ahU
aiP
-agq
-agq
-agq
-agq
+acP
+acP
+acP
+acP
aoP
agq
arA
@@ -129892,12 +126236,12 @@ aQX
aOu
aTt
aUR
-alq
+aUM
aYe
-alq
+dnh
bbh
-bcs
-alq
+duo
+dnh
bfK
bhE
bjp
@@ -129942,30 +126286,30 @@ cpA
cqS
cgq
cgq
-clK
-clK
-clK
-clK
-clK
-bZT
-bTs
+crR
+crR
+crR
+crR
+crR
+dzc
+dvY
cAI
cBD
cCD
-bTs
+dvY
cEz
cFt
-ceu
-cgM
-ceu
-bTs
+dyc
+dxQ
+dyc
+dvY
cKa
cKO
cLJ
cor
cmZ
cNZ
-ckN
+dxk
aaa
aaa
aaa
@@ -130122,7 +126466,7 @@ acP
acP
alf
amv
-agq
+acP
aoS
agq
arB
@@ -130149,12 +126493,12 @@ aQY
aOw
aTt
aUS
-alq
+aUM
aYg
aZv
bbi
bct
-alq
+dnh
bfL
bhE
bjp
@@ -130199,10 +126543,10 @@ cpB
cqT
crU
cgq
-bZS
+dww
cuX
cvZ
-bTs
+dvY
cub
cyL
czC
@@ -130210,19 +126554,19 @@ cAJ
cBE
cCE
czC
-bVV
-bYE
+dzI
+dzR
cHj
cIl
-bXE
-bTs
-bTs
+dAd
+dvY
+dvY
cKP
cKP
cKP
cKP
cKP
-clK
+dwL
aaf
aaf
aaf
@@ -130406,13 +126750,13 @@ aQV
aOv
aTz
aUM
-alq
+aUM
aYe
-alq
-alq
-alq
-alq
-alq
+dnh
+dnh
+dnh
+dnh
+dnh
bhE
bjp
bkY
@@ -130456,20 +126800,20 @@ cpC
cqU
crV
cgq
-cfF
+dxO
cuY
cwa
-bTs
-cxL
-bXE
-bTs
+dvY
+dyQ
+dwN
+dvY
cAK
cBF
cCF
-bTs
-bZS
-bXE
-ceu
+dvY
+dww
+dwN
+dyc
cIn
cPx
cJb
@@ -130663,7 +127007,7 @@ aQZ
aSh
aTA
aUT
-alq
+aUM
aYh
aCM
bbj
@@ -130713,12 +127057,12 @@ cpD
cqV
crW
cgq
-bTs
+dvY
cuZ
-bTs
-bTs
-cgM
-cdm
+dvY
+dvY
+dxQ
+dwv
czD
cAL
cBG
@@ -130726,7 +127070,7 @@ cyy
czD
czD
cFu
-ceu
+dyc
cOA
cIn
cJc
@@ -130920,20 +127264,20 @@ aRa
aSi
aTB
aUT
-alq
+aUM
dhN
-alq
-alq
-alr
-alq
-alq
+dnh
+dnh
+dni
+dnh
+dnh
bhE
bjp
bkU
alq
boV
brm
-alq
+bmP
buQ
bwT
byD
@@ -130974,17 +127318,17 @@ cub
cva
cwb
cIk
-cxM
-bTs
+cLG
+dvY
czD
cQC
cBH
cCG
cDq
czD
-bTs
-bTs
-bTs
+dvY
+dvY
+dvY
cGo
cJd
cPz
@@ -131176,10 +127520,10 @@ aPN
aJh
aJh
aJh
-alq
-alq
+aUM
+aUM
biq
-alq
+dnh
aaa
aaa
aaa
@@ -131190,7 +127534,7 @@ bkZ
alq
bBj
brn
-alq
+bmP
bmP
bwU
byE
@@ -131227,12 +127571,12 @@ cpF
cgq
cgq
cgq
-cgM
-ceu
-bXE
-bTs
-bTs
-bTs
+dxQ
+dyc
+dwN
+dvY
+dvY
+dvY
cQv
cAN
cBI
@@ -131241,10 +127585,10 @@ cDr
czD
aaf
aaf
-bTs
-bTs
-cfA
-bTs
+dvY
+dvY
+dAn
+dvY
cKP
dbN
dbP
@@ -131435,7 +127779,7 @@ aSj
aJh
aUU
aCM
-avF
+dtR
aZw
aZw
bcu
@@ -131486,9 +127830,9 @@ cgr
ctk
cuc
cvb
-cwc
+dyp
cwZ
-bXE
+dwN
cyM
czF
cAN
@@ -131499,9 +127843,9 @@ czD
aaf
aaa
aaf
-bTs
+dvY
cJe
-bTs
+dvY
aaa
dbN
dbQ
@@ -131691,8 +128035,8 @@ aRc
aSk
aJh
avD
-apb
-aqq
+dnR
+dtS
aZw
bbk
bcv
@@ -131704,7 +128048,7 @@ bkU
alq
alq
brp
-alq
+bmP
buS
bwW
byG
@@ -131730,23 +128074,23 @@ caR
ccA
bST
cfh
-bTs
-bTs
-bTs
-bTs
+dvY
+dvY
+dvY
+dvY
clX
-bTs
-bTs
-bTs
-bTs
-bTs
-bTs
-bTs
+dvY
+dvY
+dvY
+dvY
+dvY
+dvY
+dvY
cuZ
-bTs
-bTs
+dvY
+dvY
cxN
-bTs
+dvY
czG
cAN
cBK
@@ -131756,9 +128100,9 @@ czD
aaf
aaa
aaf
-bTs
-cfA
-bTs
+dvY
+dAn
+dvY
aaa
dbN
dbP
@@ -131948,8 +128292,8 @@ aRd
aSl
aJh
avB
-apc
-apc
+dnS
+dnS
aZw
bbl
bcw
@@ -131961,7 +128305,7 @@ blb
alq
boY
brq
-alq
+bmP
buT
bwX
byH
@@ -131987,23 +128331,23 @@ caS
ccB
bST
cfi
-cgs
+aqr
chB
-bTs
+dvY
cku
clY
cmY
-bTs
+dvY
cpH
cqX
cpH
-bTs
+dvY
cud
cvc
-bXE
-bTs
+dwN
+dvY
cxO
-bTs
+dvY
cQB
cAO
cBL
@@ -132218,9 +128562,9 @@ bkY
alq
bcs
brr
-alq
-alq
-alq
+bmP
+bmP
+byN
dhU
bAs
bBZ
@@ -132246,7 +128590,7 @@ bST
bXa
apc
apb
-bTs
+dvY
ckv
clZ
cmZ
@@ -132254,13 +128598,13 @@ cor
cpI
cqY
crY
-bTs
-bZS
+dvY
+dww
cpK
cwd
-bTs
+dvY
cxP
-bTs
+dvY
czI
cAP
cAP
@@ -132477,7 +128821,7 @@ boZ
brs
btt
avs
-alq
+byN
bGg
bAt
bCa
@@ -132503,21 +128847,21 @@ cdV
cfj
apc
chC
-bTs
-bTs
-bTs
-bTs
-bTs
+dvY
+dvY
+dvY
+dvY
+dvY
cpJ
cqZ
-bTs
-bTs
-bTs
-ckN
-bTs
-bTs
+dvY
+dvY
+dvY
+dxk
+dvY
+dvY
cxO
-bTs
+dvY
aaf
aaf
aaf
@@ -132734,7 +129078,7 @@ bpa
brt
btu
buU
-alq
+byN
dhV
bAu
bCb
@@ -132760,15 +129104,15 @@ cdW
cfk
apc
chD
-bTs
+dvY
ckw
cma
cna
cos
-bUW
+dxh
clY
crZ
-bTs
+dvY
aaa
aaf
aaa
@@ -132991,7 +129335,7 @@ bpb
bru
alq
alq
-alq
+byN
byL
bAv
bCc
@@ -133017,15 +129361,15 @@ alq
cfl
alq
alq
-alq
+dvY
ckx
-apc
-bXB
+dwN
+dwQ
cot
cnb
cra
csa
-ckN
+dxk
aaf
aaf
aaf
@@ -133248,7 +129592,7 @@ alq
brv
alq
buV
-alq
+byN
dhW
dhX
bCd
@@ -133274,15 +129618,15 @@ cdX
cfm
apc
chE
-alq
+dvY
cky
-apc
-cbu
-bXE
-bXE
+dwN
+dwX
+dwN
+dwN
cou
csb
-bTs
+dvY
aaa
aaf
aaa
@@ -133467,28 +129811,28 @@ afD
afD
aqo
dhw
-alq
+dnh
auo
avq
awI
axL
-alq
+dnh
axO
-alq
+dnh
dhB
aLk
aHW
aYa
aHV
-alq
+dnh
aKw
aLZ
aNm
-apb
+dnR
aPS
cXc
aSo
-alq
+dnh
avB
aWv
aYm
@@ -133505,7 +129849,7 @@ atj
brw
btv
dbj
-alq
+byN
byN
byN
byN
@@ -133531,15 +129875,15 @@ cdY
bPl
avr
chF
-alq
+dvY
ckz
-apc
-bWa
-bXE
-bXE
+dwN
+dwY
+dwN
+dwN
cgs
csc
-ckN
+dxk
aaa
aaf
aaa
@@ -133723,11 +130067,11 @@ afD
afD
afD
aqo
-alq
-alq
-alq
-alq
-alq
+dnh
+dnh
+dnh
+dnh
+dnh
axM
ayQ
aAn
@@ -133790,13 +130134,13 @@ bZE
bZE
bZE
ckA
-bXB
+dwQ
cnb
cou
cpK
-bXE
+dwN
csc
-bTs
+dvY
aaa
aaf
aaa
@@ -133983,27 +130327,27 @@ aqo
arG
asB
aup
-apb
-alq
+dnR
+dnh
axN
-apb
-atm
-atm
-atm
-atm
-atm
-atm
-atm
-atm
-atm
-atm
-atm
-atm
-atm
-atm
-atm
-atm
-atm
+dnR
+axY
+axY
+axY
+axY
+axY
+axY
+axY
+axY
+axY
+axY
+axY
+axY
+axY
+axY
+axY
+axY
+axY
aWw
aWw
aWw
@@ -134053,7 +130397,7 @@ cov
cpL
crb
csd
-ckN
+dxk
aaa
aaf
aaa
@@ -134238,13 +130582,13 @@ afD
afD
aqo
arH
-aqq
+dpk
auq
-avr
-alq
+dqp
+dnh
azr
-anM
-atm
+dnz
+axY
aBD
aCN
aEh
@@ -134303,14 +130647,14 @@ cea
cgu
chH
bZE
-alq
-bTs
-bTs
-bTs
-ckN
-bTs
-bTs
-bTs
+dvY
+dvY
+dvY
+dvY
+dxk
+dvY
+dvY
+dvY
aaf
aaf
aaf
@@ -134498,10 +130842,10 @@ arI
atd
bai
ate
-aut
+dpP
axP
-apc
-atm
+dnS
+axY
aBE
aCO
aEi
@@ -134751,14 +131095,14 @@ amE
amE
amE
aqp
-alq
-apb
+dnh
+dnR
aus
-apc
-alq
+dnS
+dnh
aAm
-apc
-atm
+dnS
+axY
aBF
aCP
aEj
@@ -135005,17 +131349,17 @@ aiZ
ajX
alo
acP
-anM
-apb
+dnz
+dnR
dht
-alq
-alq
-alq
-alq
-alq
+dnh
+dnh
+dnh
+dnh
+dnh
axQ
ayR
-atm
+axY
aBG
aCP
aEk
@@ -135263,16 +131607,16 @@ ajY
alp
amF
anN
-apc
-aqr
-apc
-apc
-apf
-apc
-apc
+dnS
+doh
+dnS
+dnS
+dpL
+dnS
+dnS
axO
-apc
-atm
+dnS
+axY
aBH
aCQ
aEl
@@ -135517,19 +131861,19 @@ acP
acQ
acQ
acQ
-alq
-alq
-alq
-alq
-alq
-alq
-alq
-alq
-alq
-alq
+dnh
+dnh
+dnh
+dnh
+dnh
+dnh
+dnh
+dnh
+dnh
+dnh
aBC
-atm
-atm
+axY
+axY
aBI
aCR
aEm
@@ -135774,18 +132118,18 @@ aaa
aaa
aaa
aaf
-alr
+dni
amG
amH
anN
-apc
+dnS
arJ
arI
-alq
-avs
-aqr
+dnh
+dqu
+doh
axO
-atm
+axY
aAo
aBJ
ayT
@@ -136031,18 +132375,18 @@ aaf
aaf
aaf
aaf
-alq
+dnh
amH
-alq
+dnh
apd
-apc
+dnS
arK
-apc
-alq
-alq
-alq
+dnS
+dnh
+dnh
+dnh
axO
-atm
+axY
aAp
aBK
aCS
@@ -136290,16 +132634,16 @@ aaa
aaf
aaa
ack
-alq
+dnh
ape
-apc
+dnS
arL
ate
-aut
+dpP
avt
awJ
axS
-atm
+axY
aCO
ddW
aCT
@@ -136547,16 +132891,16 @@ aaf
aaf
aaf
ack
-alr
+dni
bcO
-apc
-apc
-apc
-alq
+dnS
+dnS
+dnS
+dnh
avu
-atm
+axY
axT
-atm
+axY
aAr
ddX
aCU
@@ -136804,14 +133148,14 @@ aaa
aaf
aaa
aaf
-alq
+dnh
apg
aqs
arM
-alq
-alq
+dnh
+dnh
avv
-atm
+axY
axU
ayS
aCP
@@ -137839,7 +134183,7 @@ arQ
ajb
ajb
avz
-atm
+axY
axY
ayW
ddR
@@ -138096,7 +134440,7 @@ arR
ath
ajb
avA
-atm
+axY
axZ
ayX
ddS
@@ -138353,7 +134697,7 @@ arS
ati
ajb
avB
-atm
+axY
ddO
bUw
ddT
@@ -138610,7 +134954,7 @@ ajb
ajb
ajb
avC
-atm
+axY
aya
bUw
ddU
@@ -138863,11 +135207,11 @@ aaf
aaf
aaf
aaf
-alr
-atj
-apf
+dni
+dps
+dpL
avD
-atm
+axY
ddO
bUw
ddV
@@ -139122,9 +135466,9 @@ apm
apm
apm
apm
-apb
+dnR
avE
-atm
+axY
ayc
aza
aAw
@@ -139379,9 +135723,9 @@ apn
aqy
arT
apm
-apc
+dnS
avB
-atm
+axY
axY
bTq
aAx
@@ -139638,8 +135982,8 @@ arU
atk
aux
avF
-atm
-axY
+drc
+drc
aaf
ack
dea
@@ -139894,9 +136238,9 @@ aqA
arV
atl
auy
-apc
-atm
-atm
+dnS
+drc
+drc
aaf
ack
ack
@@ -140150,10 +136494,10 @@ apm
apm
apm
apm
-alq
-apc
-anM
-atm
+dnh
+dnS
+dnz
+drc
aaf
aaf
aaf
@@ -140406,11 +136750,11 @@ aaf
aaa
aaa
aaa
-alq
+dnh
auz
-avr
-atm
-atm
+dqp
+drc
+drc
aaa
aaa
aaa
@@ -140663,10 +137007,10 @@ aaf
aaf
aaf
aaf
-alr
+dni
auA
-apc
-atm
+dnS
+drc
aaa
aaa
aaa
@@ -140920,10 +137264,10 @@ aaa
aaa
aaf
aaa
-alq
+dnh
auB
avG
-atm
+drc
aaa
aaa
aaa
@@ -141177,10 +137521,10 @@ aaa
aaa
aaf
aaa
-alq
-alq
+dnh
+dnh
atn
-atm
+drc
aaf
aaa
aaa
@@ -141437,7 +137781,7 @@ ack
atn
bOY
avG
-atm
+drc
aaf
aaa
aaa
@@ -141691,10 +138035,10 @@ aaf
aaf
aaf
aaf
-alq
-alq
+dnh
+dnh
atn
-atm
+drc
aaf
aaa
aaa
@@ -141951,7 +138295,7 @@ aaa
aaa
aaf
ack
-atm
+drc
aaf
anT
anT
@@ -147373,10 +143717,10 @@ anT
anT
anT
aaa
-ber
+aSD
bgf
bgd
-bjN
+aOX
bly
bnr
bpE
@@ -147633,7 +143977,7 @@ aSD
bes
bgg
bil
-bjO
+blz
blz
bns
bpF
diff --git a/_maps/map_files/OmegaStation/OmegaStation.dmm b/_maps/map_files/OmegaStation/OmegaStation.dmm
index da311e72d7..16a623b495 100644
--- a/_maps/map_files/OmegaStation/OmegaStation.dmm
+++ b/_maps/map_files/OmegaStation/OmegaStation.dmm
@@ -837,7 +837,7 @@
/area/bridge)
"abs" = (
/turf/closed/wall/r_wall,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"abt" = (
/turf/closed/wall,
/area/hallway/primary/central{
@@ -853,9 +853,7 @@
/area/security/detectives_office)
"abw" = (
/turf/closed/wall/r_wall,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"abx" = (
/obj/structure/cable/white{
tag = "icon-0-2";
@@ -868,9 +866,7 @@
name = "Captain's Space Shutters"
},
/turf/open/floor/plating,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"aby" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/white{
@@ -1008,7 +1004,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"abK" = (
/obj/structure/window/reinforced{
dir = 8
@@ -1026,7 +1022,7 @@
on = 1
},
/turf/open/floor/plasteel/white,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"abL" = (
/obj/structure/rack,
/obj/effect/decal/cleanable/dirt,
@@ -1151,15 +1147,11 @@
on = 1
},
/turf/open/floor/plasteel/white,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"abY" = (
/obj/machinery/status_display,
/turf/closed/wall,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"abZ" = (
/obj/structure/sign/vacuum{
pixel_y = 32
@@ -1174,9 +1166,7 @@
dir = 6
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"aca" = (
/obj/structure/dresser,
/obj/structure/cable/white{
@@ -1187,9 +1177,7 @@
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"acb" = (
/obj/structure/bed,
/obj/structure/cable/white{
@@ -1202,9 +1190,7 @@
/obj/item/weapon/bedsheet/captain,
/obj/effect/landmark/start/captain,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"acc" = (
/obj/structure/table/wood,
/obj/machinery/light_switch{
@@ -1234,9 +1220,7 @@
dir = 10
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"acd" = (
/obj/structure/cable/white{
tag = "icon-1-2";
@@ -1368,7 +1352,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"acp" = (
/obj/structure/bed,
/obj/structure/cable/white{
@@ -1383,7 +1367,7 @@
/obj/item/weapon/bedsheet/hop,
/obj/effect/landmark/start/head_of_personnel,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"acq" = (
/obj/structure/dresser,
/obj/structure/cable/white{
@@ -1396,7 +1380,7 @@
dir = 10
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"acr" = (
/obj/structure/closet/crate/bin,
/obj/machinery/light{
@@ -1414,11 +1398,11 @@
pixel_y = 24
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"acs" = (
/obj/machinery/status_display,
/turf/closed/wall,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"act" = (
/obj/structure/toilet{
dir = 4
@@ -1432,7 +1416,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/landmark/start/head_of_personnel,
/turf/open/floor/plasteel/white,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"acu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
tag = "icon-intact (SOUTHEAST)";
@@ -1645,9 +1629,7 @@
dir = 5
},
/turf/open/floor/plasteel/white,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"acP" = (
/obj/machinery/door/airlock/silver{
name = "Bathroom"
@@ -1656,18 +1638,14 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"acQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"acR" = (
/obj/structure/cable/white{
tag = "icon-1-2";
@@ -1679,9 +1657,7 @@
dir = 1
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"acS" = (
/obj/structure/cable/white{
tag = "icon-1-2";
@@ -1693,9 +1669,7 @@
dir = 10
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"acT" = (
/obj/machinery/airalarm{
dir = 8;
@@ -1705,9 +1679,7 @@
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"acU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
@@ -1909,7 +1881,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"adh" = (
/obj/structure/cable/white{
tag = "icon-2-4";
@@ -1929,7 +1901,7 @@
dir = 6
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"adi" = (
/obj/structure/cable/white{
tag = "icon-1-8";
@@ -1952,7 +1924,7 @@
scrub_Toxins = 0
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"adj" = (
/obj/structure/cable/white{
tag = "icon-2-8";
@@ -1960,7 +1932,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"adk" = (
/obj/machinery/door/airlock/silver{
name = "Bathroom"
@@ -1969,7 +1941,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"adl" = (
/obj/structure/mirror{
desc = "Mirror mirror on the wall, who is the most robust of them all?";
@@ -1986,7 +1958,7 @@
dir = 9
},
/turf/open/floor/plasteel/white,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"adm" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -2159,14 +2131,10 @@
},
/obj/effect/landmark/start/captain,
/turf/open/floor/plasteel/white,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"adH" = (
/turf/closed/wall,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"adI" = (
/obj/structure/filingcabinet,
/obj/structure/cable/white{
@@ -2184,9 +2152,7 @@
name = "command camera"
},
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"adJ" = (
/obj/structure/cable/white{
tag = "icon-2-4";
@@ -2214,9 +2180,7 @@
/turf/open/floor/wood{
icon_state = "wood-broken"
},
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"adK" = (
/obj/structure/cable/white{
tag = "icon-1-4";
@@ -2232,9 +2196,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"adL" = (
/obj/machinery/light{
dir = 4
@@ -2250,9 +2212,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/closet/crate/bin,
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"adM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/white{
@@ -2345,7 +2305,7 @@
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"adV" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -2365,16 +2325,16 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"adW" = (
/obj/structure/cable/white,
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"adX" = (
/turf/closed/wall,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"adY" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -2631,17 +2591,13 @@
"aeu" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"aev" = (
/obj/structure/cable/white,
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"aew" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
@@ -2660,9 +2616,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"aex" = (
/obj/structure/cable/white,
/obj/structure/grille,
@@ -2672,9 +2626,7 @@
pixel_x = 32
},
/turf/open/floor/plating,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"aey" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/light{
@@ -2870,7 +2822,7 @@
icon_state = "0-2"
},
/turf/open/floor/plating,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"aeJ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/obj/structure/bed/dogbed{
@@ -2883,7 +2835,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"aeK" = (
/obj/structure/cable/white{
tag = "icon-1-2";
@@ -2896,7 +2848,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"aeL" = (
/obj/machinery/photocopier,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
@@ -2907,14 +2859,14 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"aeM" = (
/obj/structure/filingcabinet/security,
/obj/item/weapon/folder/documents,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"aeN" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/box/silver_ids{
@@ -2936,7 +2888,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"aeO" = (
/obj/structure/table/wood,
/obj/machinery/computer/med_data/laptop,
@@ -2955,7 +2907,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"aeP" = (
/obj/machinery/status_display{
density = 0;
@@ -3155,9 +3107,7 @@
/obj/machinery/suit_storage_unit/captain,
/obj/effect/turf_decal/stripes/end,
/turf/open/floor/plasteel,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"afl" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-15";
@@ -3166,9 +3116,7 @@
tag = "icon-plant-15"
},
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"afm" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
@@ -3176,9 +3124,7 @@
scrub_Toxins = 0
},
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"afn" = (
/obj/structure/cable/white{
tag = "icon-1-2";
@@ -3189,9 +3135,7 @@
dir = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"afo" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-21";
@@ -3216,9 +3160,7 @@
tag = "icon-wood-broken2";
icon_state = "wood-broken2"
},
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"afp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/firealarm{
@@ -3350,7 +3292,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"afw" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -3362,7 +3304,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"afx" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -3380,7 +3322,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"afy" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -3397,7 +3339,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"afz" = (
/obj/structure/cable/white{
tag = "icon-1-8";
@@ -3418,7 +3360,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"afA" = (
/obj/machinery/computer/secure_data,
/obj/machinery/ai_status_display{
@@ -3432,7 +3374,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"afB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/landmark/blobstart,
@@ -3650,9 +3592,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"afX" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -3660,9 +3600,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"afY" = (
/obj/machinery/requests_console{
announcementConsole = 1;
@@ -3682,23 +3620,17 @@
name = "command camera"
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"afZ" = (
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"aga" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green,
/obj/item/weapon/card/id/captains_spare,
/obj/item/toy/figure/captain,
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"agb" = (
/obj/structure/cable/white{
tag = "icon-1-2";
@@ -3706,9 +3638,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"agc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
tag = "icon-intact (NORTHEAST)";
@@ -3716,9 +3646,7 @@
dir = 5
},
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"agd" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -3734,9 +3662,7 @@
name = "Captain's Hall Shutters"
},
/turf/open/floor/plating,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"age" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -3849,7 +3775,7 @@
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable/white,
/turf/open/floor/plating,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"ago" = (
/obj/structure/table/wood,
/obj/machinery/firealarm{
@@ -3868,7 +3794,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"agp" = (
/obj/machinery/pdapainter,
/obj/structure/cable/white{
@@ -3878,14 +3804,14 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"agq" = (
/obj/machinery/vending/cart,
/obj/machinery/light,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"agr" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
@@ -3902,7 +3828,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"ags" = (
/obj/structure/chair/office/dark,
/obj/machinery/light_switch{
@@ -3913,7 +3839,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"agt" = (
/obj/machinery/computer/card,
/obj/machinery/status_display{
@@ -3940,7 +3866,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"agu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/decal/cleanable/dirt,
@@ -4155,9 +4081,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"agP" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -4172,9 +4096,7 @@
icon_state = "1-4"
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"agQ" = (
/obj/structure/chair/comfy/brown{
color = "#c45c57";
@@ -4192,9 +4114,7 @@
},
/obj/effect/landmark/start/captain,
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"agR" = (
/obj/structure/table/wood,
/obj/structure/cable/white{
@@ -4211,9 +4131,7 @@
/obj/item/weapon/melee/chainofcommand,
/obj/item/weapon/stamp/captain,
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"agS" = (
/obj/structure/chair/comfy/brown{
icon_state = "comfychair";
@@ -4229,9 +4147,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"agT" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -4243,9 +4159,7 @@
dir = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"agU" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
@@ -4274,9 +4188,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"agV" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/obj/structure/cable/white{
@@ -4432,11 +4344,11 @@
name = "HoP Blast door"
},
/turf/open/floor/plating,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"ahh" = (
/obj/machinery/status_display,
/turf/closed/wall/r_wall,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"ahi" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
@@ -4457,7 +4369,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"ahj" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -4799,9 +4711,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_end (NORTH)"
},
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"ahI" = (
/obj/machinery/computer/communications,
/obj/machinery/status_display{
@@ -4812,18 +4722,14 @@
pixel_y = -24
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"ahJ" = (
/obj/machinery/computer/card,
/obj/machinery/ai_status_display{
pixel_y = -32
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"ahK" = (
/obj/machinery/computer/security/wooden_tv{
density = 0
@@ -4837,9 +4743,7 @@
req_access_txt = "20"
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"ahL" = (
/obj/structure/chair/comfy/brown{
icon_state = "comfychair";
@@ -4849,9 +4753,7 @@
pixel_y = -32
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"ahM" = (
/obj/machinery/firealarm{
dir = 1;
@@ -4862,9 +4764,7 @@
/obj/item/weapon/storage/fancy/donut_box,
/obj/item/weapon/lighter,
/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"ahN" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -4874,9 +4774,7 @@
name = "Captain's Hall Shutters"
},
/turf/open/floor/plating,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
+/area/crew_quarters/heads/captain/private)
"ahO" = (
/obj/machinery/airalarm{
dir = 8;
@@ -7153,17 +7051,13 @@
})
"alg" = (
/turf/closed/wall/r_wall,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"alh" = (
/obj/structure/cable/white,
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"ali" = (
/obj/machinery/door/poddoor/shutters{
id = "teleportershutters";
@@ -7176,9 +7070,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"alj" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -7196,9 +7088,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"alk" = (
/obj/structure/cable/white,
/obj/structure/grille,
@@ -7737,9 +7627,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"alZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
@@ -7751,17 +7639,13 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"ama" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"amb" = (
/obj/structure/cable/white{
tag = "icon-1-2";
@@ -7776,9 +7660,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"amc" = (
/obj/machinery/shieldwallgen,
/obj/structure/cable/white{
@@ -7790,9 +7672,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"amd" = (
/obj/structure/cable/white{
tag = "icon-0-8";
@@ -7801,9 +7681,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"ame" = (
/obj/structure/cable/white{
tag = "icon-0-4";
@@ -8293,18 +8171,14 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"amU" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"amV" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/belt/utility,
@@ -8313,9 +8187,7 @@
/obj/item/device/gps,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"amW" = (
/obj/structure/cable/white{
tag = "icon-1-2";
@@ -8328,23 +8200,17 @@
/turf/open/floor/plasteel{
tag = "icon-warning (EAST)"
},
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"amX" = (
/obj/machinery/teleport/hub,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"amY" = (
/obj/structure/sign/electricshock,
/turf/closed/wall/r_wall,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"amZ" = (
/obj/machinery/vending/snack,
/obj/structure/sign/nanotrasen{
@@ -8628,7 +8494,7 @@
"anx" = (
/obj/structure/grille,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"any" = (
/obj/item/weapon/storage/box/firingpins,
/obj/item/weapon/storage/box/firingpins,
@@ -8835,24 +8701,18 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"anM" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"anN" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"anO" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -8864,9 +8724,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"anP" = (
/obj/machinery/teleport/station,
/obj/machinery/light{
@@ -8878,9 +8736,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"anQ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -9224,13 +9080,13 @@
/area/shuttle/mining)
"aoq" = (
/turf/open/floor/engine/vacuum,
-/area/atmos)
+/area/engine/atmos)
"aor" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/engine/vacuum,
-/area/atmos)
+/area/engine/atmos)
"aos" = (
/obj/item/weapon/storage/box/teargas{
pixel_x = 3;
@@ -9425,16 +9281,12 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"aoG" = (
/obj/structure/tank_dispenser/oxygen,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"aoH" = (
/obj/structure/cable/white{
tag = "icon-1-2";
@@ -9450,9 +9302,7 @@
/turf/open/floor/plasteel{
tag = "icon-warning (EAST)"
},
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"aoI" = (
/obj/machinery/computer/teleporter,
/obj/machinery/newscaster{
@@ -9461,9 +9311,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"aoJ" = (
/obj/machinery/droneDispenser,
/obj/effect/decal/cleanable/dirt,
@@ -9471,9 +9319,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aoK" = (
/obj/structure/table,
/obj/effect/decal/cleanable/dirt,
@@ -9490,9 +9336,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aoL" = (
/obj/structure/rack,
/obj/item/weapon/crowbar/red,
@@ -9509,17 +9353,13 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aoM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aoN" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
tag = "icon-manifold (NORTH)";
@@ -9611,9 +9451,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"aoT" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -9625,9 +9463,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"aoU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
tag = "icon-intact (SOUTHWEST)";
@@ -9641,9 +9477,7 @@
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"aoV" = (
/obj/machinery/shieldgen,
/obj/effect/decal/cleanable/dirt,
@@ -9652,9 +9486,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"aoW" = (
/obj/machinery/suit_storage_unit/standard_unit,
/obj/effect/decal/cleanable/dirt,
@@ -9981,14 +9813,14 @@
pixel_y = 1
},
/turf/open/floor/engine/vacuum,
-/area/atmos)
+/area/engine/atmos)
"apv" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "mix_sensor"
},
/turf/open/floor/engine/vacuum,
-/area/atmos)
+/area/engine/atmos)
"apw" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -10003,7 +9835,7 @@
pump_direction = 0
},
/turf/open/floor/engine/vacuum,
-/area/atmos)
+/area/engine/atmos)
"apx" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -10206,9 +10038,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"apL" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/status_display{
@@ -10218,9 +10048,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"apM" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/power/apc{
@@ -10234,9 +10062,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"apN" = (
/obj/machinery/status_display{
pixel_y = -32
@@ -10249,9 +10075,7 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"apO" = (
/obj/machinery/shieldwallgen,
/obj/effect/decal/cleanable/dirt,
@@ -10265,9 +10089,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/teleporter{
- name = "\improper Teleporter Room"
- })
+/area/teleporter)
"apP" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -10276,9 +10098,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 9
},
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"apQ" = (
/obj/structure/cable/white{
tag = "icon-2-4";
@@ -10292,9 +10112,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 5
},
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"apR" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -10306,9 +10124,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"apS" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -10326,9 +10142,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"apT" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -10398,9 +10212,7 @@
dir = 4
},
/turf/closed/wall,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"apZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -10408,9 +10220,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"aqa" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -10422,9 +10232,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/caution,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"aqb" = (
/obj/machinery/shieldgen,
/obj/effect/decal/cleanable/dirt,
@@ -10435,9 +10243,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"aqc" = (
/obj/structure/table/reinforced,
/obj/item/weapon/tank/jetpack/carbondioxide{
@@ -10739,7 +10545,7 @@
/area/shuttle/mining)
"aqz" = (
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"aqA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
tag = "icon-intact (SOUTHEAST)";
@@ -10747,7 +10553,7 @@
dir = 6
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"aqB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
tag = "icon-intact (WEST)";
@@ -10755,7 +10561,7 @@
dir = 8
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"aqC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
tag = "icon-intact (WEST)";
@@ -10764,7 +10570,7 @@
},
/obj/structure/grille,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"aqD" = (
/obj/machinery/meter,
/obj/structure/grille,
@@ -10775,7 +10581,7 @@
dir = 8
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"aqE" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -10785,7 +10591,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"aqF" = (
/obj/machinery/meter,
/obj/structure/grille,
@@ -10796,7 +10602,7 @@
dir = 8
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"aqG" = (
/obj/structure/door_assembly/door_assembly_mhatch,
/obj/effect/decal/cleanable/dirt,
@@ -11026,9 +10832,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aqZ" = (
/obj/structure/cable/white{
tag = "icon-1-2";
@@ -11038,9 +10842,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 4
},
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"ara" = (
/turf/closed/wall,
/area/crew_quarters/bar{
@@ -11129,16 +10931,12 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"arh" = (
/obj/structure/girder,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"ari" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/extinguisher_cabinet{
@@ -11327,13 +11125,13 @@
},
/obj/structure/grille,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"arr" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
/turf/open/floor/plasteel/vault,
-/area/atmos)
+/area/engine/atmos)
"ars" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -11346,7 +11144,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"art" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -11357,7 +11155,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aru" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -11372,7 +11170,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"arv" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -11382,7 +11180,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"arw" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
@@ -11398,7 +11196,7 @@
/turf/open/floor/plasteel/green/side{
dir = 9
},
-/area/atmos)
+/area/engine/atmos)
"arx" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
@@ -11416,7 +11214,7 @@
icon_state = "green";
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"ary" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
@@ -11425,7 +11223,7 @@
/turf/open/floor/plasteel/green/side{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"arz" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
dir = 1;
@@ -11434,7 +11232,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"arA" = (
/obj/machinery/atmospherics/components/unary/thermomachine/heater{
dir = 8
@@ -11446,7 +11244,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"arB" = (
/turf/open/floor/plating/astplate,
/area/hallway/primary/central{
@@ -11734,9 +11532,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 4
},
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"arW" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/maintenance_hatch{
@@ -11754,9 +11550,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"arX" = (
/obj/structure/cable/white{
tag = "icon-2-4";
@@ -11776,9 +11570,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"arY" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -11788,9 +11580,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"arZ" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -11800,9 +11590,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/corner,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"asa" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -11815,9 +11603,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"asb" = (
/obj/structure/cable/white{
tag = "icon-2-8";
@@ -11837,9 +11623,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"asc" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -11848,9 +11632,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"asd" = (
/obj/machinery/computer/slot_machine,
/obj/machinery/light_switch{
@@ -11926,9 +11708,7 @@
icon_state = "1-4"
},
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"asl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -11938,9 +11718,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/neutral/corner,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"asm" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -11953,9 +11731,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"asn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -11965,9 +11741,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/neutral/corner,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"aso" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -11978,9 +11752,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"asp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -11990,9 +11762,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"asq" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -12003,9 +11773,7 @@
icon_state = "2-8"
},
/turf/open/floor/plasteel/neutral/corner,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"asr" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/loadingarea{
@@ -12043,7 +11811,7 @@
/area/shuttle/mining)
"asv" = (
/turf/open/floor/engine/n2,
-/area/atmos)
+/area/engine/atmos)
"asw" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 4;
@@ -12051,7 +11819,7 @@
id = "n2_in"
},
/turf/open/floor/engine/n2,
-/area/atmos)
+/area/engine/atmos)
"asx" = (
/obj/machinery/meter,
/obj/structure/grille,
@@ -12064,7 +11832,7 @@
dir = 4
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"asy" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
@@ -12073,7 +11841,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"asz" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 2;
@@ -12091,7 +11859,7 @@
/turf/open/floor/plasteel/red/side{
dir = 9
},
-/area/atmos)
+/area/engine/atmos)
"asA" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -12099,11 +11867,11 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"asB" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"asC" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 6
@@ -12114,7 +11882,7 @@
/turf/open/floor/plasteel{
tag = "icon-warning (EAST)"
},
-/area/atmos)
+/area/engine/atmos)
"asD" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
@@ -12127,7 +11895,7 @@
/turf/open/floor/plasteel/caution{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"asE" = (
/obj/machinery/atmospherics/pipe/manifold/green/visible{
tag = "icon-manifold (NORTH)";
@@ -12136,7 +11904,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"asF" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/machinery/atmospherics/components/binary/pump{
@@ -12145,7 +11913,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"asG" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
dir = 2;
@@ -12154,7 +11922,7 @@
/obj/machinery/meter,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"asH" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 10;
@@ -12164,7 +11932,7 @@
/turf/open/floor/plasteel/caution{
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"asI" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/sign/vacuum{
@@ -12484,15 +12252,11 @@
/turf/open/floor/plasteel/yellow/side{
dir = 4
},
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"atc" = (
/obj/structure/sign/poster/contraband/random,
/turf/closed/wall,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"atd" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -12501,9 +12265,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"ate" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
@@ -12608,9 +12370,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"atp" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
tag = "icon-manifold (WEST)";
@@ -12709,14 +12469,14 @@
dir = 8
},
/turf/open/floor/engine/n2,
-/area/atmos)
+/area/engine/atmos)
"atx" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "n2_sensor"
},
/turf/open/floor/engine/n2,
-/area/atmos)
+/area/engine/atmos)
"aty" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -12726,7 +12486,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"atz" = (
/obj/machinery/camera{
c_tag = "Atmospherics Tank 1";
@@ -12736,7 +12496,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"atA" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
@@ -12752,19 +12512,19 @@
/turf/open/floor/plasteel/red/side{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"atB" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"atC" = (
/obj/machinery/holopad,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"atD" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/effect/decal/cleanable/dirt,
@@ -12774,7 +12534,7 @@
/turf/open/floor/plasteel{
tag = "icon-warning (EAST)"
},
-/area/atmos)
+/area/engine/atmos)
"atE" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
tag = "icon-intact (NORTHEAST)";
@@ -12784,7 +12544,7 @@
/turf/open/floor/plasteel/caution{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"atF" = (
/obj/machinery/atmospherics/pipe/manifold/green/visible{
tag = "icon-manifold (EAST)";
@@ -12792,12 +12552,12 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"atG" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"atH" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -12805,7 +12565,7 @@
on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"atI" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 2;
@@ -12831,13 +12591,13 @@
/turf/open/floor/plasteel/caution{
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"atJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"atK" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -13056,9 +12816,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"atW" = (
/obj/effect/landmark/blobstart,
/obj/structure/cable/white{
@@ -13070,9 +12828,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/corner,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"atX" = (
/obj/structure/table/wood,
/obj/item/device/camera_film{
@@ -13249,9 +13005,7 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"auo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/status_display{
@@ -13293,7 +13047,7 @@
pump_direction = 0
},
/turf/open/floor/engine/n2,
-/area/atmos)
+/area/engine/atmos)
"aur" = (
/obj/machinery/meter,
/obj/structure/grille,
@@ -13306,7 +13060,7 @@
dir = 4
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"aus" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 1
@@ -13315,7 +13069,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"aut" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/components/binary/pump{
@@ -13331,7 +13085,7 @@
/turf/open/floor/plasteel/red/side{
dir = 10
},
-/area/atmos)
+/area/engine/atmos)
"auu" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -13340,14 +13094,14 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"auv" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 10;
initialize_directions = 10
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"auw" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/effect/turf_decal/stripes/line{
@@ -13356,7 +13110,7 @@
/turf/open/floor/plasteel{
tag = "icon-warning (EAST)"
},
-/area/atmos)
+/area/engine/atmos)
"aux" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 6
@@ -13364,7 +13118,7 @@
/turf/open/floor/plasteel/caution{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"auy" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
tag = "icon-intact (NORTHWEST)";
@@ -13372,13 +13126,13 @@
dir = 9
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"auz" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 8
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"auA" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
@@ -13387,7 +13141,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"auB" = (
/obj/machinery/atmospherics/pipe/manifold/supply/visible{
tag = "icon-manifold (EAST)";
@@ -13406,13 +13160,13 @@
/turf/open/floor/plasteel/caution{
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"auC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"auD" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plating,
@@ -13687,9 +13441,7 @@
"auY" = (
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"auZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
@@ -13882,9 +13634,7 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"avt" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
tag = "icon-manifold (WEST)";
@@ -13938,7 +13688,7 @@
dir = 1
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"avy" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 5
@@ -13950,7 +13700,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"avz" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/components/binary/pump{
@@ -13960,7 +13710,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"avA" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
icon_state = "intact";
@@ -13971,12 +13721,12 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"avB" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/effect/landmark/start/atmospheric_technician,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"avC" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
@@ -13986,14 +13736,14 @@
/turf/open/floor/plasteel/caution{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"avD" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 6
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"avE" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
tag = "icon-intact (NORTHWEST)";
@@ -14001,14 +13751,14 @@
dir = 9
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"avF" = (
/obj/machinery/atmospherics/components/unary/thermomachine/heater{
dir = 4;
on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"avG" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/visible,
/obj/machinery/meter{
@@ -14030,13 +13780,13 @@
/turf/open/floor/plasteel/caution{
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"avH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"avI" = (
/obj/structure/cable/white{
tag = "icon-2-4";
@@ -14346,14 +14096,10 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"awe" = (
/turf/closed/wall,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"awf" = (
/obj/structure/table/wood,
/obj/item/device/camera,
@@ -14570,9 +14316,7 @@
icon_state = "2-8"
},
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"awy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/item/device/radio/intercom{
@@ -14602,7 +14346,7 @@
})
"awA" = (
/turf/open/floor/engine/o2,
-/area/atmos)
+/area/engine/atmos)
"awB" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 4;
@@ -14610,7 +14354,7 @@
id = "o2_in"
},
/turf/open/floor/engine/o2,
-/area/atmos)
+/area/engine/atmos)
"awC" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
@@ -14618,7 +14362,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"awD" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 2;
@@ -14636,24 +14380,24 @@
/turf/open/floor/plasteel/blue/side{
dir = 9
},
-/area/atmos)
+/area/engine/atmos)
"awE" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"awF" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"awG" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/turf/open/floor/plasteel/caution{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"awH" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 2;
@@ -14662,7 +14406,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"awI" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
@@ -14671,7 +14415,7 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"awJ" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
dir = 2;
@@ -14683,7 +14427,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"awK" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 2;
@@ -14705,13 +14449,13 @@
/turf/open/floor/plasteel/caution{
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"awL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"awM" = (
/obj/structure/cable/white{
tag = "icon-1-2";
@@ -14732,7 +14476,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/atmos)
+/area/engine/atmos)
"awN" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/plasticflaps{
@@ -14745,7 +14489,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"awO" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -14765,10 +14509,10 @@
"awP" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"awQ" = (
/turf/closed/wall,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"awR" = (
/obj/structure/table/wood,
/obj/item/weapon/soap/nanotrasen,
@@ -14907,9 +14651,7 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"axf" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
@@ -14936,14 +14678,14 @@
dir = 8
},
/turf/open/floor/engine/o2,
-/area/atmos)
+/area/engine/atmos)
"axi" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "o2_sensor"
},
/turf/open/floor/engine/o2,
-/area/atmos)
+/area/engine/atmos)
"axj" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/camera{
@@ -14954,7 +14696,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"axk" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
@@ -14970,12 +14712,12 @@
/turf/open/floor/plasteel/blue/side{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"axl" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"axm" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
dir = 8;
@@ -14984,7 +14726,7 @@
},
/obj/machinery/meter,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"axn" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
@@ -14992,7 +14734,7 @@
on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"axo" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
dir = 2;
@@ -15002,7 +14744,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"axp" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
dir = 2;
@@ -15017,7 +14759,7 @@
/turf/open/floor/plasteel/caution{
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"axq" = (
/obj/machinery/light{
dir = 1
@@ -15035,7 +14777,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"axr" = (
/obj/structure/cable/white{
tag = "icon-1-2";
@@ -15049,7 +14791,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"axs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/structure/reagent_dispensers/fueltank,
@@ -15061,12 +14803,12 @@
/obj/effect/decal/cleanable/oil,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"axt" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"axu" = (
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/machinery/camera{
@@ -15076,7 +14818,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"axv" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/obj/machinery/light{
@@ -15087,19 +14829,19 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"axw" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"axx" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"axy" = (
/obj/item/weapon/weldingtool,
/obj/item/clothing/head/welding,
@@ -15112,7 +14854,7 @@
/turf/open/floor/plasteel/caution{
dir = 9
},
-/area/atmos)
+/area/engine/atmos)
"axz" = (
/obj/structure/table/reinforced,
/obj/item/stack/sheet/glass{
@@ -15130,7 +14872,7 @@
/turf/open/floor/plasteel/caution{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"axA" = (
/obj/structure/table/reinforced,
/obj/item/stack/sheet/metal{
@@ -15156,7 +14898,7 @@
/turf/open/floor/plasteel/caution{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"axB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/light{
@@ -15191,7 +14933,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"axE" = (
/obj/structure/closet/secure_closet/personal,
/obj/machinery/status_display{
@@ -15200,7 +14942,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"axF" = (
/obj/structure/closet/secure_closet/personal,
/obj/machinery/light_switch{
@@ -15209,13 +14951,13 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"axG" = (
/obj/structure/closet/secure_closet/personal,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"axH" = (
/obj/structure/closet/secure_closet/personal/cabinet,
/obj/item/clothing/suit/jacket/letterman_nanotrasen,
@@ -15225,14 +14967,14 @@
dir = 1
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"axI" = (
/obj/structure/dresser,
/obj/machinery/computer/security/telescreen/entertainment{
pixel_y = 32
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"axJ" = (
/obj/structure/closet/secure_closet/personal/cabinet,
/obj/item/clothing/suit/jacket{
@@ -15249,14 +14991,14 @@
dir = 1
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"axK" = (
/obj/structure/dresser,
/obj/machinery/computer/security/telescreen/entertainment{
pixel_y = 32
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"axL" = (
/obj/structure/cable/white{
tag = "icon-1-2";
@@ -15264,9 +15006,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"axM" = (
/obj/structure/table/wood,
/obj/item/weapon/lipstick/random{
@@ -15384,9 +15124,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/neutral/corner,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"axV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/newscaster{
@@ -15430,7 +15168,7 @@
pump_direction = 0
},
/turf/open/floor/engine/o2,
-/area/atmos)
+/area/engine/atmos)
"ayb" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 1
@@ -15438,7 +15176,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"ayc" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/components/binary/pump{
@@ -15453,7 +15191,7 @@
/turf/open/floor/plasteel/blue/side{
dir = 10
},
-/area/atmos)
+/area/engine/atmos)
"ayd" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
@@ -15463,7 +15201,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aye" = (
/obj/machinery/atmospherics/components/trinary/mixer{
dir = 2;
@@ -15477,7 +15215,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"ayf" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 1;
@@ -15490,7 +15228,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"ayg" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/machinery/atmospherics/components/binary/pump{
@@ -15502,7 +15240,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"ayh" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,
/obj/machinery/meter,
@@ -15510,7 +15248,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"ayi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
@@ -15519,7 +15257,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"ayj" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
tag = "icon-manifold (NORTH)";
@@ -15535,7 +15273,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"ayk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
@@ -15549,7 +15287,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"ayl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 9
@@ -15563,7 +15301,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aym" = (
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/machinery/firealarm{
@@ -15574,22 +15312,22 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"ayn" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"ayo" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"ayp" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"ayq" = (
/obj/structure/table/reinforced,
/obj/effect/decal/cleanable/dirt,
@@ -15598,7 +15336,7 @@
/turf/open/floor/plasteel/caution{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"ayr" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/belt/utility,
@@ -15611,7 +15349,7 @@
/turf/open/floor/plasteel/caution{
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"ays" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -15624,7 +15362,7 @@
icon_state = "0-8"
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"ayt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/white{
@@ -15641,18 +15379,18 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"ayv" = (
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"ayw" = (
/obj/effect/landmark/start/assistant,
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"ayx" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
@@ -15663,7 +15401,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"ayy" = (
/obj/machinery/airalarm{
dir = 8;
@@ -15677,10 +15415,10 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"ayz" = (
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"ayA" = (
/obj/structure/bed,
/obj/machinery/newscaster{
@@ -15688,10 +15426,10 @@
},
/obj/item/weapon/bedsheet/blue,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"ayB" = (
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"ayC" = (
/obj/structure/bed,
/obj/machinery/newscaster{
@@ -15699,7 +15437,7 @@
},
/obj/item/weapon/bedsheet/red,
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"ayD" = (
/obj/structure/cable/white{
tag = "icon-1-2";
@@ -15709,9 +15447,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"ayE" = (
/obj/structure/table/wood,
/obj/item/device/instrument/violin,
@@ -15828,9 +15564,7 @@
/area/crew_quarters/bar)
"ayP" = (
/turf/closed/wall,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"ayQ" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/decal/cleanable/dirt,
@@ -15838,9 +15572,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"ayR" = (
/obj/structure/rack,
/obj/item/clothing/suit/fire/firefighter,
@@ -15864,25 +15596,19 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"ayS" = (
/obj/structure/reagent_dispensers/watertank,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"ayT" = (
/obj/structure/girder,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"ayU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/light{
@@ -16066,7 +15792,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"azk" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 4
@@ -16075,28 +15801,28 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"azl" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"azm" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"azn" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"azo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"azp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/structure/cable/white{
@@ -16107,7 +15833,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"azq" = (
/obj/structure/cable/white{
tag = "icon-1-2";
@@ -16117,7 +15843,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"azr" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -16129,7 +15855,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"azs" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -16141,13 +15867,13 @@
dir = 4
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"azt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/loadingarea,
-/area/atmos)
+/area/engine/atmos)
"azu" = (
/obj/structure/cable/white{
tag = "icon-2-4";
@@ -16157,7 +15883,7 @@
dir = 4
},
/turf/open/floor/plasteel/loadingarea,
-/area/atmos)
+/area/engine/atmos)
"azv" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -16167,7 +15893,7 @@
dir = 4
},
/turf/open/floor/plasteel/loadingarea,
-/area/atmos)
+/area/engine/atmos)
"azw" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -16179,7 +15905,7 @@
dir = 1
},
/turf/open/floor/plasteel/loadingarea,
-/area/atmos)
+/area/engine/atmos)
"azx" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -16195,7 +15921,7 @@
/turf/open/floor/plasteel/caution{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"azy" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -16207,7 +15933,7 @@
on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"azz" = (
/obj/machinery/computer/atmos_alert,
/obj/structure/cable/white{
@@ -16225,23 +15951,23 @@
/turf/open/floor/plasteel/caution{
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"azA" = (
/obj/structure/table,
/obj/item/device/paicard,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"azB" = (
/obj/structure/table,
/obj/item/device/camera,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"azC" = (
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"azD" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
@@ -16253,7 +15979,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"azE" = (
/obj/structure/table/wood,
/obj/item/weapon/staff/broom,
@@ -16354,9 +16080,7 @@
dir = 4
},
/turf/closed/wall,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"azN" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -16365,9 +16089,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"azO" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -16378,27 +16100,21 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"azP" = (
/obj/effect/landmark/blobstart,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"azQ" = (
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"azR" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -16410,9 +16126,7 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"azS" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/maintenance_hatch{
@@ -16556,7 +16270,7 @@
/area/shuttle/escape)
"aAg" = (
/turf/open/floor/engine/air,
-/area/atmos)
+/area/engine/atmos)
"aAh" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 4;
@@ -16564,7 +16278,7 @@
id = "air_in"
},
/turf/open/floor/engine/air,
-/area/atmos)
+/area/engine/atmos)
"aAi" = (
/obj/machinery/meter{
name = "Mixed Air Tank In"
@@ -16579,7 +16293,7 @@
dir = 4
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"aAj" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
tag = "icon-intact (WEST)";
@@ -16590,7 +16304,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"aAk" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
@@ -16611,7 +16325,7 @@
icon_state = "arrival";
dir = 9
},
-/area/atmos)
+/area/engine/atmos)
"aAl" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
@@ -16623,7 +16337,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aAm" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
tag = "icon-intact (NORTHWEST)";
@@ -16632,7 +16346,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aAn" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
tag = "icon-intact (SOUTHEAST)";
@@ -16640,7 +16354,7 @@
dir = 6
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aAo" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
dir = 1;
@@ -16648,13 +16362,13 @@
},
/obj/machinery/meter,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aAp" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aAq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
@@ -16666,7 +16380,7 @@
icon_state = "1-4"
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aAr" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -16676,7 +16390,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aAs" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 10;
@@ -16703,7 +16417,7 @@
icon_state = "1-4"
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aAt" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -16714,7 +16428,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aAu" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/atmos{
@@ -16737,7 +16451,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aAv" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -16746,7 +16460,7 @@
/turf/open/floor/plasteel/caution/corner{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"aAw" = (
/obj/structure/cable/white{
tag = "icon-1-8";
@@ -16757,7 +16471,7 @@
icon_state = "2-8"
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aAx" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
@@ -16766,11 +16480,11 @@
scrub_Toxins = 1
},
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aAy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aAz" = (
/obj/machinery/holopad,
/obj/structure/cable/white{
@@ -16779,14 +16493,14 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aAA" = (
/obj/structure/chair/office/dark{
dir = 4
},
/obj/effect/landmark/start/atmospheric_technician,
/turf/open/floor/plasteel/neutral,
-/area/atmos)
+/area/engine/atmos)
"aAB" = (
/obj/machinery/computer/station_alert{
density = 0
@@ -16798,7 +16512,7 @@
/turf/open/floor/plasteel/caution{
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"aAC" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
tag = "icon-manifold (WEST)";
@@ -16823,7 +16537,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aAE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -16831,7 +16545,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aAF" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -16839,7 +16553,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aAG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
tag = "icon-intact (NORTHWEST)";
@@ -16847,12 +16561,12 @@
dir = 9
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aAH" = (
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aAI" = (
/obj/structure/sign/nosmoking_2{
pixel_y = 32
@@ -16860,7 +16574,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aAJ" = (
/obj/structure/table,
/obj/structure/bedsheetbin,
@@ -16872,7 +16586,7 @@
/turf/open/floor/plasteel/arrival{
dir = 4
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aAK" = (
/obj/structure/sign/poster/random,
/turf/closed/wall,
@@ -17014,9 +16728,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"aAU" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -17028,9 +16740,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"aAV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -17047,9 +16757,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"aAW" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -17064,9 +16772,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"aAX" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/obj/structure/cable/white{
@@ -17082,9 +16788,7 @@
icon_state = "2-8"
},
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"aAY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -17242,14 +16946,14 @@
dir = 8
},
/turf/open/floor/engine/air,
-/area/atmos)
+/area/engine/atmos)
"aBp" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "air_sensor"
},
/turf/open/floor/engine/air,
-/area/atmos)
+/area/engine/atmos)
"aBq" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
@@ -17271,7 +16975,7 @@
icon_state = "arrival";
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"aBr" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
tag = "icon-intact (WEST)";
@@ -17283,14 +16987,14 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aBs" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aBt" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
tag = "icon-intact (NORTHWEST)";
@@ -17299,17 +17003,17 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aBu" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aBv" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aBw" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
dir = 8;
@@ -17317,7 +17021,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aBx" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 10;
@@ -17325,7 +17029,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aBy" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
dir = 8;
@@ -17334,7 +17038,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aBz" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
tag = "icon-manifold (NORTH)";
@@ -17344,7 +17048,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aBA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
@@ -17356,7 +17060,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aBB" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
@@ -17368,7 +17072,7 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aBC" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -17377,7 +17081,7 @@
},
/obj/structure/cable/white,
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"aBD" = (
/obj/item/weapon/tank/internals/emergency_oxygen{
pixel_x = -6
@@ -17393,7 +17097,7 @@
icon_state = "caution";
dir = 10
},
-/area/atmos)
+/area/engine/atmos)
"aBE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
tag = "icon-intact (SOUTHWEST)";
@@ -17405,17 +17109,17 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/caution,
-/area/atmos)
+/area/engine/atmos)
"aBF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aBG" = (
/obj/structure/tank_dispenser,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/caution,
-/area/atmos)
+/area/engine/atmos)
"aBH" = (
/obj/structure/chair/office/dark,
/obj/effect/landmark/start/atmospheric_technician,
@@ -17424,7 +17128,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/caution,
-/area/atmos)
+/area/engine/atmos)
"aBI" = (
/obj/machinery/computer/atmos_control,
/obj/machinery/light_switch{
@@ -17439,7 +17143,7 @@
req_access_txt = "25"
},
/turf/open/floor/plasteel/caution,
-/area/atmos)
+/area/engine/atmos)
"aBJ" = (
/obj/structure/table/reinforced,
/obj/item/device/flashlight/lamp,
@@ -17457,7 +17161,7 @@
/turf/open/floor/plasteel/caution{
dir = 6
},
-/area/atmos)
+/area/engine/atmos)
"aBK" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
tag = "icon-manifold (WEST)";
@@ -17508,7 +17212,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aBN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -17521,7 +17225,7 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aBO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -17531,7 +17235,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aBP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
@@ -17541,14 +17245,14 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aBQ" = (
/obj/structure/cable/white{
tag = "icon-4-8";
icon_state = "4-8"
},
/turf/open/floor/plasteel/neutral/corner,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aBR" = (
/obj/machinery/light,
/obj/machinery/power/apc{
@@ -17561,16 +17265,16 @@
icon_state = "0-8"
},
/turf/open/floor/plasteel/neutral/corner,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aBS" = (
/turf/open/floor/plasteel/neutral/corner,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aBT" = (
/obj/machinery/washing_machine,
/turf/open/floor/plasteel/arrival{
dir = 4
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aBU" = (
/obj/structure/cable/white{
tag = "icon-1-2";
@@ -17578,9 +17282,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aBV" = (
/obj/structure/table/wood,
/obj/item/weapon/clipboard,
@@ -17863,7 +17565,7 @@
pump_direction = 0
},
/turf/open/floor/engine/air,
-/area/atmos)
+/area/engine/atmos)
"aCs" = (
/obj/machinery/meter{
name = "Mixed Air Tank Out"
@@ -17878,7 +17580,7 @@
dir = 4
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"aCt" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
dir = 1;
@@ -17888,7 +17590,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"aCu" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
@@ -17901,13 +17603,13 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/atmos)
+/area/engine/atmos)
"aCv" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible,
/obj/machinery/meter,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aCw" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
tag = "icon-intact (WEST)";
@@ -17920,7 +17622,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aCx" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
@@ -17933,7 +17635,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aCy" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
tag = "icon-intact (NORTHWEST)";
@@ -17944,7 +17646,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aCz" = (
/obj/structure/table/reinforced,
/obj/item/clothing/gloves/color/black,
@@ -17965,14 +17667,14 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aCA" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
},
/obj/machinery/portable_atmospherics/pump,
/turf/open/floor/plasteel/arrival,
-/area/atmos)
+/area/engine/atmos)
"aCB" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
@@ -17984,7 +17686,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/arrival,
-/area/atmos)
+/area/engine/atmos)
"aCC" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
@@ -17997,7 +17699,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/escape,
-/area/atmos)
+/area/engine/atmos)
"aCD" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
@@ -18006,7 +17708,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/escape,
-/area/atmos)
+/area/engine/atmos)
"aCE" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
tag = "icon-intact (NORTHEAST)";
@@ -18019,7 +17721,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aCF" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
@@ -18033,13 +17735,13 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aCG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"aCH" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -18055,7 +17757,7 @@
icon_state = "0-4"
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"aCI" = (
/obj/machinery/door/poddoor/preopen{
id = "atmoslock";
@@ -18081,7 +17783,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/atmos)
+/area/engine/atmos)
"aCJ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -18095,7 +17797,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"aCK" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder/yellow,
@@ -18120,7 +17822,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"aCL" = (
/obj/machinery/airalarm{
dir = 4;
@@ -18154,7 +17856,7 @@
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aCO" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical{
@@ -18164,7 +17866,7 @@
/obj/item/weapon/storage/toolbox/emergency,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aCP" = (
/obj/structure/table/wood,
/obj/item/device/instrument/eguitar,
@@ -18301,9 +18003,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"aDc" = (
/obj/machinery/status_display,
/turf/closed/wall,
@@ -18426,11 +18126,11 @@
dir = 5
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"aDo" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"aDp" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (WEST)";
@@ -18438,7 +18138,7 @@
dir = 8
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"aDq" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (NORTHWEST)";
@@ -18446,15 +18146,15 @@
dir = 9
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"aDr" = (
/obj/structure/sign/nosmoking_2,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"aDs" = (
/obj/structure/sign/fire,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"aDt" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/atmos{
@@ -18471,12 +18171,12 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/atmos)
+/area/engine/atmos)
"aDu" = (
/obj/structure/sign/securearea,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"aDv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
@@ -18572,7 +18272,7 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aDE" = (
/obj/effect/landmark/start/assistant,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -18580,7 +18280,7 @@
on = 1
},
/turf/open/floor/plasteel/neutral/corner,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aDF" = (
/obj/machinery/light{
dir = 4;
@@ -18592,10 +18292,10 @@
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aDG" = (
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aDH" = (
/obj/structure/bed,
/obj/machinery/newscaster{
@@ -18603,7 +18303,7 @@
},
/obj/item/weapon/bedsheet/brown,
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aDI" = (
/obj/structure/bed,
/obj/machinery/newscaster{
@@ -18611,7 +18311,7 @@
},
/obj/item/weapon/bedsheet/black,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aDJ" = (
/obj/structure/table/wood,
/obj/item/weapon/lipstick/random{
@@ -19256,7 +18956,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aEL" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-21";
@@ -19268,13 +18968,13 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aEM" = (
/obj/structure/closet/crate/bin,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aEN" = (
/obj/machinery/vending/autodrobe{
req_access_txt = "0"
@@ -19290,7 +18990,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aEO" = (
/obj/structure/closet/secure_closet/personal/cabinet,
/obj/item/clothing/suit/jacket{
@@ -19305,7 +19005,7 @@
/obj/item/clothing/under/lawyer/female,
/obj/machinery/light/small,
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aEP" = (
/obj/structure/dresser,
/obj/machinery/computer/security/telescreen/entertainment{
@@ -19314,7 +19014,7 @@
/turf/open/floor/wood{
icon_state = "wood-broken7"
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aEQ" = (
/obj/structure/closet/secure_closet/personal/cabinet,
/obj/item/clothing/suit/jacket{
@@ -19327,14 +19027,14 @@
/obj/item/clothing/under/blacktango,
/obj/machinery/light/small,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aER" = (
/obj/structure/dresser,
/obj/machinery/computer/security/telescreen/entertainment{
pixel_y = -32
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aES" = (
/obj/structure/table/wood,
/obj/item/weapon/reagent_containers/food/snacks/baguette,
@@ -19528,9 +19228,7 @@
},
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"aFh" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
tag = "icon-manifold (WEST)";
@@ -19946,9 +19644,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aFN" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -26
@@ -20345,18 +20041,14 @@
"aGy" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aGz" = (
/obj/structure/reagent_dispensers/watertank,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aGA" = (
/obj/structure/sink/kitchen{
desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
@@ -20367,9 +20059,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aGB" = (
/obj/structure/mopbucket,
/obj/effect/decal/cleanable/dirt,
@@ -20381,15 +20071,11 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aGC" = (
/obj/structure/girder,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aGD" = (
/obj/structure/cable/white{
tag = "icon-0-2";
@@ -20405,9 +20091,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aGE" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -20418,9 +20102,7 @@
icon_state = "2-4"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aGF" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -20431,9 +20113,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/corner,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aGG" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -20444,9 +20124,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aGH" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -20461,9 +20139,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aGI" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -20478,9 +20154,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aGJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -20495,9 +20169,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aGK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -20510,9 +20182,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aGL" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -20526,9 +20196,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aGM" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -20541,9 +20209,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aGN" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -21174,9 +20840,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aHG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -21191,9 +20855,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aHH" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -21217,9 +20879,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aHI" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -21237,9 +20897,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aHJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -21253,9 +20911,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aHK" = (
/obj/effect/landmark/blobstart,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -21270,9 +20926,7 @@
icon_state = "1-8"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aHL" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
tag = "icon-manifold (EAST)";
@@ -21288,9 +20942,7 @@
icon_state = "1-8"
},
/turf/open/floor/plasteel/neutral/corner,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aHM" = (
/turf/closed/wall,
/area/hydroponics)
@@ -21411,9 +21063,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/neutral/corner,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"aHY" = (
/obj/structure/table,
/obj/item/weapon/paper_bin,
@@ -21825,9 +21475,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aIF" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -21837,9 +21485,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aIG" = (
/obj/item/weapon/crowbar/red,
/obj/item/weapon/cultivator,
@@ -22552,9 +22198,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aJN" = (
/obj/machinery/seed_extractor,
/obj/machinery/status_display{
@@ -22755,9 +22399,7 @@
icon_state = "2-8"
},
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"aKg" = (
/obj/structure/closet/emcloset,
/obj/effect/turf_decal/delivery,
@@ -23258,9 +22900,7 @@
/obj/machinery/shieldgen,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aKU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/white{
@@ -23271,9 +22911,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aKV" = (
/obj/machinery/biogenerator,
/obj/effect/turf_decal/stripes/line{
@@ -23889,9 +23527,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aMj" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -23907,9 +23543,7 @@
/turf/open/floor/plasteel{
tag = "icon-warning (EAST)"
},
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aMk" = (
/obj/machinery/plantgenes,
/obj/machinery/status_display{
@@ -24039,9 +23673,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"aMw" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -24054,9 +23686,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"aMx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
@@ -24066,9 +23696,7 @@
icon_state = "2-8"
},
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"aMy" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
@@ -24559,9 +24187,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aNo" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/splatter,
@@ -24574,9 +24200,7 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aNp" = (
/obj/structure/table/glass,
/obj/structure/extinguisher_cabinet{
@@ -24701,9 +24325,7 @@
icon_state = "1-4"
},
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"aNB" = (
/obj/effect/landmark/blobstart,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -24714,9 +24336,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"aNC" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -24728,9 +24348,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"aND" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -24747,9 +24365,7 @@
icon_state = "2-4"
},
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"aNE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
@@ -24759,9 +24375,7 @@
icon_state = "1-8"
},
/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"aNF" = (
/obj/machinery/firealarm{
dir = 8;
@@ -25114,9 +24728,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/maintenance/fpmaint2{
- name = "Central Port Maintenance"
- })
+/area/maintenance/port/central)
"aOh" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -25232,9 +24844,7 @@
"aOt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"aOu" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -25253,9 +24863,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/maintenance/starboard{
- name = "Central Starboard Maintenance"
- })
+/area/maintenance/starboard/central)
"aOv" = (
/obj/machinery/computer/message_monitor,
/obj/machinery/newscaster{
@@ -25395,9 +25003,7 @@
/area/engine/engineering)
"aOH" = (
/turf/closed/wall/r_wall,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aOI" = (
/obj/structure/cable/white{
tag = "icon-2-4";
@@ -25408,9 +25014,7 @@
},
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aOJ" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -25420,9 +25024,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/corner,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aOK" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -25436,9 +25038,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aOL" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -25453,9 +25053,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aOM" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -25471,9 +25069,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aON" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -25492,9 +25088,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aOO" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -26267,9 +25861,7 @@
dir = 6
},
/turf/closed/wall/r_wall,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aPP" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -26284,9 +25876,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aPQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet,
@@ -26303,9 +25893,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aPR" = (
/obj/structure/girder,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -26314,9 +25902,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aPS" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/firecloset,
@@ -26329,9 +25915,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aPT" = (
/obj/structure/rack,
/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey,
@@ -26345,9 +25929,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aPU" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/rack,
@@ -26361,17 +25943,13 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aPV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aPW" = (
/obj/machinery/vending/snack,
/obj/machinery/firealarm{
@@ -26914,9 +26492,7 @@
"aQU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aQV" = (
/obj/structure/cable/white{
tag = "icon-1-2";
@@ -26926,9 +26502,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aQW" = (
/turf/closed/wall,
/area/library)
@@ -27095,7 +26669,7 @@
/area/hallway/primary/central)
"aRr" = (
/turf/closed/wall/r_wall,
-/area/toxins/lab)
+/area/science/lab)
"aRs" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -27104,7 +26678,7 @@
name = "Research and Development Shutter"
},
/turf/open/floor/plating,
-/area/toxins/lab)
+/area/science/lab)
"aRt" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
@@ -27120,7 +26694,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"aRu" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
@@ -27138,9 +26712,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aRv" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
@@ -27154,15 +26726,11 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aRw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aRx" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -27414,9 +26982,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aRT" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
@@ -27544,11 +27110,11 @@
/area/medical/morgue)
"aSh" = (
/turf/closed/wall,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aSi" = (
/obj/machinery/status_display,
/turf/closed/wall,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aSj" = (
/obj/structure/closet/wardrobe/chemistry_white,
/obj/machinery/airalarm{
@@ -27698,7 +27264,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/toxins/lab)
+/area/science/lab)
"aSv" = (
/obj/structure/chair/office/light{
dir = 1
@@ -27707,7 +27273,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/toxins/lab)
+/area/science/lab)
"aSw" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
@@ -27718,7 +27284,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/toxins/lab)
+/area/science/lab)
"aSx" = (
/obj/machinery/light{
dir = 1
@@ -27734,7 +27300,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/toxins/lab)
+/area/science/lab)
"aSy" = (
/obj/structure/closet/crate/bin,
/obj/structure/extinguisher_cabinet{
@@ -27742,10 +27308,10 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"aSz" = (
/turf/closed/wall,
-/area/toxins/lab)
+/area/science/lab)
"aSA" = (
/obj/machinery/shower{
dir = 4;
@@ -27766,9 +27332,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aSB" = (
/obj/machinery/shower{
dir = 8;
@@ -27780,9 +27344,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aSC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/white{
@@ -28051,9 +27613,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aTc" = (
/obj/structure/chair/office/dark{
dir = 8
@@ -28169,7 +27729,7 @@
},
/obj/machinery/door/window/southleft,
/turf/open/floor/plasteel/vault,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aTn" = (
/obj/machinery/light{
dir = 1
@@ -28181,12 +27741,12 @@
pixel_y = 26
},
/turf/open/floor/plasteel/vault,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aTo" = (
/obj/structure/window/reinforced,
/obj/machinery/clonepod,
/turf/open/floor/plasteel/vault,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aTp" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -28320,7 +27880,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"aTG" = (
/obj/structure/chair/office/light{
dir = 8
@@ -28329,21 +27889,21 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/toxins/lab)
+/area/science/lab)
"aTH" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"aTI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/purple,
-/area/toxins/lab)
+/area/science/lab)
"aTJ" = (
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/toxins/lab)
+/area/science/lab)
"aTK" = (
/obj/structure/table/reinforced,
/obj/item/weapon/stock_parts/matter_bin{
@@ -28356,12 +27916,12 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"aTL" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/toxins/lab)
+/area/science/lab)
"aTM" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
tag = "icon-manifold (WEST)";
@@ -28379,9 +27939,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aTN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -28394,9 +27952,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aTO" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/maintenance_hatch{
@@ -28414,9 +27970,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aTP" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/cable/white{
@@ -28565,9 +28119,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/landmark/blobstart,
/turf/open/floor/plasteel/neutral/corner,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aUc" = (
/obj/machinery/power/apc{
dir = 8;
@@ -28679,7 +28231,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/tinted/fulltile,
/turf/open/floor/plating,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aUo" = (
/obj/machinery/camera{
c_tag = "Genetics Cloning";
@@ -28689,7 +28241,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aUp" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -28698,13 +28250,13 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aUq" = (
/obj/machinery/computer/cloning,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aUr" = (
/obj/machinery/status_display,
/turf/closed/wall,
@@ -28778,13 +28330,13 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"aUB" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"aUC" = (
/obj/machinery/r_n_d/protolathe,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -28792,12 +28344,12 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"aUD" = (
/turf/open/floor/plasteel/whitepurple/side{
dir = 4
},
-/area/toxins/lab)
+/area/science/lab)
"aUE" = (
/obj/structure/table/reinforced,
/obj/item/stack/cable_coil/white{
@@ -28821,7 +28373,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"aUF" = (
/obj/machinery/light{
dir = 8
@@ -28838,9 +28390,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aUG" = (
/obj/machinery/power/apc{
dir = 4;
@@ -28860,25 +28410,19 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aUH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aUI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aUJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
tag = "icon-intact (SOUTHWEST)";
@@ -28886,9 +28430,7 @@
dir = 10
},
/turf/closed/wall/r_wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aUK" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -29110,7 +28652,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aVg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -29124,7 +28666,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 8
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aVh" = (
/obj/machinery/holopad,
/obj/effect/landmark/start/medical_doctor,
@@ -29135,13 +28677,13 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aVi" = (
/obj/machinery/dna_scannernew,
/turf/open/floor/plasteel/whiteblue/side{
dir = 4
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aVj" = (
/obj/structure/table/glass,
/obj/item/stack/sheet/mineral/plasma,
@@ -29250,7 +28792,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"aVu" = (
/obj/effect/landmark/start/scientist,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -29262,7 +28804,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"aVv" = (
/obj/machinery/r_n_d/circuit_imprinter,
/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
@@ -29271,10 +28813,10 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"aVw" = (
/turf/open/floor/plasteel/whitepurple/corner,
-/area/toxins/lab)
+/area/science/lab)
"aVx" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder/white,
@@ -29286,7 +28828,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"aVy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
@@ -29301,9 +28843,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aVz" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
tag = "icon-manifold (EAST)";
@@ -29313,14 +28853,10 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aVA" = (
/turf/closed/wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aVB" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -29333,17 +28869,13 @@
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aVC" = (
/turf/open/floor/plasteel/vault{
dir = 8;
initial_gas_mix = "n2=100;TEMP=80"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aVD" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -29365,15 +28897,11 @@
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aVE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aVF" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -29447,9 +28975,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aVN" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/bag/books,
@@ -29565,7 +29091,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aWc" = (
/obj/machinery/light_switch{
pixel_x = -24;
@@ -29584,14 +29110,14 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aWd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aWe" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/box/bodybags{
@@ -29610,7 +29136,7 @@
dir = 10
},
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aWf" = (
/obj/structure/table/glass,
/obj/item/weapon/folder/white,
@@ -29703,7 +29229,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/toxins/lab)
+/area/science/lab)
"aWl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/white{
@@ -29711,7 +29237,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/toxins/lab)
+/area/science/lab)
"aWm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/camera{
@@ -29719,7 +29245,7 @@
dir = 1
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/toxins/lab)
+/area/science/lab)
"aWn" = (
/obj/machinery/firealarm{
dir = 1;
@@ -29728,7 +29254,7 @@
},
/obj/machinery/light,
/turf/open/floor/plasteel/whitepurple/corner,
-/area/toxins/lab)
+/area/science/lab)
"aWo" = (
/obj/structure/table/reinforced,
/obj/machinery/cell_charger,
@@ -29744,11 +29270,11 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/toxins/lab)
+/area/science/lab)
"aWp" = (
/obj/machinery/status_display,
/turf/closed/wall,
-/area/toxins/lab)
+/area/science/lab)
"aWq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/white{
@@ -29758,9 +29284,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aWr" = (
/obj/machinery/newscaster{
pixel_x = 32
@@ -29769,9 +29293,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aWs" = (
/obj/machinery/r_n_d/server/core,
/obj/machinery/atmospherics/pipe/manifold/general/visible{
@@ -29781,9 +29303,7 @@
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aWt" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden{
tag = "icon-intact (EAST)";
@@ -29794,9 +29314,7 @@
dir = 8;
initial_gas_mix = "n2=100;TEMP=80"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aWu" = (
/obj/machinery/r_n_d/server/robotics,
/obj/machinery/atmospherics/pipe/simple/general/hidden{
@@ -29808,9 +29326,7 @@
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aWv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/white{
@@ -29947,7 +29463,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aWL" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_medical{
@@ -29962,13 +29478,13 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aWM" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aWN" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_medical{
@@ -30064,25 +29580,23 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/toxins/lab)
+/area/science/lab)
"aWV" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/toxins/lab)
+/area/science/lab)
"aWW" = (
/obj/structure/sign/nosmoking_1,
/turf/closed/wall,
-/area/toxins/lab)
+/area/science/lab)
"aWX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aWY" = (
/obj/structure/cable/white{
tag = "icon-0-4";
@@ -30096,9 +29610,7 @@
},
/obj/machinery/atmospherics/pipe/simple/general/hidden,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aWZ" = (
/obj/structure/cable/white{
tag = "icon-2-4";
@@ -30120,9 +29632,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aXa" = (
/obj/structure/cable/white{
tag = "icon-0-8";
@@ -30135,9 +29645,7 @@
name = "Xenobiology Containment Door"
},
/turf/open/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aXb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/white{
@@ -30162,9 +29670,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aXe" = (
/obj/structure/table/wood,
/obj/machinery/computer/libraryconsole/bookmanagement,
@@ -30247,19 +29753,19 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aXn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aXo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aXp" = (
/obj/machinery/light{
dir = 1
@@ -30270,12 +29776,12 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aXq" = (
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aXr" = (
/obj/machinery/airalarm{
pixel_y = 23
@@ -30283,12 +29789,12 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aXs" = (
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aXt" = (
/obj/structure/cable/white{
tag = "icon-1-2";
@@ -30298,7 +29804,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aXu" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-21";
@@ -30323,7 +29829,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aXv" = (
/turf/closed/wall,
/area/hallway/primary/central)
@@ -30350,18 +29856,14 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aXy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aXz" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/obj/structure/cable/white{
@@ -30371,9 +29873,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aXA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -30386,9 +29886,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aXB" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
tag = "icon-manifold (NORTH)";
@@ -30402,9 +29900,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aXC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -30416,9 +29912,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aXD" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/obj/structure/cable/white{
@@ -30437,9 +29931,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aXE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -30452,9 +29944,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aXF" = (
/obj/machinery/door/airlock/command{
name = "Research Division Server Room";
@@ -30472,9 +29962,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aXG" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden,
/obj/structure/cable/white{
@@ -30487,9 +29975,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aXH" = (
/obj/structure/cable/white{
tag = "icon-1-8";
@@ -30507,9 +29993,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aXI" = (
/obj/structure/table,
/obj/item/weapon/clipboard,
@@ -30522,9 +30006,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aXJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/white{
@@ -30608,7 +30090,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aXP" = (
/obj/structure/closet/wardrobe/white/medical,
/obj/structure/extinguisher_cabinet{
@@ -30617,7 +30099,7 @@
/obj/item/weapon/storage/backpack/satchel/med,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aXQ" = (
/obj/structure/closet/secure_closet/medical3,
/obj/item/device/radio/intercom{
@@ -30631,13 +30113,13 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aXR" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/sign/bluecross_2,
/turf/open/floor/plating,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aXS" = (
/obj/machinery/sleeper{
icon_state = "sleeper-open";
@@ -30647,18 +30129,18 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aXT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aXU" = (
/obj/machinery/atmospherics/components/unary/cryo_cell,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/turf/open/floor/plasteel,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aXV" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
dir = 2;
@@ -30670,7 +30152,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aXW" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
@@ -30686,14 +30168,14 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aXX" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
},
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aXY" = (
/obj/structure/cable/white{
tag = "icon-1-2";
@@ -30701,14 +30183,14 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/blue,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aXZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/closet/crate/bin,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aYa" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
tag = "icon-manifold (WEST)";
@@ -30782,9 +30264,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aYi" = (
/obj/machinery/firealarm{
dir = 1;
@@ -30796,9 +30276,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aYj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -30807,17 +30285,13 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aYk" = (
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aYl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -30829,9 +30303,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aYm" = (
/obj/machinery/light,
/obj/item/device/radio/intercom{
@@ -30845,9 +30317,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aYn" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
tag = "icon-manifold (NORTH)";
@@ -30857,9 +30327,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aYo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -30870,9 +30338,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aYp" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-21";
@@ -30888,9 +30354,7 @@
network = list("SS13")
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aYq" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
dir = 1;
@@ -30909,9 +30373,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aYr" = (
/obj/structure/chair/office/dark{
dir = 4
@@ -30930,9 +30392,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aYs" = (
/obj/structure/cable/white{
tag = "icon-0-4";
@@ -30943,9 +30403,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aYt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -31032,9 +30490,7 @@
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aYA" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -31047,9 +30503,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aYB" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -31062,9 +30516,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aYC" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -31075,9 +30527,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aYD" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -31089,9 +30539,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aYE" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -31105,9 +30553,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aYF" = (
/obj/structure/cable/white{
tag = "icon-2-8";
@@ -31120,9 +30566,7 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aYG" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/firstaid/fire{
@@ -31145,14 +30589,14 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aYH" = (
/obj/effect/landmark/start/medical_doctor,
/turf/open/floor/plasteel/cmo,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aYI" = (
/turf/open/floor/plasteel/cmo,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aYJ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_medical{
@@ -31165,11 +30609,11 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (WEST)"
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aYK" = (
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aYL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
@@ -31180,7 +30624,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aYM" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
tag = "icon-manifold (EAST)";
@@ -31188,7 +30632,7 @@
dir = 4
},
/turf/open/floor/plasteel/blue,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aYN" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
icon_state = "intact";
@@ -31198,12 +30642,12 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aYO" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aYP" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
@@ -31213,7 +30657,7 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aYQ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
tag = "icon-manifold (WEST)";
@@ -31221,7 +30665,7 @@
dir = 8
},
/turf/open/floor/plasteel/blue,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aYR" = (
/obj/structure/cable/white{
tag = "icon-1-2";
@@ -31229,7 +30673,7 @@
},
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aYS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -31238,7 +30682,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aYT" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_medical{
@@ -31253,7 +30697,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aYU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -31300,16 +30744,16 @@
/area/hallway/primary/central)
"aZa" = (
/turf/closed/wall/r_wall,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"aZb" = (
/turf/closed/wall,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"aZc" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"aZd" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/cleanable/dirt,
@@ -31324,12 +30768,12 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"aZe" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"aZf" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -31339,9 +30783,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aZg" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -31355,20 +30797,18 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aZh" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall/r_wall,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"aZi" = (
/turf/closed/wall/r_wall,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"aZj" = (
/obj/machinery/ai_status_display,
/turf/closed/wall/r_wall,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"aZk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
tag = "icon-intact (NORTHEAST)";
@@ -31376,13 +30816,13 @@
dir = 5
},
/turf/closed/wall/r_wall,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"aZl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"aZm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
tag = "icon-intact (SOUTHWEST)";
@@ -31390,7 +30830,7 @@
dir = 10
},
/turf/closed/wall/r_wall,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"aZn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/white{
@@ -31403,16 +30843,12 @@
"aZo" = (
/obj/structure/girder,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aZp" = (
/obj/structure/table/wood,
/obj/item/weapon/gun/ballistic/automatic/toy/pistol/unrestricted,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aZq" = (
/obj/structure/table/wood,
/obj/item/clothing/gloves/color/black,
@@ -31426,9 +30862,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aZr" = (
/obj/structure/rack,
/obj/item/weapon/storage/briefcase{
@@ -31441,16 +30875,12 @@
/turf/open/floor/plasteel/vault{
dir = 4
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aZs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/sign/poster/contraband/random,
/turf/closed/wall,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aZt" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -31462,9 +30892,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aZu" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
@@ -31516,26 +30944,20 @@
dir = 8;
heat_capacity = 1e+006
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aZy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/closed/wall,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aZz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/structure/sign/poster/contraband/random,
/turf/closed/wall,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aZA" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/barricade/wooden,
@@ -31552,9 +30974,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aZB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
tag = "icon-intact (SOUTHWEST)";
@@ -31562,9 +30982,7 @@
dir = 10
},
/turf/closed/wall,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"aZC" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/firstaid/brute{
@@ -31589,7 +31007,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aZD" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -31600,7 +31018,7 @@
on = 1
},
/turf/open/floor/plasteel/cmo,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aZE" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -31612,7 +31030,7 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel/cmo,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aZF" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_medical{
@@ -31632,7 +31050,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (WEST)"
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aZG" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -31643,7 +31061,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aZH" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -31656,7 +31074,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aZI" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -31664,7 +31082,7 @@
},
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aZJ" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -31683,7 +31101,7 @@
},
/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel/blue,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aZK" = (
/obj/machinery/holopad,
/obj/structure/cable/white{
@@ -31695,7 +31113,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aZL" = (
/obj/effect/landmark/start/medical_doctor,
/obj/structure/cable/white{
@@ -31706,7 +31124,7 @@
dir = 4
},
/turf/open/floor/plasteel/blue,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aZM" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -31717,7 +31135,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aZN" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -31732,7 +31150,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/blue,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aZO" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -31740,7 +31158,7 @@
},
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aZP" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_medical{
@@ -31759,7 +31177,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"aZQ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
tag = "icon-manifold (EAST)";
@@ -31832,7 +31250,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"aZV" = (
/obj/machinery/recharge_station,
/obj/effect/decal/cleanable/dirt,
@@ -31840,27 +31258,25 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"aZW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"aZX" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/oil,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"aZY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"aZZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/white{
@@ -31870,14 +31286,12 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"baa" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bab" = (
/obj/structure/rack,
/obj/item/weapon/storage/toolbox/mechanical{
@@ -31902,7 +31316,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bac" = (
/obj/machinery/mecha_part_fabricator,
/obj/effect/decal/cleanable/dirt,
@@ -31912,7 +31326,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_end (NORTH)"
},
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bad" = (
/obj/structure/rack,
/obj/item/weapon/book/manual/robotics_cyborgs,
@@ -31926,7 +31340,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bae" = (
/obj/machinery/mecha_part_fabricator,
/obj/effect/turf_decal/stripes/end{
@@ -31935,7 +31349,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_end (NORTH)"
},
-/area/assembly/robotics)
+/area/science/robotics/lab)
"baf" = (
/obj/item/stack/sheet/metal{
amount = 50
@@ -31963,7 +31377,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bag" = (
/obj/item/weapon/paper_bin,
/obj/item/device/assembly/prox_sensor{
@@ -31992,11 +31406,11 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bah" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bai" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/white{
@@ -32009,16 +31423,12 @@
/area/maintenance/starboard)
"baj" = (
/turf/closed/wall,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bak" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/black,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bal" = (
/obj/effect/landmark/xeno_spawn,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -32029,17 +31439,13 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bam" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"ban" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -32054,9 +31460,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bao" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -32070,15 +31474,11 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bap" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"baq" = (
/obj/structure/table/wood,
/obj/item/clothing/suit/syndicatefake,
@@ -32086,14 +31486,10 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bar" = (
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bas" = (
/obj/structure/dresser,
/obj/effect/decal/cleanable/dirt,
@@ -32103,9 +31499,7 @@
/turf/open/floor/plasteel/vault{
dir = 1
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bat" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/firstaid/o2{
@@ -32130,7 +31524,7 @@
/obj/structure/cable/white,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bau" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/box/beakers{
@@ -32151,7 +31545,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bav" = (
/obj/machinery/vending/medical,
/obj/machinery/firealarm{
@@ -32164,7 +31558,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"baw" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -32177,7 +31571,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bax" = (
/obj/machinery/sleeper{
icon_state = "sleeper-open";
@@ -32195,20 +31589,20 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_end (EAST)"
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bay" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"baz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/blue,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"baA" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
tag = "icon-manifold (NORTH)";
@@ -32220,19 +31614,19 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"baB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/blue,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"baC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"baD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
tag = "icon-intact (NORTHWEST)";
@@ -32240,15 +31634,15 @@
dir = 9
},
/turf/open/floor/plasteel/blue,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"baE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"baF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"baG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/blue/corner{
@@ -32351,7 +31745,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"baO" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
@@ -32363,7 +31757,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"baP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -32377,7 +31771,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"baQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -32390,7 +31784,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"baR" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/cleanable/dirt,
@@ -32409,7 +31803,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"baS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -32422,9 +31816,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"baT" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/obj/structure/cable/white{
@@ -32442,9 +31834,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"baU" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -32452,7 +31842,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"baV" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -32462,7 +31852,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"baW" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
tag = "icon-manifold (NORTH)";
@@ -32473,7 +31863,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"baX" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -32484,13 +31874,13 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"baY" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"baZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/start/roboticist,
@@ -32498,7 +31888,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bba" = (
/obj/item/stack/sheet/plasteel{
amount = 15
@@ -32513,7 +31903,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bbb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/white{
@@ -32528,25 +31918,19 @@
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bbd" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
/turf/open/floor/plasteel/black,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bbe" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bbf" = (
/obj/structure/cable/white{
tag = "icon-1-4";
@@ -32557,9 +31941,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bbg" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -32569,9 +31951,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bbh" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -32583,9 +31963,7 @@
},
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bbi" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -32598,9 +31976,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bbj" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -32613,9 +31989,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bbk" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -32629,9 +32003,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bbl" = (
/obj/structure/table/wood,
/obj/item/weapon/clipboard,
@@ -32640,16 +32012,12 @@
/turf/open/floor/plasteel/vault{
dir = 1
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bbm" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/revenantspawn,
/turf/open/floor/plasteel/bar,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bbn" = (
/obj/machinery/vending/autodrobe{
req_access_txt = "0"
@@ -32658,9 +32026,7 @@
/turf/open/floor/plasteel/vault{
dir = 4
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bbo" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -32677,9 +32043,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bbp" = (
/obj/machinery/light{
dir = 8
@@ -32688,7 +32052,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bbq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/white{
@@ -32696,24 +32060,24 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bbr" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
},
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bbs" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-21";
layer = 4.1
},
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bbt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bbu" = (
/obj/machinery/firealarm{
dir = 4;
@@ -32727,7 +32091,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bbv" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
tag = "icon-manifold (WEST)";
@@ -32841,14 +32205,14 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bbD" = (
/obj/machinery/computer/mech_bay_power_console,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
/turf/open/floor/circuit,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bbE" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -32857,7 +32221,7 @@
dir = 8
},
/turf/open/floor/mech_bay_recharge_floor,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bbF" = (
/obj/machinery/mech_bay_recharge_port{
tag = "icon-recharge_port (WEST)";
@@ -32871,7 +32235,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bbG" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -32879,7 +32243,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bbH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -32896,9 +32260,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bbI" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_research{
@@ -32916,7 +32278,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bbJ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
tag = "icon-manifold (NORTH)";
@@ -32931,7 +32293,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bbK" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -32944,14 +32306,14 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bbL" = (
/obj/effect/landmark/start/roboticist,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bbM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -32959,7 +32321,7 @@
/obj/effect/decal/cleanable/oil,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bbN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -32968,7 +32330,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bbO" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
@@ -32977,7 +32339,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bbP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/white{
@@ -32992,22 +32354,16 @@
/turf/open/floor/wood{
icon_state = "wood-broken5"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bbR" = (
/turf/open/floor/wood,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bbS" = (
/turf/open/floor/wood{
tag = "icon-wood-broken6";
icon_state = "wood-broken6"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bbT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
tag = "icon-intact (NORTHEAST)";
@@ -33015,9 +32371,7 @@
dir = 5
},
/turf/closed/wall,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bbU" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/barricade/wooden,
@@ -33035,9 +32389,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bbV" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -33046,9 +32398,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bbW" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/barricade/wooden,
@@ -33067,9 +32417,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bbX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
tag = "icon-intact (NORTHWEST)";
@@ -33077,15 +32425,11 @@
dir = 9
},
/turf/closed/wall,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bbY" = (
/obj/machinery/computer/security/telescreen/entertainment,
/turf/closed/wall,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bbZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/barricade/wooden,
@@ -33100,15 +32444,11 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bca" = (
/obj/structure/sign/poster/contraband/random,
/turf/closed/wall,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bcb" = (
/obj/structure/cable/white{
tag = "icon-1-2";
@@ -33117,9 +32457,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bcc" = (
/obj/structure/reagent_dispensers/watertank,
/obj/effect/decal/cleanable/cobweb/cobweb2,
@@ -33127,9 +32465,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bcd" = (
/obj/item/weapon/retractor,
/obj/item/weapon/hemostat,
@@ -33144,7 +32480,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bce" = (
/obj/structure/table/optable,
/obj/effect/decal/cleanable/blood/old,
@@ -33154,11 +32490,11 @@
pixel_y = 26
},
/turf/open/floor/plasteel/blue,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bcf" = (
/obj/machinery/computer/operating,
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bcg" = (
/obj/item/clothing/gloves/color/latex,
/obj/item/clothing/suit/apron/surgical,
@@ -33168,7 +32504,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bch" = (
/obj/structure/sink{
dir = 8;
@@ -33179,14 +32515,14 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bci" = (
/obj/structure/bed/roller,
/obj/machinery/iv_drip,
/turf/open/floor/plasteel/vault{
dir = 1
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bcj" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
@@ -33200,7 +32536,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bck" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_medical{
@@ -33217,7 +32553,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bcl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
@@ -33299,28 +32635,26 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bct" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bcu" = (
/turf/open/floor/circuit,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bcv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/circuit,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bcw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bcx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/white{
@@ -33328,9 +32662,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bcy" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -33338,7 +32670,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bcz" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -33348,17 +32680,17 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bcA" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bcB" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bcC" = (
/obj/structure/closet/crate/bin,
/obj/structure/extinguisher_cabinet{
@@ -33366,7 +32698,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bcD" = (
/obj/structure/rack,
/obj/effect/decal/cleanable/dirt,
@@ -33393,42 +32725,30 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bcG" = (
/obj/structure/chair/stool/bar,
/turf/open/floor/wood,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bcH" = (
/obj/effect/decal/cleanable/blood/splatter,
/turf/open/floor/wood,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bcI" = (
/turf/open/floor/wood{
tag = "icon-wood-broken2";
icon_state = "wood-broken2"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bcJ" = (
/obj/structure/chair/stool/bar,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bcK" = (
/obj/machinery/computer/slot_machine,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bcL" = (
/obj/machinery/vending/cigarette,
/obj/effect/decal/cleanable/dirt,
@@ -33436,9 +32756,7 @@
pixel_x = -32
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bcM" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -33446,9 +32764,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bcN" = (
/obj/structure/chair/comfy/black{
dir = 4
@@ -33457,9 +32773,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bcO" = (
/obj/structure/window/reinforced{
dir = 8
@@ -33468,29 +32782,21 @@
pixel_y = 32
},
/turf/open/floor/plasteel/bar,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bcP" = (
/turf/open/floor/plasteel/bar,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bcQ" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/bar,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bcR" = (
/obj/structure/table/wood,
/obj/item/device/instrument/guitar,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bcS" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -33505,9 +32811,7 @@
/obj/effect/landmark/blobstart,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bcT" = (
/obj/structure/rack,
/obj/item/weapon/storage/toolbox/mechanical,
@@ -33530,9 +32834,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bcU" = (
/obj/item/weapon/circular_saw,
/obj/item/weapon/surgicaldrill{
@@ -33546,11 +32848,11 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bcV" = (
/obj/effect/landmark/start/medical_doctor,
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bcW" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
@@ -33558,7 +32860,7 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel/blue,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bcX" = (
/obj/item/weapon/scalpel,
/obj/item/weapon/cautery,
@@ -33569,7 +32871,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bcY" = (
/obj/structure/sink{
dir = 8;
@@ -33589,20 +32891,20 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bcZ" = (
/obj/structure/bed/roller,
/obj/machinery/iv_drip,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bda" = (
/obj/machinery/computer/med_data,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bdb" = (
/obj/structure/chair/office/light{
dir = 1
@@ -33615,7 +32917,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 9
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bdc" = (
/obj/machinery/button/door{
desc = "A remote control switch for the medbay foyer.";
@@ -33629,7 +32931,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 5
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bdd" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -33743,7 +33045,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bdl" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -33755,14 +33057,14 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bdm" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/circuit/green,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bdn" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -33771,18 +33073,18 @@
dir = 9
},
/turf/open/floor/circuit/green,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bdo" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
},
/turf/open/floor/circuit/green,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bdp" = (
/obj/machinery/status_display,
/turf/closed/wall,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bdq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -33793,9 +33095,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bdr" = (
/obj/machinery/light{
dir = 4;
@@ -33815,12 +33115,10 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bds" = (
/turf/closed/wall,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bdt" = (
/obj/structure/closet/wardrobe/robotics_black,
/obj/effect/decal/cleanable/dirt,
@@ -33837,7 +33135,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bdu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/white{
@@ -33854,7 +33152,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bdv" = (
/obj/structure/table/reinforced,
/obj/structure/window/reinforced{
@@ -33865,19 +33163,19 @@
/obj/item/weapon/cautery,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bdw" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bdx" = (
/obj/effect/landmark/start/roboticist,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bdy" = (
/obj/structure/table/reinforced,
/obj/item/weapon/retractor,
@@ -33887,7 +33185,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bdz" = (
/obj/structure/cable/white{
tag = "icon-1-2";
@@ -33943,27 +33241,21 @@
/obj/structure/table/wood,
/obj/item/weapon/storage/briefcase,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bdE" = (
/obj/structure/chair/stool/bar,
/obj/effect/landmark/revenantspawn,
/turf/open/floor/wood{
icon_state = "wood-broken"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bdF" = (
/obj/structure/chair/stool/bar,
/turf/open/floor/wood{
tag = "icon-wood-broken5";
icon_state = "wood-broken5"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bdG" = (
/obj/structure/chair/stool/bar,
/obj/effect/landmark/revenantspawn,
@@ -33971,9 +33263,7 @@
tag = "icon-wood-broken2";
icon_state = "wood-broken2"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bdH" = (
/obj/structure/table/wood,
/obj/item/toy/cards/deck/syndicate{
@@ -33985,9 +33275,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bdI" = (
/obj/structure/table/wood,
/obj/item/weapon/wrench,
@@ -34003,9 +33291,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bdJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -34013,9 +33299,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bdK" = (
/obj/structure/chair/comfy/black{
dir = 4
@@ -34028,9 +33312,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bdL" = (
/obj/structure/window/reinforced{
dir = 8
@@ -34039,9 +33321,7 @@
dir = 4
},
/turf/open/floor/plasteel/bar,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bdM" = (
/obj/effect/landmark/xeno_spawn,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -34049,9 +33329,7 @@
on = 1
},
/turf/open/floor/plasteel/bar,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bdN" = (
/obj/structure/table/wood,
/obj/item/clothing/suit/justice,
@@ -34069,9 +33347,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bdO" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -34081,9 +33357,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bdP" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/decal/cleanable/dirt,
@@ -34091,9 +33365,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bdQ" = (
/obj/structure/closet/secure_closet/medical2,
/obj/machinery/airalarm{
@@ -34107,7 +33379,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bdR" = (
/obj/machinery/light,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -34115,7 +33387,7 @@
on = 1
},
/turf/open/floor/plasteel/blue,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bdS" = (
/obj/machinery/firealarm{
dir = 1;
@@ -34128,7 +33400,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bdT" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
@@ -34142,7 +33414,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bdU" = (
/obj/machinery/firealarm{
dir = 1;
@@ -34154,7 +33426,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bdV" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/obj/structure/cable/white{
@@ -34162,7 +33434,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bdW" = (
/obj/structure/closet/crate/freezer/blood,
/obj/structure/extinguisher_cabinet{
@@ -34180,7 +33452,7 @@
/turf/open/floor/plasteel/vault{
dir = 4
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bdX" = (
/obj/machinery/computer/crew,
/obj/machinery/newscaster{
@@ -34194,7 +33466,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bdY" = (
/obj/machinery/airalarm{
dir = 1;
@@ -34204,7 +33476,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 10
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bdZ" = (
/obj/structure/chair/office/light{
dir = 4
@@ -34222,7 +33494,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 6
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bea" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
@@ -34237,7 +33509,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"beb" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -34298,21 +33570,21 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"beh" = (
/obj/machinery/computer/mech_bay_power_console,
/obj/machinery/ai_status_display{
pixel_y = -32
},
/turf/open/floor/circuit/green,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bei" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/sign/nosmoking_2{
pixel_y = -32
},
/turf/open/floor/mech_bay_recharge_floor,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bej" = (
/obj/machinery/mech_bay_recharge_port{
tag = "icon-recharge_port (WEST)";
@@ -34323,14 +33595,12 @@
dir = 6
},
/turf/open/floor/plating,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bek" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bel" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/white{
@@ -34339,9 +33609,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bem" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/cell/high,
@@ -34356,7 +33624,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"ben" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -34367,7 +33635,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"beo" = (
/obj/structure/table/reinforced,
/obj/structure/window/reinforced{
@@ -34382,7 +33650,7 @@
/obj/machinery/light,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bep" = (
/obj/machinery/computer/operating,
/obj/machinery/newscaster{
@@ -34391,7 +33659,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
-/area/assembly/robotics)
+/area/science/robotics/lab)
"beq" = (
/obj/structure/table/optable,
/obj/effect/decal/cleanable/blood/old,
@@ -34400,7 +33668,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/whitepurple/corner,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"ber" = (
/obj/structure/table/reinforced,
/obj/item/weapon/scalpel{
@@ -34416,7 +33684,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bes" = (
/obj/structure/rack,
/obj/item/weapon/crowbar/red,
@@ -34446,9 +33714,7 @@
/obj/item/weapon/storage/pill_bottle,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bev" = (
/obj/machinery/computer/slot_machine,
/obj/effect/decal/cleanable/dirt,
@@ -34459,9 +33725,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bew" = (
/obj/structure/table/wood,
/obj/effect/decal/cleanable/dirt,
@@ -34481,9 +33745,7 @@
pixel_y = 6
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bex" = (
/obj/structure/table/wood,
/obj/item/weapon/reagent_containers/blood/random,
@@ -34495,18 +33757,14 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bey" = (
/obj/structure/table/wood,
/obj/item/weapon/newspaper,
/obj/item/clothing/head/bowler,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bez" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -34514,9 +33772,7 @@
pixel_y = -32
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"beA" = (
/obj/machinery/computer/security/telescreen/entertainment{
pixel_y = -32
@@ -34524,9 +33780,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"beB" = (
/obj/machinery/door/window{
dir = 8;
@@ -34535,9 +33789,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/bar,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"beC" = (
/obj/structure/table/wood,
/obj/item/weapon/lipstick/random{
@@ -34552,9 +33804,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"beD" = (
/obj/structure/cable/white{
tag = "icon-1-2";
@@ -34567,13 +33817,11 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"beE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"beF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/decal/cleanable/dirt,
@@ -34591,11 +33839,11 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"beG" = (
/obj/structure/sign/bluecross_2,
/turf/closed/wall,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"beH" = (
/obj/structure/closet/wardrobe/red,
/obj/machinery/newscaster{
@@ -34653,7 +33901,7 @@
dir = 4
},
/turf/closed/wall/r_wall,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"beM" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
@@ -34667,9 +33915,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"beN" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
@@ -34690,13 +33936,11 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"beO" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/closed/wall/r_wall,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"beP" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/maintenance_hatch{
@@ -34717,7 +33961,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/assembly/robotics)
+/area/science/robotics/lab)
"beQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
tag = "icon-intact (NORTHWEST)";
@@ -34725,7 +33969,7 @@
dir = 9
},
/turf/closed/wall/r_wall,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"beR" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -34736,9 +33980,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"beS" = (
/obj/structure/cable/white{
tag = "icon-2-8";
@@ -34759,9 +34001,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"beT" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -34774,9 +34014,7 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/corner,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"beU" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -34789,9 +34027,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"beV" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -34812,9 +34048,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"beW" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -34829,9 +34063,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"beX" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -34843,9 +34075,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"beY" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -34861,9 +34091,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"beZ" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -34876,9 +34104,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bfa" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -34897,9 +34123,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bfb" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -34913,9 +34137,7 @@
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bfc" = (
/obj/structure/cable/white{
tag = "icon-2-8";
@@ -34926,17 +34148,13 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral/corner,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bfd" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/emcloset,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bfe" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/airalarm{
@@ -35275,9 +34493,7 @@
dir = 10
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bfE" = (
/obj/structure/cable/white{
tag = "icon-1-4";
@@ -35290,9 +34506,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/landmark/blobstart,
/turf/open/floor/plasteel/neutral,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bfF" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -35301,9 +34515,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bfG" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -35312,9 +34524,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bfH" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/maintenance_hatch{
@@ -35329,9 +34539,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bfI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/white{
@@ -35435,7 +34643,7 @@
/area/hallway/primary/central)
"bfP" = (
/turf/closed/wall/r_wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bfQ" = (
/obj/structure/cable/white{
tag = "icon-2-4";
@@ -35465,7 +34673,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bfR" = (
/obj/machinery/door/poddoor/preopen{
id = "rdxeno";
@@ -35490,7 +34698,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bfS" = (
/obj/structure/toilet{
dir = 4
@@ -35639,15 +34847,11 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bgd" = (
/obj/structure/closet/firecloset,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/port)
"bge" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
tag = "icon-manifold (WEST)";
@@ -35724,12 +34928,12 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bgn" = (
/turf/open/floor/plasteel/vault{
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bgo" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -35738,7 +34942,7 @@
icon_state = "0-2"
},
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bgp" = (
/obj/structure/table/reinforced,
/obj/machinery/button/door{
@@ -35755,13 +34959,13 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bgq" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bgr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/white{
@@ -35770,7 +34974,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bgs" = (
/obj/structure/table/reinforced,
/obj/machinery/button/door{
@@ -35787,7 +34991,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bgt" = (
/obj/machinery/camera{
c_tag = "Xenobiology Test Chamber";
@@ -35798,7 +35002,7 @@
/turf/open/floor/plasteel/vault{
dir = 4
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bgu" = (
/obj/machinery/hydroponics/soil,
/obj/item/seeds/tea,
@@ -36017,9 +35221,7 @@
"bgN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bgO" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/maintenance_hatch{
@@ -36037,14 +35239,10 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bgP" = (
/turf/closed/wall,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bgQ" = (
/obj/structure/sign/directions/engineering{
dir = 1;
@@ -36058,9 +35256,7 @@
pixel_y = -8
},
/turf/closed/wall,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bgR" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
@@ -36073,9 +35269,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bgS" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
@@ -36092,28 +35286,20 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bgT" = (
/obj/machinery/ai_status_display,
/turf/closed/wall,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bgU" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bgV" = (
/obj/machinery/status_display,
/turf/closed/wall,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bgW" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
@@ -36126,9 +35312,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bgX" = (
/obj/structure/sign/directions/engineering{
desc = "A direction sign, pointing out which way the Supply department is.";
@@ -36146,9 +35330,7 @@
pixel_y = 8
},
/turf/closed/wall,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bgY" = (
/obj/machinery/light{
dir = 8
@@ -36156,11 +35338,11 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bgZ" = (
/mob/living/simple_animal/slime,
/turf/open/floor/circuit/green,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bha" = (
/obj/structure/cable/white{
tag = "icon-1-4";
@@ -36182,7 +35364,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bhb" = (
/obj/structure/cable/white{
tag = "icon-4-8";
@@ -36190,7 +35372,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bhc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/white{
@@ -36200,7 +35382,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 9
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bhd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/white{
@@ -36224,7 +35406,7 @@
initial_gas_mix = "o2=22;n2=82;TEMP=293.15";
tag = "icon-whitehall (WEST)"
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bhe" = (
/obj/machinery/door/window/brigdoor{
dir = 4;
@@ -36246,21 +35428,21 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bhf" = (
/turf/open/floor/plasteel/vault{
tag = "icon-vault (WEST)";
icon_state = "vault";
dir = 8
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bhg" = (
/turf/open/floor/circuit/green,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bhh" = (
/obj/effect/landmark/revenantspawn,
/turf/open/floor/circuit/green,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bhi" = (
/obj/machinery/light{
dir = 4;
@@ -36269,7 +35451,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bhj" = (
/obj/structure/sink{
icon_state = "sink";
@@ -36433,9 +35615,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/neutral/side,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bhA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -36450,9 +35630,7 @@
icon_state = "2-8"
},
/turf/open/floor/plasteel/arrival,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bhB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -36461,9 +35639,7 @@
pixel_y = 23
},
/turf/open/floor/plasteel/neutral/side,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bhC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -36480,9 +35656,7 @@
icon_state = "0-2"
},
/turf/open/floor/plasteel/arrival,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bhD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -36491,15 +35665,11 @@
on = 1
},
/turf/open/floor/plasteel/neutral/side,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bhE" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/arrival,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bhF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -36509,9 +35679,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/neutral/side,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bhG" = (
/obj/machinery/light{
dir = 1
@@ -36520,17 +35688,13 @@
dir = 4
},
/turf/open/floor/plasteel/arrival,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bhH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bhI" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -36538,9 +35702,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bhJ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
tag = "icon-manifold (EAST)";
@@ -36548,15 +35710,11 @@
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bhK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/arrival,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bhL" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-21";
@@ -36572,9 +35730,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bhM" = (
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -36587,7 +35743,7 @@
/turf/open/floor/plasteel/vault{
dir = 4
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bhN" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -36596,7 +35752,7 @@
},
/obj/structure/cable/white,
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bhO" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -36604,13 +35760,13 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bhP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bhQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/white{
@@ -36620,7 +35776,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 4
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bhR" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -36628,7 +35784,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bhS" = (
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -36639,7 +35795,7 @@
/turf/open/floor/plasteel/vault{
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bhT" = (
/obj/machinery/hydroponics/soil,
/obj/item/seeds/harebell,
@@ -36875,9 +36031,7 @@
/turf/open/floor/plasteel/arrival{
dir = 1
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"biq" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/obj/structure/cable/white{
@@ -36888,9 +36042,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bir" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -36906,9 +36058,7 @@
/turf/open/floor/plasteel/arrival{
dir = 1
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bis" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -36929,9 +36079,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bit" = (
/obj/machinery/firealarm{
dir = 1;
@@ -36946,9 +36094,7 @@
/turf/open/floor/plasteel/arrival{
dir = 1
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"biu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -36961,9 +36107,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"biv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -36975,9 +36119,7 @@
/turf/open/floor/plasteel/arrival{
dir = 1
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"biw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -36986,9 +36128,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bix" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -36996,9 +36136,7 @@
/turf/open/floor/plasteel/arrival{
dir = 1
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"biy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -37011,9 +36149,7 @@
/turf/open/floor/plasteel/arrival{
dir = 1
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"biz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
@@ -37022,9 +36158,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"biA" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/newscaster{
@@ -37038,13 +36172,11 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"biB" = (
/obj/structure/sign/biohazard,
/turf/closed/wall/r_wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"biC" = (
/obj/machinery/shower{
dir = 4;
@@ -37056,7 +36188,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"biD" = (
/obj/machinery/shower{
dir = 8;
@@ -37072,11 +36204,11 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"biE" = (
/obj/structure/sign/xenobio,
/turf/closed/wall/r_wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"biF" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/black,
@@ -37285,9 +36417,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"biV" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -37304,9 +36434,7 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"biW" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -37318,7 +36446,7 @@
icon_state = "0-2"
},
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"biX" = (
/obj/structure/table/reinforced,
/obj/machinery/button/door{
@@ -37328,7 +36456,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"biY" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -37341,14 +36469,14 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 4
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"biZ" = (
/obj/machinery/monkey_recycler,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bja" = (
/obj/machinery/processor/slime,
/obj/machinery/newscaster{
@@ -37356,7 +36484,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjb" = (
/obj/machinery/smartfridge/extract/preloaded,
/obj/machinery/light{
@@ -37364,12 +36492,12 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjc" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjd" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -37382,7 +36510,7 @@
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bje" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -37404,7 +36532,7 @@
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjf" = (
/obj/structure/dresser,
/obj/structure/extinguisher_cabinet{
@@ -37470,18 +36598,14 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bjo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bjp" = (
/obj/machinery/door/window/brigdoor{
dir = 8;
@@ -37503,7 +36627,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjq" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
@@ -37517,7 +36641,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjr" = (
/obj/machinery/holopad,
/obj/structure/cable/white{
@@ -37530,14 +36654,14 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjs" = (
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (NORTH)";
icon_state = "whitepurple";
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjt" = (
/obj/effect/landmark/start/scientist,
/turf/open/floor/plasteel/whitepurple/side{
@@ -37545,7 +36669,7 @@
initial_gas_mix = "o2=22;n2=82;TEMP=293.15";
tag = "icon-whitehall (WEST)"
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bju" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden{
tag = "icon-intact (SOUTHEAST)";
@@ -37554,7 +36678,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjv" = (
/obj/machinery/door/airlock/glass_research{
name = "Xenobiology Kill Room";
@@ -37567,14 +36691,14 @@
},
/obj/effect/turf_decal/stripes/end,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjw" = (
/obj/machinery/atmospherics/pipe/manifold/general/hidden,
/turf/open/floor/plasteel/vault{
dir = 8;
initial_gas_mix = "n2=100;TEMP=80"
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjx" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden{
tag = "icon-intact (NORTHWEST)";
@@ -37585,7 +36709,7 @@
dir = 8;
initial_gas_mix = "n2=100;TEMP=80"
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjy" = (
/obj/machinery/airalarm{
dir = 4;
@@ -37628,23 +36752,19 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bjC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bjD" = (
/turf/open/floor/plasteel/whitepurple/side{
dir = 10
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjE" = (
/obj/structure/chair/office/light,
/obj/effect/landmark/start/scientist,
@@ -37653,17 +36773,17 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/whitepurple/side,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjF" = (
/turf/open/floor/plasteel/whitepurple/side,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjG" = (
/turf/open/floor/plasteel/whitepurple/side{
dir = 6;
initial_gas_mix = "o2=22;n2=82;TEMP=293.15";
tag = "icon-whitepurple (SOUTHEAST)"
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjH" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
dir = 1;
@@ -37675,13 +36795,13 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjI" = (
/turf/open/floor/circuit/green{
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjJ" = (
/obj/machinery/photocopier,
/obj/structure/extinguisher_cabinet{
@@ -37735,9 +36855,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bjN" = (
/obj/structure/shuttle/engine/propulsion{
tag = "icon-propulsion (NORTH)";
@@ -37777,7 +36895,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjQ" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/box/monkeycubes,
@@ -37789,7 +36907,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjR" = (
/obj/machinery/computer/camera_advanced/xenobio,
/obj/machinery/light,
@@ -37806,7 +36924,7 @@
icon_state = "1-4"
},
/turf/open/floor/circuit/green,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjS" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder/white,
@@ -37827,7 +36945,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjT" = (
/obj/structure/table/reinforced,
/obj/machinery/reagentgrinder{
@@ -37856,7 +36974,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjU" = (
/obj/machinery/status_display{
pixel_x = -32
@@ -37870,9 +36988,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bjV" = (
/obj/machinery/status_display{
pixel_x = 32
@@ -37891,9 +37007,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bjW" = (
/obj/structure/window/reinforced,
/obj/structure/shuttle/engine/heater{
@@ -37916,17 +37030,13 @@
tag = "icon-doors"
},
/turf/open/floor/plating,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bjY" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/sign/vacuum,
/turf/open/floor/plating,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bjZ" = (
/turf/closed/wall/mineral/titanium/nodiagonal,
/area/shuttle/arrival)
@@ -38060,17 +37170,13 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bki" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/fans/tiny,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bkj" = (
/obj/machinery/door/airlock/external{
name = "External Docking Port"
@@ -38079,9 +37185,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bkk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -38093,9 +37197,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bkl" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
tag = "icon-manifold (EAST)";
@@ -38106,9 +37208,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bkm" = (
/obj/machinery/door/airlock/shuttle{
name = "Arrival Shuttle Airlock";
@@ -38177,9 +37277,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bku" = (
/obj/machinery/vending/snack,
/obj/machinery/light{
@@ -38187,9 +37285,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bkv" = (
/obj/structure/chair{
dir = 4
@@ -38218,16 +37314,12 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bkz" = (
/obj/machinery/vending/cola,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bkA" = (
/turf/closed/wall/mineral/titanium/nodiagonal,
/area/shuttle/arrival)
@@ -38238,16 +37330,12 @@
/obj/effect/landmark/start/assistant,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bkC" = (
/obj/item/device/radio/beacon,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bkD" = (
/obj/structure/flora/ausbushes/grassybush,
/obj/structure/flora/ausbushes/lavendergrass,
@@ -38265,9 +37353,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bkF" = (
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
@@ -38371,9 +37457,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bkT" = (
/obj/machinery/status_display,
/turf/closed/wall/mineral/titanium,
@@ -38404,9 +37488,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bkX" = (
/obj/machinery/status_display{
pixel_x = 32
@@ -38419,9 +37501,7 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bkY" = (
/obj/machinery/light/small{
dir = 1
@@ -38451,16 +37531,12 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"blc" = (
/obj/structure/closet/emcloset,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bld" = (
/obj/structure/frame/computer,
/turf/open/floor/plasteel/blue,
@@ -38553,7 +37629,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"bll" = (
/obj/structure/chair{
dir = 8
@@ -38658,9 +37734,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bls" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -38685,7 +37759,7 @@
pixel_x = 22
},
/turf/open/floor/plasteel/neutral,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"blu" = (
/obj/machinery/camera{
c_tag = "Xenobiology Test Chamber";
@@ -38696,7 +37770,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"blv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -38709,9 +37783,7 @@
dir = 1;
heat_capacity = 1e+006
},
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"blx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/camera{
@@ -38723,9 +37795,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"bly" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/camera{
@@ -38739,9 +37809,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"blz" = (
/obj/structure/frame/computer,
/obj/machinery/camera{
@@ -41038,9 +40106,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"btl" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 8;
@@ -41050,9 +40116,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/secondary/entry)
"btm" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/external{
@@ -72907,11 +71971,11 @@ aHl
aIi
aJs
aKz
-buX
+buW
aMR
buZ
-bva
-bvb
+buZ
+buW
aQL
aRI
aSS
@@ -73168,7 +72232,7 @@ aLP
aMS
aMS
aOC
-bvc
+buW
aQM
aRJ
aST
@@ -74196,7 +73260,7 @@ aLT
aMW
aMW
aOD
-bve
+buW
aQQ
aRN
aSX
@@ -74449,11 +73513,11 @@ aHr
aIo
aJw
aKE
-buY
+buW
aMX
aMX
aMX
-bvf
+buW
aQR
aRO
aSY
diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm
index 99cef30ebd..8937961188 100644
--- a/_maps/map_files/PubbyStation/PubbyStation.dmm
+++ b/_maps/map_files/PubbyStation/PubbyStation.dmm
@@ -116,9 +116,7 @@
},
/obj/item/weapon/storage/crayons,
/turf/open/floor/plasteel/grimy,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"aat" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -197,9 +195,7 @@
dir = 9
},
/turf/open/floor/plasteel/grimy,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"aax" = (
/obj/machinery/porta_turret/ai{
dir = 4
@@ -249,9 +245,7 @@
},
/obj/item/weapon/bikehorn/rubberducky,
/turf/open/floor/plasteel/showroomfloor,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"aaB" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -3009,14 +3003,10 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"agv" = (
/turf/closed/wall,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"agw" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 5
@@ -3227,45 +3217,37 @@
/area/security/main)
"agS" = (
/turf/closed/wall,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"agT" = (
/turf/closed/wall,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"agU" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"agV" = (
/obj/structure/table,
/obj/machinery/microwave,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"agW" = (
/obj/structure/table,
/obj/structure/bedsheetbin,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"agX" = (
/obj/structure/sink/kitchen{
pixel_y = 28
},
/obj/item/weapon/reagent_containers/glass/beaker,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"agY" = (
/obj/structure/table,
/obj/item/device/flashlight/lamp,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"agZ" = (
/obj/structure/table,
/obj/item/weapon/storage/box/bodybags,
@@ -3515,45 +3497,39 @@
"ahr" = (
/obj/item/weapon/reagent_containers/food/snacks/donut,
/turf/open/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"ahs" = (
/obj/structure/table,
/obj/machinery/chem_dispenser/drinks/beer,
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"aht" = (
/turf/open/floor/plating{
broken = 1;
icon_state = "platingdmg3"
},
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"ahu" = (
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"ahv" = (
/obj/machinery/vending/boozeomat{
products = list(/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey = 1, /obj/item/weapon/reagent_containers/food/drinks/bottle/absinthe = 1, /obj/item/weapon/reagent_containers/food/drinks/bottle/limejuice = 1, /obj/item/weapon/reagent_containers/food/drinks/bottle/cream = 1, /obj/item/weapon/reagent_containers/food/drinks/soda_cans/tonic = 1, /obj/item/weapon/reagent_containers/food/drinks/drinkingglass = 10, /obj/item/weapon/reagent_containers/food/drinks/ice = 3, /obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass = 6, /obj/item/weapon/reagent_containers/food/drinks/flask = 1);
req_access_txt = "0"
},
/turf/open/floor/plasteel/bar,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"ahw" = (
/obj/item/weapon/storage/box/mousetraps,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"ahx" = (
/obj/structure/chair/stool,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"ahy" = (
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"ahz" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet,
@@ -3561,26 +3537,18 @@
pixel_x = 32
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"ahA" = (
/obj/machinery/atmospherics/components/unary/tank/oxygen,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"ahB" = (
/obj/machinery/atmospherics/components/unary/tank/nitrogen,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"ahC" = (
/turf/closed/wall,
-/area/security/processing{
- name = "Crematorium"
- })
+/area/security/processing/cremation)
"ahD" = (
/obj/machinery/door/airlock/security{
aiControlDisabled = 0;
@@ -3600,9 +3568,7 @@
tag = ""
},
/turf/open/floor/plasteel/black,
-/area/security/processing{
- name = "Crematorium"
- })
+/area/security/processing/cremation)
"ahE" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/preopen{
@@ -3784,7 +3750,7 @@
pixel_y = 22
},
/turf/open/floor/plasteel/black,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"ahU" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
@@ -3796,7 +3762,7 @@
pixel_y = 32
},
/turf/open/floor/plasteel/black,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"ahV" = (
/obj/structure/table/wood,
/obj/machinery/recharger,
@@ -3810,7 +3776,7 @@
pixel_y = 32
},
/turf/open/floor/plasteel/black,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"ahW" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/box/seccarts{
@@ -3822,7 +3788,7 @@
pixel_y = 32
},
/turf/open/floor/plasteel/black,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"ahX" = (
/obj/structure/closet/secure_closet/hos,
/obj/machinery/requests_console{
@@ -3834,17 +3800,17 @@
pixel_y = 30
},
/turf/open/floor/plasteel/black,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"ahY" = (
/obj/structure/mineral_door/wood,
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"ahZ" = (
/obj/effect/decal/cleanable/oil{
icon_state = "floor5"
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"aia" = (
/obj/item/weapon/cigbutt/cigarbutt,
/obj/structure/sign/poster/contraband/random{
@@ -3854,7 +3820,7 @@
burnt = 1;
icon_state = "panelscorched"
},
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"aib" = (
/obj/machinery/door/poddoor/shutters{
id = "supplybridge"
@@ -3863,7 +3829,7 @@
dir = 9
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"aic" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -3884,7 +3850,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"aie" = (
/obj/machinery/washing_machine,
/obj/item/device/radio/intercom{
@@ -3893,15 +3859,11 @@
pixel_x = -31
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"aif" = (
/obj/machinery/light/small,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"aig" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet,
@@ -3915,9 +3877,7 @@
specialfunctions = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"aih" = (
/obj/machinery/atmospherics/components/trinary/mixer/flipped{
dir = 1;
@@ -3926,15 +3886,11 @@
on = 1
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"aii" = (
/obj/machinery/atmospherics/pipe/manifold/general/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"aij" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden{
dir = 9
@@ -3944,9 +3900,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"aik" = (
/obj/structure/bodycontainer/crematorium,
/obj/effect/landmark/revenantspawn,
@@ -3956,9 +3910,7 @@
pixel_x = -27
},
/turf/open/floor/plasteel/black,
-/area/security/processing{
- name = "Crematorium"
- })
+/area/security/processing/cremation)
"ail" = (
/obj/structure/cable{
d1 = 1;
@@ -3974,9 +3926,7 @@
tag = ""
},
/turf/open/floor/plasteel/black,
-/area/security/processing{
- name = "Crematorium"
- })
+/area/security/processing/cremation)
"aim" = (
/obj/machinery/button/crematorium{
pixel_x = 25
@@ -3995,9 +3945,7 @@
icon_state = "0-8"
},
/turf/open/floor/plasteel/black,
-/area/security/processing{
- name = "Crematorium"
- })
+/area/security/processing/cremation)
"ain" = (
/turf/closed/wall/r_wall,
/area/security/brig)
@@ -4202,7 +4150,7 @@
d2 = 4
},
/turf/open/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"aiH" = (
/obj/structure/cable{
d1 = 2;
@@ -4214,21 +4162,21 @@
on = 1
},
/turf/open/floor/plasteel/darkred/corner,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"aiI" = (
/turf/open/floor/plasteel/darkred/side,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"aiJ" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/darkred/side,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"aiK" = (
/obj/machinery/keycard_auth{
pixel_x = 28;
pixel_y = 28
},
/turf/open/floor/plasteel/darkred/side,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"aiL" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -4238,7 +4186,7 @@
d2 = 2
},
/turf/open/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"aiM" = (
/obj/structure/table,
/obj/item/weapon/lighter,
@@ -4246,13 +4194,13 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"aiN" = (
/obj/structure/table,
/obj/item/weapon/storage/fancy/cigarettes/cigars,
/obj/item/stack/spacecash/c20,
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"aiO" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/drinks/bottle/gin{
@@ -4264,7 +4212,7 @@
/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"aiP" = (
/obj/structure/cable{
d1 = 2;
@@ -4280,7 +4228,7 @@
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"aiQ" = (
/obj/structure/cable{
d1 = 4;
@@ -4295,7 +4243,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"aiR" = (
/obj/structure/cable{
d1 = 4;
@@ -4320,7 +4268,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"aiS" = (
/obj/structure/chair,
/turf/open/floor/plating/abductor,
@@ -4336,7 +4284,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"aiU" = (
/obj/structure/cable{
d1 = 4;
@@ -4349,7 +4297,7 @@
},
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"aiV" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -4376,16 +4324,14 @@
dir = 10
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"aiX" = (
/obj/machinery/door/airlock{
id_tag = "mainthideout";
name = "Hideout"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"aiY" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
tag = "icon-manifold (WEST)";
@@ -4394,24 +4340,18 @@
},
/obj/item/weapon/wrench,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"aiZ" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"aja" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"ajb" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
@@ -4425,9 +4365,7 @@
pixel_x = -22
},
/turf/open/floor/plasteel/black,
-/area/security/processing{
- name = "Crematorium"
- })
+/area/security/processing/cremation)
"ajc" = (
/obj/structure/cable{
d1 = 1;
@@ -4437,9 +4375,7 @@
tag = ""
},
/turf/open/floor/plasteel/black,
-/area/security/processing{
- name = "Crematorium"
- })
+/area/security/processing/cremation)
"ajd" = (
/obj/machinery/light/small{
dir = 4
@@ -4455,9 +4391,7 @@
dir = 8
},
/turf/open/floor/plasteel/black,
-/area/security/processing{
- name = "Crematorium"
- })
+/area/security/processing/cremation)
"aje" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (EAST)";
@@ -4636,27 +4570,27 @@
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/black,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"ajy" = (
/turf/open/floor/carpet,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"ajz" = (
/obj/structure/chair{
dir = 4
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/carpet,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"ajA" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/red,
/obj/item/weapon/stamp/hos,
/turf/open/floor/carpet,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"ajB" = (
/obj/machinery/computer/secure_data,
/turf/open/floor/carpet,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"ajC" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -4667,28 +4601,28 @@
},
/obj/structure/cable,
/turf/open/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"ajD" = (
/turf/open/floor/plating{
burnt = 1;
icon_state = "panelscorched"
},
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"ajE" = (
/obj/structure/chair/stool/bar,
/turf/open/floor/wood{
icon_state = "wood-broken7"
},
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"ajF" = (
/obj/effect/landmark/blobstart,
/obj/structure/chair/stool/bar,
/turf/open/floor/wood,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"ajG" = (
/obj/structure/chair/stool/bar,
/turf/open/floor/wood,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"ajH" = (
/obj/structure/cable{
d1 = 1;
@@ -4697,7 +4631,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"ajI" = (
/obj/machinery/door/poddoor/shutters{
id = "supplybridge"
@@ -4706,14 +4640,14 @@
dir = 10
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"ajJ" = (
/obj/machinery/door/poddoor/shutters{
id = "supplybridge"
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"ajK" = (
/obj/machinery/door/poddoor/shutters{
id = "supplybridge"
@@ -4722,7 +4656,7 @@
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"ajL" = (
/obj/docking_port/stationary{
dheight = 9;
@@ -4743,9 +4677,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"ajN" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
tag = "icon-manifold (NORTH)";
@@ -4754,9 +4686,7 @@
},
/obj/machinery/meter,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"ajO" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (NORTHWEST)";
@@ -4764,9 +4694,7 @@
dir = 9
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"ajP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
@@ -4776,15 +4704,11 @@
tag = ""
},
/turf/open/floor/plasteel/black,
-/area/security/processing{
- name = "Crematorium"
- })
+/area/security/processing/cremation)
"ajQ" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/black,
-/area/security/processing{
- name = "Crematorium"
- })
+/area/security/processing/cremation)
"ajR" = (
/obj/structure/bodycontainer/morgue,
/obj/machinery/camera{
@@ -5100,7 +5024,7 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"akm" = (
/obj/structure/cable{
d1 = 4;
@@ -5128,7 +5052,7 @@
dir = 9
},
/turf/open/floor/plasteel/black,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"akn" = (
/obj/structure/cable{
d1 = 2;
@@ -5140,7 +5064,7 @@
},
/obj/effect/landmark/start/head_of_security,
/turf/open/floor/carpet,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"ako" = (
/obj/structure/chair{
dir = 4
@@ -5150,33 +5074,33 @@
icon_state = "pipe-c"
},
/turf/open/floor/carpet,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"akp" = (
/obj/structure/table/wood,
/obj/item/weapon/book/manual/wiki/security_space_law,
/turf/open/floor/carpet,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"akq" = (
/obj/structure/chair/comfy/black{
dir = 8
},
/turf/open/floor/carpet,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"akr" = (
/obj/machinery/computer/security,
/turf/open/floor/carpet,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"aks" = (
/obj/item/weapon/cigbutt/roach,
/turf/open/floor/wood,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"akt" = (
/turf/open/floor/wood{
broken = 1;
icon_state = "wood-broken";
tag = "icon-wood-broken"
},
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"aku" = (
/obj/effect/decal/cleanable/oil{
icon_state = "floor6"
@@ -5184,7 +5108,7 @@
/turf/open/floor/wood{
icon_state = "wood-broken4"
},
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"akv" = (
/obj/machinery/door/airlock/atmos{
name = "Atmospherics Maintenance";
@@ -5192,9 +5116,7 @@
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"akw" = (
/obj/machinery/door/airlock/maintenance{
name = "Crematorium Maintenance";
@@ -5210,9 +5132,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/security/processing{
- name = "Crematorium"
- })
+/area/security/processing/cremation)
"akx" = (
/obj/machinery/door/window/eastright{
base_state = "left";
@@ -5234,9 +5154,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/security/processing{
- name = "Crematorium"
- })
+/area/security/processing/cremation)
"aky" = (
/obj/structure/cable{
d1 = 2;
@@ -5418,7 +5336,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/black,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"akT" = (
/obj/structure/cable{
d1 = 1;
@@ -5428,29 +5346,29 @@
tag = ""
},
/turf/open/floor/carpet,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"akU" = (
/obj/structure/chair{
dir = 4
},
/turf/open/floor/carpet,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"akV" = (
/obj/structure/table/wood,
/obj/item/weapon/phone,
/turf/open/floor/carpet,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"akW" = (
/obj/machinery/computer/card/minor/hos,
/turf/open/floor/carpet,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"akX" = (
/obj/machinery/door/airlock/maintenance{
name = "Pete's Speakeasy";
req_access_txt = "12"
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"akY" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/pod_1)
@@ -5470,13 +5388,11 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"alb" = (
/obj/structure/grille/broken,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"alc" = (
/obj/structure/cable{
d1 = 2;
@@ -5485,9 +5401,7 @@
tag = ""
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"ald" = (
/obj/item/weapon/wirecutters,
/obj/effect/spawner/lootdrop/maintenance,
@@ -5503,9 +5417,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"ale" = (
/obj/structure/cable{
d1 = 4;
@@ -5519,9 +5431,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"alf" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (EAST)";
@@ -5538,9 +5448,7 @@
icon_state = "1-8"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"alg" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (NORTHWEST)";
@@ -5548,9 +5456,7 @@
dir = 9
},
/turf/closed/wall,
-/area/security/processing{
- name = "Crematorium"
- })
+/area/security/processing/cremation)
"alh" = (
/obj/structure/plasticflaps{
opacity = 1
@@ -5558,9 +5464,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/security/processing{
- name = "Crematorium"
- })
+/area/security/processing/cremation)
"ali" = (
/obj/machinery/door/airlock/maintenance{
name = "Brig Infirmary Maintenance";
@@ -5774,7 +5678,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"alC" = (
/obj/structure/cable{
d1 = 1;
@@ -5794,7 +5698,7 @@
tag = "icon-darkredcorners (EAST)";
dir = 4
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"alD" = (
/obj/structure/cable{
d1 = 1;
@@ -5806,7 +5710,7 @@
tag = "icon-darkred (NORTH)";
dir = 1
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"alE" = (
/obj/structure/cable{
d1 = 4;
@@ -5818,7 +5722,7 @@
tag = "icon-darkred (NORTH)";
dir = 1
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"alF" = (
/obj/machinery/light,
/obj/structure/cable{
@@ -5842,7 +5746,7 @@
tag = "icon-darkred (NORTH)";
dir = 1
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"alG" = (
/obj/structure/cable{
d2 = 8;
@@ -5862,7 +5766,7 @@
tag = "icon-darkred (NORTH)";
dir = 1
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"alH" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -5872,16 +5776,16 @@
},
/obj/structure/cable,
/turf/open/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"alI" = (
/obj/structure/grille/broken,
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"alJ" = (
/obj/structure/closet/emcloset,
/obj/item/device/camera,
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"alK" = (
/obj/machinery/computer/shuttle/monastery_shuttle,
/turf/open/floor/mineral/titanium/blue,
@@ -5889,9 +5793,7 @@
"alL" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"alM" = (
/obj/structure/cable{
d1 = 4;
@@ -5900,9 +5802,7 @@
pixel_x = 0
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"alN" = (
/obj/structure/cable{
d1 = 1;
@@ -5913,9 +5813,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"alO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
@@ -5927,9 +5825,7 @@
tag = ""
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"alP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -5940,9 +5836,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"alQ" = (
/obj/structure/cable{
d1 = 4;
@@ -5954,9 +5848,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"alR" = (
/obj/structure/cable{
d1 = 1;
@@ -5967,9 +5859,7 @@
dir = 9
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"alS" = (
/obj/machinery/computer/security{
name = "Labor Camp Monitoring";
@@ -6155,13 +6045,11 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"amj" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"amk" = (
/obj/structure/chair{
dir = 4
@@ -6196,9 +6084,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"amo" = (
/obj/structure/cable{
d1 = 1;
@@ -6206,24 +6092,18 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"amp" = (
/obj/structure/chair/stool,
/obj/item/trash/raisins,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"amq" = (
/obj/structure/table,
/obj/item/weapon/paper,
/obj/item/weapon/pen,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"amr" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -6347,9 +6227,7 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"amE" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -6511,7 +6389,7 @@
},
/obj/item/clothing/mask/cigarette,
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"amS" = (
/obj/structure/cable{
d1 = 2;
@@ -6522,7 +6400,7 @@
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"amT" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -6535,7 +6413,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"amU" = (
/obj/structure/chair{
dir = 4
@@ -6553,24 +6431,18 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"amX" = (
/mob/living/simple_animal/mouse/gray,
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"amY" = (
/obj/structure/closet/firecloset,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"amZ" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/labor)
@@ -6742,7 +6614,7 @@
/area/maintenance/fore)
"anp" = (
/turf/closed/wall,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"anq" = (
/obj/structure/chair{
dir = 4
@@ -6773,9 +6645,7 @@
name = "Port Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/port{
- name = "Port Solar Array"
- })
+/area/solar/port)
"ant" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -6789,9 +6659,7 @@
icon_state = "2-4"
},
/turf/open/space,
-/area/solar/starboard{
- name = "Starboard Solar Array"
- })
+/area/solar/starboard)
"anu" = (
/obj/structure/cable{
d2 = 8;
@@ -6802,9 +6670,7 @@
name = "Port Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/port{
- name = "Port Solar Array"
- })
+/area/solar/port)
"anv" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -6818,9 +6684,7 @@
icon_state = "2-4"
},
/turf/open/space,
-/area/solar/port{
- name = "Port Solar Array"
- })
+/area/solar/port)
"anw" = (
/obj/structure/cable{
d2 = 8;
@@ -6831,43 +6695,31 @@
name = "Starboard Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/port{
- name = "Port Solar Array"
- })
+/area/solar/port)
"anx" = (
/obj/structure/rack,
/obj/item/clothing/suit/hazardvest,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"any" = (
/obj/effect/decal/remains/human,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"anz" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"anA" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"anB" = (
/obj/structure/closet,
/obj/item/clothing/under/color/black,
/obj/item/clothing/under/color/red,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"anC" = (
/obj/machinery/computer/shuttle/labor,
/obj/structure/reagent_dispensers/peppertank{
@@ -7090,7 +6942,7 @@
"aob" = (
/obj/machinery/computer/arcade,
/turf/open/floor/plasteel/barber,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aoc" = (
/obj/machinery/washing_machine,
/obj/machinery/requests_console{
@@ -7098,14 +6950,14 @@
pixel_y = 30
},
/turf/open/floor/plasteel/barber,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aod" = (
/obj/machinery/washing_machine,
/obj/machinery/airalarm{
pixel_y = 22
},
/turf/open/floor/plasteel/barber,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aoe" = (
/obj/structure/table,
/obj/item/clothing/under/color/grey,
@@ -7122,7 +6974,7 @@
pixel_x = 32
},
/turf/open/floor/plasteel/barber,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aof" = (
/obj/structure/shuttle/engine/propulsion/burst,
/turf/closed/wall/mineral/titanium,
@@ -7152,7 +7004,7 @@
"aoh" = (
/obj/machinery/space_heater,
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"aoi" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -7173,9 +7025,7 @@
tag = ""
},
/turf/open/space,
-/area/solar/starboard{
- name = "Starboard Solar Array"
- })
+/area/solar/starboard)
"aoj" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -7196,9 +7046,7 @@
tag = ""
},
/turf/open/space,
-/area/solar/port{
- name = "Port Solar Array"
- })
+/area/solar/port)
"aok" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance{
@@ -7209,16 +7057,12 @@
amount = 25
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"aol" = (
/obj/item/weapon/weldingtool,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"aom" = (
/obj/machinery/door/airlock/external{
name = "Dock Access"
@@ -7227,15 +7071,11 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"aon" = (
/obj/item/clothing/head/cone,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"aoo" = (
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/labor)
@@ -7526,7 +7366,7 @@
burnt = 1;
icon_state = "panelscorched"
},
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"aoY" = (
/obj/structure/cable{
d1 = 4;
@@ -7538,7 +7378,7 @@
req_access_txt = "12"
},
/turf/open/floor/plating,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aoZ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
@@ -7549,7 +7389,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/barber,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"apa" = (
/obj/effect/landmark/event_spawn,
/obj/structure/cable{
@@ -7558,7 +7398,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/barber,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"apb" = (
/obj/effect/landmark/start/assistant,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
@@ -7570,7 +7410,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/barber,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"apc" = (
/obj/structure/bedsheetbin,
/obj/machinery/newscaster{
@@ -7580,20 +7420,20 @@
icon_state = "1-8"
},
/turf/open/floor/plasteel/barber,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"apd" = (
/obj/machinery/door/airlock/external{
name = "Escape Pod"
},
/turf/open/floor/plating,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"ape" = (
/obj/item/clothing/under/kilt,
/obj/item/clothing/head/collectable/wizard,
/obj/structure/closet/cardboard,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"apf" = (
/obj/structure/cable{
d1 = 4;
@@ -7609,7 +7449,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"apg" = (
/obj/structure/cable{
d1 = 2;
@@ -7623,7 +7463,7 @@
icon_state = "cobweb2"
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"aph" = (
/obj/structure/cable{
d1 = 1;
@@ -7638,9 +7478,7 @@
tag = ""
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"api" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -7650,9 +7488,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"apj" = (
/obj/item/clothing/head/cone,
/obj/structure/cable{
@@ -7666,9 +7502,7 @@
icon_state = "2-8"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"apk" = (
/obj/structure/cable{
d1 = 4;
@@ -7676,9 +7510,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"apl" = (
/obj/structure/cable{
d1 = 2;
@@ -7686,9 +7518,7 @@
icon_state = "2-8"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"apm" = (
/obj/machinery/door/airlock/titanium{
name = "Labor Shuttle Airlock";
@@ -8026,20 +7856,20 @@
burnt = 1;
icon_state = "panelscorched"
},
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"apU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"apV" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4;
initialize_directions = 11
},
/turf/open/floor/plasteel/barber,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"apW" = (
/obj/machinery/light,
/obj/machinery/camera{
@@ -8047,7 +7877,7 @@
dir = 1
},
/turf/open/floor/plasteel/barber,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"apX" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -8055,25 +7885,23 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/barber,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"apY" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 8
},
/turf/open/floor/plasteel/barber,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"apZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"aqa" = (
/turf/open/floor/plating,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aqb" = (
/obj/machinery/light/small{
dir = 4
@@ -8092,18 +7920,16 @@
name = "anchored emergency closet"
},
/turf/open/floor/plating,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aqc" = (
/obj/structure/closet,
/obj/item/weapon/weldingtool,
/obj/item/weapon/crowbar,
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"aqd" = (
/turf/closed/wall,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"aqe" = (
/obj/structure/closet/crate{
icon_state = "crateopen";
@@ -8115,7 +7941,7 @@
},
/obj/item/clothing/mask/balaclava,
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"aqf" = (
/obj/structure/cable{
d1 = 1;
@@ -8125,14 +7951,10 @@
tag = ""
},
/turf/open/floor/circuit/green,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"aqg" = (
/turf/open/floor/circuit/green,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"aqh" = (
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
@@ -8452,7 +8274,7 @@
"aqP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aqQ" = (
/obj/machinery/door/airlock{
name = "Laundry Room"
@@ -8460,13 +8282,13 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/barber,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aqR" = (
/obj/structure/table,
/obj/effect/spawner/lootdrop/maintenance,
/obj/item/weapon/storage/box/lights/mixed,
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"aqS" = (
/obj/structure/cable{
d1 = 1;
@@ -8477,7 +8299,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"aqT" = (
/obj/structure/cable{
d1 = 4;
@@ -8490,7 +8312,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"aqU" = (
/obj/effect/spawner/lootdrop/maintenance,
/obj/structure/cable{
@@ -8501,7 +8323,7 @@
pixel_y = 0
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"aqV" = (
/turf/open/floor/engine{
name = "Holodeck Projector Floor"
@@ -8511,22 +8333,16 @@
/obj/machinery/mech_bay_recharge_port,
/obj/structure/cable,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"aqX" = (
/obj/item/clothing/head/collectable/police,
/turf/open/floor/mech_bay_recharge_floor,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"aqY" = (
/obj/machinery/computer/mech_bay_power_console,
/obj/structure/cable,
/turf/open/floor/plasteel,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"aqZ" = (
/obj/structure/chair{
dir = 4
@@ -8652,11 +8468,11 @@
/area/security/brig)
"arl" = (
/turf/closed/wall,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"arm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"arn" = (
/obj/structure/cable{
d1 = 1;
@@ -8677,7 +8493,7 @@
layer = 2.9
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"arp" = (
/obj/machinery/computer/monitor{
name = "Bridge Power Monitoring Console"
@@ -8831,7 +8647,7 @@
name = "Dorm Shutters"
},
/turf/open/floor/plating,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"arE" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/nanotrasen,
@@ -8843,7 +8659,7 @@
req_access_txt = "0"
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"arF" = (
/obj/machinery/light/small{
dir = 1
@@ -8860,7 +8676,7 @@
on = 1
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"arG" = (
/obj/machinery/button/door{
id = "Dorm3";
@@ -8874,7 +8690,7 @@
/obj/structure/closet/secure_closet/personal/cabinet,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"arH" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -8887,7 +8703,7 @@
/turf/open/floor/plasteel/blue/side{
dir = 1
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"arI" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -8903,7 +8719,7 @@
/turf/open/floor/plasteel/blue/side{
dir = 1
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"arJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
@@ -8925,7 +8741,7 @@
/turf/open/floor/plasteel/blue/corner{
dir = 1
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"arK" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
@@ -8934,35 +8750,29 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"arL" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"arM" = (
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"arN" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 28
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"arO" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"arP" = (
/obj/structure/cable{
d1 = 1;
@@ -8974,9 +8784,7 @@
req_access_txt = "12"
},
/turf/open/floor/plating,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"arQ" = (
/obj/structure/closet/crate,
/turf/open/floor/mineral/titanium/blue,
@@ -9133,14 +8941,14 @@
dir = 4
},
/turf/closed/wall,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"asj" = (
/obj/structure/toilet{
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"ask" = (
/obj/structure/sink{
pixel_y = 28
@@ -9149,7 +8957,7 @@
dir = 4
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"asl" = (
/obj/machinery/light{
dir = 1
@@ -9158,7 +8966,7 @@
dir = 10
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"asm" = (
/obj/machinery/shower{
dir = 1
@@ -9168,7 +8976,7 @@
/obj/effect/landmark/revenantspawn,
/obj/structure/curtain,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"asn" = (
/obj/machinery/vending/cigarette,
/turf/open/floor/plating,
@@ -9180,17 +8988,17 @@
req_access_txt = "20"
},
/turf/open/floor/plating,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"asp" = (
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"asq" = (
/obj/structure/chair{
dir = 1
},
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"asr" = (
/obj/structure/chair{
dir = 1
@@ -9201,7 +9009,7 @@
dir = 1
},
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"ass" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-20";
@@ -9209,7 +9017,7 @@
pixel_y = 3
},
/turf/open/floor/plasteel/vault,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"ast" = (
/obj/machinery/computer/station_alert,
/turf/open/floor/plasteel/darkpurple,
@@ -9339,14 +9147,14 @@
/obj/structure/table/wood,
/obj/item/weapon/storage/book/bible,
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"asK" = (
/obj/structure/chair/wood/normal{
icon_state = "wooden_chair";
dir = 8
},
/turf/open/floor/wood,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"asL" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
@@ -9357,7 +9165,7 @@
/turf/open/floor/wood{
icon_state = "wood-broken7"
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"asM" = (
/obj/machinery/door/airlock{
id_tag = "Dorm3";
@@ -9369,13 +9177,13 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"asN" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"asO" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j2";
@@ -9385,20 +9193,20 @@
on = 1
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"asP" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"asQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"asR" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
@@ -9406,9 +9214,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"asS" = (
/obj/structure/closet/athletic_mixed,
/obj/structure/disposalpipe/segment{
@@ -9417,9 +9223,7 @@
/turf/open/floor/plasteel/arrival{
dir = 1
},
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"asT" = (
/obj/structure/closet/lasertag/blue,
/obj/structure/disposalpipe/segment{
@@ -9431,9 +9235,7 @@
/turf/open/floor/plasteel/arrival{
dir = 1
},
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"asU" = (
/obj/structure/closet/lasertag/red,
/obj/structure/disposalpipe/segment{
@@ -9448,9 +9250,7 @@
/turf/open/floor/plasteel/arrival{
dir = 1
},
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"asV" = (
/obj/machinery/disposal/bin,
/obj/machinery/light{
@@ -9469,17 +9269,13 @@
/turf/open/floor/plasteel/arrival{
dir = 1
},
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"asW" = (
/obj/machinery/vending/clothing,
/turf/open/floor/plasteel/arrival{
dir = 1
},
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"asX" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-05";
@@ -9496,9 +9292,7 @@
d2 = 4
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"asY" = (
/obj/machinery/light{
dir = 4;
@@ -9519,9 +9313,7 @@
pixel_x = 26
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"asZ" = (
/obj/structure/cable{
d1 = 1;
@@ -9530,9 +9322,7 @@
tag = ""
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"ata" = (
/obj/structure/cable{
d1 = 2;
@@ -9541,18 +9331,14 @@
tag = ""
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"atb" = (
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/cleanable/cobweb{
icon_state = "cobweb2"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"atc" = (
/obj/structure/shuttle/engine/heater,
/obj/structure/window/reinforced{
@@ -9730,7 +9516,7 @@
/area/security/brig)
"ato" = (
/turf/closed/wall/r_wall,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"atp" = (
/obj/machinery/door/airlock{
name = "Private Restroom";
@@ -9738,7 +9524,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"atq" = (
/obj/structure/cable{
d1 = 1;
@@ -9754,7 +9540,7 @@
req_access_txt = "20"
},
/turf/open/floor/plating,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"atr" = (
/obj/machinery/light{
dir = 8
@@ -9879,12 +9665,12 @@
pixel_x = -32
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"atG" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"atH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -9892,7 +9678,7 @@
},
/obj/structure/chair/comfy/brown,
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"atI" = (
/obj/effect/landmark/start/assistant,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -9900,64 +9686,54 @@
},
/obj/structure/chair/comfy/brown,
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"atJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/structure/chair/comfy/brown,
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"atK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"atL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"atM" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"atN" = (
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"atO" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"atP" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Holodeck Door"
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"atQ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"atR" = (
/obj/structure/cable{
d1 = 1;
@@ -9970,21 +9746,15 @@
},
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"atS" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/maintenance/auxsolarport{
- name = "Port Solar Maintenance"
- })
+/area/maintenance/solars/port)
"atT" = (
/turf/closed/wall,
-/area/maintenance/auxsolarport{
- name = "Port Solar Maintenance"
- })
+/area/maintenance/solars/port)
"atU" = (
/obj/structure/shuttle/engine/propulsion,
/turf/open/floor/plating,
@@ -10041,7 +9811,7 @@
pixel_y = 28
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aud" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
@@ -10050,7 +9820,7 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aue" = (
/obj/structure/closet/secure_closet/captains,
/obj/machinery/light{
@@ -10063,11 +9833,11 @@
/obj/item/clothing/suit/armor/riot/knight/blue,
/obj/item/clothing/head/helmet/knight/blue,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"auf" = (
/obj/machinery/suit_storage_unit/captain,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aug" = (
/obj/structure/cable{
d1 = 1;
@@ -10081,7 +9851,7 @@
tag = "icon-darkblue (NORTH)";
dir = 1
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"auh" = (
/obj/machinery/power/apc{
cell_type = 2500;
@@ -10094,7 +9864,7 @@
d2 = 2
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aui" = (
/obj/structure/table/wood,
/obj/machinery/recharger,
@@ -10107,7 +9877,7 @@
pixel_y = 30
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"auj" = (
/obj/machinery/computer/card,
/obj/item/weapon/card/id/captains_spare,
@@ -10118,18 +9888,18 @@
pixel_y = 26
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"auk" = (
/obj/machinery/computer/communications,
/obj/machinery/airalarm{
pixel_y = 22
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aul" = (
/obj/structure/filingcabinet/employment,
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aum" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -24
@@ -10274,7 +10044,7 @@
name = "Dorm Shutters"
},
/turf/open/floor/plating,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"auD" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/nanotrasen,
@@ -10286,7 +10056,7 @@
req_access_txt = "0"
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"auE" = (
/obj/machinery/light/small{
dir = 1
@@ -10303,7 +10073,7 @@
on = 1
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"auF" = (
/obj/machinery/button/door{
id = "Dorm2";
@@ -10319,21 +10089,21 @@
dir = 4
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"auG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"auH" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"auI" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/pill_bottle/dice,
@@ -10342,7 +10112,7 @@
dir = 4
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"auJ" = (
/obj/structure/table/wood,
/obj/item/weapon/pen{
@@ -10355,21 +10125,21 @@
tag = "every single paper bin is edited to this"
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"auK" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/backpack,
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"auL" = (
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"auM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"auN" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
@@ -10379,31 +10149,23 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"auO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"auP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"auQ" = (
/obj/machinery/computer/holodeck,
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"auR" = (
/obj/structure/chair{
dir = 8
@@ -10414,23 +10176,17 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"auS" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable,
/turf/open/space,
-/area/solar/starboard{
- name = "Starboard Solar Array"
- })
+/area/solar/starboard)
"auT" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable,
/turf/open/space,
-/area/solar/port{
- name = "Port Solar Array"
- })
+/area/solar/port)
"auU" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -10443,9 +10199,7 @@
pixel_y = 0
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarport{
- name = "Port Solar Maintenance"
- })
+/area/maintenance/solars/port)
"auV" = (
/obj/machinery/power/solar_control{
id = "portsolar";
@@ -10457,17 +10211,13 @@
d2 = 2
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarport{
- name = "Port Solar Maintenance"
- })
+/area/maintenance/solars/port)
"auW" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarport{
- name = "Port Solar Maintenance"
- })
+/area/maintenance/solars/port)
"auX" = (
/obj/structure/cable{
icon_state = "0-2";
@@ -10480,15 +10230,11 @@
pixel_y = 24
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarport{
- name = "Port Solar Maintenance"
- })
+/area/maintenance/solars/port)
"auY" = (
/obj/structure/closet/firecloset,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"auZ" = (
/obj/machinery/button/door{
id = "prison release";
@@ -10598,23 +10344,23 @@
/obj/structure/bed,
/obj/item/weapon/bedsheet/captain,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"avo" = (
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"avp" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"avq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"avr" = (
/obj/machinery/door/airlock/command{
name = "Captain's Quarters";
@@ -10625,7 +10371,7 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"avs" = (
/obj/structure/cable{
d1 = 1;
@@ -10638,7 +10384,7 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"avt" = (
/obj/structure/cable{
d1 = 1;
@@ -10654,7 +10400,7 @@
dir = 10
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"avu" = (
/obj/machinery/door/window{
dir = 8;
@@ -10662,22 +10408,22 @@
req_access_txt = "20"
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"avv" = (
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"avw" = (
/obj/structure/chair/comfy/black,
/obj/effect/landmark/start/captain,
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"avx" = (
/obj/item/weapon/storage/secure/safe{
pixel_x = 35;
pixel_y = 5
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"avy" = (
/obj/structure/cable{
d1 = 2;
@@ -10932,14 +10678,14 @@
/obj/structure/table/wood,
/obj/item/weapon/storage/book/bible,
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"avR" = (
/obj/structure/chair/wood/normal{
icon_state = "wooden_chair";
dir = 8
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"avS" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
@@ -10948,7 +10694,7 @@
scrub_Toxins = 0
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"avT" = (
/obj/machinery/door/airlock{
id_tag = "Dorm2";
@@ -10960,11 +10706,11 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"avU" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"avV" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/crayons,
@@ -10972,7 +10718,7 @@
dir = 8
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"avW" = (
/obj/structure/table/wood,
/obj/item/device/paicard,
@@ -10980,7 +10726,7 @@
dir = 4
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"avX" = (
/obj/structure/table/wood,
/obj/item/toy/cards/deck{
@@ -10990,19 +10736,19 @@
dir = 4
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"avY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"avZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"awa" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
@@ -11012,25 +10758,19 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"awb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"awc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"awd" = (
/obj/structure/table,
/obj/item/weapon/paper{
@@ -11039,9 +10779,7 @@
name = "Holodeck Disclaimer"
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"awe" = (
/obj/structure/chair{
dir = 8
@@ -11056,9 +10794,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"awf" = (
/obj/machinery/power/tracker,
/obj/structure/cable{
@@ -11066,9 +10802,7 @@
d2 = 4
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/port{
- name = "Port Solar Array"
- })
+/area/solar/port)
"awg" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -11078,9 +10812,7 @@
pixel_x = 0
},
/turf/open/space,
-/area/solar/port{
- name = "Port Solar Array"
- })
+/area/solar/port)
"awh" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -11088,22 +10820,16 @@
icon_state = "0-8"
},
/turf/open/space,
-/area/solar/port{
- name = "Port Solar Array"
- })
+/area/solar/port)
"awi" = (
/obj/structure/lattice/catwalk,
/obj/item/stack/cable_coil,
/turf/open/space,
-/area/solar/starboard{
- name = "Starboard Solar Array"
- })
+/area/solar/starboard)
"awj" = (
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/port{
- name = "Port Solar Array"
- })
+/area/solar/port)
"awk" = (
/obj/structure/cable{
d1 = 4;
@@ -11118,9 +10844,7 @@
req_access_txt = "10; 13"
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarport{
- name = "Port Solar Maintenance"
- })
+/area/maintenance/solars/port)
"awl" = (
/obj/structure/cable{
d1 = 4;
@@ -11129,9 +10853,7 @@
pixel_x = 0
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarport{
- name = "Port Solar Maintenance"
- })
+/area/maintenance/solars/port)
"awm" = (
/obj/structure/cable{
d1 = 4;
@@ -11146,9 +10868,7 @@
req_access_txt = "10; 13"
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarport{
- name = "Port Solar Maintenance"
- })
+/area/maintenance/solars/port)
"awn" = (
/obj/structure/cable{
d1 = 1;
@@ -11162,9 +10882,7 @@
pixel_x = 0
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarport{
- name = "Port Solar Maintenance"
- })
+/area/maintenance/solars/port)
"awo" = (
/obj/structure/cable{
d1 = 2;
@@ -11172,9 +10890,7 @@
icon_state = "2-8"
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarport{
- name = "Port Solar Maintenance"
- })
+/area/maintenance/solars/port)
"awp" = (
/obj/structure/cable{
d1 = 1;
@@ -11189,9 +10905,7 @@
icon_state = "2-4"
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarport{
- name = "Port Solar Maintenance"
- })
+/area/maintenance/solars/port)
"awq" = (
/obj/structure/cable{
d1 = 1;
@@ -11211,9 +10925,7 @@
pixel_x = 0
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarport{
- name = "Port Solar Maintenance"
- })
+/area/maintenance/solars/port)
"awr" = (
/obj/structure/cable{
d1 = 4;
@@ -11227,9 +10939,7 @@
icon_state = "1-8"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"aws" = (
/obj/structure/cable{
d1 = 4;
@@ -11241,9 +10951,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"awt" = (
/obj/structure/cable{
d1 = 4;
@@ -11256,9 +10964,7 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"awu" = (
/obj/structure/cable{
d1 = 2;
@@ -11267,23 +10973,17 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"awv" = (
/obj/structure/plasticflaps,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"aww" = (
/mob/living/simple_animal/bot/secbot/beepsky{
name = "Officer Beepsky"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"awx" = (
/obj/structure/table,
/obj/machinery/cell_charger,
@@ -11295,9 +10995,7 @@
name = "Note from Beepsky's Mom"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"awy" = (
/obj/machinery/power/apc{
dir = 8;
@@ -11356,9 +11054,7 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"awE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
@@ -11429,7 +11125,7 @@
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"awO" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/box/matches,
@@ -11440,22 +11136,22 @@
/obj/item/clothing/mask/cigarette/cigar,
/obj/item/weapon/reagent_containers/food/drinks/flask/gold,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"awP" = (
/obj/structure/chair/comfy/brown{
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"awQ" = (
/obj/structure/table/wood,
/obj/item/weapon/kitchen/fork,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"awR" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/black,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"awS" = (
/obj/structure/cable{
d1 = 1;
@@ -11464,12 +11160,12 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"awT" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green,
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"awU" = (
/obj/structure/table/wood,
/obj/item/weapon/pen,
@@ -11480,11 +11176,11 @@
tag = "every single paper bin is edited to this"
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"awV" = (
/obj/structure/table/wood,
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"awW" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/blue,
@@ -11494,7 +11190,7 @@
icon_state = "tube1"
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"awX" = (
/obj/structure/cable{
d1 = 1;
@@ -11556,20 +11252,20 @@
dir = 4
},
/turf/closed/wall/r_wall,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"axe" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/closed/wall/r_wall,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"axf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/closed/wall/r_wall,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"axg" = (
/turf/closed/wall/r_wall,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"axh" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
@@ -11606,36 +11302,34 @@
"axn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"axo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/chair/comfy/brown{
dir = 1
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"axp" = (
/obj/effect/landmark/start/assistant,
/obj/structure/chair/comfy/brown{
dir = 1
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"axq" = (
/obj/structure/chair/comfy/brown{
dir = 1
},
/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"axr" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"axs" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
@@ -11644,9 +11338,7 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"axt" = (
/obj/structure/cable{
d1 = 1;
@@ -11657,9 +11349,7 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"axu" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -11668,9 +11358,7 @@
d2 = 2
},
/turf/open/space,
-/area/solar/starboard{
- name = "Starboard Solar Array"
- })
+/area/solar/starboard)
"axv" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -11679,17 +11367,13 @@
d2 = 2
},
/turf/open/space,
-/area/solar/port{
- name = "Port Solar Array"
- })
+/area/solar/port)
"axw" = (
/obj/structure/rack,
/obj/item/clothing/mask/gas,
/obj/item/device/multitool,
/turf/open/floor/plating,
-/area/maintenance/auxsolarport{
- name = "Port Solar Maintenance"
- })
+/area/maintenance/solars/port)
"axx" = (
/obj/structure/chair/stool,
/obj/machinery/power/terminal{
@@ -11697,16 +11381,12 @@
},
/obj/structure/cable,
/turf/open/floor/plating,
-/area/maintenance/auxsolarport{
- name = "Port Solar Maintenance"
- })
+/area/maintenance/solars/port)
"axy" = (
/obj/machinery/power/smes,
/obj/structure/cable,
/turf/open/floor/plating,
-/area/maintenance/auxsolarport{
- name = "Port Solar Maintenance"
- })
+/area/maintenance/solars/port)
"axz" = (
/obj/structure/cable{
d1 = 1;
@@ -11719,9 +11399,7 @@
broken = 1;
icon_state = "platingdmg1"
},
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"axA" = (
/obj/structure/cable{
d1 = 1;
@@ -11733,9 +11411,7 @@
req_access_txt = "12"
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"axB" = (
/turf/closed/wall,
/area/security/detectives_office)
@@ -11785,7 +11461,7 @@
pixel_x = -24
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"axJ" = (
/obj/structure/cable{
d1 = 1;
@@ -11798,20 +11474,20 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"axK" = (
/turf/open/floor/plasteel/black,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"axL" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/black,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"axM" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"axN" = (
/obj/machinery/firealarm{
dir = 8;
@@ -11819,7 +11495,7 @@
pixel_y = 0
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"axO" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_command{
@@ -11879,15 +11555,15 @@
pixel_y = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"axV" = (
/obj/machinery/computer/security/mining,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"axW" = (
/obj/machinery/computer/cargo/request,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"axX" = (
/obj/structure/closet/secure_closet/hop,
/obj/machinery/computer/security/telescreen{
@@ -11898,7 +11574,7 @@
pixel_y = 32
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"axY" = (
/obj/structure/filingcabinet/chestdrawer{
pixel_y = 2
@@ -11915,7 +11591,7 @@
pixel_y = 32
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"axZ" = (
/obj/machinery/requests_console{
announcementConsole = 1;
@@ -11928,7 +11604,7 @@
pixel_y = 2
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"aya" = (
/obj/machinery/status_display{
density = 0;
@@ -11944,7 +11620,7 @@
},
/mob/living/simple_animal/pet/dog/corgi/Ian,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"ayb" = (
/obj/machinery/vending/cart{
req_access_txt = "57"
@@ -11953,7 +11629,7 @@
pixel_y = 22
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"ayc" = (
/obj/machinery/power/apc{
cell_type = 5000;
@@ -11997,7 +11673,7 @@
name = "Dorm Shutters"
},
/turf/open/floor/plating,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"ayh" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/nanotrasen,
@@ -12009,7 +11685,7 @@
req_access_txt = "0"
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"ayi" = (
/obj/machinery/light/small{
dir = 1
@@ -12026,7 +11702,7 @@
on = 1
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"ayj" = (
/obj/machinery/button/door{
id = "Dorm1";
@@ -12042,69 +11718,57 @@
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"ayk" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"ayl" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
tag = "icon-manifold-b-f (EAST)";
dir = 4
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aym" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"ayn" = (
/obj/structure/closet/wardrobe/white,
/turf/open/floor/plasteel/arrival,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"ayo" = (
/obj/structure/closet/wardrobe/mixed,
/turf/open/floor/plasteel/arrival,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"ayp" = (
/obj/structure/closet/wardrobe/green,
/turf/open/floor/plasteel/arrival,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"ayq" = (
/obj/structure/closet/wardrobe/grey,
/obj/machinery/light,
/turf/open/floor/plasteel/arrival,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"ayr" = (
/obj/structure/closet/wardrobe/black,
/obj/item/clothing/shoes/jackboots,
/obj/item/weapon/storage/backpack,
/turf/open/floor/plasteel/arrival,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"ays" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-05";
layer = 4.1
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"ayt" = (
/obj/machinery/light{
dir = 4;
@@ -12122,9 +11786,7 @@
pixel_x = 28
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"ayu" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -12144,9 +11806,7 @@
tag = ""
},
/turf/open/space,
-/area/solar/starboard{
- name = "Starboard Solar Array"
- })
+/area/solar/starboard)
"ayv" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -12166,24 +11826,18 @@
tag = ""
},
/turf/open/space,
-/area/solar/port{
- name = "Port Solar Array"
- })
+/area/solar/port)
"ayw" = (
/obj/structure/rack,
/obj/item/weapon/crowbar,
/obj/item/weapon/wrench,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"ayx" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"ayy" = (
/obj/structure/cable{
d1 = 2;
@@ -12199,9 +11853,7 @@
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"ayz" = (
/obj/structure/cable{
d1 = 4;
@@ -12213,9 +11865,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"ayA" = (
/obj/structure/cable{
d1 = 1;
@@ -12227,9 +11877,7 @@
pixel_y = 0
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"ayB" = (
/obj/structure/table/wood,
/obj/item/weapon/twohanded/required/kirbyplants{
@@ -12391,7 +12039,7 @@
"ayR" = (
/obj/structure/displaycase/captain,
/turf/open/floor/plasteel/black,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"ayS" = (
/obj/structure/cable{
d1 = 1;
@@ -12401,7 +12049,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"ayT" = (
/obj/structure/cable{
d1 = 4;
@@ -12415,7 +12063,7 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"ayU" = (
/obj/structure/cable{
d1 = 4;
@@ -12426,7 +12074,7 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"ayV" = (
/obj/structure/cable{
d1 = 2;
@@ -12445,13 +12093,13 @@
pixel_x = 25
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"ayW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"ayX" = (
/obj/structure/cable{
d1 = 1;
@@ -12583,21 +12231,21 @@
tag = "every single paper bin is edited to this"
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"azj" = (
/obj/structure/chair/office/dark{
dir = 1
},
/obj/effect/landmark/start/head_of_personnel,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"azk" = (
/obj/machinery/holopad,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"azl" = (
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"azm" = (
/obj/structure/cable{
d1 = 2;
@@ -12609,7 +12257,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"azn" = (
/obj/structure/cable{
d1 = 4;
@@ -12624,7 +12272,7 @@
on = 1
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"azo" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
@@ -12644,7 +12292,7 @@
dir = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"azp" = (
/obj/structure/cable{
d1 = 1;
@@ -12718,14 +12366,14 @@
/obj/structure/table/wood,
/obj/item/weapon/storage/book/bible,
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"azv" = (
/obj/structure/chair/wood/normal{
icon_state = "wooden_chair";
dir = 8
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"azw" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
@@ -12734,7 +12382,7 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"azx" = (
/obj/machinery/door/airlock{
id_tag = "Dorm1";
@@ -12746,17 +12394,17 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"azy" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"azz" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"azA" = (
/obj/machinery/light,
/obj/machinery/camera{
@@ -12773,23 +12421,23 @@
pixel_y = -26
},
/turf/open/floor/plasteel/white/corner,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"azB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white/side,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"azC" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4;
initialize_directions = 11
},
/turf/open/floor/plasteel/white/side,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"azD" = (
/turf/open/floor/plasteel/white/side,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"azE" = (
/obj/structure/cable{
d1 = 1;
@@ -12801,9 +12449,7 @@
req_access_txt = "12"
},
/turf/open/floor/plating,
-/area/crew_quarters/fitness{
- name = "Recreation Room"
- })
+/area/crew_quarters/fitness/recreation)
"azF" = (
/obj/structure/cable{
d1 = 1;
@@ -12815,16 +12461,12 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"azG" = (
/obj/structure/grille/broken,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"azH" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -12937,7 +12579,7 @@
pixel_y = 0
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"azU" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -12947,7 +12589,7 @@
dir = 5
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"azV" = (
/obj/structure/chair/comfy/brown,
/obj/structure/disposalpipe/segment{
@@ -12957,7 +12599,7 @@
dir = 4
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"azW" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
@@ -12968,7 +12610,7 @@
dir = 1
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"azX" = (
/obj/structure/cable{
d1 = 1;
@@ -12982,7 +12624,7 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"azY" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
@@ -13002,7 +12644,7 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"azZ" = (
/obj/structure/cable{
d1 = 2;
@@ -13137,7 +12779,7 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"aAk" = (
/obj/structure/cable{
d1 = 4;
@@ -13153,7 +12795,7 @@
dir = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"aAl" = (
/obj/structure/cable{
d1 = 4;
@@ -13167,7 +12809,7 @@
dir = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"aAm" = (
/obj/structure/cable{
d1 = 4;
@@ -13186,7 +12828,7 @@
dir = 4
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"aAn" = (
/obj/structure/cable{
d1 = 4;
@@ -13201,7 +12843,7 @@
on = 1
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"aAo" = (
/obj/structure/cable{
d1 = 4;
@@ -13212,7 +12854,7 @@
dir = 4
},
/turf/open/floor/carpet,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"aAp" = (
/obj/structure/cable{
d1 = 4;
@@ -13229,7 +12871,7 @@
tag = ""
},
/turf/open/floor/carpet,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"aAq" = (
/obj/structure/cable{
d1 = 4;
@@ -13246,7 +12888,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/carpet,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"aAr" = (
/obj/machinery/power/apc{
dir = 4;
@@ -13259,7 +12901,7 @@
icon_state = "0-8"
},
/turf/open/floor/carpet,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"aAs" = (
/turf/open/floor/plasteel,
/area/hallway/primary/central)
@@ -13282,12 +12924,10 @@
"aAv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aAw" = (
/turf/closed/wall,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aAx" = (
/obj/machinery/door/airlock{
name = "Unisex Restrooms";
@@ -13295,26 +12935,20 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aAy" = (
/obj/structure/urinal{
pixel_y = 32
},
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aAz" = (
/obj/structure/urinal{
pixel_y = 32
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aAA" = (
/obj/structure/urinal{
pixel_y = 32
@@ -13326,19 +12960,15 @@
},
/obj/effect/decal/cleanable/deadcockroach,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aAB" = (
/obj/effect/landmark/blobstart,
/obj/item/toy/beach_ball/holoball,
/turf/open/floor/plating,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aAC" = (
/turf/closed/wall,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aAD" = (
/obj/structure/cable{
d1 = 1;
@@ -13347,7 +12977,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aAE" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp{
@@ -13415,9 +13045,7 @@
/area/security/detectives_office)
"aAK" = (
/turf/closed/wall,
-/area/maintenance/port{
- name = "Monastery Maintenance"
- })
+/area/maintenance/department/chapel/monastery)
"aAL" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/electrical{
@@ -13475,17 +13103,17 @@
dir = 8
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aAQ" = (
/obj/structure/table/wood,
/obj/item/weapon/hand_tele,
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aAR" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/photo_album,
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aAS" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -13493,7 +13121,7 @@
on = 1
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aAT" = (
/obj/structure/cable{
d1 = 1;
@@ -13580,9 +13208,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Monastery Maintenance"
- })
+/area/maintenance/department/chapel/monastery)
"aAZ" = (
/obj/machinery/computer/upload/borg,
/obj/machinery/flasher{
@@ -13650,7 +13276,7 @@
dir = 1
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"aBf" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-24";
@@ -13662,7 +13288,7 @@
icon_state = "1-2"
},
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"aBg" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/box/PDAs{
@@ -13672,11 +13298,11 @@
/obj/item/weapon/storage/box/silver_ids,
/obj/item/weapon/storage/box/ids,
/turf/open/floor/wood,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"aBh" = (
/obj/machinery/computer/secure_data,
/turf/open/floor/carpet,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"aBi" = (
/obj/machinery/computer/card,
/obj/structure/cable{
@@ -13685,7 +13311,7 @@
icon_state = "1-2"
},
/turf/open/floor/carpet,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"aBj" = (
/obj/structure/chair/office/dark,
/obj/machinery/button/flasher{
@@ -13712,7 +13338,7 @@
pixel_y = -35
},
/turf/open/floor/carpet,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"aBk" = (
/obj/structure/table/wood,
/obj/item/weapon/stamp/hop{
@@ -13732,7 +13358,7 @@
tag = "every single paper bin is edited to this"
},
/turf/open/floor/carpet,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"aBl" = (
/obj/machinery/camera{
c_tag = "Central Primary Hallway Vault";
@@ -13748,31 +13374,31 @@
/area/hallway/primary/central)
"aBm" = (
/turf/closed/wall,
-/area/storage/emergency)
+/area/storage/emergency/starboard)
"aBn" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/plating,
-/area/storage/emergency)
+/area/storage/emergency/starboard)
"aBo" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
-/area/storage/emergency)
+/area/storage/emergency/starboard)
"aBp" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aBq" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aBr" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aBs" = (
/obj/structure/sink{
icon_state = "sink";
@@ -13784,51 +13410,39 @@
pixel_x = -28
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aBt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aBu" = (
/obj/machinery/light_switch{
pixel_y = 25
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aBv" = (
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aBw" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
/obj/machinery/portable_atmospherics/scrubber,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aBx" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aBy" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aBz" = (
/obj/structure/bodycontainer/morgue,
/obj/effect/landmark/revenantspawn,
@@ -13924,20 +13538,20 @@
/obj/structure/table/wood,
/obj/item/device/camera,
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aBM" = (
/obj/structure/chair/comfy/brown{
dir = 1
},
/turf/open/floor/carpet,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aBN" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/darkblue/side,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aBO" = (
/turf/open/floor/plasteel/darkblue/side,
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aBP" = (
/obj/structure/grille,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -13952,7 +13566,7 @@
d2 = 2
},
/turf/open/floor/plating,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"aBQ" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/brigdoor{
@@ -13978,7 +13592,7 @@
opacity = 0
},
/turf/open/floor/plasteel,
-/area/crew_quarters/heads)
+/area/crew_quarters/heads/hop)
"aBR" = (
/obj/machinery/vending/snack,
/turf/open/floor/plasteel,
@@ -13997,23 +13611,21 @@
d2 = 2
},
/turf/open/floor/plating,
-/area/storage/emergency)
+/area/storage/emergency/starboard)
"aBT" = (
/obj/item/weapon/storage/box/lights/mixed,
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plating,
-/area/storage/emergency)
+/area/storage/emergency/starboard)
"aBU" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aBV" = (
/obj/structure/cable{
d1 = 2;
@@ -14024,15 +13636,11 @@
dir = 6
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aBW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/maintenance/port{
- name = "Monastery Maintenance"
- })
+/area/maintenance/department/chapel/monastery)
"aBX" = (
/obj/structure/cable{
d1 = 4;
@@ -14044,9 +13652,7 @@
dir = 4
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aBY" = (
/obj/structure/cable{
d1 = 4;
@@ -14056,9 +13662,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aBZ" = (
/obj/machinery/door/airlock{
name = "Unisex Showers";
@@ -14074,9 +13678,7 @@
dir = 4
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aCa" = (
/obj/structure/cable{
d1 = 4;
@@ -14091,9 +13693,7 @@
dir = 4
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aCb" = (
/obj/machinery/shower{
dir = 8
@@ -14107,27 +13707,25 @@
dir = 10
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aCc" = (
/obj/structure/table,
/obj/machinery/microwave,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aCd" = (
/obj/effect/decal/cleanable/vomit/old,
/obj/structure/sign/poster/contraband/random{
pixel_y = 32
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aCe" = (
/obj/structure/sink/kitchen{
pixel_y = 28
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aCf" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/glass/bowl,
@@ -14140,10 +13738,10 @@
icon_state = "cobweb2"
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aCg" = (
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aCh" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/escape)
@@ -14271,7 +13869,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aCA" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -14280,13 +13878,13 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aCB" = (
/obj/machinery/computer/arcade,
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/crew_quarters/captain)
+/area/crew_quarters/heads/captain)
"aCC" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-09";
@@ -14344,21 +13942,21 @@
},
/obj/item/weapon/storage/toolbox/emergency,
/turf/open/floor/plating,
-/area/storage/emergency)
+/area/storage/emergency/starboard)
"aCK" = (
/obj/machinery/space_heater,
/obj/structure/sign/poster/contraband/random{
pixel_x = 32
},
/turf/open/floor/plating,
-/area/storage/emergency)
+/area/storage/emergency/starboard)
"aCL" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
initialize_directions = 11
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aCM" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
@@ -14368,7 +13966,7 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aCN" = (
/obj/structure/cable{
d1 = 1;
@@ -14377,17 +13975,13 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aCO" = (
/obj/machinery/shower{
dir = 4
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aCP" = (
/obj/machinery/shower{
dir = 8
@@ -14399,9 +13993,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aCQ" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/snacks/cookie{
@@ -14413,20 +14005,20 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aCR" = (
/obj/structure/chair/stool,
/obj/item/clothing/suit/apron/chef,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aCS" = (
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aCT" = (
/obj/machinery/hydroponics/constructable,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aCU" = (
/obj/structure/closet/coffin,
/obj/item/toy/figure/lawyer,
@@ -14434,12 +14026,12 @@
icon_state = "cobweb2"
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aCV" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aCW" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular{
@@ -14471,9 +14063,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"aDa" = (
/obj/machinery/door/airlock/maintenance{
name = "Detective Maintenance";
@@ -14632,7 +14222,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aDr" = (
/obj/machinery/door/airlock{
name = "Starboard Emergency Storage";
@@ -14644,7 +14234,7 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/storage/emergency)
+/area/storage/emergency/starboard)
"aDs" = (
/obj/structure/cable{
d1 = 1;
@@ -14657,34 +14247,26 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aDt" = (
/obj/machinery/door/airlock{
name = "Unit 1"
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aDu" = (
/obj/machinery/door/airlock{
name = "Unit 2"
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aDv" = (
/obj/machinery/shower{
dir = 4
},
/obj/item/weapon/soap/nanotrasen,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aDw" = (
/obj/structure/closet/crate,
/obj/item/weapon/cultivator,
@@ -14696,11 +14278,11 @@
/obj/item/seeds/tomato,
/obj/item/weapon/reagent_containers/glass/bottle/nutrient/ez,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aDx" = (
/obj/effect/decal/cleanable/egg_smudge,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aDy" = (
/turf/closed/wall,
/area/library)
@@ -14726,9 +14308,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"aDC" = (
/obj/structure/cable{
d1 = 4;
@@ -14743,9 +14323,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"aDD" = (
/obj/structure/cable{
d1 = 4;
@@ -14756,9 +14334,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"aDE" = (
/obj/structure/cable{
d1 = 4;
@@ -14772,9 +14348,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"aDF" = (
/obj/structure/cable{
d1 = 2;
@@ -14794,9 +14368,7 @@
initialize_directions = 11
},
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"aDG" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
@@ -15024,13 +14596,13 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aEd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aEe" = (
/obj/structure/cable{
d1 = 1;
@@ -15041,7 +14613,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aEf" = (
/obj/machinery/vending/cigarette,
/obj/machinery/airalarm{
@@ -15050,7 +14622,7 @@
/turf/open/floor/plasteel/white/side{
dir = 4
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aEg" = (
/obj/machinery/power/apc{
dir = 4;
@@ -15066,9 +14638,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aEh" = (
/obj/structure/toilet{
dir = 8
@@ -15078,9 +14648,7 @@
},
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aEi" = (
/obj/structure/cable{
d1 = 1;
@@ -15092,22 +14660,20 @@
req_access_txt = "12"
},
/turf/open/floor/plating,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aEj" = (
/obj/structure/mineral_door/iron,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aEk" = (
/obj/structure/grille,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aEl" = (
/obj/structure/closet/coffin,
/obj/item/toy/figure/curator,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aEm" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -15120,9 +14686,7 @@
icon_state = "1-8"
},
/turf/open/space,
-/area/solar/starboard{
- name = "Starboard Solar Array"
- })
+/area/solar/starboard)
"aEn" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -15135,9 +14699,7 @@
icon_state = "1-8"
},
/turf/open/space,
-/area/solar/port{
- name = "Port Solar Array"
- })
+/area/solar/port)
"aEo" = (
/obj/machinery/door/airlock/centcom{
name = "Library"
@@ -15181,28 +14743,20 @@
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"aEx" = (
/obj/structure/chair/stool,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"aEy" = (
/obj/machinery/vending/cigarette,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"aEz" = (
/turf/closed/wall,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aEA" = (
/obj/structure/cable{
d1 = 1;
@@ -15212,17 +14766,13 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"aEB" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"aEC" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -15467,7 +15017,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aEW" = (
/obj/structure/cable{
d1 = 4;
@@ -15478,7 +15028,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aEX" = (
/obj/structure/cable{
d1 = 4;
@@ -15494,7 +15044,7 @@
on = 1
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aEY" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -15508,7 +15058,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aEZ" = (
/obj/structure/cable{
d1 = 4;
@@ -15522,7 +15072,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aFa" = (
/obj/structure/cable{
d1 = 4;
@@ -15541,7 +15091,7 @@
location = "Dorms"
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aFb" = (
/obj/structure/cable{
d1 = 4;
@@ -15553,7 +15103,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aFc" = (
/obj/structure/cable{
d1 = 4;
@@ -15566,7 +15116,7 @@
/turf/open/floor/plasteel/white/side{
dir = 4
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aFd" = (
/obj/machinery/door/airlock{
name = "Unisex Restrooms";
@@ -15581,9 +15131,7 @@
dir = 4
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aFe" = (
/obj/structure/cable{
d1 = 4;
@@ -15594,9 +15142,7 @@
dir = 4
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aFf" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -15605,13 +15151,11 @@
dir = 9
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aFg" = (
/obj/item/chair,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aFh" = (
/obj/structure/cable{
d1 = 2;
@@ -15632,7 +15176,7 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aFi" = (
/obj/structure/cable{
d1 = 4;
@@ -15647,7 +15191,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aFj" = (
/obj/structure/grille,
/obj/structure/cable{
@@ -15663,7 +15207,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aFk" = (
/obj/structure/cable{
d1 = 1;
@@ -15682,7 +15226,7 @@
initialize_directions = 11
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aFl" = (
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/escape)
@@ -15729,9 +15273,7 @@
/turf/open/floor/plasteel/red/side{
dir = 9
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aFr" = (
/obj/structure/chair,
/obj/machinery/computer/security/telescreen/entertainment{
@@ -15740,9 +15282,7 @@
/turf/open/floor/plasteel/red/side{
dir = 1
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aFs" = (
/obj/structure/chair,
/obj/machinery/status_display{
@@ -15754,9 +15294,7 @@
/turf/open/floor/plasteel/red/side{
dir = 1
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aFt" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-17"
@@ -15765,9 +15303,7 @@
tag = "icon-red (NORTHEAST)";
dir = 5
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aFu" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
@@ -15979,18 +15515,18 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aFQ" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aFR" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aFS" = (
/obj/machinery/camera{
c_tag = "Dormitories Hallway";
@@ -16000,14 +15536,14 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aFT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
pixel_y = 0
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aFU" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-04";
@@ -16016,23 +15552,19 @@
/turf/open/floor/plasteel/white/side{
dir = 4
},
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"aFV" = (
/obj/machinery/light_switch{
pixel_x = -25
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aFW" = (
/obj/machinery/door/airlock{
name = "Unit B"
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aFX" = (
/obj/machinery/recharge_station,
/obj/machinery/light/small{
@@ -16044,9 +15576,7 @@
},
/obj/effect/decal/cleanable/oil,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"aFY" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -16054,20 +15584,20 @@
},
/obj/effect/decal/cleanable/oil,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aFZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aGa" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aGb" = (
/obj/structure/cable{
d1 = 1;
@@ -16077,18 +15607,18 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aGc" = (
/mob/living/simple_animal/mouse/gray,
/turf/open/floor/plating{
burnt = 1;
icon_state = "panelscorched"
},
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aGd" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aGe" = (
/obj/structure/chair{
dir = 8
@@ -16158,35 +15688,25 @@
name = "Escape Airlock"
},
/turf/open/floor/plating,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aGm" = (
/turf/open/floor/plating,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aGn" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 8;
name = "Escape Airlock"
},
/turf/open/floor/plating,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aGo" = (
/turf/open/floor/plasteel/red/side{
dir = 8
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aGp" = (
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aGq" = (
/obj/machinery/light{
dir = 4;
@@ -16204,9 +15724,7 @@
tag = "icon-red (EAST)";
dir = 4
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aGr" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel,
@@ -16224,9 +15742,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"aGt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner,
@@ -16254,17 +15770,13 @@
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
-/area/crew_quarters/cafeteria{
- name = "Lunchroom"
- })
+/area/crew_quarters/cafeteria/lunchroom)
"aGy" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/crew_quarters/cafeteria{
- name = "Lunchroom"
- })
+/area/crew_quarters/cafeteria/lunchroom)
"aGz" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
@@ -16277,19 +15789,13 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/crew_quarters/cafeteria{
- name = "Lunchroom"
- })
+/area/crew_quarters/cafeteria/lunchroom)
"aGA" = (
/turf/closed/wall,
-/area/crew_quarters/cafeteria{
- name = "Lunchroom"
- })
+/area/crew_quarters/cafeteria/lunchroom)
"aGB" = (
/turf/closed/wall,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restroom"
- })
+/area/crew_quarters/toilet/auxiliary)
"aGC" = (
/obj/machinery/door/airlock{
id_tag = "Potty1";
@@ -16303,18 +15809,14 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restroom"
- })
+/area/crew_quarters/toilet/auxiliary)
"aGD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restroom"
- })
+/area/crew_quarters/toilet/auxiliary)
"aGE" = (
/turf/closed/wall,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aGF" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
@@ -16327,11 +15829,11 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aGG" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aGH" = (
/obj/machinery/camera{
c_tag = "Central Primary Hallway Bridge";
@@ -16339,11 +15841,11 @@
},
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aGI" = (
/obj/structure/closet/firecloset,
/turf/open/floor/plasteel,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aGJ" = (
/turf/closed/wall/r_wall,
/area/storage/eva)
@@ -16395,9 +15897,7 @@
network = list("SS13","Monastery")
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"aGQ" = (
/obj/structure/chair{
dir = 4
@@ -16406,9 +15906,7 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"aGR" = (
/turf/closed/wall,
/area/security/checkpoint/supply)
@@ -16429,7 +15927,7 @@
"aGV" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aGW" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/obj/structure/cable{
@@ -16439,20 +15937,20 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aGX" = (
/obj/structure/girder,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aGY" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aGZ" = (
/obj/item/weapon/storage/box/mousetraps,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aHa" = (
/turf/closed/wall,
/area/maintenance/disposal)
@@ -16485,9 +15983,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aHg" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
@@ -16498,25 +15994,19 @@
/turf/open/floor/plasteel/red/side{
dir = 10
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aHh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/red/side,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aHi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/plasteel/red/side,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aHj" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
@@ -16524,9 +16014,7 @@
/turf/open/floor/plasteel/red/side{
dir = 6
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aHk" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
@@ -16582,9 +16070,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 9
},
-/area/crew_quarters/cafeteria{
- name = "Lunchroom"
- })
+/area/crew_quarters/cafeteria/lunchroom)
"aHq" = (
/obj/structure/chair{
dir = 8;
@@ -16595,9 +16081,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
-/area/crew_quarters/cafeteria{
- name = "Lunchroom"
- })
+/area/crew_quarters/cafeteria/lunchroom)
"aHr" = (
/obj/structure/cable{
d1 = 1;
@@ -16609,9 +16093,7 @@
on = 1
},
/turf/open/floor/plasteel,
-/area/crew_quarters/cafeteria{
- name = "Lunchroom"
- })
+/area/crew_quarters/cafeteria/lunchroom)
"aHs" = (
/obj/machinery/airalarm{
pixel_y = 22
@@ -16620,9 +16102,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 5
},
-/area/crew_quarters/cafeteria{
- name = "Lunchroom"
- })
+/area/crew_quarters/cafeteria/lunchroom)
"aHt" = (
/obj/structure/sink{
icon_state = "sink";
@@ -16635,9 +16115,7 @@
},
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restroom"
- })
+/area/crew_quarters/toilet/auxiliary)
"aHu" = (
/obj/structure/cable{
d1 = 1;
@@ -16647,9 +16125,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restroom"
- })
+/area/crew_quarters/toilet/auxiliary)
"aHv" = (
/obj/structure/urinal{
pixel_y = 32
@@ -16679,17 +16155,15 @@
pixel_y = 6
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restroom"
- })
+/area/crew_quarters/toilet/auxiliary)
"aHw" = (
/obj/machinery/portable_atmospherics/canister/air,
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aHx" = (
/obj/structure/closet/coffin,
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aHy" = (
/obj/machinery/light/small{
dir = 1
@@ -16698,16 +16172,16 @@
broken = 1;
icon_state = "platingdmg3"
},
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aHz" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aHA" = (
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aHB" = (
/obj/structure/cable{
d1 = 1;
@@ -16720,26 +16194,26 @@
broken = 1;
icon_state = "platingdmg3"
},
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aHC" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aHD" = (
/obj/machinery/space_heater,
/turf/open/floor/plating{
burnt = 1;
icon_state = "panelscorched"
},
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aHE" = (
/obj/structure/girder,
/turf/open/floor/plating{
broken = 1;
icon_state = "platingdmg3"
},
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aHF" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/button/door{
@@ -17081,7 +16555,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aIm" = (
/obj/structure/cable{
d1 = 1;
@@ -17095,7 +16569,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aIn" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -17109,7 +16583,7 @@
},
/obj/effect/decal/cleanable/ash,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aIo" = (
/obj/structure/grille/broken,
/obj/structure/rack,
@@ -17120,20 +16594,18 @@
/obj/item/weapon/crowbar,
/obj/machinery/light/small,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aIp" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
tag = "icon-manifold-b-f (NORTH)";
dir = 1
},
/turf/open/floor/carpet,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"aIq" = (
/obj/machinery/space_heater,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aIr" = (
/obj/structure/cable{
d1 = 1;
@@ -17148,7 +16620,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aIs" = (
/obj/structure/cable{
d1 = 2;
@@ -17162,7 +16634,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aIt" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -17175,7 +16647,7 @@
icon_state = "cobweb2"
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aIu" = (
/obj/machinery/button/massdriver{
id = "trash";
@@ -17220,9 +16692,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aIA" = (
/obj/structure/cable{
d1 = 1;
@@ -17235,9 +16705,7 @@
req_access_txt = "12"
},
/turf/open/floor/plating,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aIB" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -17327,9 +16795,7 @@
/turf/open/floor/plasteel/neutral/side{
dir = 10
},
-/area/crew_quarters/cafeteria{
- name = "Lunchroom"
- })
+/area/crew_quarters/cafeteria/lunchroom)
"aIJ" = (
/obj/machinery/light,
/obj/machinery/camera{
@@ -17347,9 +16813,7 @@
pixel_y = -28
},
/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/cafeteria{
- name = "Lunchroom"
- })
+/area/crew_quarters/cafeteria/lunchroom)
"aIK" = (
/obj/structure/cable,
/obj/machinery/power/apc{
@@ -17359,9 +16823,7 @@
pixel_y = -24
},
/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/cafeteria{
- name = "Lunchroom"
- })
+/area/crew_quarters/cafeteria/lunchroom)
"aIL" = (
/obj/machinery/vending/sustenance{
contraband = list(/obj/item/weapon/kitchen/knife = 6, /obj/item/weapon/reagent_containers/food/drinks/coffee = 12);
@@ -17371,18 +16833,14 @@
/turf/open/floor/plasteel/neutral/side{
dir = 6
},
-/area/crew_quarters/cafeteria{
- name = "Lunchroom"
- })
+/area/crew_quarters/cafeteria/lunchroom)
"aIM" = (
/obj/structure/toilet{
dir = 4
},
/obj/effect/landmark/start/assistant,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restroom"
- })
+/area/crew_quarters/toilet/auxiliary)
"aIN" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -17390,9 +16848,7 @@
on = 1
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restroom"
- })
+/area/crew_quarters/toilet/auxiliary)
"aIO" = (
/obj/structure/cable,
/obj/machinery/power/apc{
@@ -17406,26 +16862,24 @@
dir = 8
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restroom"
- })
+/area/crew_quarters/toilet/auxiliary)
"aIP" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating{
burnt = 1;
icon_state = "panelscorched"
},
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aIQ" = (
/obj/item/weapon/storage/box/lights/mixed,
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aIR" = (
/obj/item/weapon/extinguisher,
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aIS" = (
/obj/structure/grille/broken,
/obj/item/weapon/crowbar,
@@ -17433,7 +16887,7 @@
broken = 1;
icon_state = "platingdmg3"
},
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aIT" = (
/obj/structure/cable{
d1 = 1;
@@ -17443,27 +16897,27 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aIU" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aIV" = (
/obj/item/trash/pistachios,
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aIW" = (
/obj/structure/grille,
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aIX" = (
/obj/item/weapon/shard{
icon_state = "small"
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aIY" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance{
@@ -17474,7 +16928,7 @@
broken = 1;
icon_state = "platingdmg3"
},
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aIZ" = (
/obj/structure/rack{
dir = 8;
@@ -17745,12 +17199,12 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aJC" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aJD" = (
/obj/machinery/mass_driver{
dir = 1;
@@ -17851,9 +17305,7 @@
/turf/open/floor/plasteel/escape{
dir = 1
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aJQ" = (
/obj/structure/chair,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -17862,9 +17314,7 @@
/turf/open/floor/plasteel/escape{
dir = 1
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aJR" = (
/obj/machinery/light{
dir = 1
@@ -17875,9 +17325,7 @@
/turf/open/floor/plasteel/escape{
dir = 1
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aJS" = (
/obj/structure/cable{
d1 = 1;
@@ -17897,9 +17345,7 @@
/turf/open/floor/plasteel/escape{
dir = 1
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aJT" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-16";
@@ -17923,9 +17369,7 @@
/turf/open/floor/plasteel/escape{
dir = 5
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aJU" = (
/obj/structure/table,
/obj/item/weapon/hand_labeler,
@@ -17970,7 +17414,7 @@
burnt = 1;
icon_state = "panelscorched"
},
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aJY" = (
/obj/structure/cable{
d1 = 2;
@@ -17987,7 +17431,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aJZ" = (
/obj/structure/cable{
d1 = 4;
@@ -17998,7 +17442,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aKa" = (
/obj/structure/cable{
d1 = 4;
@@ -18009,7 +17453,7 @@
dir = 10
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aKb" = (
/obj/structure/cable{
d1 = 2;
@@ -18017,7 +17461,7 @@
icon_state = "2-8"
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aKc" = (
/obj/machinery/suit_storage_unit/standard_unit,
/obj/machinery/light{
@@ -18333,7 +17777,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/item/weapon/shard,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aKH" = (
/obj/machinery/light/small{
dir = 8
@@ -18384,17 +17828,13 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aKO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aKP" = (
/obj/structure/cable{
d1 = 1;
@@ -18406,9 +17846,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aKQ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
@@ -18418,17 +17856,13 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aKR" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
/turf/open/floor/carpet,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"aKS" = (
/obj/machinery/light/small{
dir = 1
@@ -18437,7 +17871,7 @@
icon_state = "plant-22"
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aKT" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
@@ -18446,21 +17880,21 @@
broken = 1;
icon_state = "platingdmg3"
},
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aKU" = (
/turf/open/floor/plating{
broken = 1;
icon_state = "platingdmg3"
},
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aKV" = (
/obj/item/trash/cheesie,
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aKW" = (
/obj/structure/girder,
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aKX" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance{
@@ -18469,7 +17903,7 @@
},
/obj/item/clothing/gloves/color/random,
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aKY" = (
/obj/machinery/power/apc{
dir = 1;
@@ -18482,7 +17916,7 @@
d2 = 2
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aKZ" = (
/turf/closed/wall,
/area/crew_quarters/bar)
@@ -18490,7 +17924,7 @@
/obj/structure/grille/broken,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aLb" = (
/obj/structure/cable{
d1 = 1;
@@ -18498,7 +17932,7 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aLc" = (
/obj/machinery/suit_storage_unit/standard_unit,
/obj/structure/extinguisher_cabinet{
@@ -18703,7 +18137,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aLF" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -18776,15 +18210,11 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aLN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aLO" = (
/obj/structure/cable{
d1 = 1;
@@ -18796,17 +18226,13 @@
icon_state = "pipe-c"
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aLP" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aLQ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
@@ -18816,9 +18242,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aLR" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -18862,7 +18286,7 @@
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aLW" = (
/obj/structure/cable{
d1 = 2;
@@ -18873,7 +18297,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aLX" = (
/obj/structure/cable{
d1 = 4;
@@ -18884,7 +18308,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aLY" = (
/obj/structure/cable{
d1 = 4;
@@ -18907,7 +18331,7 @@
broken = 1;
icon_state = "platingdmg3"
},
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aLZ" = (
/obj/structure/cable{
d1 = 4;
@@ -18922,7 +18346,7 @@
burnt = 1;
icon_state = "panelscorched"
},
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aMa" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
@@ -18938,7 +18362,7 @@
burnt = 1;
icon_state = "panelscorched"
},
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aMb" = (
/obj/structure/grille,
/obj/structure/cable{
@@ -18950,7 +18374,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aMc" = (
/obj/structure/grille/broken,
/obj/structure/cable{
@@ -18962,7 +18386,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aMd" = (
/obj/item/weapon/reagent_containers/glass/bucket,
/obj/structure/cable{
@@ -18974,7 +18398,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aMe" = (
/obj/structure/cable{
d1 = 4;
@@ -18985,7 +18409,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aMf" = (
/obj/structure/cable{
d1 = 4;
@@ -19005,7 +18429,7 @@
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aMg" = (
/obj/structure/cable{
d1 = 4;
@@ -19019,7 +18443,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aMh" = (
/obj/structure/cable{
d1 = 4;
@@ -19042,7 +18466,7 @@
broken = 1;
icon_state = "platingdmg3"
},
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aMi" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -19059,7 +18483,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aMj" = (
/obj/machinery/reagentgrinder,
/obj/structure/table/wood,
@@ -19092,7 +18516,7 @@
"aMn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aMo" = (
/obj/structure/cable{
d1 = 1;
@@ -19101,7 +18525,7 @@
},
/obj/item/weapon/broken_bottle,
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aMp" = (
/obj/structure/table,
/obj/item/stack/sheet/plasteel{
@@ -19284,7 +18708,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aMJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -19371,9 +18795,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aMS" = (
/obj/structure/cable{
d1 = 1;
@@ -19381,22 +18803,16 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aMT" = (
/obj/structure/chair,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aMU" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aMV" = (
/obj/machinery/light{
dir = 4;
@@ -19413,13 +18829,13 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aMX" = (
/obj/structure/cable{
icon_state = "1-8"
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aMY" = (
/turf/closed/wall,
/area/hydroponics)
@@ -19464,7 +18880,7 @@
broken = 1;
icon_state = "platingdmg3"
},
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aNd" = (
/obj/item/weapon/reagent_containers/food/drinks/shaker,
/obj/item/weapon/gun/ballistic/revolver/doublebarrel,
@@ -19539,7 +18955,7 @@
initialize_directions = 11
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aNj" = (
/obj/structure/cable{
d1 = 1;
@@ -19553,7 +18969,7 @@
},
/obj/item/chair,
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aNk" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/maintenance{
@@ -19575,24 +18991,24 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aNm" = (
/obj/item/trash/tray,
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aNn" = (
/obj/structure/closet/secure_closet/freezer/cream_pie,
/obj/item/weapon/grown/bananapeel,
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aNo" = (
/obj/structure/closet/secure_closet/freezer/cream_pie,
/obj/item/seeds/banana,
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aNp" = (
/turf/open/floor/plasteel/brown/corner{
dir = 4
@@ -19684,7 +19100,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aNz" = (
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
@@ -19735,9 +19151,7 @@
pixel_x = 0
},
/turf/open/floor/grass,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aNE" = (
/obj/structure/flora/ausbushes/ywflowers,
/obj/structure/flora/ausbushes/lavendergrass,
@@ -19752,15 +19166,11 @@
dir = 4
},
/turf/open/floor/grass,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aNF" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aNG" = (
/obj/structure/table,
/obj/item/weapon/storage/box/matches{
@@ -19768,9 +19178,7 @@
pixel_y = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aNH" = (
/obj/structure/cable{
d1 = 1;
@@ -19779,7 +19187,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aNI" = (
/obj/structure/sink{
pixel_y = 28
@@ -19885,7 +19293,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aNV" = (
/obj/item/device/assembly/mousetrap,
/turf/open/floor/wood{
@@ -19916,7 +19324,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aOa" = (
/obj/item/weapon/weldingtool,
/obj/structure/cable{
@@ -19928,7 +19336,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aOb" = (
/obj/structure/cable{
d1 = 4;
@@ -19948,7 +19356,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aOc" = (
/obj/structure/cable{
d1 = 4;
@@ -19962,7 +19370,7 @@
dir = 10
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aOd" = (
/obj/structure/cable{
d1 = 2;
@@ -19977,7 +19385,7 @@
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aOe" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -20169,7 +19577,7 @@
icon_state = "1-4"
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aOB" = (
/obj/structure/cable{
d1 = 4;
@@ -20185,7 +19593,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aOC" = (
/obj/structure/cable{
d1 = 4;
@@ -20197,7 +19605,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aOD" = (
/obj/structure/cable{
d1 = 2;
@@ -20218,7 +19626,7 @@
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aOE" = (
/obj/machinery/door/airlock/maintenance{
name = "Disposal Access";
@@ -20290,9 +19698,7 @@
name = "Port Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/starboard{
- name = "Starboard Solar Array"
- })
+/area/solar/starboard)
"aOJ" = (
/obj/structure/cable{
d2 = 8;
@@ -20303,9 +19709,7 @@
name = "Starboard Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/starboard{
- name = "Starboard Solar Array"
- })
+/area/solar/starboard)
"aOK" = (
/obj/machinery/sleeper{
dir = 4;
@@ -20344,18 +19748,14 @@
"aON" = (
/obj/machinery/light,
/turf/open/floor/plating,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aOO" = (
/obj/structure/chair{
dir = 1;
name = "Command Station"
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aOP" = (
/obj/machinery/camera{
c_tag = "Central Primary Hallway Escape";
@@ -20477,7 +19877,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aPa" = (
/obj/structure/reagent_dispensers/beerkeg,
/turf/open/floor/wood,
@@ -20690,11 +20090,11 @@
/obj/effect/spawner/lootdrop/maintenance,
/obj/item/weapon/storage/toolbox/mechanical,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aPA" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aPB" = (
/obj/structure/cable{
d1 = 1;
@@ -20704,7 +20104,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aPC" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/fire,
@@ -20729,9 +20129,7 @@
pressure_checks = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aPE" = (
/obj/structure/cable{
d1 = 1;
@@ -20739,9 +20137,7 @@
icon_state = "1-4"
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aPF" = (
/obj/structure/cable{
d1 = 4;
@@ -20749,9 +20145,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aPG" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
@@ -20763,9 +20157,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aPH" = (
/obj/structure/cable{
d1 = 4;
@@ -20820,7 +20212,7 @@
req_access_txt = "12"
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aPL" = (
/obj/structure/cable{
d1 = 4;
@@ -20832,7 +20224,7 @@
},
/obj/machinery/light/small,
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aPM" = (
/obj/structure/cable{
d1 = 1;
@@ -20843,7 +20235,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"aPN" = (
/obj/structure/plasticflaps{
opacity = 1
@@ -21237,11 +20629,11 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aQC" = (
/obj/structure/easel,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aQD" = (
/obj/structure/closet/l3closet/scientist,
/obj/item/weapon/book/manual/wiki/chemistry,
@@ -21249,7 +20641,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aQE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -21260,9 +20652,7 @@
pixel_y = 0
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"aQF" = (
/obj/structure/window/reinforced{
dir = 1
@@ -21280,26 +20670,20 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aQI" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Departure Lounge"
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aQJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
/turf/closed/wall,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"aQK" = (
/obj/structure/sign/directions/evac{
dir = 1;
@@ -21685,11 +21069,11 @@
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aRy" = (
/obj/machinery/portable_atmospherics/canister/air,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aRz" = (
/obj/structure/cable{
d1 = 2;
@@ -21698,9 +21082,7 @@
tag = ""
},
/turf/closed/wall,
-/area/maintenance/port{
- name = "Monastery Maintenance"
- })
+/area/maintenance/department/chapel/monastery)
"aRA" = (
/obj/structure/shuttle/engine/propulsion,
/turf/open/floor/plating/airless,
@@ -21714,31 +21096,23 @@
pixel_y = -22
},
/turf/open/floor/plasteel/escape,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aRC" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/plasteel/escape,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aRD" = (
/obj/machinery/light,
/obj/structure/chair{
dir = 1
},
/turf/open/floor/plasteel/escape,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aRE" = (
/turf/open/floor/plasteel/escape,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aRF" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-14";
@@ -21751,9 +21125,7 @@
/turf/open/floor/plasteel/escape{
dir = 6
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"aRG" = (
/obj/machinery/washing_machine,
/obj/structure/sign/securearea{
@@ -22158,7 +21530,7 @@
pixel_y = 0
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aSw" = (
/obj/structure/cable{
d1 = 4;
@@ -22167,22 +21539,18 @@
},
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Monastery Maintenance"
- })
+/area/maintenance/department/chapel/monastery)
"aSx" = (
/obj/structure/grille/broken,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aSy" = (
/obj/structure/chair/stool,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aSz" = (
/turf/closed/wall,
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"aSA" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -22191,9 +21559,7 @@
name = "security shutters"
},
/turf/open/floor/plating,
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"aSB" = (
/obj/machinery/door/firedoor,
/obj/structure/table/reinforced,
@@ -22220,9 +21586,7 @@
/obj/item/weapon/pen,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"aSC" = (
/obj/structure/cable{
d1 = 4;
@@ -22234,9 +21598,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Monastery Maintenance"
- })
+/area/maintenance/department/chapel/monastery)
"aSD" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -22555,14 +21917,14 @@
/obj/effect/spawner/lootdrop/maintenance,
/obj/item/weapon/storage/box/matches,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aTp" = (
/obj/structure/table,
/obj/item/device/assembly/igniter,
/obj/item/device/assembly/igniter,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aTq" = (
/obj/structure/table,
/obj/item/stack/sheet/metal{
@@ -22577,7 +21939,7 @@
/obj/effect/decal/cleanable/deadcockroach,
/obj/item/weapon/light/bulb,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aTr" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -22601,18 +21963,14 @@
d2 = 4
},
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Monastery Maintenance"
- })
+/area/maintenance/department/chapel/monastery)
"aTu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
icon_state = "1-8"
},
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Monastery Maintenance"
- })
+/area/maintenance/department/chapel/monastery)
"aTv" = (
/obj/machinery/computer/security,
/obj/machinery/requests_console{
@@ -22627,24 +21985,18 @@
/turf/open/floor/plasteel/red/side{
dir = 9
},
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"aTw" = (
/turf/open/floor/plasteel/red/side{
dir = 1
},
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"aTx" = (
/obj/structure/closet/wardrobe/red,
/turf/open/floor/plasteel/red/side{
dir = 1
},
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"aTy" = (
/obj/structure/closet/secure_closet/security,
/obj/item/device/radio/intercom{
@@ -22657,9 +22009,7 @@
tag = "icon-red (NORTHEAST)";
dir = 5
},
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"aTz" = (
/obj/machinery/light{
dir = 4;
@@ -22799,9 +22149,7 @@
/obj/item/weapon/storage/box/lights/bulbs,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Monastery Maintenance"
- })
+/area/maintenance/department/chapel/monastery)
"aTQ" = (
/obj/effect/decal/cleanable/cobweb{
icon_state = "cobweb2"
@@ -22815,9 +22163,7 @@
layer = 3.1
},
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Monastery Maintenance"
- })
+/area/maintenance/department/chapel/monastery)
"aTR" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
@@ -22955,7 +22301,7 @@
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aUf" = (
/obj/structure/cable{
d1 = 4;
@@ -22970,7 +22316,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aUg" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -22983,7 +22329,7 @@
dir = 9
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aUh" = (
/turf/open/floor/plasteel/arrival{
dir = 1
@@ -23068,9 +22414,7 @@
/turf/open/floor/plasteel/red/side{
dir = 8
},
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"aUo" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
@@ -23079,17 +22423,13 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel,
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"aUp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/plasteel,
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"aUq" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -23098,9 +22438,7 @@
pressure_checks = 1
},
/turf/open/floor/plasteel,
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"aUr" = (
/obj/structure/cable{
d1 = 2;
@@ -23114,9 +22452,7 @@
tag = "icon-red (EAST)";
dir = 4
},
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"aUs" = (
/obj/machinery/door/airlock/security{
name = "Security Checkpoint";
@@ -23133,9 +22469,7 @@
dir = 4
},
/turf/open/floor/plasteel/red,
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"aUt" = (
/obj/structure/cable{
d1 = 4;
@@ -23514,16 +22848,12 @@
/area/quartermaster/storage)
"aVi" = (
/turf/closed/wall,
-/area/maintenance/auxsolarstarboard{
- name = "Starboard Solar Maintenance"
- })
+/area/maintenance/solars/starboard)
"aVj" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard{
- name = "Starboard Solar Maintenance"
- })
+/area/maintenance/solars/starboard)
"aVk" = (
/obj/structure/cable{
d2 = 8;
@@ -23534,9 +22864,7 @@
name = "Port Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/starboard{
- name = "Starboard Solar Array"
- })
+/area/solar/starboard)
"aVl" = (
/obj/machinery/light{
dir = 8
@@ -23599,9 +22927,7 @@
/turf/open/floor/plasteel/red/side{
dir = 10
},
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"aVt" = (
/obj/item/weapon/pen,
/obj/structure/table,
@@ -23612,26 +22938,20 @@
tag = "every single paper bin is edited to this"
},
/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"aVu" = (
/obj/structure/chair/office/dark,
/obj/effect/landmark/event_spawn,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"aVv" = (
/obj/machinery/recharger{
pixel_y = 4
},
/obj/structure/table,
/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"aVw" = (
/obj/machinery/power/apc{
dir = 2;
@@ -23643,9 +22963,7 @@
/turf/open/floor/plasteel/red/side{
dir = 6
},
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"aVx" = (
/obj/structure/cable{
d1 = 1;
@@ -23961,9 +23279,7 @@
d2 = 2
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard{
- name = "Starboard Solar Maintenance"
- })
+/area/maintenance/solars/starboard)
"aWi" = (
/obj/machinery/power/terminal{
dir = 8
@@ -23977,17 +23293,13 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard{
- name = "Starboard Solar Maintenance"
- })
+/area/maintenance/solars/starboard)
"aWj" = (
/obj/structure/rack,
/obj/item/clothing/mask/gas,
/obj/item/device/multitool,
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard{
- name = "Starboard Solar Maintenance"
- })
+/area/maintenance/solars/starboard)
"aWk" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -24000,9 +23312,7 @@
pixel_y = 0
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard{
- name = "Starboard Solar Maintenance"
- })
+/area/maintenance/solars/starboard)
"aWl" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 2;
@@ -24058,9 +23368,7 @@
/obj/item/weapon/crowbar,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"aWr" = (
/obj/structure/janitorialcart,
/obj/structure/disposalpipe/segment,
@@ -24236,7 +23544,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aWN" = (
/obj/structure/closet/secure_closet/quartermaster,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -24333,7 +23641,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aWV" = (
/obj/structure/cable{
d1 = 4;
@@ -24342,7 +23650,7 @@
pixel_x = 0
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aWW" = (
/obj/structure/cable{
d1 = 4;
@@ -24355,9 +23663,7 @@
req_access_txt = "10"
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard{
- name = "Starboard Solar Maintenance"
- })
+/area/maintenance/solars/starboard)
"aWX" = (
/obj/structure/cable{
d1 = 1;
@@ -24372,9 +23678,7 @@
icon_state = "2-8"
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard{
- name = "Starboard Solar Maintenance"
- })
+/area/maintenance/solars/starboard)
"aWY" = (
/obj/structure/cable{
d1 = 1;
@@ -24383,9 +23687,7 @@
tag = "90Curve"
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard{
- name = "Starboard Solar Maintenance"
- })
+/area/maintenance/solars/starboard)
"aWZ" = (
/obj/structure/cable{
d1 = 2;
@@ -24399,9 +23701,7 @@
pixel_x = 0
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard{
- name = "Starboard Solar Maintenance"
- })
+/area/maintenance/solars/starboard)
"aXa" = (
/obj/structure/cable{
d1 = 4;
@@ -24416,9 +23716,7 @@
req_access_txt = "10; 13"
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard{
- name = "Starboard Solar Maintenance"
- })
+/area/maintenance/solars/starboard)
"aXb" = (
/obj/structure/cable{
d1 = 4;
@@ -24427,9 +23725,7 @@
pixel_x = 0
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard{
- name = "Starboard Solar Maintenance"
- })
+/area/maintenance/solars/starboard)
"aXc" = (
/obj/structure/cable{
d1 = 4;
@@ -24444,9 +23740,7 @@
req_access_txt = "10; 13"
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard{
- name = "Starboard Solar Maintenance"
- })
+/area/maintenance/solars/starboard)
"aXd" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -24456,9 +23750,7 @@
pixel_x = 0
},
/turf/open/space,
-/area/solar/starboard{
- name = "Starboard Solar Array"
- })
+/area/solar/starboard)
"aXe" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -24466,15 +23758,11 @@
icon_state = "0-8"
},
/turf/open/space,
-/area/solar/starboard{
- name = "Starboard Solar Array"
- })
+/area/solar/starboard)
"aXf" = (
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/starboard{
- name = "Starboard Solar Array"
- })
+/area/solar/starboard)
"aXg" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -24482,9 +23770,7 @@
d2 = 4
},
/turf/open/space,
-/area/solar/starboard{
- name = "Starboard Solar Array"
- })
+/area/solar/starboard)
"aXh" = (
/obj/machinery/power/tracker,
/obj/structure/cable{
@@ -24492,9 +23778,7 @@
icon_state = "0-8"
},
/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/starboard{
- name = "Starboard Solar Array"
- })
+/area/solar/starboard)
"aXi" = (
/obj/structure/grille,
/obj/structure/sign/securearea{
@@ -24638,9 +23922,7 @@
/obj/item/weapon/storage/crayons,
/obj/item/weapon/wrench,
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"aXB" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/glass/beaker/large,
@@ -24656,9 +23938,7 @@
dir = 8
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"aXE" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
@@ -24687,9 +23967,7 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"aXH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -24711,9 +23989,7 @@
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/carpet,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"aXK" = (
/obj/structure/table/reinforced,
/obj/item/weapon/lighter,
@@ -24725,7 +24001,7 @@
/obj/item/weapon/cigbutt,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aXM" = (
/obj/structure/cable{
d1 = 1;
@@ -24737,7 +24013,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aXN" = (
/obj/structure/cable{
d1 = 2;
@@ -24749,7 +24025,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aXO" = (
/obj/structure/cable{
icon_state = "0-4";
@@ -24857,7 +24133,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aXZ" = (
/obj/structure/cable,
/obj/machinery/power/apc{
@@ -24867,16 +24143,12 @@
pixel_y = 0
},
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard{
- name = "Starboard Solar Maintenance"
- })
+/area/maintenance/solars/starboard)
"aYa" = (
/obj/structure/chair/stool,
/obj/item/weapon/cigbutt/cigarbutt,
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard{
- name = "Starboard Solar Maintenance"
- })
+/area/maintenance/solars/starboard)
"aYb" = (
/obj/machinery/power/solar_control{
id = "starboardsolar";
@@ -24885,9 +24157,7 @@
},
/obj/structure/cable,
/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard{
- name = "Starboard Solar Maintenance"
- })
+/area/maintenance/solars/starboard)
"aYc" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
tag = "icon-manifold (WEST)";
@@ -24945,9 +24215,7 @@
/obj/item/weapon/storage/fancy/candle_box,
/obj/structure/table/wood/fancy,
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"aYj" = (
/obj/structure/cable{
d1 = 1;
@@ -25209,9 +24477,7 @@
d2 = 2
},
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Monastery Maintenance"
- })
+/area/maintenance/department/chapel/monastery)
"aYJ" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -25223,7 +24489,7 @@
/area/crew_quarters/bar)
"aYK" = (
/turf/closed/wall,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"aYL" = (
/obj/structure/table,
/obj/item/weapon/cartridge/quartermaster{
@@ -25301,11 +24567,11 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aYU" = (
/obj/item/weapon/caution,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aYV" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
@@ -25315,7 +24581,7 @@
tag = "every single paper bin is edited to this"
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aYW" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/arrival)
@@ -25517,9 +24783,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Monastery Maintenance"
- })
+/area/maintenance/department/chapel/monastery)
"aZs" = (
/obj/structure/sign/barsign,
/turf/closed/wall,
@@ -25527,22 +24791,18 @@
"aZt" = (
/obj/item/weapon/wrench,
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Monastery Maintenance"
- })
+/area/maintenance/department/chapel/monastery)
"aZu" = (
/obj/item/stack/cable_coil,
/obj/item/stack/cable_coil,
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Monastery Maintenance"
- })
+/area/maintenance/department/chapel/monastery)
"aZv" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aZw" = (
/obj/structure/table,
/obj/item/weapon/crowbar/large,
@@ -25551,7 +24811,7 @@
},
/obj/item/clothing/head/welding,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"aZx" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
@@ -25566,7 +24826,7 @@
d2 = 2
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"aZy" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/firealarm{
@@ -25575,7 +24835,7 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"aZz" = (
/obj/machinery/mech_bay_recharge_port,
/obj/structure/cable{
@@ -25589,10 +24849,10 @@
pixel_y = 30
},
/turf/open/floor/plating,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"aZA" = (
/turf/open/floor/mech_bay_recharge_floor,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"aZB" = (
/obj/machinery/computer/mech_bay_power_console,
/obj/structure/cable{
@@ -25600,7 +24860,7 @@
d2 = 2
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"aZC" = (
/obj/structure/table,
/obj/machinery/computer/stockexchange,
@@ -25735,7 +24995,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aZO" = (
/obj/machinery/light/small{
dir = 4
@@ -25744,18 +25004,18 @@
/obj/item/weapon/paperplane,
/obj/item/trash/chips,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aZP" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aZQ" = (
/obj/structure/closet/cabinet,
/obj/effect/spawner/lootdrop/maintenance,
/obj/item/weapon/circuitboard/machine/hydroponics,
/obj/item/weapon/electronics/apc,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"aZR" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular{
@@ -25774,9 +25034,7 @@
on = 1
},
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Monastery Maintenance"
- })
+/area/maintenance/department/chapel/monastery)
"aZU" = (
/obj/structure/closet/wardrobe/black,
/turf/open/floor/mineral/titanium/blue,
@@ -25812,9 +25070,7 @@
/area/hallway/secondary/entry)
"aZZ" = (
/turf/closed/wall/r_wall,
-/area/construction/quarters{
- name = "Lounge"
- })
+/area/crew_quarters/lounge)
"baa" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
@@ -25823,9 +25079,7 @@
name = "privacy shutters"
},
/turf/open/floor/plating,
-/area/construction/quarters{
- name = "Lounge"
- })
+/area/crew_quarters/lounge)
"bab" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
@@ -25837,9 +25091,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/construction/quarters{
- name = "Lounge"
- })
+/area/crew_quarters/lounge)
"bac" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
@@ -25849,9 +25101,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/construction/quarters{
- name = "Lounge"
- })
+/area/crew_quarters/lounge)
"bad" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/sign/directions/security{
@@ -25994,9 +25244,7 @@
"baq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Monastery Maintenance"
- })
+/area/maintenance/department/chapel/monastery)
"bar" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/sign/directions/evac{
@@ -26026,14 +25274,14 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bau" = (
/obj/effect/decal/cleanable/oil,
/obj/effect/decal/cleanable/robot_debris{
icon_state = "gib3"
},
/turf/open/floor/plasteel/floorgrime,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bav" = (
/obj/structure/cable{
d1 = 1;
@@ -26048,10 +25296,10 @@
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_corner (WEST)"
},
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"baw" = (
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bax" = (
/obj/structure/cable{
d1 = 1;
@@ -26061,10 +25309,10 @@
tag = ""
},
/turf/open/floor/circuit/green,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bay" = (
/turf/open/floor/circuit/green,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"baz" = (
/obj/structure/cable{
d1 = 1;
@@ -26082,7 +25330,7 @@
pixel_y = 0
},
/turf/open/floor/circuit/green,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"baA" = (
/obj/structure/cable{
icon_state = "0-2";
@@ -26114,12 +25362,12 @@
/obj/structure/table,
/obj/item/weapon/paperplane,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"baD" = (
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"baE" = (
/obj/structure/chair{
dir = 8
@@ -26157,14 +25405,10 @@
pixel_y = 5
},
/turf/open/floor/plasteel/grimy,
-/area/construction/quarters{
- name = "Lounge"
- })
+/area/crew_quarters/lounge)
"baJ" = (
/turf/open/floor/plasteel/grimy,
-/area/construction/quarters{
- name = "Lounge"
- })
+/area/crew_quarters/lounge)
"baK" = (
/obj/structure/cable{
d1 = 1;
@@ -26178,17 +25422,13 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel/grimy,
-/area/construction/quarters{
- name = "Lounge"
- })
+/area/crew_quarters/lounge)
"baL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/plasteel/grimy,
-/area/construction/quarters{
- name = "Lounge"
- })
+/area/crew_quarters/lounge)
"baM" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green{
@@ -26201,9 +25441,7 @@
pixel_y = 25
},
/turf/open/floor/plasteel/grimy,
-/area/construction/quarters{
- name = "Lounge"
- })
+/area/crew_quarters/lounge)
"baN" = (
/obj/structure/cable{
d1 = 1;
@@ -26329,7 +25567,7 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"baX" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
@@ -26363,13 +25601,13 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bbb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bbc" = (
/obj/structure/cable{
d1 = 1;
@@ -26391,7 +25629,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bbd" = (
/obj/structure/cable{
d1 = 4;
@@ -26409,7 +25647,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bbe" = (
/obj/structure/cable{
d1 = 1;
@@ -26432,7 +25670,7 @@
dir = 4
},
/turf/open/floor/circuit,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bbf" = (
/obj/structure/cable{
d1 = 4;
@@ -26444,7 +25682,7 @@
dir = 4
},
/turf/open/floor/circuit,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bbg" = (
/obj/machinery/door/airlock/maintenance{
name = "Mech Bay Maintenance";
@@ -26460,7 +25698,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bbh" = (
/obj/structure/cable{
d1 = 1;
@@ -26477,7 +25715,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bbi" = (
/obj/machinery/door/airlock/maintenance{
name = "Mining Maintenance";
@@ -26572,7 +25810,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bbq" = (
/obj/structure/cable{
d1 = 4;
@@ -26581,7 +25819,7 @@
pixel_y = 0
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bbr" = (
/obj/structure/cable{
d1 = 4;
@@ -26591,7 +25829,7 @@
},
/obj/structure/grille/broken,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bbs" = (
/obj/structure/cable{
d1 = 2;
@@ -26599,7 +25837,7 @@
icon_state = "2-8"
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bbt" = (
/obj/effect/landmark{
name = "Observer-Start"
@@ -26622,23 +25860,17 @@
pixel_x = -32
},
/turf/open/floor/plasteel/grimy,
-/area/construction/quarters{
- name = "Lounge"
- })
+/area/crew_quarters/lounge)
"bbw" = (
/turf/open/floor/carpet,
-/area/construction/quarters{
- name = "Lounge"
- })
+/area/crew_quarters/lounge)
"bbx" = (
/obj/structure/cable{
tag = "icon-1-2";
icon_state = "1-2"
},
/turf/open/floor/carpet,
-/area/construction/quarters{
- name = "Lounge"
- })
+/area/crew_quarters/lounge)
"bby" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 24
@@ -26647,9 +25879,7 @@
amount = 50
},
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Monastery Maintenance"
- })
+/area/maintenance/department/chapel/monastery)
"bbz" = (
/obj/structure/chair/comfy/beige{
dir = 8
@@ -26659,9 +25889,7 @@
dir = 8
},
/turf/open/floor/plasteel/grimy,
-/area/construction/quarters{
- name = "Lounge"
- })
+/area/crew_quarters/lounge)
"bbA" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
@@ -26748,7 +25976,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bbI" = (
/obj/structure/cable{
d1 = 1;
@@ -26760,7 +25988,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bbJ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -26771,23 +25999,23 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bbK" = (
/obj/machinery/mech_bay_recharge_port,
/obj/structure/cable,
/turf/open/floor/plating,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bbL" = (
/obj/machinery/computer/mech_bay_power_console,
/obj/structure/cable,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bbM" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bbN" = (
/turf/closed/wall,
/area/space)
@@ -26826,9 +26054,7 @@
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/construction/quarters{
- name = "Lounge"
- })
+/area/crew_quarters/lounge)
"bbT" = (
/obj/effect/landmark/start/assistant,
/obj/structure/cable{
@@ -26837,9 +26063,7 @@
icon_state = "1-4"
},
/turf/open/floor/carpet,
-/area/construction/quarters{
- name = "Lounge"
- })
+/area/crew_quarters/lounge)
"bbU" = (
/obj/structure/chair/comfy/beige{
dir = 8
@@ -26851,9 +26075,7 @@
tag = ""
},
/turf/open/floor/plasteel/grimy,
-/area/construction/quarters{
- name = "Lounge"
- })
+/area/crew_quarters/lounge)
"bbV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
@@ -26975,7 +26197,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bci" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
@@ -26984,12 +26206,12 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bcj" = (
/obj/machinery/recharge_station,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bck" = (
/obj/structure/cable{
d1 = 1;
@@ -27000,7 +26222,7 @@
icon_state = "gib3"
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bcl" = (
/obj/structure/cable{
d1 = 4;
@@ -27010,7 +26232,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bcm" = (
/obj/structure/cable{
d1 = 4;
@@ -27031,7 +26253,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bcn" = (
/obj/structure/cable{
d1 = 4;
@@ -27047,7 +26269,7 @@
},
/mob/living/simple_animal/mouse/gray,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bco" = (
/obj/structure/cable{
d1 = 4;
@@ -27071,7 +26293,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bcp" = (
/obj/structure/cable{
d1 = 2;
@@ -27089,11 +26311,11 @@
icon_state = "small"
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bcq" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bcr" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance{
@@ -27101,14 +26323,14 @@
name = "2maintenance loot spawner"
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bcs" = (
/obj/item/weapon/cigbutt/cigarbutt,
/obj/effect/decal/cleanable/cobweb{
icon_state = "cobweb2"
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bct" = (
/obj/machinery/door/airlock/titanium{
name = "Arrivals Shuttle Airlock"
@@ -27152,9 +26374,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/construction/quarters{
- name = "Lounge"
- })
+/area/crew_quarters/lounge)
"bcw" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green{
@@ -27171,9 +26391,7 @@
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/construction/quarters{
- name = "Lounge"
- })
+/area/crew_quarters/lounge)
"bcx" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (EAST)";
@@ -27181,9 +26399,7 @@
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/construction/quarters{
- name = "Lounge"
- })
+/area/crew_quarters/lounge)
"bcy" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -27191,9 +26407,7 @@
on = 1
},
/turf/open/floor/plasteel/grimy,
-/area/construction/quarters{
- name = "Lounge"
- })
+/area/crew_quarters/lounge)
"bcz" = (
/obj/structure/table/glass,
/obj/item/device/healthanalyzer{
@@ -27220,7 +26434,7 @@
/area/hallway/primary/central)
"bcC" = (
/turf/closed/wall,
-/area/storage/emergency2)
+/area/storage/emergency/port)
"bcD" = (
/obj/machinery/door/airlock{
name = "Port Emergency Storage";
@@ -27232,7 +26446,7 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/storage/emergency2)
+/area/storage/emergency/port)
"bcE" = (
/turf/closed/wall,
/area/medical/morgue)
@@ -27255,30 +26469,30 @@
/area/security/checkpoint/medical)
"bcI" = (
/turf/closed/wall,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bcJ" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bcK" = (
/obj/structure/sign/bluecross_2,
/turf/closed/wall,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bcL" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white/side,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bcM" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white/side,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bcN" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white/side,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bcO" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-10";
@@ -27302,59 +26516,47 @@
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bcS" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white/side,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bcT" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white/side,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bcU" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white/side,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bcV" = (
/obj/structure/sign/science,
/turf/closed/wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bcW" = (
/turf/closed/wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bcX" = (
/turf/open/floor/plasteel/purple/side,
/area/hallway/primary/central)
"bcY" = (
/turf/closed/wall/r_wall,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bcZ" = (
/turf/closed/wall/r_wall,
-/area/toxins/explab)
+/area/science/explab)
"bda" = (
/turf/closed/wall/r_wall,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bdb" = (
/obj/structure/plasticflaps{
opacity = 1
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bdc" = (
/obj/structure/cable{
d1 = 4;
@@ -27371,7 +26573,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bdd" = (
/obj/structure/cable{
d1 = 4;
@@ -27387,7 +26589,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bde" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -27398,7 +26600,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bdf" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
@@ -27406,14 +26608,14 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bdg" = (
/obj/effect/spawner/lootdrop/maintenance,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bdh" = (
/obj/item/trash/sosjerky,
/obj/effect/decal/cleanable/vomit/old,
@@ -27421,13 +26623,13 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bdi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bdj" = (
/obj/structure/cable{
d1 = 1;
@@ -27438,25 +26640,19 @@
dir = 10
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bdk" = (
/obj/structure/bookcase/random/nonfiction,
/turf/open/floor/wood,
-/area/construction/quarters{
- name = "Lounge"
- })
+/area/crew_quarters/lounge)
"bdl" = (
/obj/structure/bookcase/random/fiction,
/turf/open/floor/wood,
-/area/construction/quarters{
- name = "Lounge"
- })
+/area/crew_quarters/lounge)
"bdm" = (
/obj/structure/bookcase/random/religion,
/turf/open/floor/wood,
-/area/construction/quarters{
- name = "Lounge"
- })
+/area/crew_quarters/lounge)
"bdn" = (
/turf/closed/wall,
/area/medical/genetics)
@@ -27485,7 +26681,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/storage/emergency2)
+/area/storage/emergency/port)
"bdq" = (
/obj/structure/plasticflaps{
opacity = 1
@@ -27493,7 +26689,7 @@
/turf/open/floor/plasteel/vault{
dir = 8
},
-/area/storage/emergency2)
+/area/storage/emergency/port)
"bdr" = (
/obj/machinery/door/window/eastleft{
dir = 4;
@@ -27602,7 +26798,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bdB" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular,
@@ -27612,14 +26808,14 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bdC" = (
/obj/structure/chair,
/turf/open/floor/plasteel/whiteblue/side{
dir = 1;
tag = "icon-whiteblue (NORTH)"
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bdD" = (
/obj/structure/chair,
/obj/machinery/light{
@@ -27629,25 +26825,25 @@
dir = 1;
tag = "icon-whiteblue (NORTH)"
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bdE" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bdF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bdG" = (
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bdH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bdI" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
@@ -27676,29 +26872,21 @@
"bdL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bdM" = (
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bdN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bdO" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bdP" = (
/obj/structure/table,
/obj/item/device/assembly/igniter{
@@ -27715,17 +26903,13 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bdQ" = (
/obj/machinery/modular_computer/console/preset/civilian,
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bdR" = (
/obj/structure/table,
/obj/item/weapon/electronics/apc,
@@ -27735,12 +26919,10 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bdS" = (
/turf/closed/wall/r_wall,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bdT" = (
/obj/structure/grille,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -27749,7 +26931,7 @@
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bdU" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/eastright{
@@ -27769,7 +26951,7 @@
name = "robotics lab shutters"
},
/turf/open/floor/plating,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bdV" = (
/obj/machinery/door/firedoor,
/obj/structure/cable{
@@ -27788,10 +26970,10 @@
req_one_access_txt = "0"
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bdW" = (
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"bdX" = (
/obj/machinery/camera{
c_tag = "Experimentor Lab Chamber";
@@ -27799,7 +26981,7 @@
network = list("SS13","RD")
},
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"bdY" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
@@ -27808,13 +26990,13 @@
scrub_Toxins = 0
},
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"bdZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"bea" = (
/obj/machinery/door/airlock/maintenance{
name = "Testing Lab Maintenance";
@@ -27827,7 +27009,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/toxins/explab)
+/area/science/explab)
"beb" = (
/obj/machinery/door/window/eastright{
base_state = "left";
@@ -27844,14 +27026,14 @@
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bec" = (
/obj/item/weapon/shard,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bed" = (
/turf/closed/wall/r_wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bee" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden{
tag = "icon-intact (SOUTHEAST)";
@@ -27859,7 +27041,7 @@
dir = 6
},
/turf/closed/wall/r_wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bef" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden{
tag = "icon-intact (WEST)";
@@ -27867,7 +27049,7 @@
dir = 8
},
/turf/closed/wall/r_wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"beg" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden{
tag = "icon-intact (SOUTHWEST)";
@@ -27875,15 +27057,15 @@
dir = 10
},
/turf/closed/wall/r_wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"beh" = (
/obj/item/weapon/extinguisher,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bei" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bej" = (
/obj/structure/cable{
d1 = 1;
@@ -27894,7 +27076,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bek" = (
/obj/structure/cable{
d1 = 4;
@@ -27909,7 +27091,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bel" = (
/obj/structure/cable{
d1 = 4;
@@ -27921,7 +27103,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bem" = (
/obj/structure/cable{
d1 = 2;
@@ -27937,19 +27119,19 @@
broken = 1;
icon_state = "platingdmg1"
},
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"ben" = (
/obj/machinery/portable_atmospherics/canister,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"beo" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bep" = (
/obj/item/weapon/tank/internals/air,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"beq" = (
/obj/machinery/vending/snack,
/obj/effect/turf_decal/stripes/line{
@@ -27982,9 +27164,7 @@
/area/library)
"beu" = (
/turf/closed/wall,
-/area/mining_construction{
- name = "Auxillary Closet Construction"
- })
+/area/construction/mining/aux_base/closet)
"bev" = (
/obj/item/weapon/hemostat,
/obj/item/weapon/retractor,
@@ -27994,7 +27174,7 @@
icon_state = "cobweb2"
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bew" = (
/obj/structure/cable{
d1 = 1;
@@ -28047,14 +27227,14 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/storage/emergency2)
+/area/storage/emergency/port)
"beB" = (
/obj/item/weapon/storage/box/lights/mixed,
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating,
-/area/storage/emergency2)
+/area/storage/emergency/port)
"beC" = (
/obj/item/weapon/extinguisher,
/obj/structure/cable{
@@ -28062,7 +27242,7 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/storage/emergency2)
+/area/storage/emergency/port)
"beD" = (
/obj/structure/bodycontainer/morgue,
/obj/effect/landmark/revenantspawn,
@@ -28139,7 +27319,7 @@
dir = 6
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"beM" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -28147,14 +27327,14 @@
dir = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"beN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
pixel_y = 0
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"beO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/firealarm{
@@ -28163,7 +27343,7 @@
pixel_y = 28
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"beP" = (
/obj/structure/chair,
/obj/machinery/light{
@@ -28172,7 +27352,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"beQ" = (
/obj/structure/table,
/obj/item/weapon/storage/box/bodybags{
@@ -28182,7 +27362,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"beR" = (
/obj/structure/table,
/obj/item/weapon/folder/white,
@@ -28190,7 +27370,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"beS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
@@ -28209,9 +27389,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"beW" = (
/obj/structure/table,
/obj/machinery/cell_charger,
@@ -28219,9 +27397,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"beX" = (
/obj/machinery/light{
dir = 1
@@ -28230,9 +27406,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"beY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/firealarm{
@@ -28241,58 +27415,48 @@
pixel_y = 28
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"beZ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bfa" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bfb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bfc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bfd" = (
/obj/structure/filingcabinet/chestdrawer,
/turf/open/floor/plasteel/purple/side{
dir = 8
},
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bfe" = (
/obj/structure/chair/office/light{
dir = 1
},
/obj/effect/landmark/start/roboticist,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bff" = (
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bfg" = (
/obj/machinery/camera{
c_tag = "Robotics Lab";
@@ -28308,7 +27472,7 @@
req_access_txt = "29"
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bfh" = (
/obj/machinery/requests_console{
department = "Robotics";
@@ -28318,7 +27482,7 @@
receive_ore_updates = 1
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bfi" = (
/obj/structure/disposalpipe/sortjunction{
dir = 2;
@@ -28340,7 +27504,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bfj" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -28356,7 +27520,7 @@
icon_state = "0-8"
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bfk" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -28365,31 +27529,31 @@
/turf/open/floor/plasteel/purple/side{
dir = 4
},
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bfl" = (
/obj/machinery/light{
dir = 8
},
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"bfm" = (
/obj/effect/landmark/event_spawn,
/obj/item/device/radio/beacon,
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"bfn" = (
/obj/machinery/r_n_d/experimentor,
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"bfo" = (
/obj/effect/landmark/blobstart,
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"bfp" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"bfq" = (
/obj/machinery/light{
dir = 4;
@@ -28397,7 +27561,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"bfr" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
@@ -28412,7 +27576,7 @@
d2 = 4
},
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"bfs" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -28424,7 +27588,7 @@
initialize_directions = 10
},
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"bft" = (
/obj/structure/sign/atmosplaque{
desc = "A guide to the drone shell dispenser, detailing the constructive and destructive applications of modern repair drones, as well as the development of the uncorruptable cyborg servants of tomorrow, available today.";
@@ -28434,7 +27598,7 @@
pixel_y = 32
},
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"bfu" = (
/obj/structure/cable{
d1 = 1;
@@ -28449,7 +27613,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bfv" = (
/obj/structure/cable{
d1 = 4;
@@ -28466,7 +27630,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bfw" = (
/obj/structure/cable{
d1 = 4;
@@ -28485,7 +27649,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bfx" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -28499,10 +27663,10 @@
pixel_y = 0
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bfy" = (
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bfz" = (
/obj/machinery/camera{
c_tag = "Xenobiology Test Chamber";
@@ -28515,11 +27679,11 @@
},
/obj/machinery/atmospherics/pipe/simple/general/hidden,
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bfA" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden,
/turf/closed/wall/r_wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bfB" = (
/obj/structure/cable{
d1 = 1;
@@ -28528,12 +27692,12 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bfC" = (
/obj/item/trash/candle,
/obj/item/weapon/cautery,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bfD" = (
/turf/open/floor/plating,
/area/shuttle/auxillary_base)
@@ -28563,7 +27727,7 @@
icon_state = "2-4"
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bfJ" = (
/obj/machinery/door/airlock/maintenance{
name = "Genetics Maintenance";
@@ -28636,7 +27800,7 @@
"bfO" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
-/area/storage/emergency2)
+/area/storage/emergency/port)
"bfP" = (
/obj/machinery/power/apc{
dir = 2;
@@ -28651,7 +27815,7 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/storage/emergency2)
+/area/storage/emergency/port)
"bfQ" = (
/obj/structure/cable{
d1 = 1;
@@ -28660,11 +27824,11 @@
},
/obj/item/weapon/storage/toolbox/emergency,
/turf/open/floor/plating,
-/area/storage/emergency2)
+/area/storage/emergency/port)
"bfR" = (
/obj/machinery/space_heater,
/turf/open/floor/plating,
-/area/storage/emergency2)
+/area/storage/emergency/port)
"bfS" = (
/obj/structure/bodycontainer/morgue,
/obj/effect/landmark/revenantspawn,
@@ -28744,25 +27908,23 @@
on = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bga" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bgb" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white/side{
dir = 8
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bgc" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white/side{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bgd" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
@@ -28771,25 +27933,19 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bge" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bgf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bgg" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -28797,18 +27953,14 @@
on = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bgh" = (
/obj/item/weapon/reagent_containers/food/snacks/grown/poppy,
/obj/item/weapon/reagent_containers/food/snacks/grown/poppy,
/obj/item/weapon/reagent_containers/food/snacks/grown/poppy,
/obj/structure/table/wood/fancy,
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"bgi" = (
/obj/structure/rack{
dir = 8;
@@ -28830,11 +27982,11 @@
/turf/open/floor/plasteel/purple/side{
dir = 8
},
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bgj" = (
/obj/machinery/mecha_part_fabricator,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bgk" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
@@ -28851,14 +28003,14 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bgl" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
on = 1
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bgm" = (
/obj/structure/table,
/obj/item/stack/sheet/glass{
@@ -28891,25 +28043,25 @@
/turf/open/floor/plasteel/purple/side{
dir = 4
},
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bgn" = (
/obj/machinery/atmospherics/components/unary/outlet_injector{
on = 1
},
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"bgo" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"bgp" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"bgq" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
@@ -28918,7 +28070,7 @@
dir = 8
},
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"bgr" = (
/obj/structure/disposalpipe/segment,
/obj/effect/landmark/start/scientist,
@@ -28926,26 +28078,26 @@
/turf/open/floor/engine{
name = "Holodeck Projector Floor"
},
-/area/toxins/explab)
+/area/science/explab)
"bgs" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 6
},
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"bgt" = (
/obj/machinery/atmospherics/components/unary/thermomachine/heater{
dir = 8
},
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"bgu" = (
/obj/machinery/light/small{
brightness = 3;
dir = 8
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bgv" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1;
@@ -28953,37 +28105,37 @@
id = "air_in"
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bgw" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bgx" = (
/obj/machinery/light{
dir = 1
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bgy" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bgz" = (
/turf/closed/wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bgA" = (
/obj/effect/decal/cleanable/ash,
/obj/effect/landmark/revenantspawn,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bgB" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bgC" = (
/obj/effect/spawner/lootdrop/maintenance,
/obj/machinery/atmospherics/pipe/manifold/general/hidden{
@@ -28995,7 +28147,7 @@
broken = 1;
icon_state = "platingdmg1"
},
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bgD" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
dir = 8
@@ -29004,7 +28156,7 @@
broken = 1;
icon_state = "platingdmg1"
},
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bgE" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -29042,9 +28194,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"bgI" = (
/obj/structure/rack,
/obj/item/stack/cable_coil,
@@ -29081,9 +28231,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"bgL" = (
/obj/structure/cable{
d1 = 1;
@@ -29091,7 +28239,7 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bgM" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -29116,7 +28264,7 @@
/area/medical/genetics)
"bgO" = (
/turf/closed/wall,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bgP" = (
/obj/structure/table,
/obj/item/weapon/folder/white,
@@ -29149,7 +28297,7 @@
desc = "Kingston's personal cup."
},
/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bgT" = (
/obj/structure/table/reinforced,
/obj/item/weapon/paper_bin{
@@ -29159,24 +28307,24 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bgU" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bgV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bgW" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bgX" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
@@ -29185,23 +28333,19 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bgY" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
initialize_directions = 11
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bgZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bha" = (
/obj/machinery/light,
/obj/structure/disposalpipe/segment{
@@ -29221,9 +28365,7 @@
pixel_y = -27
},
/turf/open/floor/plasteel/whitepurple/side,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bhb" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -29232,9 +28374,7 @@
dir = 10
},
/turf/open/floor/plasteel/whitepurple/side,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bhc" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -29242,9 +28382,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whitepurple/side,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bhd" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-18";
@@ -29252,9 +28390,7 @@
pixel_y = 0
},
/turf/open/floor/plasteel/whitepurple/side,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bhe" = (
/obj/machinery/r_n_d/circuit_imprinter,
/obj/machinery/light{
@@ -29263,11 +28399,11 @@
/turf/open/floor/plasteel/purple/side{
dir = 8
},
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bhf" = (
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bhg" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
@@ -29281,7 +28417,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bhh" = (
/obj/structure/table,
/obj/item/stack/sheet/plasteel{
@@ -29302,11 +28438,11 @@
/turf/open/floor/plasteel/purple/side{
dir = 4
},
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bhi" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden,
/turf/closed/wall/r_wall,
-/area/toxins/explab)
+/area/science/explab)
"bhj" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -29316,7 +28452,7 @@
name = "test chamber blast door"
},
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"bhk" = (
/obj/structure/grille,
/obj/machinery/door/poddoor/preopen{
@@ -29325,7 +28461,7 @@
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"bhl" = (
/obj/machinery/door/poddoor/preopen{
id = "telelab";
@@ -29334,36 +28470,36 @@
/obj/machinery/door/firedoor/heavy,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"bhm" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"bhn" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"bho" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/obj/item/weapon/wrench,
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"bhp" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
dir = 8
},
/turf/open/floor/engine,
-/area/toxins/explab)
+/area/science/explab)
"bhq" = (
/obj/structure/table,
/obj/machinery/reagentgrinder,
/turf/open/floor/plasteel/whitepurple/side{
dir = 9
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bhr" = (
/obj/structure/table,
/obj/item/weapon/storage/box/beakers{
@@ -29380,7 +28516,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bhs" = (
/obj/structure/table,
/obj/item/stack/sheet/mineral/plasma{
@@ -29398,7 +28534,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bht" = (
/obj/structure/table,
/obj/item/weapon/pen,
@@ -29413,16 +28549,16 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 5
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bhu" = (
/obj/effect/landmark/revenantspawn,
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bhv" = (
/obj/item/weapon/weldingtool,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bhw" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
@@ -29430,13 +28566,13 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bhx" = (
/obj/machinery/atmospherics/pipe/manifold/general/hidden,
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bhy" = (
/obj/machinery/atmospherics/components/unary/thermomachine/heater{
dir = 8
@@ -29444,7 +28580,7 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bhz" = (
/turf/open/floor/plasteel/arrival,
/area/hallway/secondary/entry)
@@ -29468,9 +28604,7 @@
/obj/item/clothing/under/burial,
/obj/item/clothing/under/burial,
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"bhD" = (
/obj/machinery/door/airlock/engineering{
cyclelinkeddir = 1;
@@ -29479,18 +28613,14 @@
req_one_access_txt = "31;32;47;48"
},
/turf/open/floor/plating,
-/area/mining_construction{
- name = "Auxillary Closet Construction"
- })
+/area/construction/mining/aux_base/closet)
"bhE" = (
/obj/machinery/power/smes{
charge = 5e+006
},
/obj/structure/cable,
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Monastery Maintenance"
- })
+/area/maintenance/department/chapel/monastery)
"bhF" = (
/obj/item/weapon/pickaxe/mini,
/turf/open/floor/plating,
@@ -29592,7 +28722,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 9
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bhO" = (
/obj/machinery/light{
dir = 1
@@ -29610,14 +28740,14 @@
dir = 1;
tag = "icon-whiteblue (NORTH)"
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bhP" = (
/obj/machinery/vending/medical,
/turf/open/floor/plasteel/whiteblue/side{
tag = "icon-whiteblue (NORTHEAST)";
dir = 5
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bhQ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
@@ -29631,7 +28761,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 9
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bhS" = (
/obj/structure/cable{
d1 = 1;
@@ -29645,7 +28775,7 @@
dir = 1;
tag = "icon-whiteblue (NORTH)"
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bhT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
@@ -29654,7 +28784,7 @@
tag = "icon-whiteblue (NORTHEAST)";
dir = 5
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bhU" = (
/obj/machinery/requests_console{
announcementConsole = 0;
@@ -29677,7 +28807,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bhV" = (
/obj/structure/chair/office/light{
dir = 4
@@ -29687,7 +28817,7 @@
tag = "icon-whiteblue (NORTHEAST)";
dir = 5
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bhW" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder/white,
@@ -29695,16 +28825,16 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 8
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bhX" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bhY" = (
/obj/structure/bed/roller,
/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bhZ" = (
/obj/structure/bed/roller,
/obj/machinery/camera{
@@ -29712,28 +28842,24 @@
dir = 1
},
/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bia" = (
/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bib" = (
/obj/structure/table/glass,
/obj/item/stack/medical/gauze,
/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,
/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bic" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel/whitepurple/side,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bid" = (
/obj/structure/closet/firecloset/full,
/turf/open/floor/plasteel/whitepurple/side,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bie" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
@@ -29743,15 +28869,11 @@
},
/obj/item/weapon/pen,
/turf/open/floor/plasteel/whitepurple/side,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bif" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"big" = (
/obj/machinery/door/airlock/research{
cyclelinkeddir = 2;
@@ -29761,20 +28883,18 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bih" = (
/obj/machinery/computer/rdconsole/robotics,
/turf/open/floor/plasteel/purple/side{
dir = 8
},
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bii" = (
/obj/effect/landmark/start/roboticist,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bij" = (
/obj/structure/table,
/obj/machinery/cell_charger,
@@ -29790,10 +28910,10 @@
/turf/open/floor/plasteel/purple/side{
dir = 4
},
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bik" = (
/turf/closed/wall,
-/area/toxins/explab)
+/area/science/explab)
"bil" = (
/obj/structure/rack,
/obj/item/clothing/mask/gas{
@@ -29810,7 +28930,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bim" = (
/obj/machinery/button/door{
id = "testlab";
@@ -29830,14 +28950,14 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bin" = (
/obj/machinery/computer/rdconsole/experiment,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bio" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder,
@@ -29846,7 +28966,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bip" = (
/obj/item/weapon/paper_bin{
pixel_x = 0;
@@ -29859,14 +28979,14 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"biq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bir" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -29885,7 +29005,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bis" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -29894,7 +29014,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bit" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -29904,13 +29024,13 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"biu" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"biv" = (
/obj/structure/rack,
/obj/item/stack/packageWrap,
@@ -29920,29 +29040,29 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"biw" = (
/obj/machinery/monkey_recycler,
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bix" = (
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"biy" = (
/obj/structure/chair/comfy/beige{
dir = 4
},
/obj/effect/landmark/start/scientist,
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"biz" = (
/obj/machinery/computer/camera_advanced/xenobio,
/turf/open/floor/plasteel/whitepurple/side{
dir = 4
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"biA" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
@@ -29950,20 +29070,20 @@
name = "HIGH VOLTAGE"
},
/turf/closed/wall/r_wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"biB" = (
/obj/structure/disposaloutlet{
dir = 1
},
/obj/structure/disposalpipe/trunk,
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"biC" = (
/obj/machinery/space_heater,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"biD" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden{
tag = "icon-intact (SOUTHEAST)";
@@ -29971,9 +29091,7 @@
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Monastery Maintenance"
- })
+/area/maintenance/department/chapel/monastery)
"biE" = (
/obj/machinery/atmospherics/pipe/manifold/general/hidden{
tag = "icon-manifold (NORTH)";
@@ -29982,9 +29100,7 @@
},
/obj/machinery/meter,
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Monastery Maintenance"
- })
+/area/maintenance/department/chapel/monastery)
"biF" = (
/obj/machinery/atmospherics/pipe/manifold/general/hidden{
tag = "icon-manifold (EAST)";
@@ -29992,15 +29108,11 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Monastery Maintenance"
- })
+/area/maintenance/department/chapel/monastery)
"biG" = (
/obj/item/weapon/extinguisher,
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Monastery Maintenance"
- })
+/area/maintenance/department/chapel/monastery)
"biH" = (
/obj/item/weapon/storage/bag/ore,
/turf/open/floor/plating,
@@ -30023,7 +29135,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"biL" = (
/obj/machinery/clonepod,
/turf/open/floor/plasteel/blue,
@@ -30066,7 +29178,7 @@
tag = "icon-whiteblue (WEST)";
dir = 8
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"biR" = (
/obj/structure/cable{
d1 = 2;
@@ -30077,7 +29189,7 @@
dir = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"biS" = (
/obj/structure/cable{
d1 = 4;
@@ -30092,7 +29204,7 @@
tag = "icon-whiteblue (EAST)";
dir = 4
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"biT" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/centcom{
@@ -30206,7 +29318,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 8
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bjb" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -30217,14 +29329,14 @@
on = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bjc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whiteblue/side{
tag = "icon-whiteblue (EAST)";
dir = 4
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bjd" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
@@ -30232,7 +29344,7 @@
req_access_txt = "5"
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bje" = (
/obj/structure/chair/office/light{
dir = 4
@@ -30241,7 +29353,7 @@
tag = "icon-whiteblue (EAST)";
dir = 4
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bjf" = (
/obj/structure/table/reinforced,
/obj/machinery/button/door{
@@ -30256,18 +29368,18 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 8
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bjg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bjh" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bji" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -30310,7 +29422,7 @@
name = "research shutters"
},
/turf/open/floor/plating,
-/area/toxins/explab)
+/area/science/explab)
"bjn" = (
/obj/structure/table/reinforced,
/obj/item/weapon/pen{
@@ -30328,7 +29440,7 @@
},
/obj/item/weapon/folder/white,
/turf/open/floor/plating,
-/area/toxins/explab)
+/area/science/explab)
"bjo" = (
/obj/structure/sink{
dir = 8;
@@ -30343,18 +29455,14 @@
dir = 8
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bjp" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bjq" = (
/obj/structure/closet/emcloset,
/obj/machinery/camera{
@@ -30373,9 +29481,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bjr" = (
/obj/structure/table,
/obj/item/weapon/book/manual/robotics_cyborgs{
@@ -30392,7 +29498,7 @@
/turf/open/floor/plasteel/purple/side{
dir = 8
},
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bjs" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -30404,7 +29510,7 @@
icon_state = "2-4"
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bjt" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -30416,7 +29522,7 @@
pixel_x = 0
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bju" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -30426,7 +29532,7 @@
icon_state = "1-8"
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bjv" = (
/obj/structure/sink{
dir = 4;
@@ -30438,7 +29544,7 @@
/turf/open/floor/plasteel/purple/side{
dir = 4
},
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bjw" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1
@@ -30447,13 +29553,13 @@
pixel_x = -24
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bjx" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bjy" = (
/obj/structure/chair/stool,
/obj/effect/landmark/start/scientist,
@@ -30461,34 +29567,34 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bjz" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bjA" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
on = 1
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bjB" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
initialize_directions = 11
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bjC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bjD" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
@@ -30497,7 +29603,7 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bjE" = (
/obj/structure/table,
/obj/item/stack/sheet/glass{
@@ -30511,7 +29617,7 @@
/obj/item/device/assembly/timer,
/obj/item/device/assembly/timer,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bjF" = (
/obj/machinery/processor{
desc = "A machine used to process slimes and retrieve their extract.";
@@ -30526,19 +29632,19 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjG" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjH" = (
/obj/machinery/smartfridge/extract/preloaded,
/turf/open/floor/plasteel/whitepurple/side{
dir = 4
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjI" = (
/obj/structure/cable{
icon_state = "0-4";
@@ -30546,7 +29652,7 @@
},
/obj/machinery/shieldwallgen/xenobiologyaccess,
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjJ" = (
/obj/structure/grille,
/obj/structure/cable{
@@ -30563,7 +29669,7 @@
name = "test chamber blast door"
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjK" = (
/obj/structure/grille,
/obj/structure/cable{
@@ -30580,7 +29686,7 @@
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjL" = (
/obj/machinery/door/window/southleft{
dir = 1;
@@ -30598,7 +29704,7 @@
name = "test chamber blast door"
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjM" = (
/obj/structure/grille,
/obj/structure/disposalpipe/segment,
@@ -30616,7 +29722,7 @@
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjN" = (
/obj/structure/grille,
/obj/structure/cable{
@@ -30633,7 +29739,7 @@
d2 = 4
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjO" = (
/obj/structure/cable{
icon_state = "0-2";
@@ -30646,11 +29752,11 @@
},
/obj/machinery/shieldwallgen/xenobiologyaccess,
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjP" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden,
/turf/closed/wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjQ" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio5";
@@ -30664,7 +29770,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjR" = (
/obj/machinery/door/window/northleft{
base_state = "right";
@@ -30684,7 +29790,7 @@
pixel_y = 0
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjS" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio5";
@@ -30702,7 +29808,7 @@
icon_state = "0-8"
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjT" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio6";
@@ -30716,7 +29822,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjU" = (
/obj/machinery/door/window/northleft{
base_state = "right";
@@ -30736,7 +29842,7 @@
pixel_y = 0
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjV" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio6";
@@ -30754,7 +29860,7 @@
icon_state = "0-8"
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bjW" = (
/obj/structure/cable{
d1 = 1;
@@ -30767,7 +29873,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bjX" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -30776,7 +29882,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bjY" = (
/obj/structure/shuttle/engine/propulsion{
dir = 8;
@@ -30918,7 +30024,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bkm" = (
/obj/structure/cable{
d1 = 4;
@@ -30944,7 +30050,7 @@
pressure_checks = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bkn" = (
/obj/machinery/power/apc{
dir = 4;
@@ -30959,7 +30065,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bko" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -30974,14 +30080,14 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bkp" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
tag = "icon-manifold-b-f (NORTH)";
dir = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bkq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
@@ -30993,17 +30099,17 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bkr" = (
/obj/machinery/computer/med_data,
/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bks" = (
/obj/machinery/computer/crew,
/turf/open/floor/plasteel/whiteblue/side{
dir = 6
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bkt" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_medical{
@@ -31015,7 +30121,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bku" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_medical{
@@ -31026,7 +30132,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bkv" = (
/obj/machinery/chem_master{
layer = 2.7;
@@ -31088,7 +30194,7 @@
/turf/open/floor/plasteel/purple/side{
dir = 1
},
-/area/toxins/explab)
+/area/science/explab)
"bkA" = (
/obj/structure/sink/kitchen{
desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
@@ -31098,7 +30204,7 @@
/turf/open/floor/plasteel/purple/side{
dir = 1
},
-/area/toxins/explab)
+/area/science/explab)
"bkB" = (
/obj/machinery/disposal/bin,
/obj/machinery/light{
@@ -31110,7 +30216,7 @@
/turf/open/floor/plasteel/purple/side{
dir = 1
},
-/area/toxins/explab)
+/area/science/explab)
"bkC" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -31122,7 +30228,7 @@
/turf/open/floor/plasteel/purple/side{
dir = 1
},
-/area/toxins/explab)
+/area/science/explab)
"bkD" = (
/obj/structure/chair/office/light{
dir = 1
@@ -31130,14 +30236,14 @@
/turf/open/floor/plasteel/purple/side{
dir = 1
},
-/area/toxins/explab)
+/area/science/explab)
"bkE" = (
/obj/item/weapon/storage/toolbox/mechanical,
/obj/machinery/holopad,
/turf/open/floor/plasteel/purple/side{
dir = 1
},
-/area/toxins/explab)
+/area/science/explab)
"bkF" = (
/obj/machinery/shower{
dir = 4;
@@ -31154,9 +30260,7 @@
/turf/open/floor/plasteel/white{
heat_capacity = 1e+006
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bkG" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -31165,9 +30269,7 @@
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bkH" = (
/obj/structure/closet/firecloset/full,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
@@ -31180,9 +30282,7 @@
dir = 6
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bkI" = (
/obj/structure/closet/wardrobe/robotics_black,
/obj/item/device/radio/headset/headset_sci{
@@ -31191,7 +30291,7 @@
/turf/open/floor/plasteel/purple/side{
dir = 8
},
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bkJ" = (
/obj/structure/cable{
d1 = 1;
@@ -31203,7 +30303,7 @@
on = 1
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bkK" = (
/obj/item/device/assembly/prox_sensor{
pixel_x = -8;
@@ -31229,7 +30329,7 @@
/obj/item/weapon/crowbar,
/obj/structure/table,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bkL" = (
/obj/item/weapon/circular_saw,
/obj/item/weapon/scalpel{
@@ -31251,20 +30351,20 @@
dir = 9
},
/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bkM" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bkN" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bkO" = (
/obj/item/clothing/gloves/color/latex,
/obj/item/weapon/surgical_drapes,
@@ -31277,7 +30377,7 @@
dir = 1
},
/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bkP" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1;
@@ -31287,42 +30387,42 @@
pixel_x = -25
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bkQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bkR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bkS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/obj/machinery/holopad,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bkT" = (
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bkU" = (
/obj/machinery/droneDispenser,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bkV" = (
/obj/structure/chair/stool,
/obj/effect/decal/cleanable/oil{
icon_state = "floor5"
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bkW" = (
/obj/structure/chair/stool,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bkX" = (
/obj/structure/table,
/obj/item/weapon/storage/box/beakers{
@@ -31336,7 +30436,7 @@
pixel_x = 28
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bkY" = (
/obj/structure/table/glass,
/obj/item/weapon/folder,
@@ -31344,17 +30444,17 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bkZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bla" = (
/obj/structure/chair/comfy/beige{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"blb" = (
/obj/machinery/computer/camera_advanced/xenobio,
/obj/machinery/camera{
@@ -31365,18 +30465,18 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 4
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"blc" = (
/obj/structure/sign/biohazard,
/turf/closed/wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bld" = (
/obj/item/weapon/wrench,
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"ble" = (
/obj/machinery/computer/security/telescreen{
name = "Test Chamber Moniter";
@@ -31389,7 +30489,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"blf" = (
/obj/machinery/button/door{
id = "misclab";
@@ -31406,7 +30506,7 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"blg" = (
/obj/machinery/door/window/southleft{
name = "Test Chamber";
@@ -31416,7 +30516,7 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"blh" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -31429,14 +30529,14 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bli" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"blj" = (
/obj/structure/cable{
d1 = 1;
@@ -31450,14 +30550,14 @@
dir = 2
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"blk" = (
/obj/structure/sign/xenobio,
/obj/machinery/atmospherics/pipe/simple/general/hidden{
dir = 9
},
/turf/closed/wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bll" = (
/obj/machinery/disposal/bin,
/obj/structure/window/reinforced{
@@ -31473,7 +30573,7 @@
/turf/open/floor/plasteel{
tag = "icon-warning (NORTHEAST)"
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"blm" = (
/obj/machinery/door/window/northleft{
base_state = "right";
@@ -31488,7 +30588,7 @@
/turf/open/floor/plasteel{
tag = "icon-warning (NORTH)"
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bln" = (
/obj/structure/table/reinforced,
/obj/machinery/button/door{
@@ -31511,7 +30611,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"blo" = (
/obj/machinery/door/window/northleft{
base_state = "right";
@@ -31526,7 +30626,7 @@
/turf/open/floor/plasteel{
tag = "icon-warning (NORTH)"
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"blp" = (
/obj/structure/table/reinforced,
/obj/machinery/button/door{
@@ -31549,7 +30649,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"blq" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "0";
@@ -31563,14 +30663,14 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"blr" = (
/obj/structure/chair{
dir = 4
},
/obj/item/weapon/cigbutt,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bls" = (
/obj/structure/shuttle/engine/heater{
icon_state = "heater";
@@ -31677,7 +30777,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"blF" = (
/obj/structure/cable{
d1 = 1;
@@ -31686,7 +30786,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"blG" = (
/obj/machinery/shower{
dir = 8
@@ -31694,7 +30794,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"blH" = (
/turf/closed/wall,
/area/medical/sleeper)
@@ -31751,7 +30851,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"blO" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 24
@@ -31759,7 +30859,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"blP" = (
/obj/machinery/button/door{
desc = "A remote control switch for the medbay foyer.";
@@ -31773,7 +30873,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"blQ" = (
/obj/machinery/chem_dispenser{
layer = 2.7
@@ -31846,17 +30946,17 @@
},
/obj/item/weapon/disk/design_disk,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"blY" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"blZ" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bma" = (
/obj/machinery/power/apc{
dir = 4;
@@ -31870,7 +30970,7 @@
d2 = 2
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bmb" = (
/obj/machinery/door/firedoor/heavy,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -31880,9 +30980,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bmc" = (
/obj/machinery/door/firedoor/heavy,
/obj/structure/disposalpipe/segment,
@@ -31893,9 +30991,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bmd" = (
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/poddoor/preopen{
@@ -31904,9 +31000,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bme" = (
/obj/structure/cable{
d1 = 1;
@@ -31916,7 +31010,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bmf" = (
/obj/item/weapon/storage/firstaid/regular{
empty = 1;
@@ -31937,7 +31031,7 @@
/obj/item/stack/cable_coil,
/obj/structure/table,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bmg" = (
/obj/item/weapon/retractor,
/obj/item/weapon/hemostat,
@@ -31950,7 +31044,7 @@
dir = 8
},
/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bmh" = (
/obj/structure/table/optable{
name = "Robotics Operating Table"
@@ -31961,35 +31055,35 @@
network = list("SS13","RD")
},
/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bmi" = (
/obj/machinery/computer/operating{
name = "Robotics Operating Computer"
},
/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bmj" = (
/obj/item/device/mmi,
/obj/item/device/mmi,
/obj/item/device/mmi,
/obj/structure/table,
/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bmk" = (
/obj/structure/rack,
/obj/item/weapon/crowbar,
/obj/item/weapon/wrench,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bml" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bmm" = (
/obj/structure/closet/emcloset,
/obj/machinery/light,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bmn" = (
/obj/structure/closet/radiation,
/obj/item/device/radio/intercom{
@@ -31999,11 +31093,11 @@
pixel_y = -28
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bmo" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bmp" = (
/obj/structure/reagent_dispensers/watertank,
/obj/machinery/camera{
@@ -32017,13 +31111,13 @@
pixel_y = -22
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bmq" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
/obj/item/clothing/ears/earmuffs,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bmr" = (
/obj/structure/table,
/obj/item/device/electropack,
@@ -32032,7 +31126,7 @@
/obj/machinery/light,
/obj/item/device/assembly/voice,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bms" = (
/obj/structure/table,
/obj/machinery/cell_charger{
@@ -32042,14 +31136,14 @@
/obj/item/device/multitool,
/obj/item/weapon/screwdriver,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bmt" = (
/obj/structure/table,
/obj/item/weapon/hand_labeler,
/obj/item/clothing/glasses/science,
/obj/item/clothing/glasses/science,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bmu" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
@@ -32060,19 +31154,19 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bmv" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bmw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bmx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -32080,7 +31174,7 @@
/turf/open/floor/plasteel/whitepurple/corner{
dir = 4
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bmy" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -32089,7 +31183,7 @@
/turf/open/floor/plasteel/whitegreen/side{
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bmz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -32097,7 +31191,7 @@
/turf/open/floor/plasteel/whitegreen/side{
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bmA" = (
/obj/structure/cable{
d1 = 1;
@@ -32111,7 +31205,7 @@
/turf/open/floor/plasteel/whitegreen/side{
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bmB" = (
/obj/machinery/light{
dir = 1
@@ -32122,7 +31216,7 @@
/turf/open/floor/plasteel/whitegreen/side{
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bmC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -32130,7 +31224,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bmD" = (
/obj/structure/cable{
d1 = 1;
@@ -32143,7 +31237,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bmE" = (
/obj/machinery/camera{
c_tag = "Xenobiology Starboard Fore";
@@ -32160,7 +31254,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bmF" = (
/obj/structure/cable{
d1 = 1;
@@ -32173,7 +31267,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bmG" = (
/obj/structure/chair{
dir = 4
@@ -32188,7 +31282,7 @@
},
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plasteel/floorgrime,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bmH" = (
/obj/structure/cable{
d1 = 1;
@@ -32201,27 +31295,27 @@
initialize_directions = 11
},
/turf/open/floor/plasteel/floorgrime,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bmI" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/sign/biohazard,
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bmJ" = (
/turf/open/floor/plating/airless,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bmK" = (
/obj/effect/decal/remains/xeno,
/turf/open/floor/plating/airless,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bmL" = (
/obj/structure/chair{
dir = 4
},
/obj/item/weapon/reagent_containers/food/drinks/soda_cans/dr_gibb,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bmM" = (
/obj/structure/shuttle/engine/heater{
icon_state = "heater";
@@ -32304,7 +31398,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bmS" = (
/obj/structure/cable{
d1 = 4;
@@ -32312,7 +31406,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bmT" = (
/obj/structure/cable{
d1 = 4;
@@ -32326,7 +31420,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bmU" = (
/obj/structure/cable{
d1 = 2;
@@ -32344,7 +31438,7 @@
dir = 10
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bmV" = (
/obj/structure/cable{
d1 = 1;
@@ -32352,7 +31446,7 @@
icon_state = "1-8"
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bmW" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-21"
@@ -32407,10 +31501,10 @@
"bnb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bnc" = (
/turf/open/floor/plasteel/white,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bnd" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white,
@@ -32462,20 +31556,20 @@
dir = 5
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bnk" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bnl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bnm" = (
/obj/machinery/light{
dir = 4
@@ -32483,7 +31577,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bnn" = (
/obj/machinery/chem_heater,
/obj/machinery/light{
@@ -32553,23 +31647,23 @@
/obj/item/weapon/storage/box/beakers,
/obj/item/clothing/glasses/welding,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bnt" = (
/obj/machinery/r_n_d/destructive_analyzer,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bnu" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bnv" = (
/obj/machinery/r_n_d/protolathe,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bnw" = (
/obj/structure/cable{
d1 = 1;
@@ -32586,13 +31680,11 @@
pixel_x = 28
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bnx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bny" = (
/obj/machinery/door/airlock/research{
cyclelinkeddir = 1;
@@ -32605,19 +31697,15 @@
dir = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bnz" = (
/turf/closed/wall/r_wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bnA" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bnB" = (
/obj/structure/cable{
d1 = 1;
@@ -32632,15 +31720,15 @@
req_access_txt = "29"
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bnC" = (
/turf/closed/wall,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bnD" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/toxins/explab)
+/area/science/explab)
"bnE" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_research{
@@ -32649,13 +31737,13 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bnF" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/toxins/explab)
+/area/science/explab)
"bnG" = (
/obj/item/device/radio/intercom{
dir = 0;
@@ -32664,7 +31752,7 @@
pixel_y = -28
},
/turf/closed/wall,
-/area/toxins/explab)
+/area/science/explab)
"bnH" = (
/obj/machinery/light{
dir = 8
@@ -32676,14 +31764,14 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bnI" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bnJ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -32695,20 +31783,20 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bnK" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bnL" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bnM" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -32720,7 +31808,7 @@
tag = ""
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bnN" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -32737,7 +31825,7 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bnO" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -32751,7 +31839,7 @@
dir = 10
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bnP" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -32762,7 +31850,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bnQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -32784,7 +31872,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bnR" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -32807,7 +31895,7 @@
tag = "90Curve"
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bnS" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -32822,7 +31910,7 @@
on = 1
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bnT" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -32848,7 +31936,7 @@
dir = 5
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bnU" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -32867,7 +31955,7 @@
req_access_txt = "55"
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bnV" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -32882,7 +31970,7 @@
},
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/floorgrime,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bnW" = (
/obj/structure/cable{
d1 = 1;
@@ -32902,7 +31990,7 @@
},
/obj/effect/landmark/blobstart,
/turf/open/floor/plasteel/floorgrime,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bnX" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_research{
@@ -32910,7 +31998,7 @@
req_access_txt = "55"
},
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bnY" = (
/obj/machinery/light/small{
dir = 4
@@ -32921,7 +32009,7 @@
network = list("SS13","RD")
},
/turf/open/floor/plating/airless,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bnZ" = (
/obj/structure/closet/crate,
/turf/open/floor/mineral/titanium/blue,
@@ -32937,16 +32025,16 @@
/area/hallway/secondary/entry)
"boc" = (
/turf/closed/wall,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bod" = (
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"boe" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bof" = (
/obj/structure/cable{
d1 = 1;
@@ -32957,15 +32045,15 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bog" = (
/obj/machinery/portable_atmospherics/canister/air,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"boh" = (
/obj/structure/girder,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"boi" = (
/turf/closed/wall/r_wall,
/area/medical/genetics)
@@ -32997,7 +32085,7 @@
network = list("SS13")
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bom" = (
/obj/structure/cable{
d1 = 1;
@@ -33009,13 +32097,13 @@
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bon" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"boo" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
@@ -33041,28 +32129,28 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bos" = (
/obj/structure/disposalpipe/junction{
dir = 8;
icon_state = "pipe-j2"
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bot" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bou" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bov" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -33073,7 +32161,7 @@
initialize_directions = 11
},
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bow" = (
/obj/machinery/door/airlock/glass_medical{
id_tag = null;
@@ -33140,19 +32228,19 @@
req_access_txt = "7; 29"
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"boC" = (
/obj/machinery/computer/rdconsole/core,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"boD" = (
/obj/structure/disposalpipe/segment,
/obj/effect/landmark/start/scientist,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"boE" = (
/obj/machinery/r_n_d/circuit_imprinter{
pixel_y = 4
@@ -33160,7 +32248,7 @@
/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"boF" = (
/obj/structure/cable{
d1 = 1;
@@ -33168,15 +32256,13 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"boG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white/side{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"boH" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -33186,9 +32272,7 @@
dir = 8
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"boI" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -33198,9 +32282,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"boJ" = (
/obj/machinery/power/apc{
cell_type = 10000;
@@ -33218,17 +32300,13 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"boK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white/side,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"boL" = (
/obj/structure/cable{
d1 = 1;
@@ -33243,9 +32321,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"boM" = (
/obj/machinery/light{
dir = 1
@@ -33254,9 +32330,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"boN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -33265,9 +32339,7 @@
pixel_y = 22
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"boO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -33277,35 +32349,27 @@
pixel_y = 24
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"boP" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
tag = "icon-manifold-b-f (NORTH)";
dir = 1
},
/turf/open/floor/plasteel/white/side,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"boQ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"boR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white/side,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"boS" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-18";
@@ -33315,9 +32379,7 @@
/turf/open/floor/plasteel/white/side{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"boT" = (
/obj/structure/closet/firecloset,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -33329,7 +32391,7 @@
dir = 9
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"boU" = (
/obj/structure/closet/l3closet,
/obj/machinery/camera{
@@ -33341,7 +32403,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"boV" = (
/obj/structure/closet/l3closet,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -33351,13 +32413,13 @@
dir = 5
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"boW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"boX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -33365,39 +32427,39 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"boY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
pixel_y = 0
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"boZ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bpa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/whitepurple/corner,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bpb" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/whitepurple/side,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bpc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/whitepurple/side,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bpd" = (
/obj/structure/cable{
d1 = 1;
@@ -33408,7 +32470,7 @@
dir = 4
},
/turf/open/floor/plasteel/whitepurple/side,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bpe" = (
/obj/machinery/light,
/obj/machinery/camera{
@@ -33421,11 +32483,11 @@
initialize_directions = 11
},
/turf/open/floor/plasteel/whitepurple/side,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bpf" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/whitepurple/side,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bpg" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -33437,13 +32499,13 @@
network = list("SS13","RD")
},
/turf/open/floor/plasteel/whitepurple/side,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bph" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bpi" = (
/obj/structure/cable{
icon_state = "0-4";
@@ -33466,7 +32528,7 @@
dir = 8
},
/turf/open/floor/plasteel/floorgrime,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bpj" = (
/obj/structure/cable{
d1 = 1;
@@ -33480,7 +32542,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/floorgrime,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bpk" = (
/obj/effect/spawner/lootdrop/maintenance,
/obj/structure/disposalpipe/segment{
@@ -33488,13 +32550,13 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bpl" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/closed/wall,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bpm" = (
/obj/structure/disposaloutlet{
dir = 4
@@ -33509,13 +32571,13 @@
burnt = 1;
icon_state = "panelscorched"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bpo" = (
/turf/open/floor/plating{
broken = 1;
icon_state = "platingdmg1"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bpp" = (
/obj/structure/table,
/obj/item/weapon/folder/white,
@@ -33589,7 +32651,7 @@
initialize_directions = 11
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bpw" = (
/obj/structure/cable{
d1 = 1;
@@ -33605,7 +32667,7 @@
icon_state = "1-4"
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bpx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -33617,7 +32679,7 @@
pixel_x = 0
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bpy" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -33660,34 +32722,34 @@
initialize_directions = 11
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bpD" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bpE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bpF" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bpG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bpH" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
@@ -33779,7 +32841,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/toxins/explab)
+/area/science/explab)
"bpP" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -33796,7 +32858,7 @@
tag = ""
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bpQ" = (
/obj/structure/cable{
d1 = 4;
@@ -33812,7 +32874,7 @@
/turf/open/floor/plasteel{
tag = "icon-warning (NORTH)"
},
-/area/toxins/explab)
+/area/science/explab)
"bpR" = (
/obj/structure/cable{
d1 = 4;
@@ -33833,7 +32895,7 @@
/turf/open/floor/plasteel{
tag = "icon-warning (NORTH)"
},
-/area/toxins/explab)
+/area/science/explab)
"bpS" = (
/obj/structure/cable{
d1 = 4;
@@ -33852,7 +32914,7 @@
/turf/open/floor/plasteel{
tag = "icon-warning (NORTH)"
},
-/area/toxins/explab)
+/area/science/explab)
"bpT" = (
/obj/structure/cable{
d1 = 1;
@@ -33872,7 +32934,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bpU" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_research{
@@ -33892,7 +32954,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"bpV" = (
/obj/structure/cable{
d1 = 4;
@@ -33908,9 +32970,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bpW" = (
/obj/structure/cable{
d1 = 4;
@@ -33932,9 +32992,7 @@
on = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bpX" = (
/obj/structure/cable{
d1 = 4;
@@ -33946,9 +33004,7 @@
icon_state = "pipe-j1"
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bpY" = (
/obj/structure/cable{
d1 = 4;
@@ -33965,9 +33021,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bpZ" = (
/obj/structure/cable{
d1 = 4;
@@ -33978,9 +33032,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bqa" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -33997,9 +33049,7 @@
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bqb" = (
/obj/structure/window/reinforced{
dir = 8
@@ -34009,9 +33059,7 @@
on = 1
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"bqc" = (
/obj/structure/window/reinforced{
dir = 4;
@@ -34022,17 +33070,13 @@
on = 1
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"bqd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bqe" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -34040,9 +33084,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bqf" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
@@ -34068,7 +33110,7 @@
/turf/open/floor/plasteel/whitepurple{
dir = 4
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bqg" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1;
@@ -34078,13 +33120,13 @@
dir = 8
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bqh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bqi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -34094,7 +33136,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bqj" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
@@ -34118,7 +33160,7 @@
dir = 4
},
/turf/open/floor/plasteel/whitepurple,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bqk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -34134,13 +33176,13 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bql" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bqm" = (
/obj/structure/sink{
dir = 4;
@@ -34151,7 +33193,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 4
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bqn" = (
/obj/machinery/disposal/bin,
/obj/structure/window/reinforced{
@@ -34165,7 +33207,7 @@
/turf/open/floor/plasteel{
tag = "icon-warning (NORTHEAST)"
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bqo" = (
/obj/machinery/door/window/northleft{
base_state = "right";
@@ -34180,7 +33222,7 @@
/turf/open/floor/plasteel{
tag = "icon-warning (NORTH)"
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bqp" = (
/obj/structure/table/reinforced,
/obj/machinery/button/door{
@@ -34203,11 +33245,11 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bqq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bqr" = (
/obj/machinery/door/window/northleft{
base_state = "right";
@@ -34222,7 +33264,7 @@
/turf/open/floor/plasteel{
tag = "icon-warning (NORTH)"
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bqs" = (
/obj/structure/table/reinforced,
/obj/machinery/button/door{
@@ -34245,7 +33287,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bqt" = (
/obj/machinery/door/window/northleft{
base_state = "right";
@@ -34260,7 +33302,7 @@
/turf/open/floor/plasteel{
tag = "icon-warning (NORTH)"
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bqu" = (
/obj/structure/table/reinforced,
/obj/machinery/button/door{
@@ -34283,7 +33325,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bqv" = (
/obj/machinery/door/window/northleft{
base_state = "right";
@@ -34298,7 +33340,7 @@
/turf/open/floor/plasteel{
tag = "icon-warning (NORTH)"
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bqw" = (
/obj/structure/table/reinforced,
/obj/machinery/button/door{
@@ -34321,7 +33363,7 @@
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bqx" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "0";
@@ -34334,17 +33376,17 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bqy" = (
/obj/structure/girder,
/turf/open/floor/plating/airless,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bqz" = (
/obj/structure/table,
/obj/effect/spawner/lootdrop/maintenance,
/obj/item/clothing/shoes/winterboots,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bqA" = (
/obj/structure/flora/ausbushes/palebush,
/turf/open/floor/grass,
@@ -34429,7 +33471,7 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bqJ" = (
/obj/structure/cable{
d1 = 1;
@@ -34443,13 +33485,13 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bqK" = (
/obj/structure/chair{
dir = 8
},
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bqL" = (
/obj/structure/table/glass,
/obj/item/stack/medical/gauze,
@@ -34468,9 +33510,7 @@
"bqM" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Monastery Maintenance"
- })
+/area/maintenance/department/chapel/monastery)
"bqN" = (
/obj/machinery/camera{
c_tag = "Medbay Sleepers";
@@ -34498,30 +33538,26 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bqR" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bqS" = (
/obj/machinery/light{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bqT" = (
/turf/closed/wall,
-/area/medical/cmo{
- name = "Chief Medical Office"
- })
+/area/crew_quarters/heads/cmo)
"bqU" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
-/area/medical/cmo{
- name = "Chief Medical Office"
- })
+/area/crew_quarters/heads/cmo)
"bqV" = (
/obj/structure/closet/secure_closet/chemical,
/obj/machinery/power/apc{
@@ -34635,7 +33671,7 @@
name = "research shutters"
},
/turf/open/floor/plating,
-/area/toxins/explab)
+/area/science/explab)
"bre" = (
/obj/structure/chair/office/light{
dir = 8
@@ -34646,14 +33682,14 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"brf" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
},
/turf/open/floor/plasteel,
-/area/toxins/explab)
+/area/science/explab)
"brg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
@@ -34661,9 +33697,7 @@
/turf/open/floor/plasteel/white/side{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"brh" = (
/obj/structure/cable{
d1 = 1;
@@ -34676,9 +33710,7 @@
initialize_directions = 11
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bri" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -34688,9 +33720,7 @@
icon_state = "whitehall";
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"brj" = (
/obj/structure/cable{
d1 = 1;
@@ -34699,9 +33729,7 @@
},
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
/turf/open/floor/plasteel/whitered/side,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"brk" = (
/obj/machinery/camera{
c_tag = "Research Division Port";
@@ -34715,9 +33743,7 @@
icon_state = "whitehall";
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"brl" = (
/obj/item/clothing/gloves/color/latex,
/obj/item/clothing/glasses/science,
@@ -34726,26 +33752,20 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"brm" = (
/obj/item/device/analyzer,
/obj/structure/table,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"brn" = (
/obj/machinery/vending/assist,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bro" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -34757,9 +33777,7 @@
pixel_y = -32
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"brp" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -34770,9 +33788,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"brq" = (
/obj/machinery/camera{
c_tag = "Research Division Starboard";
@@ -34780,9 +33796,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"brr" = (
/obj/structure/sink{
dir = 8;
@@ -34801,11 +33815,11 @@
/turf/open/floor/plasteel/white{
heat_capacity = 1e+006
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"brs" = (
/obj/machinery/light,
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"brt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/shower{
@@ -34817,18 +33831,18 @@
dir = 6
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bru" = (
/turf/open/floor/plasteel/whitepurple/side{
dir = 10
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"brv" = (
/obj/structure/table,
/obj/item/weapon/storage/box/monkeycubes,
/obj/item/weapon/storage/box/monkeycubes,
/turf/open/floor/plasteel/whitepurple/side,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"brw" = (
/obj/structure/table,
/obj/item/weapon/extinguisher{
@@ -34837,7 +33851,7 @@
},
/obj/item/weapon/extinguisher,
/turf/open/floor/plasteel/whitepurple/side,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"brx" = (
/obj/structure/reagent_dispensers/watertank,
/obj/machinery/requests_console{
@@ -34851,7 +33865,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 6
},
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bry" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio1";
@@ -34865,7 +33879,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"brz" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio1";
@@ -34885,7 +33899,7 @@
pixel_y = 0
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"brA" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio1";
@@ -34899,7 +33913,7 @@
},
/obj/structure/cable,
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"brB" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio2";
@@ -34913,7 +33927,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"brC" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio3";
@@ -34933,7 +33947,7 @@
pixel_y = 0
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"brD" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio2";
@@ -34947,7 +33961,7 @@
icon_state = "0-8"
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"brE" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio3";
@@ -34961,7 +33975,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"brF" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio3";
@@ -34981,7 +33995,7 @@
pixel_y = 0
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"brG" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio3";
@@ -34995,7 +34009,7 @@
},
/obj/structure/cable,
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"brH" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio4";
@@ -35009,7 +34023,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"brI" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio4";
@@ -35029,7 +34043,7 @@
pixel_y = 0
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"brJ" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio4";
@@ -35043,7 +34057,7 @@
icon_state = "0-8"
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"brK" = (
/obj/structure/cable{
d1 = 2;
@@ -35058,7 +34072,7 @@
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/asmaint2)
+/area/maintenance/department/science)
"brL" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -35068,10 +34082,10 @@
pixel_y = 0
},
/turf/open/floor/plating,
-/area/maintenance/asmaint2)
+/area/maintenance/department/science)
"brM" = (
/turf/closed/wall,
-/area/maintenance/asmaint2)
+/area/maintenance/department/science)
"brN" = (
/obj/structure/table,
/obj/effect/spawner/lootdrop/maintenance{
@@ -35079,14 +34093,14 @@
name = "2maintenance loot spawner"
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"brO" = (
/obj/structure/chair/stool,
/turf/open/floor/plating{
burnt = 1;
icon_state = "panelscorched"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"brP" = (
/obj/structure/cable{
d1 = 1;
@@ -35100,7 +34114,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"brQ" = (
/obj/machinery/light{
dir = 8
@@ -35175,7 +34189,7 @@
layer = 4.1
},
/turf/open/floor/plasteel/whitegreen/side,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"brY" = (
/obj/structure/cable{
d1 = 1;
@@ -35186,13 +34200,13 @@
dir = 10
},
/turf/open/floor/plasteel/whitegreen/side,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"brZ" = (
/obj/structure/chair{
dir = 8
},
/turf/open/floor/plasteel/whitegreen/side,
-/area/medical/medbay3)
+/area/medical/medbay/zone3)
"bsa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/airalarm{
@@ -35203,23 +34217,19 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bsb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bsc" = (
/obj/structure/sign/bluecross_2,
/turf/closed/wall,
-/area/medical/cmo{
- name = "Chief Medical Office"
- })
+/area/crew_quarters/heads/cmo)
"bsd" = (
/obj/machinery/suit_storage_unit/cmo,
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo{
- name = "Chief Medical Office"
- })
+/area/crew_quarters/heads/cmo)
"bse" = (
/obj/machinery/computer/crew,
/obj/machinery/light{
@@ -35234,24 +34244,18 @@
pixel_y = 30
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo{
- name = "Chief Medical Office"
- })
+/area/crew_quarters/heads/cmo)
"bsf" = (
/obj/machinery/computer/med_data,
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo{
- name = "Chief Medical Office"
- })
+/area/crew_quarters/heads/cmo)
"bsg" = (
/obj/machinery/computer/card/minor/cmo,
/obj/machinery/airalarm{
pixel_y = 22
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo{
- name = "Chief Medical Office"
- })
+/area/crew_quarters/heads/cmo)
"bsh" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
@@ -35269,9 +34273,7 @@
pixel_y = 6
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo{
- name = "Chief Medical Office"
- })
+/area/crew_quarters/heads/cmo)
"bsi" = (
/obj/structure/closet/wardrobe/chemistry_white,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -35368,7 +34370,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/toxins/explab)
+/area/science/explab)
"bsr" = (
/obj/structure/cable{
d1 = 1;
@@ -35379,14 +34381,14 @@
dir = 4
},
/turf/open/floor/plasteel/purple/side,
-/area/toxins/explab)
+/area/science/explab)
"bss" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
pixel_y = 0
},
/turf/open/floor/plasteel/purple/side,
-/area/toxins/explab)
+/area/science/explab)
"bst" = (
/obj/structure/table,
/obj/machinery/light,
@@ -35400,14 +34402,14 @@
/obj/item/weapon/stock_parts/scanning_module,
/obj/item/device/multitool,
/turf/open/floor/plasteel/purple/side,
-/area/toxins/explab)
+/area/science/explab)
"bsu" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/item/weapon/stock_parts/cell/high/plus,
/obj/item/weapon/stock_parts/cell/high/plus,
/turf/open/floor/plasteel/purple/side,
-/area/toxins/explab)
+/area/science/explab)
"bsv" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/matter_bin,
@@ -35420,16 +34422,14 @@
pixel_x = 25
},
/turf/open/floor/plasteel/purple/side,
-/area/toxins/explab)
+/area/science/explab)
"bsw" = (
/turf/open/floor/plasteel/white/side{
tag = "icon-whitehall (NORTH)";
icon_state = "whitehall";
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bsx" = (
/obj/structure/cable{
d1 = 1;
@@ -35439,9 +34439,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bsy" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -35462,37 +34460,31 @@
/area/security/checkpoint/science)
"bsA" = (
/turf/closed/wall/r_wall,
-/area/toxins/storage)
+/area/science/storage)
"bsB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
-/area/toxins/storage)
+/area/science/storage)
"bsC" = (
/obj/machinery/light{
dir = 8
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bsD" = (
/turf/closed/wall,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bsE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bsF" = (
/obj/structure/disposaloutlet,
/obj/structure/disposalpipe/trunk{
dir = 1
},
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bsG" = (
/obj/structure/cable{
d1 = 1;
@@ -35501,7 +34493,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/asmaint2)
+/area/maintenance/department/science)
"bsH" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
@@ -35624,7 +34616,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bsS" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/brute{
@@ -35639,7 +34631,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bsT" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/fire{
@@ -35654,7 +34646,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bsU" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/toxin{
@@ -35669,7 +34661,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bsV" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/o2{
@@ -35684,7 +34676,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bsW" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
@@ -35693,7 +34685,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 8
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bsX" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
@@ -35703,18 +34695,14 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bsY" = (
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo{
- name = "Chief Medical Office"
- })
+/area/crew_quarters/heads/cmo)
"bsZ" = (
/mob/living/simple_animal/pet/cat/Runtime,
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo{
- name = "Chief Medical Office"
- })
+/area/crew_quarters/heads/cmo)
"bta" = (
/obj/effect/landmark/start/chief_medical_officer,
/obj/structure/chair/office/light{
@@ -35727,17 +34715,13 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo{
- name = "Chief Medical Office"
- })
+/area/crew_quarters/heads/cmo)
"btb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo{
- name = "Chief Medical Office"
- })
+/area/crew_quarters/heads/cmo)
"btc" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/camera{
@@ -35758,9 +34742,7 @@
pixel_y = 0
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo{
- name = "Chief Medical Office"
- })
+/area/crew_quarters/heads/cmo)
"btd" = (
/obj/machinery/door/airlock/maintenance{
name = "Chemistry Lab Maintenance";
@@ -35777,7 +34759,7 @@
/area/medical/chemistry)
"bte" = (
/turf/closed/wall/r_wall,
-/area/toxins/server)
+/area/science/server)
"btf" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
@@ -35791,23 +34773,21 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/black,
-/area/toxins/server)
+/area/science/server)
"btg" = (
/obj/machinery/atmospherics/components/unary/tank/air{
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Monastery Maintenance"
- })
+/area/maintenance/department/chapel/monastery)
"bth" = (
/turf/closed/wall,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"bti" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"btj" = (
/obj/machinery/door/airlock/glass_command{
name = "Research Director";
@@ -35821,7 +34801,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"btk" = (
/obj/structure/filingcabinet,
/turf/open/floor/plasteel/red/side{
@@ -35856,7 +34836,7 @@
/turf/open/floor/plasteel{
name = "floor"
},
-/area/toxins/storage)
+/area/science/storage)
"bto" = (
/obj/machinery/portable_atmospherics/canister/toxins,
/obj/machinery/light{
@@ -35871,13 +34851,13 @@
/turf/open/floor/plasteel{
name = "floor"
},
-/area/toxins/storage)
+/area/science/storage)
"btp" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"btq" = (
/obj/machinery/portable_atmospherics/scrubber/huge,
/obj/machinery/power/apc{
@@ -35894,27 +34874,23 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"btr" = (
/obj/machinery/portable_atmospherics/scrubber/huge,
/obj/machinery/airalarm{
pixel_y = 22
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"bts" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"btt" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"btu" = (
/obj/structure/closet/bombcloset,
/obj/machinery/firealarm{
@@ -35922,15 +34898,11 @@
pixel_x = -24
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"btv" = (
/obj/structure/closet/bombcloset,
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"btw" = (
/obj/machinery/portable_atmospherics/scrubber,
/obj/machinery/light{
@@ -35940,9 +34912,7 @@
pixel_y = 22
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"btx" = (
/obj/machinery/portable_atmospherics/pump,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -35953,15 +34923,11 @@
pixel_y = 26
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bty" = (
/obj/machinery/portable_atmospherics/canister,
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"btz" = (
/obj/machinery/portable_atmospherics/canister,
/obj/structure/cable{
@@ -35977,9 +34943,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"btA" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/machinery/camera{
@@ -35995,15 +34959,11 @@
pixel_y = 32
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"btB" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"btC" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/structure/extinguisher_cabinet{
@@ -36016,24 +34976,20 @@
pixel_y = 32
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"btD" = (
/obj/effect/landmark/revenantspawn,
/mob/living/simple_animal/slime,
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"btE" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Monastery Maintenance"
- })
+/area/maintenance/department/chapel/monastery)
"btF" = (
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"btG" = (
/obj/structure/table,
/obj/item/weapon/pen,
@@ -36155,7 +35111,7 @@
pixel_z = 0
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"btQ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
@@ -36164,7 +35120,7 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"btR" = (
/obj/machinery/door/airlock/glass_medical{
id_tag = null;
@@ -36175,7 +35131,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"btS" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
@@ -36183,14 +35139,14 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 8
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"btT" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"btU" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -36202,7 +35158,7 @@
tag = "icon-whiteblue (EAST)";
dir = 4
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"btV" = (
/obj/machinery/door/airlock/glass_command{
name = "Chief Medical Office";
@@ -36215,9 +35171,7 @@
dir = 4
},
/turf/open/floor/plasteel/barber,
-/area/medical/cmo{
- name = "Chief Medical Office"
- })
+/area/crew_quarters/heads/cmo)
"btW" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -36226,9 +35180,7 @@
dir = 10
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo{
- name = "Chief Medical Office"
- })
+/area/crew_quarters/heads/cmo)
"btX" = (
/obj/structure/table/glass,
/obj/item/weapon/paper_bin{
@@ -36242,9 +35194,7 @@
dir = 4
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo{
- name = "Chief Medical Office"
- })
+/area/crew_quarters/heads/cmo)
"btY" = (
/obj/structure/table/glass,
/obj/item/weapon/folder/white,
@@ -36253,9 +35203,7 @@
dir = 4
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo{
- name = "Chief Medical Office"
- })
+/area/crew_quarters/heads/cmo)
"btZ" = (
/obj/structure/table/glass,
/obj/structure/disposalpipe/segment{
@@ -36264,9 +35212,7 @@
/obj/item/stack/medical/gauze,
/obj/item/clothing/neck/stethoscope,
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo{
- name = "Chief Medical Office"
- })
+/area/crew_quarters/heads/cmo)
"bua" = (
/obj/structure/cable{
d1 = 2;
@@ -36282,9 +35228,7 @@
dir = 5
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo{
- name = "Chief Medical Office"
- })
+/area/crew_quarters/heads/cmo)
"bub" = (
/obj/machinery/door/airlock/maintenance{
name = "CMO Maintenance";
@@ -36302,7 +35246,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"buc" = (
/obj/structure/cable{
d1 = 4;
@@ -36316,7 +35260,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bud" = (
/obj/structure/cable{
d1 = 4;
@@ -36335,7 +35279,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bue" = (
/obj/structure/cable{
d1 = 4;
@@ -36352,7 +35296,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"buf" = (
/obj/structure/cable{
d1 = 2;
@@ -36367,7 +35311,7 @@
dir = 10
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bug" = (
/obj/machinery/light{
dir = 4;
@@ -36383,7 +35327,7 @@
on = 1
},
/turf/open/floor/plasteel/black,
-/area/toxins/server)
+/area/science/server)
"bui" = (
/obj/structure/cable{
d1 = 1;
@@ -36391,14 +35335,14 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/black,
-/area/toxins/server)
+/area/science/server)
"buj" = (
/obj/machinery/r_n_d/server/core,
/turf/open/floor/circuit{
name = "Server Base";
initial_gas_mix = "n2=500;TEMP=80"
},
-/area/toxins/server)
+/area/science/server)
"buk" = (
/obj/structure/closet/secure_closet/RD,
/obj/machinery/airalarm{
@@ -36407,7 +35351,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 9
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"bul" = (
/obj/machinery/power/apc{
dir = 1;
@@ -36422,7 +35366,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"bum" = (
/obj/structure/cable{
d1 = 4;
@@ -36432,7 +35376,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"bun" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -36442,7 +35386,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"buo" = (
/obj/item/weapon/twohanded/required/kirbyplants/dead,
/obj/machinery/button/door{
@@ -36455,7 +35399,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 5
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"bup" = (
/obj/machinery/light{
dir = 8
@@ -36506,7 +35450,7 @@
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"but" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -36516,7 +35460,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"buu" = (
/obj/structure/cable{
d1 = 1;
@@ -36528,7 +35472,7 @@
pixel_y = 0
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"buv" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
@@ -36537,13 +35481,13 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"buw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
-/area/toxins/storage)
+/area/science/storage)
"bux" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -36551,17 +35495,13 @@
/turf/open/floor/plasteel/white/side{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"buy" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/white/side{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"buz" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -36569,9 +35509,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"buA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -36580,9 +35518,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"buB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
@@ -36591,26 +35527,20 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"buC" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"buD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"buE" = (
/obj/structure/cable{
d1 = 1;
@@ -36623,9 +35553,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"buF" = (
/obj/machinery/atmospherics/components/trinary/mixer/flipped{
dir = 1
@@ -36634,17 +35562,13 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"buG" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"buH" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/obj/machinery/requests_console{
@@ -36659,43 +35583,41 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"buI" = (
/obj/machinery/light,
/turf/open/floor/engine,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"buJ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/maintenance/asmaint2)
+/area/maintenance/department/science)
"buK" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"buL" = (
/obj/structure/closet/crate/medical,
/obj/item/stack/medical/ointment,
/obj/item/stack/medical/bruise_pack,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"buM" = (
/obj/item/trash/candy,
/obj/effect/decal/cleanable/deadcockroach,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"buN" = (
/obj/item/weapon/extinguisher,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"buO" = (
/obj/item/chair,
/obj/item/weapon/cigbutt/roach,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"buP" = (
/obj/structure/closet/secure_closet/medical1,
/turf/open/floor/plasteel/whitepurple/side{
@@ -36762,7 +35684,7 @@
pixel_y = 0
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"buW" = (
/obj/effect/landmark/start/medical_doctor,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -36771,7 +35693,7 @@
on = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"buX" = (
/obj/machinery/door/airlock/glass_medical{
id_tag = null;
@@ -36782,7 +35704,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"buY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -36791,7 +35713,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 8
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"buZ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4;
@@ -36801,23 +35723,19 @@
tag = "icon-whiteblue (EAST)";
dir = 4
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bva" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo{
- name = "Chief Medical Office"
- })
+/area/crew_quarters/heads/cmo)
"bvb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo{
- name = "Chief Medical Office"
- })
+/area/crew_quarters/heads/cmo)
"bvc" = (
/obj/structure/chair/office/light{
dir = 8
@@ -36826,9 +35744,7 @@
dir = 4
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo{
- name = "Chief Medical Office"
- })
+/area/crew_quarters/heads/cmo)
"bvd" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -36836,9 +35752,7 @@
on = 1
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo{
- name = "Chief Medical Office"
- })
+/area/crew_quarters/heads/cmo)
"bve" = (
/obj/machinery/power/apc{
dir = 4;
@@ -36848,9 +35762,7 @@
},
/obj/structure/cable,
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo{
- name = "Chief Medical Office"
- })
+/area/crew_quarters/heads/cmo)
"bvf" = (
/turf/closed/wall,
/area/medical/exam_room)
@@ -36863,7 +35775,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bvh" = (
/obj/machinery/power/apc{
dir = 8;
@@ -36879,7 +35791,7 @@
dir = 8
},
/turf/open/floor/plasteel/black,
-/area/toxins/server)
+/area/science/server)
"bvi" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -36893,7 +35805,7 @@
icon_state = "1-4"
},
/turf/open/floor/plasteel/black,
-/area/toxins/server)
+/area/science/server)
"bvj" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -36905,7 +35817,7 @@
icon_state = "0-8"
},
/turf/open/floor/plating,
-/area/toxins/server)
+/area/science/server)
"bvk" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -36917,20 +35829,20 @@
name = "Server Base";
initial_gas_mix = "n2=500;TEMP=80"
},
-/area/toxins/server)
+/area/science/server)
"bvl" = (
/obj/machinery/computer/robotics,
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"bvm" = (
/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"bvn" = (
/obj/structure/displaycase/labcage,
/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"bvo" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -36943,7 +35855,7 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"bvp" = (
/obj/machinery/disposal/bin,
/obj/machinery/light{
@@ -36956,7 +35868,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 4
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"bvq" = (
/obj/item/weapon/pen,
/obj/structure/table,
@@ -36992,7 +35904,7 @@
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"bvu" = (
/obj/structure/cable{
d1 = 1;
@@ -37006,7 +35918,7 @@
tag = ""
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"bvv" = (
/obj/structure/cable{
d1 = 4;
@@ -37014,7 +35926,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"bvw" = (
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/airlock/research{
@@ -37027,7 +35939,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"bvx" = (
/obj/structure/cable{
d1 = 4;
@@ -37037,9 +35949,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bvy" = (
/obj/structure/cable{
d1 = 4;
@@ -37048,9 +35958,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bvz" = (
/obj/structure/cable{
d1 = 4;
@@ -37060,9 +35968,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bvA" = (
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/airlock/glass_research{
@@ -37075,9 +35981,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bvB" = (
/obj/structure/cable{
d1 = 4;
@@ -37085,9 +35989,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bvC" = (
/obj/structure/cable{
d1 = 4;
@@ -37096,9 +35998,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bvD" = (
/obj/structure/cable{
d1 = 4;
@@ -37107,9 +36007,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bvE" = (
/obj/structure/cable{
d1 = 1;
@@ -37127,9 +36025,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bvF" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
@@ -37138,17 +36034,13 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bvG" = (
/obj/machinery/atmospherics/components/binary/valve{
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bvH" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 4
@@ -37164,19 +36056,17 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bvI" = (
/turf/closed/wall,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bvJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bvK" = (
/turf/closed/wall/r_wall,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bvL" = (
/obj/structure/cable{
d1 = 1;
@@ -37186,13 +36076,13 @@
/obj/item/trash/sosjerky,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/asmaint2)
+/area/maintenance/department/science)
"bvM" = (
/obj/structure/closet,
/obj/item/stack/cable_coil/random,
/obj/item/weapon/electronics/airalarm,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bvN" = (
/obj/structure/cable{
d1 = 1;
@@ -37200,7 +36090,7 @@
icon_state = "1-4"
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bvO" = (
/obj/structure/cable{
d1 = 2;
@@ -37208,7 +36098,7 @@
icon_state = "2-8"
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bvP" = (
/turf/closed/wall/r_wall,
/area/medical/virology)
@@ -37257,11 +36147,11 @@
"bvT" = (
/obj/machinery/vending/medical,
/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bvU" = (
/obj/structure/closet/secure_closet/medical3,
/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bvV" = (
/obj/structure/closet/secure_closet/medical3,
/obj/machinery/light,
@@ -37271,11 +36161,11 @@
network = list("SS13")
},
/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bvW" = (
/obj/structure/closet/wardrobe/white/medical,
/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bvX" = (
/obj/structure/table,
/obj/item/weapon/storage/belt/medical{
@@ -37295,32 +36185,28 @@
/obj/item/clothing/glasses/hud/health,
/obj/item/weapon/reagent_containers/spray/cleaner,
/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bvY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bvZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bwa" = (
/obj/structure/closet/secure_closet/CMO,
/obj/item/weapon/valentine,
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo{
- name = "Chief Medical Office"
- })
+/area/crew_quarters/heads/cmo)
"bwb" = (
/obj/machinery/modular_computer/console/preset/civilian,
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo{
- name = "Chief Medical Office"
- })
+/area/crew_quarters/heads/cmo)
"bwc" = (
/obj/item/weapon/cartridge/medical{
pixel_x = -2;
@@ -37338,26 +36224,20 @@
/obj/machinery/light,
/obj/item/weapon/wrench/medical,
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo{
- name = "Chief Medical Office"
- })
+/area/crew_quarters/heads/cmo)
"bwd" = (
/obj/item/weapon/folder/blue,
/obj/item/weapon/stamp/cmo,
/obj/structure/table,
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo{
- name = "Chief Medical Office"
- })
+/area/crew_quarters/heads/cmo)
"bwe" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-16";
layer = 4.1
},
/turf/open/floor/plasteel/cmo,
-/area/medical/cmo{
- name = "Chief Medical Office"
- })
+/area/crew_quarters/heads/cmo)
"bwf" = (
/obj/structure/cable{
d1 = 2;
@@ -37452,7 +36332,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bwk" = (
/obj/structure/cable{
d1 = 1;
@@ -37489,13 +36369,13 @@
dir = 5
},
/turf/open/floor/plasteel/black,
-/area/toxins/server)
+/area/science/server)
"bwn" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/toxins/server)
+/area/science/server)
"bwo" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_command{
@@ -37506,7 +36386,7 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/toxins/server)
+/area/science/server)
"bwp" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -37521,13 +36401,13 @@
name = "Server Base";
initial_gas_mix = "n2=500;TEMP=80"
},
-/area/toxins/server)
+/area/science/server)
"bwq" = (
/obj/machinery/computer/aifixer,
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"bwr" = (
/obj/structure/chair/office/light{
dir = 8
@@ -37538,18 +36418,18 @@
on = 1
},
/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"bws" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"bwt" = (
/obj/structure/chair/office/light,
/obj/effect/landmark/start/research_director,
/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"bwu" = (
/obj/machinery/computer/card/minor/rd,
/obj/machinery/keycard_auth{
@@ -37559,7 +36439,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 4
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"bwv" = (
/obj/machinery/recharger{
pixel_y = 4
@@ -37591,7 +36471,7 @@
/obj/machinery/portable_atmospherics/canister/air,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"bwz" = (
/obj/structure/cable{
d1 = 1;
@@ -37599,29 +36479,23 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"bwA" = (
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"bwB" = (
/turf/open/floor/plasteel/white/side{
dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bwC" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bwD" = (
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bwE" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
@@ -37630,9 +36504,7 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bwF" = (
/obj/item/device/assembly/prox_sensor{
pixel_x = -4;
@@ -37652,9 +36524,7 @@
},
/obj/structure/table/reinforced,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bwG" = (
/obj/structure/chair/stool,
/obj/effect/landmark/start/scientist,
@@ -37663,9 +36533,7 @@
on = 1
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bwH" = (
/obj/structure/table/reinforced,
/obj/item/weapon/wrench,
@@ -37674,9 +36542,7 @@
},
/obj/item/device/analyzer,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bwI" = (
/obj/structure/cable{
d1 = 1;
@@ -37687,9 +36553,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bwJ" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/obj/structure/cable{
@@ -37702,9 +36566,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bwK" = (
/obj/structure/cable{
d1 = 4;
@@ -37713,9 +36575,7 @@
pixel_y = 0
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bwL" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/obj/structure/cable{
@@ -37736,9 +36596,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bwM" = (
/obj/structure/cable{
d1 = 4;
@@ -37747,9 +36605,7 @@
pixel_y = 0
},
/turf/closed/wall,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bwN" = (
/obj/structure/cable{
d1 = 4;
@@ -37759,7 +36615,7 @@
},
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bwO" = (
/obj/machinery/power/smes,
/obj/structure/cable{
@@ -37771,7 +36627,7 @@
icon_state = "0-8"
},
/turf/open/floor/plasteel,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bwP" = (
/obj/machinery/suit_storage_unit/rd,
/obj/structure/cable{
@@ -37784,7 +36640,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bwQ" = (
/obj/structure/ore_box,
/obj/structure/cable{
@@ -37795,7 +36651,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bwR" = (
/obj/structure/ore_box,
/obj/structure/cable{
@@ -37816,7 +36672,7 @@
pixel_y = 32
},
/turf/open/floor/plasteel,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bwS" = (
/obj/structure/cable{
d1 = 4;
@@ -37828,7 +36684,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bwT" = (
/obj/structure/cable{
d1 = 4;
@@ -37843,7 +36699,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bwU" = (
/obj/structure/cable{
d1 = 4;
@@ -37855,7 +36711,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bwV" = (
/obj/machinery/power/apc{
dir = 1;
@@ -37874,7 +36730,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bwW" = (
/obj/machinery/door/airlock/maintenance{
name = "Toxins Launch Room Maintenance";
@@ -37890,7 +36746,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bwX" = (
/obj/structure/cable{
d1 = 4;
@@ -37902,7 +36758,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/asmaint2)
+/area/maintenance/department/science)
"bwY" = (
/obj/structure/cable{
d1 = 4;
@@ -37915,7 +36771,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/asmaint2)
+/area/maintenance/department/science)
"bwZ" = (
/obj/structure/cable{
d1 = 4;
@@ -37930,7 +36786,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/asmaint2)
+/area/maintenance/department/science)
"bxa" = (
/obj/structure/cable{
d1 = 4;
@@ -37943,11 +36799,11 @@
},
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
-/area/maintenance/asmaint2)
+/area/maintenance/department/science)
"bxb" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bxc" = (
/obj/structure/cable{
d1 = 1;
@@ -37960,7 +36816,7 @@
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bxd" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (WEST)";
@@ -37968,7 +36824,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bxe" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (WEST)";
@@ -38048,18 +36904,18 @@
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bxm" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bxn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bxo" = (
/turf/closed/wall,
/area/medical/surgery)
@@ -38107,7 +36963,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bxt" = (
/obj/machinery/camera{
c_tag = "Aft Primary Hallway Central";
@@ -38122,18 +36978,18 @@
/obj/item/weapon/folder/white,
/obj/item/weapon/pen,
/turf/open/floor/plasteel/black,
-/area/toxins/server)
+/area/science/server)
"bxv" = (
/obj/machinery/computer/rdservercontrol,
/turf/open/floor/plasteel/black,
-/area/toxins/server)
+/area/science/server)
"bxw" = (
/obj/machinery/r_n_d/server/robotics,
/turf/open/floor/circuit{
name = "Server Base";
initial_gas_mix = "n2=500;TEMP=80"
},
-/area/toxins/server)
+/area/science/server)
"bxx" = (
/obj/machinery/computer/mecha,
/obj/item/device/radio/intercom{
@@ -38145,7 +37001,7 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 10
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"bxy" = (
/obj/structure/table,
/obj/item/device/aicard,
@@ -38160,7 +37016,7 @@
receive_ore_updates = 1
},
/turf/open/floor/plasteel/whitepurple/side,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"bxz" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
@@ -38184,7 +37040,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whitepurple/side,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"bxA" = (
/obj/structure/table,
/obj/item/weapon/cartridge/signal/toxins,
@@ -38204,7 +37060,7 @@
pixel_y = -32
},
/turf/open/floor/plasteel/whitepurple/side,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"bxB" = (
/obj/machinery/newscaster{
pixel_y = -30
@@ -38213,10 +37069,10 @@
/turf/open/floor/plasteel/whitepurple/side{
dir = 6
},
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"bxC" = (
/turf/closed/wall/r_wall,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"bxD" = (
/turf/closed/wall/r_wall,
/area/security/checkpoint/science)
@@ -38228,13 +37084,13 @@
/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"bxG" = (
/obj/structure/sign/nosmoking_2{
pixel_x = 32
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"bxH" = (
/obj/structure/closet/firecloset,
/turf/open/floor/plasteel/white/side{
@@ -38242,9 +37098,7 @@
icon_state = "whitehall";
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bxI" = (
/obj/structure/reagent_dispensers/watertank,
/obj/machinery/light,
@@ -38253,9 +37107,7 @@
icon_state = "whitehall";
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bxJ" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plasteel/white/side{
@@ -38263,21 +37115,15 @@
icon_state = "whitehall";
dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bxK" = (
/obj/structure/tank_dispenser,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bxL" = (
/obj/structure/closet/wardrobe/science_white,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bxM" = (
/obj/item/device/assembly/signaler{
pixel_x = 0;
@@ -38297,9 +37143,7 @@
},
/obj/structure/table/reinforced,
/turf/open/floor/plasteel/white,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bxN" = (
/obj/item/device/transfer_valve{
pixel_x = -5
@@ -38321,9 +37165,7 @@
},
/obj/structure/table/reinforced,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bxO" = (
/obj/item/device/assembly/timer{
pixel_x = 5;
@@ -38343,9 +37185,7 @@
},
/obj/structure/table/reinforced,
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bxP" = (
/obj/machinery/computer/turbine_computer{
id = "incineratorturbine"
@@ -38354,9 +37194,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bxQ" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/obj/machinery/meter,
@@ -38364,9 +37202,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bxR" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -38375,9 +37211,7 @@
tag = ""
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bxS" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -38392,9 +37226,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bxT" = (
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/airlock/research{
@@ -38411,9 +37243,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bxU" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -38426,7 +37256,7 @@
initialize_directions = 10
},
/turf/open/floor/plasteel,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bxV" = (
/obj/structure/cable/yellow{
d2 = 8;
@@ -38437,50 +37267,48 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bxW" = (
/turf/open/floor/plasteel,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bxX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bxY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bxZ" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
-/area/maintenance/port{
- name = "Monastery Maintenance"
- })
+/area/maintenance/department/chapel/monastery)
"bya" = (
/turf/open/floor/plasteel/loadingarea{
tag = "icon-loadingarea (EAST)";
dir = 4
},
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"byb" = (
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"byc" = (
/obj/structure/closet/boxinggloves,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"byd" = (
/obj/structure/closet/masks,
/obj/item/trash/deadmouse,
/obj/effect/landmark/revenantspawn,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bye" = (
/obj/machinery/vending/cigarette,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"byf" = (
/obj/structure/cable{
d1 = 1;
@@ -38489,7 +37317,7 @@
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"byg" = (
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/freezer,
@@ -38575,7 +37403,7 @@
layer = 4.5
},
/turf/open/floor/plasteel/freezer,
-/area/medical/medbay)
+/area/medical/medbay/central)
"byo" = (
/obj/machinery/vending/wallmed{
pixel_y = 28;
@@ -38590,7 +37418,7 @@
dir = 1
},
/turf/open/floor/plasteel/freezer,
-/area/medical/medbay)
+/area/medical/medbay/central)
"byp" = (
/obj/machinery/button/door{
id = "patientA";
@@ -38605,7 +37433,7 @@
dir = 4
},
/turf/open/floor/plasteel/freezer,
-/area/medical/medbay)
+/area/medical/medbay/central)
"byq" = (
/obj/machinery/door/airlock/medical{
name = "Patient Room A";
@@ -38615,7 +37443,7 @@
dir = 4
},
/turf/open/floor/plasteel/freezer,
-/area/medical/medbay)
+/area/medical/medbay/central)
"byr" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -38623,7 +37451,7 @@
on = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bys" = (
/obj/machinery/light{
dir = 4
@@ -38640,7 +37468,7 @@
tag = "icon-whiteblue (EAST)";
dir = 4
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"byt" = (
/obj/structure/closet/crate/freezer/surplus_limbs,
/obj/item/weapon/reagent_containers/glass/beaker/synthflesh,
@@ -38677,7 +37505,7 @@
"byx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
-/area/crew_quarters/hor)
+/area/crew_quarters/heads/hor)
"byy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
@@ -38685,9 +37513,7 @@
/obj/structure/table,
/obj/item/toy/cards/deck,
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Atmospherics Maintenance"
- })
+/area/maintenance/department/engine/atmos)
"byz" = (
/obj/machinery/space_heater,
/obj/machinery/light/small{
@@ -38697,9 +37523,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Atmospherics Maintenance"
- })
+/area/maintenance/department/engine/atmos)
"byA" = (
/obj/machinery/space_heater,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -38707,9 +37531,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Atmospherics Maintenance"
- })
+/area/maintenance/department/engine/atmos)
"byB" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
@@ -38717,7 +37539,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"byC" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/obj/machinery/light,
@@ -38726,7 +37548,7 @@
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"byD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
@@ -38735,7 +37557,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"byE" = (
/obj/structure/cable{
d1 = 1;
@@ -38748,25 +37570,21 @@
on = 1
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"byF" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"byG" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"byH" = (
/turf/closed/wall/r_wall,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"byI" = (
/obj/machinery/atmospherics/components/binary/valve,
/obj/machinery/button/door{
@@ -38789,9 +37607,7 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"byJ" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -38799,9 +37615,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"byK" = (
/obj/machinery/atmospherics/components/binary/valve,
/obj/machinery/button/ignition{
@@ -38825,9 +37639,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"byL" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 2;
@@ -38835,7 +37647,7 @@
on = 0
},
/turf/open/floor/plasteel,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"byM" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
@@ -38844,27 +37656,27 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"byN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"byO" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/plasteel,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"byP" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plasteel,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"byQ" = (
/obj/item/device/radio/intercom{
dir = 8;
@@ -38874,7 +37686,7 @@
/turf/open/floor/plasteel/brown{
dir = 4
},
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"byR" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/yellow,
@@ -38897,7 +37709,7 @@
dir = 9
},
/turf/open/floor/plating,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"byT" = (
/obj/structure/table,
/obj/item/device/flashlight/lamp,
@@ -38905,7 +37717,7 @@
icon_state = "cobweb2"
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"byU" = (
/obj/machinery/vending/medical,
/turf/open/floor/plasteel/whitegreen/side{
@@ -39012,7 +37824,7 @@
layer = 3.2
},
/turf/open/floor/plasteel/freezer,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bzf" = (
/turf/open/floor/carpet,
/area/library)
@@ -39022,7 +37834,7 @@
},
/obj/structure/closet/secure_closet/personal/patient,
/turf/open/floor/plasteel/freezer,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bzh" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
@@ -39034,7 +37846,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bzi" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
@@ -39193,9 +38005,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Atmospherics Maintenance"
- })
+/area/maintenance/department/engine/atmos)
"bzv" = (
/obj/structure/cable{
d1 = 4;
@@ -39209,9 +38019,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Atmospherics Maintenance"
- })
+/area/maintenance/department/engine/atmos)
"bzw" = (
/obj/structure/cable{
d1 = 4;
@@ -39225,9 +38033,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Atmospherics Maintenance"
- })
+/area/maintenance/department/engine/atmos)
"bzx" = (
/obj/structure/cable{
d1 = 4;
@@ -39244,9 +38050,7 @@
pixel_y = 32
},
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Atmospherics Maintenance"
- })
+/area/maintenance/department/engine/atmos)
"bzy" = (
/obj/structure/cable{
d1 = 2;
@@ -39261,23 +38065,17 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Atmospherics Maintenance"
- })
+/area/maintenance/department/engine/atmos)
"bzz" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Atmospherics Maintenance"
- })
+/area/maintenance/department/engine/atmos)
"bzA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Atmospherics Maintenance"
- })
+/area/maintenance/department/engine/atmos)
"bzB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/chair/stool,
@@ -39285,9 +38083,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Atmospherics Maintenance"
- })
+/area/maintenance/department/engine/atmos)
"bzC" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
@@ -39295,9 +38091,7 @@
/obj/effect/landmark/blobstart,
/obj/item/chair/stool,
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Atmospherics Maintenance"
- })
+/area/maintenance/department/engine/atmos)
"bzD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
@@ -39307,9 +38101,7 @@
pixel_x = 32
},
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Atmospherics Maintenance"
- })
+/area/maintenance/department/engine/atmos)
"bzE" = (
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/airlock/atmos{
@@ -39322,15 +38114,13 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/toxins/storage)
+/area/science/storage)
"bzF" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 2
},
/turf/closed/wall/r_wall,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bzG" = (
/obj/machinery/door/airlock/glass{
autoclose = 0;
@@ -39349,19 +38139,15 @@
icon_state = "1-2"
},
/turf/open/floor/engine,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bzH" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/closed/wall/r_wall,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bzI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plasteel,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bzJ" = (
/obj/structure/window/reinforced,
/obj/machinery/doppler_array{
@@ -39373,7 +38159,7 @@
/turf/open/floor/plasteel{
dir = 2
},
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bzK" = (
/obj/machinery/conveyor_switch/oneway{
id = "toxmineral";
@@ -39382,11 +38168,11 @@
/turf/open/floor/plasteel/brown{
dir = 4
},
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bzL" = (
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bzM" = (
/obj/machinery/conveyor{
dir = 2;
@@ -39398,12 +38184,12 @@
/turf/open/floor/plating{
tag = "icon-warnplate (WEST)"
},
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bzN" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bzO" = (
/obj/structure/chair/comfy/black,
/obj/item/trash/pistachios,
@@ -39411,7 +38197,7 @@
dir = 1
},
/turf/open/floor/plasteel/black,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bzP" = (
/obj/structure/chair/comfy/black,
/obj/item/stack/spacecash/c100,
@@ -39419,14 +38205,14 @@
dir = 1
},
/turf/open/floor/plasteel/black,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bzQ" = (
/obj/structure/chair/comfy/black,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel/black,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bzR" = (
/obj/structure/chair/comfy/black,
/obj/item/weapon/cigbutt,
@@ -39434,31 +38220,31 @@
dir = 1
},
/turf/open/floor/plasteel/black,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bzS" = (
/obj/item/trash/popcorn,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plasteel/black,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bzT" = (
/obj/structure/sign/poster/contraband/random{
pixel_x = 32
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bzU" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-21"
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bzV" = (
/obj/structure/rack,
/obj/item/weapon/cartridge/medical,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bzW" = (
/obj/structure/table/glass,
/obj/item/weapon/book/manual/wiki/infections,
@@ -39526,7 +38312,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 8
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bAd" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
@@ -39535,7 +38321,7 @@
tag = "icon-whiteblue (EAST)";
dir = 4
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bAe" = (
/obj/machinery/door/airlock/glass_medical{
id_tag = null;
@@ -39640,7 +38426,7 @@
dir = 9
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bAp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/yellow/corner{
@@ -39670,26 +38456,20 @@
dir = 4
},
/turf/closed/wall,
-/area/maintenance/maintcentral{
- name = "Atmospherics Maintenance"
- })
+/area/maintenance/department/engine/atmos)
"bAt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Atmospherics Maintenance"
- })
+/area/maintenance/department/engine/atmos)
"bAu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Atmospherics Maintenance"
- })
+/area/maintenance/department/engine/atmos)
"bAv" = (
/obj/structure/cable{
d1 = 1;
@@ -39702,9 +38482,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Atmospherics Maintenance"
- })
+/area/maintenance/department/engine/atmos)
"bAw" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1;
@@ -39712,32 +38490,24 @@
},
/obj/effect/decal/cleanable/vomit/old,
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Atmospherics Maintenance"
- })
+/area/maintenance/department/engine/atmos)
"bAx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Atmospherics Maintenance"
- })
+/area/maintenance/department/engine/atmos)
"bAy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Atmospherics Maintenance"
- })
+/area/maintenance/department/engine/atmos)
"bAz" = (
/obj/machinery/portable_atmospherics/canister,
/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Atmospherics Maintenance"
- })
+/area/maintenance/department/engine/atmos)
"bAA" = (
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bAB" = (
/obj/structure/cable{
icon_state = "0-4";
@@ -39752,7 +38522,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bAC" = (
/obj/structure/cable{
d1 = 4;
@@ -39766,7 +38536,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bAD" = (
/obj/structure/cable{
d1 = 4;
@@ -39784,7 +38554,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bAE" = (
/obj/structure/cable{
d1 = 4;
@@ -39816,7 +38586,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bAF" = (
/obj/structure/cable{
d1 = 4;
@@ -39826,7 +38596,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bAG" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -39834,12 +38604,12 @@
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bAH" = (
/turf/open/floor/plasteel/yellow/side{
dir = 5
},
-/area/atmos)
+/area/engine/atmos)
"bAI" = (
/obj/machinery/bookbinder,
/turf/open/floor/plasteel/black,
@@ -39847,7 +38617,7 @@
"bAJ" = (
/obj/structure/grille,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bAK" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 2;
@@ -39863,9 +38633,7 @@
pixel_y = -24
},
/turf/open/floor/engine,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bAL" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -39873,9 +38641,7 @@
icon_state = "1-2"
},
/turf/open/floor/engine,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bAM" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
@@ -39890,9 +38656,7 @@
pixel_y = 24
},
/turf/open/floor/engine,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bAN" = (
/obj/machinery/computer/security/telescreen{
desc = "Used for watching the test chamber.";
@@ -39904,7 +38668,7 @@
pixel_y = -32
},
/turf/open/floor/plasteel,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bAO" = (
/obj/machinery/button/massdriver{
dir = 2;
@@ -39915,7 +38679,7 @@
tag = "icon-loadingarea (EAST)";
dir = 4
},
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bAP" = (
/obj/machinery/mass_driver{
id = "toxinsdriver"
@@ -39936,7 +38700,7 @@
tag = "icon-plating_warn_end (NORTH)";
icon_state = "plating_warn_end"
},
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bAQ" = (
/obj/machinery/light{
dir = 4
@@ -39944,11 +38708,11 @@
/turf/open/floor/plasteel/brown{
dir = 4
},
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bAR" = (
/obj/machinery/mineral/processing_unit_console,
/turf/closed/wall,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bAS" = (
/obj/machinery/mineral/processing_unit{
dir = 1;
@@ -39958,7 +38722,7 @@
dir = 9
},
/turf/open/floor/plating,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bAT" = (
/obj/machinery/door/window/eastright{
base_state = "left";
@@ -39971,7 +38735,7 @@
},
/obj/structure/chair/stool,
/turf/open/floor/engine,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bAU" = (
/obj/structure/window/reinforced{
dir = 1
@@ -39980,13 +38744,13 @@
name = "Bloodthirsty Peckins"
},
/turf/open/floor/engine,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bAV" = (
/obj/structure/window/reinforced{
dir = 1
},
/turf/open/floor/engine,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bAW" = (
/obj/structure/window/reinforced{
dir = 4
@@ -39995,14 +38759,14 @@
dir = 1
},
/turf/open/floor/engine,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bAX" = (
/obj/item/stack/medical/gauze,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bAY" = (
/obj/structure/light_construct{
tag = "icon-tube-construct-stage1 (EAST)";
@@ -40010,7 +38774,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bAZ" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
@@ -40081,7 +38845,7 @@
dir = 4
},
/turf/open/floor/plasteel/freezer,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bBi" = (
/obj/machinery/door/airlock/medical{
name = "Patient Room B";
@@ -40091,7 +38855,7 @@
dir = 4
},
/turf/open/floor/plasteel/freezer,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bBj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -40099,7 +38863,7 @@
/obj/effect/landmark/event_spawn,
/obj/item/device/radio/beacon,
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bBk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
@@ -40109,7 +38873,7 @@
tag = "icon-whiteblue (EAST)";
dir = 4
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bBl" = (
/obj/structure/bed/roller,
/obj/machinery/iv_drip{
@@ -40166,7 +38930,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bBs" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -40190,9 +38954,7 @@
/area/hallway/primary/aft)
"bBv" = (
/turf/closed/wall,
-/area/maintenance/maintcentral{
- name = "Atmospherics Maintenance"
- })
+/area/maintenance/department/engine/atmos)
"bBw" = (
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/airlock/atmos{
@@ -40207,21 +38969,21 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bBx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bBy" = (
/obj/machinery/atmospherics/pipe/simple/supply/visible,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bBz" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 6
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bBA" = (
/obj/structure/bookcase/random/nonfiction,
/turf/open/floor/plasteel/black,
@@ -40231,7 +38993,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bBC" = (
/obj/structure/cable{
d1 = 1;
@@ -40242,7 +39004,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bBD" = (
/obj/structure/bookcase/random/fiction,
/turf/open/floor/plasteel/black,
@@ -40257,7 +39019,7 @@
tag = "icon-yellow (EAST)";
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"bBF" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
@@ -40266,7 +39028,7 @@
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bBG" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
@@ -40281,7 +39043,7 @@
/obj/structure/grille,
/obj/machinery/meter,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bBI" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -40295,16 +39057,16 @@
pump_direction = 0
},
/turf/open/floor/engine/vacuum,
-/area/atmos)
+/area/engine/atmos)
"bBJ" = (
/obj/machinery/camera{
c_tag = "Atmospherics Waste Tank"
},
/turf/open/floor/engine/vacuum,
-/area/atmos)
+/area/engine/atmos)
"bBK" = (
/turf/open/floor/engine/vacuum,
-/area/atmos)
+/area/engine/atmos)
"bBL" = (
/obj/machinery/door/airlock/glass{
autoclose = 0;
@@ -40323,9 +39085,7 @@
icon_state = "1-2"
},
/turf/open/floor/engine,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bBM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/machinery/door/airlock/external{
@@ -40334,7 +39094,7 @@
req_one_access_txt = "0"
},
/turf/open/floor/plating,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bBN" = (
/obj/structure/window/reinforced{
dir = 8;
@@ -40352,14 +39112,14 @@
dir = 8
},
/turf/open/floor/plating,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bBO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
pixel_y = 0
},
/turf/closed/wall,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bBP" = (
/obj/structure/closet/crate{
icon_state = "crateopen";
@@ -40368,12 +39128,12 @@
/obj/item/weapon/storage/bag/ore,
/obj/item/weapon/storage/bag/ore,
/turf/open/floor/plasteel,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bBQ" = (
/turf/open/floor/plasteel/loadingarea{
dir = 8
},
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bBR" = (
/obj/machinery/conveyor{
dir = 8;
@@ -40384,7 +39144,7 @@
dir = 9
},
/turf/open/floor/plating,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bBS" = (
/obj/machinery/conveyor{
dir = 10;
@@ -40398,37 +39158,37 @@
/turf/open/floor/plating{
tag = "icon-warnplatecorner (EAST)"
},
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bBT" = (
/obj/structure/window/reinforced{
dir = 8
},
/turf/open/floor/engine,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bBU" = (
/obj/effect/landmark/revenantspawn,
/turf/open/floor/engine,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bBV" = (
/turf/open/floor/engine,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bBW" = (
/obj/structure/window/reinforced{
dir = 4
},
/turf/open/floor/engine,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bBX" = (
/obj/structure/mineral_door/wood{
name = "The Roosterdome"
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bBY" = (
/obj/structure/barricade/wooden,
/obj/structure/girder,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bBZ" = (
/obj/item/weapon/bedsheet/medical,
/obj/structure/bed,
@@ -40493,7 +39253,7 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel/freezer,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bCg" = (
/obj/structure/shuttle/engine/propulsion/burst,
/turf/closed/wall/mineral/titanium,
@@ -40509,13 +39269,13 @@
dir = 4
},
/turf/open/floor/plating,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bCi" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/side{
dir = 8
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bCj" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -40531,7 +39291,7 @@
tag = "icon-whiteblue (EAST)";
dir = 4
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bCl" = (
/obj/machinery/light,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -40623,12 +39383,12 @@
dir = 10
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bCy" = (
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bCz" = (
/obj/structure/cable{
d1 = 1;
@@ -40642,7 +39402,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bCA" = (
/obj/machinery/light{
dir = 1
@@ -40655,19 +39415,19 @@
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bCB" = (
/obj/machinery/computer/atmos_control,
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bCC" = (
/obj/machinery/computer/atmos_alert,
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bCD" = (
/obj/machinery/meter{
frequency = 1441;
@@ -40680,7 +39440,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bCE" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
@@ -40693,7 +39453,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bCF" = (
/obj/machinery/meter{
frequency = 1441;
@@ -40704,7 +39464,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bCG" = (
/obj/machinery/atmospherics/pipe/manifold/supply/visible{
tag = "icon-manifold (NORTH)";
@@ -40714,7 +39474,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bCH" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
@@ -40724,13 +39484,13 @@
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bCI" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bCJ" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -40747,9 +39507,7 @@
name = "mass driver door"
},
/turf/open/floor/plating,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"bCL" = (
/obj/structure/cable{
d1 = 1;
@@ -40757,13 +39515,13 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bCM" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 6
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bCN" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -40786,40 +39544,38 @@
tag = "icon-yellow (EAST)";
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"bCP" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bCQ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating/airless,
-/area/atmos)
+/area/engine/atmos)
"bCR" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "mix_sensor"
},
/turf/open/floor/engine/vacuum,
-/area/atmos)
+/area/engine/atmos)
"bCS" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/engine/vacuum,
-/area/atmos)
+/area/engine/atmos)
"bCT" = (
/obj/machinery/door/poddoor{
id = "mixvent";
name = "Starboard Vent"
},
/turf/open/floor/engine/vacuum,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bCU" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1;
@@ -40835,9 +39591,7 @@
pixel_y = -32
},
/turf/open/floor/engine/vacuum,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bCV" = (
/obj/machinery/igniter{
icon_state = "igniter0";
@@ -40851,9 +39605,7 @@
icon_state = "1-2"
},
/turf/open/floor/engine/vacuum,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bCW" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -40865,9 +39617,7 @@
pump_direction = 0
},
/turf/open/floor/engine/vacuum,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bCX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/machinery/light/small{
@@ -40882,7 +39632,7 @@
pixel_y = 0
},
/turf/open/floor/plating,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bCY" = (
/obj/structure/closet/emcloset{
anchored = 1;
@@ -40893,7 +39643,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bCZ" = (
/obj/machinery/door/poddoor{
id = "toxinsdriver";
@@ -40903,18 +39653,18 @@
dir = 8
},
/turf/open/floor/plating,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bDa" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/engine,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bDb" = (
/obj/item/stack/spacecash/c10,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bDc" = (
/obj/machinery/atmospherics/components/unary/vent_pump,
/turf/open/floor/plasteel/freezer,
@@ -40963,7 +39713,7 @@
/turf/open/floor/plasteel/whiteblue/side{
dir = 10
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bDi" = (
/obj/machinery/light,
/obj/item/weapon/soap/nanotrasen,
@@ -40971,13 +39721,13 @@
/obj/item/weapon/gun/syringe,
/obj/structure/table/glass,
/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bDj" = (
/obj/structure/closet/l3closet,
/turf/open/floor/plasteel/whiteblue/side{
dir = 6
},
-/area/medical/medbay)
+/area/medical/medbay/central)
"bDk" = (
/obj/structure/table,
/obj/item/weapon/hemostat,
@@ -41071,7 +39821,7 @@
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bDv" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
@@ -41079,7 +39829,7 @@
on = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bDw" = (
/obj/structure/cable{
d1 = 1;
@@ -41093,7 +39843,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bDx" = (
/obj/structure/cable{
d1 = 4;
@@ -41104,7 +39854,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bDy" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
dir = 4
@@ -41115,7 +39865,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bDz" = (
/obj/structure/cable{
d1 = 4;
@@ -41123,7 +39873,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bDA" = (
/obj/structure/cable{
d1 = 4;
@@ -41136,7 +39886,7 @@
on = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bDB" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/structure/cable{
@@ -41145,43 +39895,37 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bDC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/closed/wall,
-/area/maintenance/port{
- name = "Monastery Maintenance"
- })
+/area/maintenance/department/chapel/monastery)
"bDD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
-/area/maintenance/port{
- name = "Monastery Maintenance"
- })
+/area/maintenance/department/chapel/monastery)
"bDE" = (
/obj/structure/cable{
icon_state = "1-8"
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bDF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/closed/wall,
-/area/maintenance/port{
- name = "Monastery Maintenance"
- })
+/area/maintenance/department/chapel/monastery)
"bDG" = (
/obj/machinery/atmospherics/pipe/manifold/green/visible{
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bDH" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
@@ -41190,7 +39934,7 @@
tag = "icon-yellow (EAST)";
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"bDI" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
@@ -41202,7 +39946,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bDJ" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/green/visible{
@@ -41218,7 +39962,7 @@
pixel_y = 1
},
/turf/open/floor/engine/vacuum,
-/area/atmos)
+/area/engine/atmos)
"bDL" = (
/obj/structure/cable/yellow,
/obj/structure/cable/yellow{
@@ -41236,35 +39980,33 @@
luminosity = 2
},
/turf/open/floor/engine/vacuum,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bDM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plating,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bDN" = (
/obj/item/stack/medical/bruise_pack,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bDO" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
dir = 8
},
/turf/open/floor/engine,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bDP" = (
/obj/structure/window/reinforced,
/turf/open/floor/engine,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bDQ" = (
/obj/structure/window/reinforced,
/mob/living/simple_animal/chicken{
name = "Killer Cluck"
},
/turf/open/floor/engine,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bDR" = (
/obj/machinery/door/window/eastright{
base_state = "left";
@@ -41274,11 +40016,11 @@
/obj/structure/window/reinforced,
/obj/structure/chair/stool,
/turf/open/floor/engine,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bDS" = (
/obj/structure/grille/broken,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bDT" = (
/obj/structure/table/glass,
/obj/item/weapon/reagent_containers/dropper,
@@ -41345,18 +40087,18 @@
"bEa" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bEb" = (
/obj/structure/closet/firecloset,
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bEc" = (
/obj/structure/chair,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bEd" = (
/obj/machinery/light/small{
dir = 1
@@ -41364,7 +40106,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bEe" = (
/obj/structure/cable{
d1 = 1;
@@ -41382,7 +40124,7 @@
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bEf" = (
/obj/structure/cable{
d1 = 4;
@@ -41396,7 +40138,7 @@
req_access_txt = "12"
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bEg" = (
/obj/structure/cable{
d1 = 4;
@@ -41458,7 +40200,7 @@
},
/obj/machinery/meter,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bEm" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
@@ -41466,7 +40208,7 @@
on = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bEn" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -41474,26 +40216,26 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bEo" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bEp" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bEq" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
initialize_directions = 11
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bEr" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -41504,7 +40246,7 @@
on = 0
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bEs" = (
/obj/structure/chair/wood/normal{
icon_state = "wooden_chair";
@@ -41517,14 +40259,14 @@
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bEu" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
name = "Pure to Port"
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bEv" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -41535,22 +40277,20 @@
on = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bEw" = (
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (EAST)";
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"bEx" = (
/obj/structure/cable/yellow,
/obj/machinery/power/turbine{
luminosity = 2
},
/turf/open/floor/engine/vacuum,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bEy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/machinery/door/airlock/external{
@@ -41559,7 +40299,7 @@
req_one_access_txt = "0"
},
/turf/open/floor/plating,
-/area/toxins/mineral_storeroom)
+/area/science/mineral_storeroom)
"bEz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
@@ -41571,15 +40311,15 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bEB" = (
/obj/structure/chair/stool,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bEC" = (
/obj/structure/grille,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bED" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall/r_wall,
@@ -41595,7 +40335,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bEF" = (
/obj/structure/cable{
d1 = 4;
@@ -41606,7 +40346,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bEG" = (
/obj/structure/cable{
d1 = 4;
@@ -41618,7 +40358,7 @@
},
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bEH" = (
/obj/structure/cable{
d1 = 4;
@@ -41632,7 +40372,7 @@
dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bEI" = (
/obj/structure/cable{
d1 = 1;
@@ -41647,7 +40387,7 @@
dir = 9
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bEJ" = (
/obj/structure/chair/stool,
/turf/open/floor/plasteel,
@@ -41665,23 +40405,23 @@
dir = 9
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bEM" = (
/turf/open/floor/plasteel/yellow/side,
-/area/atmos)
+/area/engine/atmos)
"bEN" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/open/floor/plasteel/yellow/side,
-/area/atmos)
+/area/engine/atmos)
"bEO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/yellow/side,
-/area/atmos)
+/area/engine/atmos)
"bEP" = (
/obj/machinery/space_heater,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -41693,27 +40433,27 @@
network = list("SS13")
},
/turf/open/floor/plasteel/yellow/side,
-/area/atmos)
+/area/engine/atmos)
"bEQ" = (
/obj/machinery/space_heater,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/yellow/side,
-/area/atmos)
+/area/engine/atmos)
"bER" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bES" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bET" = (
/obj/structure/table,
/obj/item/clothing/head/welding{
@@ -41731,7 +40471,7 @@
layer = 4
},
/turf/open/floor/plasteel/yellow/side,
-/area/atmos)
+/area/engine/atmos)
"bEU" = (
/obj/structure/table,
/obj/item/stack/sheet/glass{
@@ -41742,7 +40482,7 @@
/obj/item/device/t_scanner,
/obj/item/device/t_scanner,
/turf/open/floor/plasteel/yellow/side,
-/area/atmos)
+/area/engine/atmos)
"bEV" = (
/obj/structure/table,
/obj/item/stack/sheet/metal{
@@ -41761,37 +40501,37 @@
layer = 3.2
},
/turf/open/floor/plasteel/yellow/side,
-/area/atmos)
+/area/engine/atmos)
"bEW" = (
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bEX" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 4;
initialize_directions = 11
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bEY" = (
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bEZ" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bFa" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bFb" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
@@ -41802,7 +40542,7 @@
tag = "icon-yellow (EAST)";
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"bFc" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -41816,28 +40556,24 @@
pump_direction = 0
},
/turf/open/floor/engine/n2o,
-/area/atmos)
+/area/engine/atmos)
"bFd" = (
/turf/open/floor/engine/n2o,
-/area/atmos)
+/area/engine/atmos)
"bFe" = (
/obj/structure/sign/fire{
pixel_x = 0;
pixel_y = 0
},
/turf/closed/wall/r_wall,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bFf" = (
/obj/machinery/door/poddoor{
id = "turbinevent";
name = "Aft Vent"
},
/turf/open/floor/engine/vacuum,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bFg" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
@@ -41848,18 +40584,18 @@
pixel_y = -32
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bFi" = (
/obj/item/trash/chips,
/obj/effect/decal/cleanable/deadcockroach,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bFj" = (
/obj/structure/table,
/obj/item/weapon/paper,
/obj/item/weapon/pen,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bFk" = (
/obj/structure/cable{
d1 = 1;
@@ -41872,7 +40608,7 @@
dir = 5
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bFl" = (
/obj/structure/cable{
d1 = 4;
@@ -41888,7 +40624,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bFm" = (
/obj/structure/cable{
d1 = 4;
@@ -41900,7 +40636,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bFn" = (
/obj/structure/cable{
d1 = 4;
@@ -41916,7 +40652,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bFo" = (
/obj/structure/cable{
d1 = 4;
@@ -41932,7 +40668,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bFp" = (
/obj/structure/cable{
d1 = 4;
@@ -41945,7 +40681,7 @@
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
/mob/living/simple_animal/mouse/gray,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bFq" = (
/obj/structure/cable{
d1 = 4;
@@ -41964,7 +40700,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bFr" = (
/obj/structure/cable{
d1 = 4;
@@ -41977,7 +40713,7 @@
dir = 9
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bFs" = (
/turf/closed/wall/r_wall,
/area/engine/gravity_generator)
@@ -41985,7 +40721,7 @@
/obj/structure/table,
/obj/item/trash/chips,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bFu" = (
/turf/closed/wall,
/area/storage/tech)
@@ -42038,7 +40774,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bFD" = (
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/airlock/glass_atmos{
@@ -42048,7 +40784,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bFE" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 0;
@@ -42056,11 +40792,11 @@
on = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bFF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bFG" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 0;
@@ -42075,7 +40811,7 @@
pixel_y = 0
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bFH" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 0;
@@ -42083,15 +40819,15 @@
on = 0
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bFI" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bFJ" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bFK" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
@@ -42104,52 +40840,52 @@
tag = "icon-yellow (EAST)";
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"bFL" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "n2o_sensor"
},
/turf/open/floor/engine/n2o,
-/area/atmos)
+/area/engine/atmos)
"bFM" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/turf/open/floor/engine/n2o,
-/area/atmos)
+/area/engine/atmos)
"bFN" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/engine/n2o,
-/area/atmos)
+/area/engine/atmos)
"bFO" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bFP" = (
/obj/structure/closet/emcloset,
/obj/effect/decal/cleanable/deadcockroach,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bFQ" = (
/obj/structure/closet/firecloset,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bFR" = (
/obj/structure/rack,
/obj/item/weapon/book/manual/detective,
/obj/item/clothing/head/that,
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bFS" = (
/obj/structure/girder,
/turf/closed/wall,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bFT" = (
/obj/item/trash/raisins,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bFU" = (
/obj/structure/cable{
d1 = 4;
@@ -42166,7 +40902,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bFV" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -42176,7 +40912,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bFW" = (
/turf/open/floor/plasteel/black,
/area/engine/gravity_generator)
@@ -42385,14 +41121,14 @@
/turf/open/floor/plasteel{
name = "floor"
},
-/area/atmos)
+/area/engine/atmos)
"bGo" = (
/obj/structure/chair/office/dark{
dir = 8
},
/obj/effect/landmark/start/atmospheric_technician,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bGp" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -42400,26 +41136,26 @@
on = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bGq" = (
/obj/structure/tank_dispenser,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bGr" = (
/obj/machinery/pipedispenser,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bGs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bGt" = (
/obj/structure/closet/secure_closet/atmospherics,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bGu" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
@@ -42431,7 +41167,7 @@
/turf/open/floor/plasteel{
dir = 2
},
-/area/atmos)
+/area/engine/atmos)
"bGv" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 8
@@ -42442,7 +41178,7 @@
/turf/open/floor/plasteel{
dir = 2
},
-/area/atmos)
+/area/engine/atmos)
"bGw" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 1;
@@ -42450,7 +41186,7 @@
on = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bGx" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 8;
@@ -42459,7 +41195,7 @@
pixel_y = 1
},
/turf/open/floor/engine/n2o,
-/area/atmos)
+/area/engine/atmos)
"bGy" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 4
@@ -42486,11 +41222,11 @@
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bGC" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/closed/wall,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bGD" = (
/turf/open/floor/plasteel/vault{
dir = 1
@@ -42646,7 +41382,7 @@
/turf/open/floor/plasteel{
name = "floor"
},
-/area/atmos)
+/area/engine/atmos)
"bGU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -42656,14 +41392,14 @@
},
/obj/effect/landmark/start/atmospheric_technician,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bGV" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bGW" = (
/obj/structure/rack{
dir = 8;
@@ -42690,7 +41426,7 @@
icon_state = "tube1"
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bGX" = (
/obj/machinery/pipedispenser/disposal,
/obj/machinery/light{
@@ -42703,21 +41439,21 @@
network = list("SS13")
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bGY" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bGZ" = (
/obj/machinery/suit_storage_unit/atmos,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bHa" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 4;
@@ -42725,18 +41461,18 @@
},
/obj/machinery/meter,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bHb" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bHc" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
},
/obj/machinery/meter,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bHd" = (
/obj/machinery/light{
dir = 4
@@ -42745,7 +41481,7 @@
tag = "icon-yellow (EAST)";
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"bHe" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (SOUTHEAST)";
@@ -42754,7 +41490,7 @@
},
/obj/item/weapon/wrench,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bHf" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
tag = "icon-manifold (EAST)";
@@ -42763,21 +41499,21 @@
},
/obj/machinery/meter,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bHg" = (
/obj/item/weapon/broken_bottle,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bHh" = (
/obj/effect/decal/cleanable/ash,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bHi" = (
/obj/structure/closet,
/obj/item/weapon/restraints/handcuffs/cable,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bHj" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering{
@@ -42994,7 +41730,7 @@
/turf/open/floor/plasteel{
name = "floor"
},
-/area/atmos)
+/area/engine/atmos)
"bHC" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=4";
@@ -43004,7 +41740,7 @@
/turf/open/floor/plasteel/loadingarea{
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"bHD" = (
/obj/structure/disposalpipe/sortjunction{
dir = 2;
@@ -43018,18 +41754,18 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bHE" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bHF" = (
/obj/machinery/pipedispenser/disposal/transit_tube,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bHG" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 4;
@@ -43037,7 +41773,7 @@
},
/obj/item/weapon/wrench,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bHH" = (
/obj/machinery/camera{
c_tag = "Atmospherics Starboard";
@@ -43053,7 +41789,7 @@
tag = "icon-yellow (EAST)";
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"bHI" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
@@ -43062,7 +41798,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bHJ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -43076,14 +41812,14 @@
pump_direction = 0
},
/turf/open/floor/engine/plasma,
-/area/atmos)
+/area/engine/atmos)
"bHK" = (
/turf/open/floor/engine/plasma,
-/area/atmos)
+/area/engine/atmos)
"bHL" = (
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/engine/plasma,
-/area/atmos)
+/area/engine/atmos)
"bHM" = (
/obj/structure/disposalpipe/junction{
dir = 2;
@@ -43092,7 +41828,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bHN" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -43100,14 +41836,14 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating/airless,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bHO" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/chair/stool,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bHP" = (
/obj/item/stack/sheet/cardboard{
amount = 14
@@ -43118,19 +41854,19 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bHQ" = (
/obj/machinery/door/airlock/atmos{
name = "Atmospherics Maintenance";
req_access_txt = "12;24"
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bHR" = (
/obj/machinery/atmospherics/components/binary/valve,
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bHS" = (
/obj/machinery/light/small{
dir = 4
@@ -43141,22 +41877,22 @@
on = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bHT" = (
/obj/item/weapon/picket_sign,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bHU" = (
/obj/structure/bonfire,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bHV" = (
/obj/structure/closet,
/obj/item/weapon/cigbutt/cigarbutt,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bHW" = (
/obj/structure/cable{
d1 = 1;
@@ -43167,12 +41903,12 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bHX" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bHY" = (
/obj/machinery/gravity_generator/main/station,
/turf/open/floor/plasteel/vault{
@@ -43323,7 +42059,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bIq" = (
/obj/machinery/light{
icon_state = "tube1";
@@ -43339,20 +42075,20 @@
pixel_y = 0
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bIr" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
},
/obj/structure/chair/stool,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bIs" = (
/obj/machinery/atmospherics/components/unary/thermomachine/heater{
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bIt" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
@@ -43365,36 +42101,36 @@
tag = "icon-yellow (EAST)";
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"bIu" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "tox_sensor"
},
/turf/open/floor/engine/plasma,
-/area/atmos)
+/area/engine/atmos)
"bIv" = (
/obj/machinery/portable_atmospherics/canister/toxins,
/turf/open/floor/engine/plasma,
-/area/atmos)
+/area/engine/atmos)
"bIw" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/engine/plasma,
-/area/atmos)
+/area/engine/atmos)
"bIx" = (
/obj/structure/table,
/obj/item/weapon/storage/box/mousetraps,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bIy" = (
/obj/structure/table,
/obj/item/stack/cable_coil,
/obj/item/weapon/extinguisher,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bIz" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1;
@@ -43402,32 +42138,32 @@
},
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bIA" = (
/obj/machinery/atmospherics/components/unary/tank/air{
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bIB" = (
/obj/structure/grille/broken,
/obj/structure/piano,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bIC" = (
/obj/item/weapon/reagent_containers/food/snacks/beans,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bID" = (
/obj/structure/closet,
/obj/item/weapon/shard,
/obj/item/stack/spacecash/c10,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bIE" = (
/obj/machinery/space_heater,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bIF" = (
/obj/machinery/light,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -43642,7 +42378,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bIZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
@@ -43650,7 +42386,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bJa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
@@ -43669,7 +42405,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bJb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
@@ -43681,11 +42417,11 @@
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bJc" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bJd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
@@ -43697,7 +42433,7 @@
pixel_y = 26
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bJe" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
@@ -43706,7 +42442,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bJf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
@@ -43718,7 +42454,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bJg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
@@ -43732,7 +42468,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/atmos)
+/area/engine/atmos)
"bJh" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
@@ -43740,18 +42476,18 @@
on = 0
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bJi" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/obj/item/weapon/cigbutt,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bJj" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
dir = 8
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bJk" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 1;
@@ -43759,7 +42495,7 @@
on = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bJl" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
@@ -43768,7 +42504,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bJm" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 8;
@@ -43777,11 +42513,11 @@
pixel_y = 1
},
/turf/open/floor/engine/plasma,
-/area/atmos)
+/area/engine/atmos)
"bJn" = (
/obj/item/weapon/cigbutt/cigarbutt,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bJo" = (
/obj/structure/sign/securearea,
/turf/closed/wall/r_wall,
@@ -43898,19 +42634,19 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bJz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bJA" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 6
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bJB" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
@@ -43918,13 +42654,13 @@
on = 0
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bJC" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bJD" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1
@@ -43957,13 +42693,13 @@
tag = "icon-yellow (EAST)";
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"bJI" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bJJ" = (
/obj/docking_port/stationary{
dheight = 9;
@@ -43981,12 +42717,12 @@
/obj/structure/mopbucket,
/obj/item/weapon/mop,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bJL" = (
/obj/structure/grille/broken,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bJM" = (
/obj/structure/bookcase/random/adult,
/turf/open/floor/plasteel/black,
@@ -43996,7 +42732,7 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bJO" = (
/obj/structure/table/wood,
/obj/item/weapon/clipboard,
@@ -44004,12 +42740,12 @@
/obj/item/weapon/pen,
/obj/item/clothing/head/fedora,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bJP" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bJQ" = (
/obj/structure/closet{
name = "Clue Closet"
@@ -44026,18 +42762,18 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bJR" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bJS" = (
/obj/item/weapon/circuitboard/computer/libraryconsole,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bJT" = (
/turf/closed/wall/r_wall,
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bJU" = (
/obj/item/weapon/cartridge/engineering{
pixel_x = 4;
@@ -44063,7 +42799,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 9
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bJV" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/light{
@@ -44078,7 +42814,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bJW" = (
/obj/machinery/airalarm{
dir = 2;
@@ -44088,7 +42824,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bJX" = (
/obj/machinery/computer/station_alert,
/obj/machinery/computer/security/telescreen/entertainment{
@@ -44097,13 +42833,13 @@
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bJY" = (
/obj/machinery/computer/card/minor/ce,
/turf/open/floor/plasteel/yellow/side{
dir = 5
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bJZ" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-07";
@@ -44332,7 +43068,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bKq" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -44342,7 +43078,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bKr" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -44353,19 +43089,19 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bKs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bKt" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bKu" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -44376,7 +43112,7 @@
on = 0
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bKv" = (
/obj/effect/decal/remains/human,
/turf/closed/mineral,
@@ -44404,7 +43140,7 @@
"bKy" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bKz" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
@@ -44415,7 +43151,7 @@
tag = "icon-yellow (EAST)";
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"bKA" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -44424,7 +43160,7 @@
},
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bKB" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -44438,14 +43174,14 @@
pump_direction = 0
},
/turf/open/floor/engine/co2,
-/area/atmos)
+/area/engine/atmos)
"bKC" = (
/turf/open/floor/engine/co2,
-/area/atmos)
+/area/engine/atmos)
"bKD" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bKE" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/light/small{
@@ -44455,13 +43191,13 @@
broken = 1;
icon_state = "platingdmg1"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bKF" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bKG" = (
/obj/structure/closet/lawcloset,
/obj/item/weapon/gavelhammer,
@@ -44469,13 +43205,13 @@
/obj/item/weapon/cartridge/lawyer,
/obj/item/clothing/head/powdered_wig,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bKH" = (
/obj/structure/chair{
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bKI" = (
/obj/item/weapon/book/manual/barman_recipes,
/obj/structure/closet/crate{
@@ -44485,7 +43221,7 @@
/obj/item/weapon/cigbutt,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bKJ" = (
/obj/machinery/button/door{
desc = "A remote control-switch for the engineering security doors.";
@@ -44518,20 +43254,20 @@
dir = 8;
tag = ""
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bKK" = (
/turf/open/floor/plasteel,
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bKL" = (
/obj/effect/landmark/start/chief_engineer,
/turf/open/floor/plasteel,
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bKM" = (
/obj/structure/chair/office/light{
dir = 1
},
/turf/open/floor/plasteel,
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bKN" = (
/obj/structure/table/reinforced,
/obj/item/weapon/clipboard,
@@ -44549,7 +43285,7 @@
tag = "icon-yellow (EAST)";
dir = 4
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bKO" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
@@ -44711,7 +43447,7 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bLc" = (
/obj/item/weapon/pickaxe/mini,
/turf/closed/mineral,
@@ -44726,17 +43462,17 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bLe" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bLf" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bLg" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
@@ -44749,24 +43485,24 @@
tag = "icon-yellow (EAST)";
dir = 4
},
-/area/atmos)
+/area/engine/atmos)
"bLh" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "co2_sensor"
},
/turf/open/floor/engine/co2,
-/area/atmos)
+/area/engine/atmos)
"bLi" = (
/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
/turf/open/floor/engine/co2,
-/area/atmos)
+/area/engine/atmos)
"bLj" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/engine/co2,
-/area/atmos)
+/area/engine/atmos)
"bLk" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/closed/mineral/random/low_chance,
@@ -44778,13 +43514,13 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bLm" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bLn" = (
/obj/structure/closet/secure_closet/engineering_chief{
req_access_txt = "0"
@@ -44798,7 +43534,7 @@
dir = 8;
tag = ""
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bLo" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
@@ -44807,13 +43543,13 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel,
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bLp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/plasteel,
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bLq" = (
/obj/structure/cable{
d1 = 2;
@@ -44824,7 +43560,7 @@
on = 1
},
/turf/open/floor/plasteel,
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bLr" = (
/obj/machinery/power/apc{
dir = 4;
@@ -44841,7 +43577,7 @@
tag = "icon-yellow (EAST)";
dir = 4
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bLs" = (
/obj/structure/rack{
dir = 8;
@@ -45094,7 +43830,7 @@
/obj/machinery/portable_atmospherics/scrubber,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bLJ" = (
/obj/machinery/portable_atmospherics/pump,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
@@ -45103,7 +43839,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bLK" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 4;
@@ -45111,20 +43847,20 @@
on = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bLL" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bLM" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bLN" = (
/obj/machinery/camera{
c_tag = "Telecoms External Fore";
@@ -45143,13 +43879,13 @@
},
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bLP" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 10
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bLQ" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 1;
@@ -45157,7 +43893,7 @@
on = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bLR" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -45165,7 +43901,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bLS" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 8;
@@ -45174,16 +43910,16 @@
pixel_y = 1
},
/turf/open/floor/engine/co2,
-/area/atmos)
+/area/engine/atmos)
"bLT" = (
/obj/item/device/flashlight,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bLU" = (
/obj/effect/decal/cleanable/vomit/old,
/obj/structure/grille/broken,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bLV" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance{
@@ -45191,20 +43927,20 @@
name = "2maintenance loot spawner"
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bLW" = (
/obj/machinery/suit_storage_unit/ce,
/turf/open/floor/plasteel/yellow/side{
dir = 10
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bLX" = (
/turf/open/floor/plasteel/yellow/side,
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bLY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/yellow/side,
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bLZ" = (
/obj/structure/cable{
d1 = 1;
@@ -45217,7 +43953,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/yellow/side,
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bMa" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -45229,7 +43965,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 6
},
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bMb" = (
/turf/closed/wall/r_wall,
/area/engine/engineering)
@@ -45307,15 +44043,15 @@
/obj/machinery/portable_atmospherics/scrubber,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plasteel/yellow/side,
-/area/atmos)
+/area/engine/atmos)
"bMj" = (
/obj/machinery/portable_atmospherics/pump,
/turf/open/floor/plasteel/yellow/side,
-/area/atmos)
+/area/engine/atmos)
"bMk" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/turf/open/floor/plasteel/yellow/side,
-/area/atmos)
+/area/engine/atmos)
"bMl" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
@@ -45325,7 +44061,7 @@
sensors = list("n2_sensor" = "Tank")
},
/turf/open/floor/plasteel/yellow/side,
-/area/atmos)
+/area/engine/atmos)
"bMm" = (
/obj/machinery/camera/motion{
c_tag = "Telecoms External Access";
@@ -45337,7 +44073,7 @@
"bMn" = (
/obj/machinery/light,
/turf/open/floor/plasteel/yellow/side,
-/area/atmos)
+/area/engine/atmos)
"bMo" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
@@ -45347,17 +44083,17 @@
sensors = list("o2_sensor" = "Tank")
},
/turf/open/floor/plasteel/yellow/side,
-/area/atmos)
+/area/engine/atmos)
"bMp" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
dir = 8
},
/turf/open/floor/plasteel/yellow/side,
-/area/atmos)
+/area/engine/atmos)
"bMq" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/open/floor/plasteel/yellow/side,
-/area/atmos)
+/area/engine/atmos)
"bMr" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
@@ -45367,7 +44103,7 @@
sensors = list("air_sensor" = "Tank")
},
/turf/open/floor/plasteel/yellow/side,
-/area/atmos)
+/area/engine/atmos)
"bMs" = (
/obj/structure/lattice,
/obj/machinery/camera/motion{
@@ -45385,13 +44121,13 @@
on = 1
},
/turf/open/floor/plasteel/yellow/side,
-/area/atmos)
+/area/engine/atmos)
"bMu" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
/turf/open/floor/plasteel/yellow/side,
-/area/atmos)
+/area/engine/atmos)
"bMv" = (
/obj/structure/lattice,
/obj/machinery/camera/motion{
@@ -45408,7 +44144,7 @@
/turf/open/floor/plasteel/yellow/side{
dir = 6
},
-/area/atmos)
+/area/engine/atmos)
"bMx" = (
/obj/structure/cable{
d1 = 1;
@@ -45421,7 +44157,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bMy" = (
/obj/structure/cable{
d1 = 2;
@@ -45434,18 +44170,18 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bMz" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bMA" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bMB" = (
/obj/machinery/door/airlock/glass_command{
name = "Chief Engineer";
@@ -45459,10 +44195,10 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bMC" = (
/turf/closed/wall,
-/area/engine/chiefs_office)
+/area/crew_quarters/heads/chief)
"bMD" = (
/obj/machinery/computer/atmos_alert,
/turf/open/floor/plasteel/yellow/side{
@@ -45575,7 +44311,7 @@
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bMR" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 0;
@@ -45583,7 +44319,7 @@
on = 0
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bMS" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/structure/grille,
@@ -45593,7 +44329,7 @@
initialize_directions = 12
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bMT" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 2;
@@ -45602,15 +44338,15 @@
req_access_txt = "24"
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bMU" = (
/obj/structure/table_frame/wood,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bMV" = (
/obj/item/trash/candy,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bMW" = (
/turf/open/space,
/area/space/nearstation)
@@ -45631,7 +44367,7 @@
d2 = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bMZ" = (
/obj/structure/cable{
d1 = 4;
@@ -45649,7 +44385,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bNa" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/maintenance{
@@ -45985,7 +44721,7 @@
"bNv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bNw" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
@@ -46004,19 +44740,19 @@
pixel_y = 0
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bNy" = (
/obj/structure/table_frame/wood,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bNz" = (
/obj/item/weapon/bikehorn/rubberducky,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bNA" = (
/turf/closed/wall/r_wall,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bNB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
@@ -46122,7 +44858,7 @@
/obj/structure/grille,
/obj/machinery/meter,
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bNO" = (
/obj/machinery/atmospherics/pipe/simple,
/obj/structure/grille,
@@ -46130,7 +44866,7 @@
name = "Mixed Air Tank In"
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bNP" = (
/obj/machinery/atmospherics/pipe/simple,
/obj/structure/grille,
@@ -46138,7 +44874,7 @@
name = "Mixed Air Tank Out"
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"bNQ" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 1;
@@ -46147,7 +44883,7 @@
req_access_txt = "24"
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bNR" = (
/obj/structure/plasticflaps{
opacity = 1
@@ -46317,14 +45053,14 @@
id = "n2_in"
},
/turf/open/floor/engine/n2,
-/area/atmos)
+/area/engine/atmos)
"bOi" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "n2_sensor"
},
/turf/open/floor/engine/n2,
-/area/atmos)
+/area/engine/atmos)
"bOj" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -46338,7 +45074,7 @@
pump_direction = 0
},
/turf/open/floor/engine/n2,
-/area/atmos)
+/area/engine/atmos)
"bOk" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1;
@@ -46346,14 +45082,14 @@
id = "o2_in"
},
/turf/open/floor/engine/o2,
-/area/atmos)
+/area/engine/atmos)
"bOl" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "o2_sensor"
},
/turf/open/floor/engine/o2,
-/area/atmos)
+/area/engine/atmos)
"bOm" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -46367,7 +45103,7 @@
pump_direction = 0
},
/turf/open/floor/engine/o2,
-/area/atmos)
+/area/engine/atmos)
"bOn" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1;
@@ -46375,14 +45111,14 @@
id = "air_in"
},
/turf/open/floor/engine/air,
-/area/atmos)
+/area/engine/atmos)
"bOo" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "air_sensor"
},
/turf/open/floor/engine/air,
-/area/atmos)
+/area/engine/atmos)
"bOp" = (
/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{
dir = 1;
@@ -46396,13 +45132,13 @@
pump_direction = 0
},
/turf/open/floor/engine/air,
-/area/atmos)
+/area/engine/atmos)
"bOq" = (
/obj/structure/rack,
/obj/item/weapon/paper,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bOr" = (
/obj/item/toy/beach_ball{
desc = "The simple beach ball is one of Nanotrasen's most popular products. 'Why do we make beach balls? Because we can! (TM)' - Nanotrasen";
@@ -46569,42 +45305,42 @@
/area/engine/engineering)
"bOH" = (
/turf/open/floor/engine/n2,
-/area/atmos)
+/area/engine/atmos)
"bOI" = (
/obj/machinery/portable_atmospherics/canister/nitrogen,
/turf/open/floor/engine/n2,
-/area/atmos)
+/area/engine/atmos)
"bOJ" = (
/turf/open/floor/engine/o2,
-/area/atmos)
+/area/engine/atmos)
"bOK" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/engine/o2,
-/area/atmos)
+/area/engine/atmos)
"bOL" = (
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/engine/air,
-/area/atmos)
+/area/engine/atmos)
"bOM" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/effect/landmark/event_spawn,
/turf/open/floor/engine/air,
-/area/atmos)
+/area/engine/atmos)
"bON" = (
/turf/open/floor/engine/air,
-/area/atmos)
+/area/engine/atmos)
"bOO" = (
/obj/item/trash/tray,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bOP" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bOQ" = (
/obj/machinery/shieldgen,
/turf/open/floor/plating,
@@ -46724,15 +45460,15 @@
"bPe" = (
/obj/machinery/light/small,
/turf/open/floor/engine/n2,
-/area/atmos)
+/area/engine/atmos)
"bPf" = (
/obj/machinery/light/small,
/turf/open/floor/engine/o2,
-/area/atmos)
+/area/engine/atmos)
"bPg" = (
/obj/machinery/light/small,
/turf/open/floor/engine/air,
-/area/atmos)
+/area/engine/atmos)
"bPh" = (
/obj/structure/table,
/obj/item/weapon/wirecutters,
@@ -46742,24 +45478,24 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bPi" = (
/obj/structure/table,
/obj/item/weapon/storage/fancy/cigarettes/cigpack_robustgold,
/obj/effect/decal/cleanable/deadcockroach,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bPj" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bPk" = (
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bPl" = (
/obj/machinery/field/generator,
/turf/open/floor/plating,
@@ -46919,7 +45655,7 @@
"bPz" = (
/obj/item/weapon/shovel,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bPA" = (
/obj/machinery/portable_atmospherics/canister/toxins,
/turf/open/floor/plating,
@@ -47085,13 +45821,13 @@
/obj/item/stack/medical/gauze,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bPU" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/random,
/obj/structure/table/optable,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bPV" = (
/obj/machinery/power/emitter,
/turf/open/floor/plating,
@@ -47195,30 +45931,30 @@
"bQf" = (
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bQg" = (
/obj/effect/decal/cleanable/robot_debris{
icon_state = "gib7"
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bQh" = (
/obj/item/device/radio,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bQi" = (
/obj/effect/spawner/lootdrop/maintenance,
/obj/structure/grille/broken,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bQj" = (
/obj/machinery/field/generator,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bQk" = (
/obj/machinery/power/emitter,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bQl" = (
/obj/effect/decal/cleanable/cobweb,
/obj/effect/turf_decal/stripes/line{
@@ -47364,11 +46100,11 @@
/obj/structure/chair,
/obj/item/weapon/cigbutt,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bQB" = (
/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bQC" = (
/obj/structure/transit_tube_pod,
/obj/structure/transit_tube/station/reverse{
@@ -49059,10 +47795,10 @@
/obj/structure/window/reinforced/fulltile,
/obj/structure/sign/barsign,
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"bUu" = (
/turf/closed/wall/r_wall,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bUv" = (
/obj/machinery/door/poddoor/shutters{
id = "supplybridge"
@@ -49073,7 +47809,7 @@
/turf/open/floor/plating{
tag = "icon-warnplate (NORTH)"
},
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"bUw" = (
/obj/effect/landmark/start/security_officer,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
@@ -49096,7 +47832,7 @@
pixel_x = -24
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"bUz" = (
/obj/structure/cable{
d1 = 4;
@@ -49113,7 +47849,7 @@
/turf/open/floor/plating{
tag = "icon-warnplate (WEST)"
},
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"bUA" = (
/obj/machinery/door/airlock/glass{
name = "space-bridge access"
@@ -49140,14 +47876,14 @@
/turf/open/floor/plating{
tag = "icon-warnplate (WEST)"
},
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"bUB" = (
/obj/item/weapon/storage/secure/safe{
pixel_x = -22;
pixel_y = 32
},
/turf/open/floor/plasteel/darkred/side,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bUC" = (
/obj/structure/cable{
d1 = 1;
@@ -49170,9 +47906,7 @@
icon_state = "1-8"
},
/turf/open/floor/plasteel/black,
-/area/security/processing{
- name = "Crematorium"
- })
+/area/security/processing/cremation)
"bUE" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (SOUTHEAST)";
@@ -49180,9 +47914,7 @@
dir = 6
},
/turf/closed/wall,
-/area/security/processing{
- name = "Crematorium"
- })
+/area/security/processing/cremation)
"bUF" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel,
@@ -49191,7 +47923,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"bUH" = (
/turf/closed/wall/r_wall,
/area/maintenance/fore)
@@ -49208,7 +47940,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"bUJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -49227,14 +47959,14 @@
/obj/structure/window/reinforced/fulltile,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"bUL" = (
/obj/machinery/computer/shuttle/monastery_shuttle,
/obj/structure/sign/pods{
pixel_y = 32
},
/turf/open/floor/plasteel/black,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"bUM" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -49242,14 +47974,14 @@
dir = 1
},
/turf/open/floor/plating,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"bUN" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/holopad,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"bUO" = (
/obj/machinery/light{
icon_state = "tube1";
@@ -49280,7 +48012,7 @@
pixel_x = -24
},
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/crew_quarters/dorms)
"bUR" = (
/obj/structure/cable{
d1 = 4;
@@ -49292,9 +48024,7 @@
broken = 1;
icon_state = "platingdmg1"
},
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"bUS" = (
/obj/structure/cable{
d1 = 4;
@@ -49308,9 +48038,7 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"bUT" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
@@ -49324,16 +48052,12 @@
broken = 1;
icon_state = "platingdmg3"
},
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"bUV" = (
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"bUW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/extinguisher_cabinet{
@@ -49357,9 +48081,7 @@
broken = 1;
icon_state = "platingdmg3"
},
-/area/maintenance/fpmaint2{
- name = "Brig Maintenance"
- })
+/area/maintenance/department/security/brig)
"bUZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/light{
@@ -49377,9 +48099,7 @@
pixel_x = -24
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"bVc" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
@@ -49390,21 +48110,21 @@
pixel_y = 32
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bVd" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
req_access_txt = "13"
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bVe" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 8;
req_access_txt = "13"
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bVf" = (
/obj/structure/table,
/obj/machinery/light{
@@ -49419,7 +48139,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bVh" = (
/obj/structure/cable{
d1 = 1;
@@ -49442,18 +48162,14 @@
},
/obj/effect/decal/cleanable/vomit/old,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"bVj" = (
/obj/machinery/camera{
c_tag = "Dormitory Toilets";
dir = 1
},
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"bVk" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -49569,9 +48285,7 @@
},
/obj/effect/decal/cleanable/deadcockroach,
/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
+/area/crew_quarters/toilet/restrooms)
"bVv" = (
/obj/machinery/recharge_station,
/turf/open/floor/mineral/titanium/yellow,
@@ -49593,7 +48307,7 @@
broken = 1;
icon_state = "platingdmg1"
},
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bVx" = (
/obj/structure/cable{
d1 = 4;
@@ -49612,12 +48326,12 @@
burnt = 1;
icon_state = "panelscorched"
},
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bVy" = (
/obj/structure/closet/coffin,
/obj/item/toy/figure/ian,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bVz" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 27;
@@ -49694,7 +48408,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
+/area/maintenance/department/crew_quarters/bar)
"bVI" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4;
@@ -49721,7 +48435,7 @@
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bVM" = (
/obj/structure/closet,
/obj/item/weapon/canvas/twentythreeXnineteen,
@@ -49729,7 +48443,7 @@
/obj/item/weapon/canvas/twentythreeXtwentythree,
/obj/item/weapon/storage/crayons,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bVN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -49742,17 +48456,13 @@
"bVO" = (
/obj/effect/decal/remains/human,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bVP" = (
/turf/closed/wall/r_wall,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"bVQ" = (
/turf/closed/wall/r_wall,
-/area/security/checkpoint2{
- name = "Customs"
- })
+/area/security/checkpoint/customs)
"bVR" = (
/obj/item/weapon/reagent_containers/glass/bucket,
/turf/open/floor/plasteel,
@@ -49771,7 +48481,7 @@
/obj/structure/grille/broken,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bVV" = (
/turf/open/floor/plasteel/green/corner{
dir = 4
@@ -50003,14 +48713,14 @@
burnt = 1;
icon_state = "panelscorched"
},
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bWv" = (
/obj/item/chair,
/turf/open/floor/plating{
broken = 1;
icon_state = "platingdmg3"
},
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bWw" = (
/turf/open/floor/plasteel/green/corner{
dir = 8
@@ -50051,7 +48761,7 @@
broken = 1;
icon_state = "platingdmg3"
},
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bWC" = (
/obj/structure/cable{
d1 = 4;
@@ -50066,7 +48776,7 @@
pixel_y = 32
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bWD" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
@@ -50148,7 +48858,7 @@
"bWN" = (
/obj/structure/frame/machine,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bWO" = (
/obj/machinery/airalarm{
pixel_y = 22
@@ -50161,9 +48871,7 @@
/area/shuttle/arrival)
"bWQ" = (
/turf/closed/wall,
-/area/construction/quarters{
- name = "Lounge"
- })
+/area/crew_quarters/lounge)
"bWR" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
@@ -50241,7 +48949,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bXb" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
@@ -50274,14 +48982,14 @@
/obj/item/trash/tray,
/obj/item/weapon/reagent_containers/food/snacks/badrecipe,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bXf" = (
/obj/structure/closet/radiation,
/obj/structure/sign/poster/contraband/random{
pixel_x = 32
},
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bXg" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel,
@@ -50293,7 +49001,7 @@
broken = 1;
icon_state = "platingdmg3"
},
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bXi" = (
/obj/structure/chair,
/obj/structure/sign/poster/contraband/random{
@@ -50302,7 +49010,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bXj" = (
/obj/structure/extinguisher_cabinet{
pixel_y = -29
@@ -50326,9 +49034,7 @@
pixel_x = 0
},
/turf/open/floor/carpet,
-/area/construction/quarters{
- name = "Lounge"
- })
+/area/crew_quarters/lounge)
"bXm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -50358,18 +49064,18 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
+/area/science/robotics/mechbay)
"bXr" = (
/obj/item/weapon/wrench,
/turf/open/floor/plating,
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bXs" = (
/obj/structure/table,
/obj/item/trash/plate,
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bXt" = (
/obj/structure/table,
/obj/item/weapon/kitchen/fork,
@@ -50377,7 +49083,7 @@
burnt = 1;
icon_state = "panelscorched"
},
-/area/maintenance/apmaint)
+/area/maintenance/department/cargo)
"bXu" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green{
@@ -50392,9 +49098,7 @@
},
/obj/structure/cable,
/turf/open/floor/plasteel/grimy,
-/area/construction/quarters{
- name = "Lounge"
- })
+/area/crew_quarters/lounge)
"bXv" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-05";
@@ -50434,7 +49138,7 @@
dir = 8
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bXC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/sink{
@@ -50443,15 +49147,13 @@
pixel_x = -12
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bXD" = (
/obj/structure/chair{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bXE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/firedoor,
@@ -50472,61 +49174,49 @@
},
/obj/structure/chair/stool,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bXI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/obj/structure/chair/stool,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bXJ" = (
/obj/structure/chair/stool,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bXK" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-05";
layer = 4.1
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bXL" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bXM" = (
/obj/effect/turf_decal/stripes/corner,
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bXN" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bXO" = (
/obj/structure/chair,
/turf/open/floor/plasteel/whitepurple/side,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bXP" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-17"
},
/turf/open/floor/plasteel/whitepurple/side,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bXQ" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -50571,7 +49261,7 @@
/turf/open/floor/plasteel/purple/side{
dir = 8
},
-/area/assembly/robotics)
+/area/science/robotics/lab)
"bXX" = (
/obj/structure/cable{
d1 = 4;
@@ -50584,20 +49274,20 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bXY" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/holopad,
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
+/area/science/xenobiology)
"bXZ" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bYa" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -50606,9 +49296,7 @@
pixel_y = 32
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bYb" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -50628,7 +49316,7 @@
},
/obj/structure/bed/roller,
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bYd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -50638,7 +49326,7 @@
density = 0
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
+/area/medical/medbay/central)
"bYe" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/white,
@@ -50655,18 +49343,14 @@
on = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bYh" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bYi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -50677,9 +49361,7 @@
pixel_y = 3
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bYj" = (
/obj/structure/chair/comfy{
tag = "icon-comfychair (EAST)";
@@ -50690,9 +49372,7 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bYk" = (
/obj/structure/chair/comfy{
tag = "icon-comfychair (WEST)";
@@ -50703,16 +49383,12 @@
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bYl" = (
/turf/open/floor/plasteel/white/side{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bYm" = (
/obj/item/weapon/folder/white,
/obj/item/clothing/gloves/color/latex,
@@ -50726,19 +49402,17 @@
dir = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bYo" = (
/obj/machinery/atmospherics/components/unary/tank/air{
dir = 2
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bYp" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bYq" = (
/obj/structure/grille/broken,
/obj/structure/lattice,
@@ -50751,13 +49425,13 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bYs" = (
/obj/machinery/atmospherics/pipe/manifold/general/hidden,
/obj/machinery/meter,
/obj/machinery/light/small,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bYt" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
@@ -50765,7 +49439,7 @@
on = 1
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bYu" = (
/obj/machinery/door/airlock/atmos{
name = "Atmospherics Maintenance";
@@ -50777,7 +49451,7 @@
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bYv" = (
/obj/structure/cable{
d1 = 1;
@@ -50789,7 +49463,7 @@
dir = 9
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bYw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/sign/poster/official/random{
@@ -50805,18 +49479,14 @@
on = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
+/area/science/research)
"bYy" = (
/obj/structure/chair/stool,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/science/mixing)
"bYz" = (
/obj/docking_port/stationary{
dwidth = 2;
@@ -50830,11 +49500,11 @@
"bYA" = (
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bYB" = (
/obj/effect/decal/cleanable/vomit/old,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bYC" = (
/obj/structure/chair/office/light{
dir = 1
@@ -50880,7 +49550,7 @@
dir = 9
},
/turf/open/floor/plasteel/black,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bYJ" = (
/turf/open/floor/plating,
/area/chapel/dock)
@@ -50911,7 +49581,7 @@
dir = 8
},
/turf/open/floor/plasteel/black,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bYO" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
@@ -50924,7 +49594,7 @@
dir = 6
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bYQ" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
@@ -50932,7 +49602,7 @@
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bYR" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -50979,13 +49649,13 @@
},
/obj/effect/decal/cleanable/robot_debris/old,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bYX" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bYY" = (
/obj/structure/window/reinforced{
dir = 4
@@ -51045,13 +49715,13 @@
"bZf" = (
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/engine,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bZg" = (
/obj/effect/decal/cleanable/oil,
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bZh" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/obj/structure/chair/office/light{
@@ -51134,7 +49804,7 @@
on = 0
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bZp" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -51143,7 +49813,7 @@
initialize_directions = 10
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"bZq" = (
/obj/structure/window/reinforced{
dir = 4
@@ -51175,20 +49845,20 @@
dir = 10
},
/turf/open/floor/plasteel/black,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bZw" = (
/obj/structure/chair/comfy/black{
dir = 1
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/black,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bZx" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel/black,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bZy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/extinguisher_cabinet{
@@ -51203,11 +49873,11 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bZA" = (
/obj/machinery/atmospherics/pipe/manifold4w/yellow/visible,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bZB" = (
/obj/machinery/door/airlock/centcom{
name = "Chapel";
@@ -51247,7 +49917,7 @@
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bZE" = (
/obj/structure/cable{
d1 = 1;
@@ -51259,7 +49929,7 @@
/area/hallway/primary/aft)
"bZF" = (
/turf/closed/wall,
-/area/atmos)
+/area/engine/atmos)
"bZG" = (
/obj/machinery/camera{
c_tag = "Monastery Asteroid Dock Port";
@@ -51329,7 +49999,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bZP" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -51369,24 +50039,24 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bZV" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bZW" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"bZX" = (
/obj/item/device/radio/beacon,
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"bZY" = (
/obj/structure/lattice,
/obj/structure/window/reinforced{
@@ -51432,19 +50102,19 @@
dir = 4
},
/turf/closed/wall,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"caf" = (
/turf/open/floor/plating{
broken = 1;
icon_state = "platingdmg3"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"cag" = (
/obj/item/clothing/head/welding,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"cah" = (
/obj/structure/flora/ausbushes/fernybush,
/turf/open/floor/plating/asteroid,
@@ -51477,12 +50147,12 @@
broken = 1;
icon_state = "platingdmg3"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"cal" = (
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"cam" = (
/obj/structure/window/reinforced,
/obj/structure/lattice,
@@ -51500,24 +50170,24 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"cap" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
burnt = 1;
icon_state = "panelscorched"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"caq" = (
/obj/item/weapon/cigbutt/cigarbutt,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"car" = (
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"cas" = (
/obj/structure/window/reinforced{
dir = 4
@@ -51547,7 +50217,7 @@
on = 0
},
/turf/open/floor/plasteel,
-/area/atmos)
+/area/engine/atmos)
"cav" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -51556,7 +50226,7 @@
},
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"caw" = (
/obj/structure/flora/ausbushes,
/obj/machinery/camera{
@@ -51570,9 +50240,7 @@
})
"cax" = (
/turf/closed/wall,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cay" = (
/obj/machinery/door/airlock/centcom{
name = "Chapel";
@@ -51584,18 +50252,14 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"caz" = (
/obj/machinery/door/airlock/centcom{
name = "Chapel";
opacity = 1
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"caA" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -51636,16 +50300,14 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"caE" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
/turf/open/floor/plasteel/yellow/side,
-/area/atmos)
+/area/engine/atmos)
"caF" = (
/obj/machinery/atmospherics/components/trinary/mixer{
node1_concentration = 0.8;
@@ -51653,7 +50315,7 @@
on = 1
},
/turf/open/floor/plasteel/yellow/side,
-/area/atmos)
+/area/engine/atmos)
"caG" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (NORTHWEST)";
@@ -51661,15 +50323,13 @@
dir = 9
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"caH" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"caI" = (
/obj/structure/cable{
d1 = 1;
@@ -51677,23 +50337,17 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"caJ" = (
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"caK" = (
/obj/item/device/radio/beacon,
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"caL" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4
@@ -51724,7 +50378,7 @@
req_access_txt = "13"
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"caP" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
@@ -51735,21 +50389,21 @@
pixel_y = 32
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"caQ" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 8;
req_access_txt = "13"
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"caR" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
broken = 1;
icon_state = "platingdmg1"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"caS" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -51758,7 +50412,7 @@
initialize_directions = 12
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"caT" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -51767,7 +50421,7 @@
initialize_directions = 12
},
/turf/open/floor/plating,
-/area/atmos)
+/area/engine/atmos)
"caU" = (
/obj/machinery/atmospherics/pipe/simple/green/hidden{
tag = "icon-intact (WEST)";
@@ -51775,7 +50429,7 @@
dir = 8
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"caV" = (
/obj/machinery/atmospherics/pipe/simple/green/hidden{
tag = "icon-intact (NORTHWEST)";
@@ -51783,40 +50437,32 @@
dir = 9
},
/turf/closed/wall/r_wall,
-/area/atmos)
+/area/engine/atmos)
"caW" = (
/obj/machinery/light/small{
dir = 1
},
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"caX" = (
/obj/machinery/door/morgue{
name = "Confession Booth"
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"caY" = (
/obj/structure/chair,
/turf/open/floor/plasteel/chapel{
dir = 1
},
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"caZ" = (
/obj/structure/chair,
/turf/open/floor/plasteel/chapel{
dir = 4
},
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cba" = (
/obj/structure/chair,
/obj/item/device/radio/intercom{
@@ -51828,9 +50474,7 @@
/turf/open/floor/plasteel/chapel{
dir = 4
},
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cbb" = (
/obj/structure/lattice,
/obj/structure/window/reinforced{
@@ -51846,13 +50490,11 @@
name = "anchored emergency closet"
},
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"cbd" = (
/obj/structure/chair,
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cbe" = (
/obj/structure/chair,
/obj/machinery/light/small{
@@ -51861,15 +50503,11 @@
/turf/open/floor/plasteel/chapel{
dir = 8
},
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cbf" = (
/obj/structure/chair,
/turf/open/floor/plasteel/chapel,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cbg" = (
/obj/structure/cable{
d1 = 1;
@@ -51877,37 +50515,27 @@
icon_state = "1-2"
},
/turf/open/floor/carpet,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cbh" = (
/turf/open/floor/carpet,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cbi" = (
/obj/structure/chair,
/turf/open/floor/plasteel/chapel{
dir = 8
},
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cbj" = (
/obj/structure/chair,
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plasteel/chapel,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cbk" = (
/mob/living/simple_animal/butterfly,
/turf/open/floor/grass,
-/area/hallway/secondary/construction{
- name = "\improper Monastery Garden"
- })
+/area/hydroponics/garden/monastery)
"cbl" = (
/obj/machinery/camera{
c_tag = "Monastery Asteroid Port";
@@ -51953,17 +50581,13 @@
/obj/machinery/holopad,
/obj/item/device/flashlight/lantern,
/turf/open/floor/plasteel/chapel,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cbt" = (
/obj/item/device/flashlight/lantern,
/turf/open/floor/plasteel/chapel{
dir = 8
},
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cbu" = (
/obj/structure/chair,
/obj/machinery/camera{
@@ -51972,9 +50596,7 @@
network = list("SS13","Monastery")
},
/turf/open/floor/plasteel/chapel,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cbv" = (
/obj/structure/flora/ausbushes/pointybush,
/obj/machinery/camera{
@@ -52053,16 +50675,12 @@
/turf/open/floor/plasteel/chapel{
dir = 1
},
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cbC" = (
/turf/open/floor/plasteel/chapel{
dir = 4
},
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cbD" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/book/bible,
@@ -52072,25 +50690,19 @@
icon_state = "1-2"
},
/turf/open/floor/carpet,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cbE" = (
/obj/structure/table/wood,
/obj/item/weapon/reagent_containers/food/drinks/trophy{
pixel_y = 8
},
/turf/open/floor/carpet,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cbF" = (
/turf/open/floor/plasteel/chapel{
dir = 1
},
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cbG" = (
/obj/machinery/light/small{
dir = 4
@@ -52098,18 +50710,14 @@
/turf/open/floor/plasteel/chapel{
dir = 4
},
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cbH" = (
/obj/machinery/door/airlock/centcom{
name = "Chapel Access";
opacity = 1
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cbI" = (
/obj/structure/flora/ausbushes/pointybush,
/turf/open/floor/plating/asteroid,
@@ -52196,9 +50804,7 @@
tag = ""
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cbR" = (
/obj/structure/cable{
d1 = 4;
@@ -52210,9 +50816,7 @@
/turf/open/floor/plasteel/chapel{
dir = 8
},
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cbS" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
@@ -52228,9 +50832,7 @@
tag = ""
},
/turf/open/floor/plasteel/chapel,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cbT" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -52239,18 +50841,14 @@
dir = 10
},
/turf/open/floor/carpet,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cbU" = (
/obj/effect/landmark/start/chaplain,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/open/floor/carpet,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cbV" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -52259,23 +50857,17 @@
/turf/open/floor/plasteel/chapel{
dir = 8
},
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cbW" = (
/turf/open/floor/plasteel/chapel,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cbX" = (
/obj/machinery/door/airlock/centcom{
name = "Chape Access";
opacity = 1
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cbY" = (
/obj/machinery/light/small{
dir = 1
@@ -52290,9 +50882,7 @@
pixel_y = 22
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cbZ" = (
/obj/machinery/light/small{
dir = 1
@@ -52303,16 +50893,12 @@
network = list("SS13","Monastery")
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cca" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ccb" = (
/obj/structure/chair,
/turf/open/floor/plating/asteroid,
@@ -52409,9 +50995,7 @@
/turf/open/floor/plasteel/chapel{
dir = 1
},
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cck" = (
/obj/structure/table/wood/fancy,
/obj/item/weapon/storage/box/matches{
@@ -52422,21 +51006,15 @@
/turf/open/floor/plasteel/chapel{
dir = 4
},
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ccl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ccm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ccn" = (
/obj/structure/table/wood/fancy,
/obj/item/weapon/storage/fancy/candle_box,
@@ -52444,9 +51022,7 @@
/turf/open/floor/plasteel/chapel{
dir = 1
},
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cco" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-08";
@@ -52455,32 +51031,24 @@
/turf/open/floor/plasteel/chapel{
dir = 4
},
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ccp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ccq" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
on = 1
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ccr" = (
/obj/structure/chair/wood/normal,
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ccs" = (
/obj/structure/table,
/obj/item/trash/plate,
@@ -52564,9 +51132,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ccA" = (
/obj/machinery/door/airlock/centcom{
name = "Chapel";
@@ -52574,9 +51140,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ccB" = (
/obj/machinery/door/airlock/centcom{
name = "Chapel Access";
@@ -52584,22 +51148,16 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ccC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ccD" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/photo_album,
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ccE" = (
/obj/structure/chair{
dir = 1
@@ -52657,9 +51215,7 @@
dir = 8
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ccM" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -52674,9 +51230,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ccN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -52687,9 +51241,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ccO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -52704,9 +51256,7 @@
icon_state = "0-8"
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ccP" = (
/obj/machinery/light/small{
dir = 1
@@ -52715,24 +51265,18 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ccQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ccR" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ccS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -52741,26 +51285,20 @@
pixel_y = 22
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ccT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ccU" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4;
initialize_directions = 11
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ccV" = (
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/plasteel/black,
@@ -52796,17 +51334,13 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cda" = (
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -52814,17 +51348,13 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdc" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdd" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
@@ -52832,9 +51362,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cde" = (
/obj/machinery/light/small{
dir = 1
@@ -52845,30 +51373,22 @@
name = "anchored emergency closet"
},
/turf/open/floor/plating,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdf" = (
/obj/machinery/chem_master/condimaster,
/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdg" = (
/obj/machinery/seed_extractor,
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdh" = (
/obj/machinery/biogenerator,
/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdi" = (
/obj/structure/cable{
d1 = 1;
@@ -52878,49 +51398,35 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdk" = (
/turf/closed/wall,
-/area/hallway/secondary/construction{
- name = "\improper Monastery Garden"
- })
+/area/hydroponics/garden/monastery)
"cdl" = (
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/hallway/secondary/construction{
- name = "\improper Monastery Garden"
- })
+/area/hydroponics/garden/monastery)
"cdm" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4
},
/turf/open/floor/plating,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdn" = (
/turf/open/floor/plating,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdo" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 8
},
/turf/open/floor/plating,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdp" = (
/turf/open/floor/plasteel/asteroid,
/area/chapel/asteroid{
@@ -52970,15 +51476,11 @@
},
/obj/item/weapon/storage/firstaid/regular,
/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdv" = (
/obj/item/seeds/wheat,
/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdw" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
@@ -52987,9 +51489,7 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdx" = (
/obj/item/weapon/storage/bag/plants,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -52999,17 +51499,13 @@
pixel_x = 24
},
/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdz" = (
/obj/machinery/light/small{
dir = 8
@@ -53025,15 +51521,11 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdA" = (
/obj/structure/flora/ausbushes/pointybush,
/turf/open/floor/grass,
-/area/hallway/secondary/construction{
- name = "\improper Monastery Garden"
- })
+/area/hydroponics/garden/monastery)
"cdB" = (
/obj/structure/flora/ausbushes/ywflowers,
/obj/structure/flora/ausbushes/sparsegrass,
@@ -53041,17 +51533,13 @@
dir = 1
},
/turf/open/floor/grass,
-/area/hallway/secondary/construction{
- name = "\improper Monastery Garden"
- })
+/area/hydroponics/garden/monastery)
"cdC" = (
/obj/structure/flora/ausbushes/ywflowers,
/obj/structure/flora/ausbushes/ppflowers,
/obj/structure/flora/ausbushes/sparsegrass,
/turf/open/floor/grass,
-/area/hallway/secondary/construction{
- name = "\improper Monastery Garden"
- })
+/area/hydroponics/garden/monastery)
"cdD" = (
/obj/structure/flora/ausbushes/ywflowers,
/obj/structure/flora/ausbushes/sparsegrass,
@@ -53061,9 +51549,7 @@
network = list("SS13","Monastery")
},
/turf/open/floor/grass,
-/area/hallway/secondary/construction{
- name = "\improper Monastery Garden"
- })
+/area/hydroponics/garden/monastery)
"cdE" = (
/obj/machinery/hydroponics/soil,
/obj/item/seeds/carrot,
@@ -53071,16 +51557,12 @@
dir = 1
},
/turf/open/floor/grass,
-/area/hallway/secondary/construction{
- name = "\improper Monastery Garden"
- })
+/area/hydroponics/garden/monastery)
"cdF" = (
/obj/machinery/hydroponics/soil,
/obj/item/seeds/watermelon/holy,
/turf/open/floor/grass,
-/area/hallway/secondary/construction{
- name = "\improper Monastery Garden"
- })
+/area/hydroponics/garden/monastery)
"cdG" = (
/obj/structure/cable{
d1 = 1;
@@ -53103,9 +51585,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdI" = (
/obj/structure/cable{
d1 = 4;
@@ -53113,9 +51593,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdJ" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 8
@@ -53126,9 +51604,7 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdK" = (
/obj/structure/cable{
d1 = 4;
@@ -53136,9 +51612,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdL" = (
/obj/machinery/vending/hydronutrients,
/obj/structure/cable{
@@ -53147,9 +51621,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdM" = (
/obj/item/weapon/shovel/spade,
/obj/structure/cable{
@@ -53158,9 +51630,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdN" = (
/obj/structure/sink{
dir = 4;
@@ -53173,9 +51643,7 @@
tag = ""
},
/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdO" = (
/obj/structure/flora/ausbushes/genericbush,
/obj/machinery/power/apc{
@@ -53190,27 +51658,19 @@
d2 = 2
},
/turf/open/floor/grass,
-/area/hallway/secondary/construction{
- name = "\improper Monastery Garden"
- })
+/area/hydroponics/garden/monastery)
"cdP" = (
/turf/open/floor/grass,
-/area/hallway/secondary/construction{
- name = "\improper Monastery Garden"
- })
+/area/hydroponics/garden/monastery)
"cdQ" = (
/obj/item/weapon/cultivator,
/turf/open/floor/grass,
-/area/hallway/secondary/construction{
- name = "\improper Monastery Garden"
- })
+/area/hydroponics/garden/monastery)
"cdR" = (
/obj/machinery/hydroponics/soil,
/obj/item/seeds/sugarcane,
/turf/open/floor/grass,
-/area/hallway/secondary/construction{
- name = "\improper Monastery Garden"
- })
+/area/hydroponics/garden/monastery)
"cdS" = (
/obj/structure/closet/cabinet,
/obj/item/clothing/suit/holidaypriest,
@@ -53226,9 +51686,7 @@
specialfunctions = 4
},
/turf/open/floor/plasteel/grimy,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdT" = (
/obj/structure/dresser,
/obj/structure/sign/securearea{
@@ -53239,9 +51697,7 @@
pixel_y = 28
},
/turf/open/floor/plasteel/grimy,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdU" = (
/obj/structure/table/wood,
/obj/effect/decal/cleanable/cobweb{
@@ -53252,9 +51708,7 @@
},
/obj/item/device/flashlight/lantern,
/turf/open/floor/plasteel/grimy,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdV" = (
/obj/structure/toilet{
pixel_y = 8
@@ -53264,9 +51718,7 @@
dir = 8
},
/turf/open/floor/plasteel/showroomfloor,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdW" = (
/obj/machinery/camera{
c_tag = "Monastery Kitchen";
@@ -53274,21 +51726,15 @@
network = list("SS13","Monastery")
},
/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdX" = (
/obj/machinery/vending/dinnerware,
/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdY" = (
/obj/item/clothing/suit/apron/chef,
/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cdZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
@@ -53299,9 +51745,7 @@
icon_state = "1-4"
},
/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cea" = (
/obj/machinery/door/airlock{
name = "Kitchen"
@@ -53315,9 +51759,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ceb" = (
/obj/structure/cable{
d1 = 2;
@@ -53339,9 +51781,7 @@
icon_state = "1-8"
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cec" = (
/obj/structure/cable{
d1 = 4;
@@ -53353,9 +51793,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ced" = (
/obj/structure/cable{
d1 = 4;
@@ -53369,31 +51807,23 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/hallway/secondary/construction{
- name = "\improper Monastery Garden"
- })
+/area/hydroponics/garden/monastery)
"cee" = (
/obj/structure/cable{
icon_state = "1-8"
},
/turf/open/floor/grass,
-/area/hallway/secondary/construction{
- name = "\improper Monastery Garden"
- })
+/area/hydroponics/garden/monastery)
"cef" = (
/obj/structure/sink/puddle,
/obj/item/weapon/reagent_containers/glass/bucket,
/obj/effect/landmark/event_spawn,
/turf/open/floor/grass,
-/area/hallway/secondary/construction{
- name = "\improper Monastery Garden"
- })
+/area/hydroponics/garden/monastery)
"ceg" = (
/obj/structure/flora/ausbushes/sunnybush,
/turf/open/floor/grass,
-/area/hallway/secondary/construction{
- name = "\improper Monastery Garden"
- })
+/area/hydroponics/garden/monastery)
"ceh" = (
/obj/machinery/door/airlock{
name = "Garden"
@@ -53401,9 +51831,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/hallway/secondary/construction{
- name = "\improper Monastery Garden"
- })
+/area/hydroponics/garden/monastery)
"cei" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
@@ -53411,18 +51839,14 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cej" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cek" = (
/obj/machinery/door/airlock{
id_tag = "Cell1";
@@ -53432,9 +51856,7 @@
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cel" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
@@ -53443,54 +51865,44 @@
scrub_Toxins = 0
},
/turf/open/floor/plasteel/grimy,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cem" = (
/turf/open/floor/plasteel/grimy,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cen" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
},
/turf/open/floor/plasteel/grimy,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ceo" = (
/obj/machinery/door/airlock{
name = "Bathroom"
},
/turf/open/floor/plasteel/grimy,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cep" = (
/obj/structure/sink{
dir = 4;
pixel_x = 11
},
/turf/open/floor/plasteel/showroomfloor,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ceq" = (
/obj/item/chair/stool,
/turf/open/floor/plating{
broken = 1;
icon_state = "platingdmg1"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"cer" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating{
broken = 1;
icon_state = "platingdmg3"
},
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"ces" = (
/obj/structure/flora/ausbushes/leafybush,
/obj/machinery/camera{
@@ -53516,32 +51928,24 @@
pixel_y = 26
},
/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ceu" = (
/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cev" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
},
/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cew" = (
/obj/item/weapon/reagent_containers/glass/bucket,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cex" = (
/obj/structure/cable{
d1 = 1;
@@ -53552,38 +51956,28 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cey" = (
/obj/machinery/hydroponics/soil,
/obj/item/seeds/wheat,
/turf/open/floor/grass,
-/area/hallway/secondary/construction{
- name = "\improper Monastery Garden"
- })
+/area/hydroponics/garden/monastery)
"cez" = (
/obj/structure/flora/ausbushes/genericbush,
/turf/open/floor/grass,
-/area/hallway/secondary/construction{
- name = "\improper Monastery Garden"
- })
+/area/hydroponics/garden/monastery)
"ceA" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ceB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ceC" = (
/obj/structure/table/wood,
/obj/machinery/light/small{
@@ -53594,9 +51988,7 @@
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ceD" = (
/obj/structure/chair/wood/normal{
icon_state = "wooden_chair";
@@ -53606,9 +51998,7 @@
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ceE" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/green,
@@ -53616,9 +52006,7 @@
dir = 9
},
/turf/open/floor/plasteel/grimy,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ceF" = (
/obj/machinery/shower{
dir = 8;
@@ -53626,9 +52014,7 @@
},
/obj/item/weapon/soap/homemade,
/turf/open/floor/plasteel/showroomfloor,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ceG" = (
/turf/closed/mineral{
baseturf = /turf/open/floor/plating/asteroid
@@ -53646,16 +52032,12 @@
"ceI" = (
/obj/item/weapon/phone,
/turf/open/floor/plating,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ceJ" = (
/obj/structure/table,
/obj/machinery/reagentgrinder,
/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ceK" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/condiment/saltshaker{
@@ -53667,9 +52049,7 @@
layer = 3.1
},
/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ceL" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/condiment/flour,
@@ -53677,21 +52057,15 @@
/obj/item/weapon/kitchen/knife,
/obj/machinery/light/small,
/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ceM" = (
/obj/structure/closet/crate/bin,
/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ceN" = (
/obj/structure/reagent_dispensers/watertank/high,
/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ceO" = (
/obj/machinery/light/small{
dir = 8
@@ -53709,39 +52083,29 @@
network = list("SS13","Monastery")
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ceP" = (
/obj/machinery/hydroponics/soil,
/obj/item/seeds/grass,
/turf/open/floor/grass,
-/area/hallway/secondary/construction{
- name = "\improper Monastery Garden"
- })
+/area/hydroponics/garden/monastery)
"ceQ" = (
/obj/machinery/hydroponics/soil,
/obj/item/seeds/apple,
/obj/machinery/light/small,
/turf/open/floor/grass,
-/area/hallway/secondary/construction{
- name = "\improper Monastery Garden"
- })
+/area/hydroponics/garden/monastery)
"ceR" = (
/obj/structure/flora/ausbushes/ywflowers,
/obj/structure/flora/ausbushes/sparsegrass,
/turf/open/floor/grass,
-/area/hallway/secondary/construction{
- name = "\improper Monastery Garden"
- })
+/area/hydroponics/garden/monastery)
"ceS" = (
/obj/structure/flora/ausbushes/ywflowers,
/obj/structure/flora/ausbushes/sparsegrass,
/obj/machinery/light/small,
/turf/open/floor/grass,
-/area/hallway/secondary/construction{
- name = "\improper Monastery Garden"
- })
+/area/hydroponics/garden/monastery)
"ceT" = (
/obj/machinery/light/small{
dir = 4
@@ -53753,9 +52117,7 @@
network = list("SS13","Monastery")
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ceU" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/abandoned)
@@ -53788,9 +52150,7 @@
specialfunctions = 4
},
/turf/open/floor/plasteel/grimy,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ceY" = (
/obj/machinery/light/small{
dir = 4
@@ -53798,17 +52158,13 @@
/obj/structure/easel,
/obj/item/weapon/canvas/twentythreeXnineteen,
/turf/open/floor/plasteel/grimy,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"ceZ" = (
/obj/structure/toilet{
pixel_y = 8
},
/turf/open/floor/plasteel/showroomfloor,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cfa" = (
/turf/open/floor/plasteel/black,
/area/shuttle/abandoned)
@@ -53823,15 +52179,11 @@
pixel_y = 22
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cfd" = (
/obj/structure/closet/coffin,
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cfe" = (
/obj/structure/closet/coffin,
/obj/machinery/camera{
@@ -53840,9 +52192,7 @@
network = list("SS13","Monastery")
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cff" = (
/obj/structure/closet/coffin,
/obj/machinery/light/small{
@@ -53852,17 +52202,13 @@
icon_state = "cobweb2"
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cfg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cfh" = (
/obj/machinery/door/airlock/centcom{
name = "Chapel Garden";
@@ -53872,9 +52218,7 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cfi" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1;
@@ -53883,9 +52227,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cfj" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
@@ -53893,9 +52235,7 @@
/turf/open/floor/plasteel/vault{
dir = 5
},
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cfk" = (
/obj/machinery/door/airlock{
id_tag = "Cell2";
@@ -53905,25 +52245,19 @@
dir = 4
},
/turf/open/floor/plasteel/grimy,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cfl" = (
/obj/structure/closet/emcloset,
/obj/effect/decal/cleanable/cobweb,
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cfm" = (
/obj/structure/table,
/obj/item/weapon/crowbar,
/obj/item/clothing/mask/gas,
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cfn" = (
/obj/machinery/door/window/eastleft{
dir = 1;
@@ -53942,9 +52276,7 @@
dir = 6
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cfo" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -53954,9 +52286,7 @@
dir = 1
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cfp" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -53967,9 +52297,7 @@
dir = 4
},
/turf/open/floor/carpet,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cfq" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -53979,9 +52307,7 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cfr" = (
/obj/machinery/light/small{
dir = 8
@@ -53993,9 +52319,7 @@
dir = 9
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cfs" = (
/obj/structure/cable{
d1 = 1;
@@ -54005,9 +52329,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cft" = (
/obj/structure/cable{
d1 = 4;
@@ -54019,9 +52341,7 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cfu" = (
/obj/structure/cable{
d1 = 2;
@@ -54039,9 +52359,7 @@
dir = 1
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cfv" = (
/obj/machinery/light/small,
/obj/structure/cable{
@@ -54055,9 +52373,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cfw" = (
/obj/structure/cable{
d1 = 4;
@@ -54069,9 +52385,7 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cfx" = (
/obj/machinery/light/small,
/obj/structure/cable{
@@ -54084,9 +52398,7 @@
dir = 4
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cfy" = (
/obj/structure/cable{
d1 = 4;
@@ -54098,9 +52410,7 @@
dir = 1
},
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cfz" = (
/obj/structure/cable{
d1 = 2;
@@ -54113,22 +52423,20 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
-/area/chapel/main{
- name = "Monastery"
- })
+/area/chapel/main/monastery)
"cfA" = (
/obj/structure/closet/firecloset,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"cfB" = (
/obj/structure/grille/broken,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/maintenance/fsmaint)
+/area/maintenance/department/crew_quarters/dorms)
"cfC" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/obj/structure/disposalpipe/segment{
@@ -54169,7 +52477,7 @@
"cfH" = (
/obj/item/weapon/storage/toolbox/mechanical,
/turf/open/floor/plating,
-/area/maintenance/aft)
+/area/maintenance/department/engine)
"cfI" = (
/turf/open/space,
/obj/machinery/porta_turret/syndicate{
@@ -54892,29 +53200,21 @@
/obj/structure/lattice,
/obj/structure/grille,
/turf/open/space,
-/area/solar/port{
- name = "Port Solar Array"
- })
+/area/solar/port)
"chj" = (
/obj/structure/lattice,
/turf/open/space,
-/area/solar/port{
- name = "Port Solar Array"
- })
+/area/solar/port)
"chk" = (
/obj/structure/lattice,
/obj/structure/grille/broken,
/turf/open/space,
-/area/solar/port{
- name = "Port Solar Array"
- })
+/area/solar/port)
"chl" = (
/obj/structure/lattice/catwalk,
/obj/item/stack/cable_coil,
/turf/open/space,
-/area/solar/port{
- name = "Port Solar Array"
- })
+/area/solar/port)
"chm" = (
/obj/structure/cable{
icon_state = "0-4";
@@ -54922,9 +53222,7 @@
},
/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/solar/port{
- name = "Port Solar Array"
- })
+/area/solar/port)
"chn" = (
/turf/open/space,
/area/shuttle/escape)
@@ -54934,24 +53232,18 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chp" = (
/obj/item/weapon/twohanded/required/kirbyplants,
/turf/open/floor/plasteel/escape{
dir = 9
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chq" = (
/turf/open/floor/plasteel/escape{
dir = 1
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
@@ -54959,9 +53251,7 @@
/turf/open/floor/plasteel/escape{
dir = 1
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -54970,9 +53260,7 @@
/turf/open/floor/plasteel/escape{
dir = 1
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cht" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -54983,9 +53271,7 @@
/turf/open/floor/plasteel/escape{
dir = 1
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -54993,9 +53279,7 @@
/turf/open/floor/plasteel/escape{
dir = 1
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
@@ -55003,33 +53287,25 @@
/turf/open/floor/plasteel/escape{
dir = 1
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chw" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular,
/turf/open/floor/plasteel/escape{
dir = 1
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chx" = (
/turf/open/floor/plasteel/escape{
dir = 8
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chy" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chz" = (
/obj/structure/chair{
dir = 1
@@ -55038,9 +53314,7 @@
dir = 5
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chA" = (
/obj/structure/table,
/obj/item/toy/cards/deck,
@@ -55054,9 +53328,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chB" = (
/obj/structure/chair{
dir = 1
@@ -55065,25 +53337,19 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chD" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chE" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
@@ -55096,31 +53362,23 @@
/turf/open/floor/plasteel/escape{
dir = 8
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chF" = (
/obj/machinery/status_display,
/turf/closed/wall,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chG" = (
/obj/structure/flora/ausbushes/leafybush,
/obj/structure/flora/ausbushes/ppflowers,
/obj/structure/flora/ausbushes/ywflowers,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/grass,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chH" = (
/obj/machinery/status_display,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chI" = (
/obj/structure/table,
/obj/item/weapon/paper_bin,
@@ -55129,16 +53387,12 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chJ" = (
/obj/structure/chair,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chK" = (
/obj/structure/flora/ausbushes/ywflowers,
/obj/structure/flora/ausbushes/lavendergrass,
@@ -55153,9 +53407,7 @@
dir = 8
},
/turf/open/floor/grass,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chL" = (
/obj/structure/flora/ausbushes/ywflowers,
/obj/structure/flora/ausbushes/lavendergrass,
@@ -55167,9 +53419,7 @@
pixel_y = 1
},
/turf/open/floor/grass,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chM" = (
/obj/structure/flora/ausbushes/ywflowers,
/obj/structure/flora/ausbushes/lavendergrass,
@@ -55185,9 +53435,7 @@
layer = 2.9
},
/turf/open/floor/grass,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chN" = (
/obj/machinery/camera{
c_tag = "Departures - Port";
@@ -55199,18 +53447,14 @@
/turf/open/floor/plasteel/escape{
dir = 8
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chP" = (
/obj/item/device/radio/beacon,
/obj/effect/landmark/event_spawn,
@@ -55218,9 +53462,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chQ" = (
/obj/item/weapon/statuebust{
anchored = 1
@@ -55229,9 +53471,7 @@
dir = 4
},
/turf/open/floor/grass,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chR" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -55239,18 +53479,14 @@
on = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chS" = (
/obj/structure/table,
/obj/item/weapon/folder,
/obj/item/weapon/pen,
/obj/machinery/light,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chT" = (
/obj/structure/flora/ausbushes/ywflowers,
/obj/structure/flora/ausbushes/lavendergrass,
@@ -55262,9 +53498,7 @@
dir = 8
},
/turf/open/floor/grass,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chU" = (
/obj/structure/flora/ausbushes/ywflowers,
/obj/structure/flora/ausbushes/lavendergrass,
@@ -55273,9 +53507,7 @@
/obj/structure/flora/ausbushes/palebush,
/obj/structure/window/reinforced,
/turf/open/floor/grass,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chV" = (
/obj/structure/flora/ausbushes/ywflowers,
/obj/structure/flora/ausbushes/lavendergrass,
@@ -55288,23 +53520,17 @@
layer = 2.9
},
/turf/open/floor/grass,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chW" = (
/obj/structure/table,
/obj/item/weapon/storage/pill_bottle/dice,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chX" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular,
/turf/open/floor/plasteel/escape,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chY" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-21";
@@ -55316,18 +53542,14 @@
dir = 10;
tag = "icon-escape (NORTHWEST)"
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"chZ" = (
/obj/machinery/camera{
c_tag = "Departures - Port";
dir = 1
},
/turf/open/floor/plasteel/escape,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cia" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-10";
@@ -55336,9 +53558,7 @@
/turf/open/floor/plasteel/escape{
dir = 6
},
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/hallway/secondary/exit/departure_lounge)
"cib" = (
/obj/machinery/door/airlock/external,
/turf/open/floor/pod/light,
@@ -84315,7 +82535,7 @@ aNa
aNa
aOY
aPX
-aQR
+aNS
aNa
aNa
aNa
diff --git a/_maps/map_files/TgStation/tgstation.2.1.3.dmm b/_maps/map_files/TgStation/tgstation.2.1.3.dmm
index 229d5755a1..7fdf81d020 100644
--- a/_maps/map_files/TgStation/tgstation.2.1.3.dmm
+++ b/_maps/map_files/TgStation/tgstation.2.1.3.dmm
@@ -1,128271 +1,7319 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aaa" = (
-/turf/open/space/basic,
-/area/space)
-"aab" = (
-/obj/docking_port/stationary{
- dheight = 9;
- dir = 2;
- dwidth = 5;
- height = 24;
- id = "syndicate_n";
- name = "north of station";
- turf_type = /turf/open/space;
- width = 18
- },
-/turf/open/space,
-/area/space)
-"aac" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aae" = (
-/obj/effect/landmark/carpspawn,
-/turf/open/space,
-/area/space)
-"aaf" = (
-/obj/structure/lattice,
-/turf/open/space,
-/area/space)
-"aag" = (
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/space)
-"aah" = (
-/obj/structure/sign/securearea{
- pixel_y = -32
- },
-/turf/open/space,
-/area/space)
-"aai" = (
-/turf/closed/wall/r_wall,
-/area/security/prison)
-"aaj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/closed/wall/r_wall,
-/area/security/prison)
-"aak" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/prison)
-"aal" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/prison)
-"aam" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/prison)
-"aan" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/ambrosia,
-/turf/open/floor/plasteel/green/side{
- dir = 9
- },
-/area/security/prison)
-"aao" = (
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/turf/open/floor/plating,
-/area/security/prison)
-"aap" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/carrot,
-/turf/open/floor/plasteel/green/side{
- dir = 1
- },
-/area/security/prison)
-"aaq" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 32
- },
-/obj/machinery/hydroponics/soil,
-/obj/item/device/plant_analyzer,
-/obj/machinery/camera{
- c_tag = "Prison Common Room";
- network = list("SS13","Prison")
- },
-/turf/open/floor/plasteel/green/side{
- dir = 5
- },
-/area/security/prison)
-"aar" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/glowshroom,
-/turf/open/floor/plasteel/green/side{
- dir = 1
- },
-/area/security/prison)
-"aas" = (
-/obj/structure/sink{
- pixel_y = 20
- },
-/turf/open/floor/plating,
-/area/security/prison)
-"aat" = (
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"aau" = (
-/obj/machinery/biogenerator,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"aav" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"aaw" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plating,
-/area/security/prison)
-"aax" = (
-/mob/living/simple_animal/mouse/brown/Tom,
-/turf/open/floor/plating,
-/area/security/prison)
-"aay" = (
-/turf/open/floor/plating,
-/area/security/prison)
-"aaz" = (
-/obj/item/weapon/reagent_containers/glass/bucket,
-/turf/open/floor/plating,
-/area/security/prison)
-"aaA" = (
-/obj/machinery/seed_extractor,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"aaB" = (
-/obj/structure/window/reinforced,
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/potato,
-/turf/open/floor/plasteel/green/side{
- dir = 10
- },
-/area/security/prison)
-"aaC" = (
-/obj/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/prison)
-"aaD" = (
-/obj/structure/window/reinforced,
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/grass,
-/turf/open/floor/plasteel/green/side{
- dir = 2
- },
-/area/security/prison)
-"aaE" = (
-/obj/structure/window/reinforced,
-/obj/machinery/hydroponics/soil,
-/obj/item/weapon/cultivator,
-/turf/open/floor/plasteel/green/side{
- dir = 6
- },
-/area/security/prison)
-"aaF" = (
-/obj/structure/window/reinforced,
-/obj/machinery/hydroponics/soil,
-/obj/item/weapon/cultivator,
-/turf/open/floor/plasteel/green/side{
- dir = 2
- },
-/area/security/prison)
-"aaG" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"aaH" = (
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"aaI" = (
-/obj/structure/bookcase,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"aaJ" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"aaK" = (
-/obj/machinery/washing_machine,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/plasteel/barber,
-/area/security/prison)
-"aaL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/plasteel/barber,
-/area/security/prison)
-"aaM" = (
-/obj/machinery/computer/libraryconsole/bookmanagement{
- pixel_y = 0
- },
-/obj/structure/table,
-/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"aaN" = (
-/obj/structure/table,
-/obj/item/weapon/pen,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aaO" = (
-/obj/structure/table,
-/obj/item/weapon/storage/pill_bottle/dice,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aaP" = (
-/obj/structure/table,
-/obj/structure/bedsheetbin,
-/turf/open/floor/plasteel/barber,
-/area/security/prison)
-"aaQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/barber,
-/area/security/prison)
-"aaR" = (
-/obj/structure/lattice,
-/obj/structure/sign/securearea{
- pixel_y = -32
- },
-/turf/open/space,
-/area/space)
-"aaS" = (
-/obj/structure/grille,
-/obj/structure/lattice,
-/turf/open/space,
-/area/space)
-"aaT" = (
-/obj/structure/lattice,
-/obj/structure/grille,
-/turf/open/space,
-/area/space)
-"aaU" = (
-/obj/machinery/computer/arcade,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"aaV" = (
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aaW" = (
-/obj/structure/table,
-/obj/item/toy/cards/deck,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aaX" = (
-/obj/machinery/washing_machine,
-/obj/structure/window/reinforced,
-/turf/open/floor/plasteel/barber,
-/area/security/prison)
-"aaY" = (
-/obj/structure/window/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/barber,
-/area/security/prison)
-"aaZ" = (
-/turf/closed/wall/r_wall,
-/area/ai_monitored/security/armory)
-"aba" = (
-/obj/structure/lattice,
-/obj/structure/grille/broken,
-/turf/open/space,
-/area/space)
-"abb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/closed/wall,
-/area/security/transfer)
-"abc" = (
-/turf/closed/wall,
-/area/security/transfer)
-"abd" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/closed/wall,
-/area/security/transfer)
-"abe" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/security/transfer)
-"abf" = (
-/obj/machinery/vending/sustenance,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"abg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/closed/wall/r_wall,
-/area/security/transfer)
-"abh" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"abi" = (
-/obj/machinery/shower{
- dir = 8
- },
-/obj/item/weapon/soap/nanotrasen,
-/turf/open/floor/plasteel/freezer,
-/area/security/prison)
-"abj" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/freezer,
-/area/security/prison)
-"abk" = (
-/obj/machinery/keycard_auth{
- pixel_x = 24;
- pixel_y = 10
- },
-/obj/structure/table/wood,
-/obj/item/device/radio/off,
-/obj/item/device/taperecorder{
- pixel_y = 0
- },
-/turf/open/floor/carpet,
-/area/security/hos)
-"abl" = (
-/obj/machinery/vending/security,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/main)
-"abm" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/firingpins,
-/obj/item/weapon/storage/box/firingpins,
-/obj/item/key/security,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/security/armory)
-"abn" = (
-/obj/structure/rack,
-/obj/machinery/firealarm{
- pixel_y = 24
- },
-/obj/item/weapon/gun/energy/e_gun/dragnet,
-/obj/item/weapon/gun/energy/e_gun/dragnet,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/security/armory)
-"abo" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/main)
-"abp" = (
-/turf/closed/wall,
-/area/security/main)
-"abq" = (
-/turf/closed/wall,
-/area/security/hos)
-"abr" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/hos)
-"abs" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/power/tracker,
-/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/auxport)
-"abt" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"abu" = (
-/obj/machinery/door/poddoor{
- id = "executionspaceblast";
- name = "blast door"
- },
-/turf/open/floor/plating,
-/area/security/transfer)
-"abv" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"abw" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/flasher{
- id = "executionflash";
- pixel_x = 0;
- pixel_y = 25
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"abx" = (
-/obj/machinery/vending/cola/random,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"aby" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/security/transfer)
-"abz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"abA" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"abB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"abC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"abD" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"abE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"abF" = (
-/turf/open/floor/plasteel/freezer,
-/area/security/prison)
-"abG" = (
-/obj/machinery/door/window/westleft{
- base_state = "right";
- dir = 8;
- icon_state = "right";
- name = "Unisex Showers";
- req_access_txt = "0"
- },
-/turf/open/floor/plasteel/freezer,
-/area/security/prison)
-"abH" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/chemimp{
- pixel_x = 6
- },
-/obj/item/weapon/storage/box/trackimp{
- pixel_x = -3
- },
-/obj/item/weapon/storage/lockbox/loyalty,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/security/armory)
-"abI" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/armor/riot{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/suit/armor/riot,
-/obj/item/clothing/suit/armor/riot{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/item/clothing/head/helmet/riot{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/head/helmet/riot,
-/obj/item/clothing/head/helmet/riot{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/weapon/shield/riot{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/weapon/shield/riot,
-/obj/item/weapon/shield/riot{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/security/armory)
-"abJ" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/armor/bulletproof{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/suit/armor/bulletproof{
- pixel_y = 0
- },
-/obj/item/clothing/suit/armor/bulletproof{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/clothing/head/helmet/alt{
- layer = 3.00001;
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/head/helmet/alt{
- layer = 3.00001
- },
-/obj/item/clothing/head/helmet/alt{
- layer = 3.00001;
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/machinery/camera/motion{
- c_tag = "Armory Motion Sensor";
- dir = 2;
- name = "motion-sensitive security camera"
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/security/armory)
-"abK" = (
-/obj/structure/chair/stool,
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/button/door{
- id = "permabolt3";
- name = "Cell Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 0;
- pixel_y = 25;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"abL" = (
-/obj/structure/chair/stool,
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/button/door{
- id = "permabolt2";
- name = "Cell Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 0;
- pixel_y = 25;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"abM" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"abN" = (
-/obj/structure/closet/secure_closet/lethalshots,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/security/armory)
-"abO" = (
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/main)
-"abP" = (
-/obj/structure/closet/secure_closet/security/sec,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/main)
-"abQ" = (
-/obj/structure/rack,
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/item/weapon/gun/energy/ionrifle,
-/obj/item/weapon/gun/energy/temperature/security,
-/obj/item/clothing/suit/armor/laserproof,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/security/armory)
-"abR" = (
-/obj/structure/closet/secure_closet/security/sec,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/main)
-"abS" = (
-/obj/machinery/computer/secure_data,
-/turf/open/floor/carpet,
-/area/security/hos)
-"abT" = (
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Head of Security's Desk";
- departmentType = 5;
- name = "Head of Security RC";
- pixel_x = 0;
- pixel_y = 30
- },
-/obj/item/device/radio/intercom{
- dir = 4;
- name = "Station Intercom (General)";
- pixel_x = -31
- },
-/obj/structure/table/wood,
-/obj/item/weapon/storage/box/seccarts{
- pixel_x = 3;
- pixel_y = 2
- },
-/obj/item/weapon/storage/box/deputy,
-/turf/open/floor/carpet,
-/area/security/hos)
-"abU" = (
-/obj/machinery/computer/card/minor/hos,
-/turf/open/floor/carpet,
-/area/security/hos)
-"abV" = (
-/obj/machinery/computer/security,
-/turf/open/floor/carpet,
-/area/security/hos)
-"abW" = (
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 30;
- pixel_y = 0
- },
-/obj/structure/table/wood,
-/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
-/turf/open/floor/carpet,
-/area/security/hos)
-"abX" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/power/tracker,
-/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/auxstarboard)
-"abY" = (
-/obj/structure/grille,
-/turf/open/space,
-/area/space)
-"abZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/auxport)
-"aca" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"acb" = (
-/obj/machinery/sparker{
- dir = 2;
- id = "executionburn";
- pixel_x = 25
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"acc" = (
-/obj/structure/bed,
-/obj/effect/landmark/revenantspawn,
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"acd" = (
-/turf/closed/wall,
-/area/security/prison)
-"ace" = (
-/obj/machinery/door/poddoor/preopen{
- id = "permacell3";
- name = "cell blast door"
- },
-/obj/machinery/door/airlock/glass{
- id_tag = "permabolt3";
- name = "Cell 3"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"acf" = (
-/obj/machinery/door/poddoor/preopen{
- id = "permacell2";
- name = "cell blast door"
- },
-/obj/machinery/door/airlock/glass{
- id_tag = "permabolt2";
- name = "Cell 2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"acg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "permacell1";
- name = "cell blast door"
- },
-/obj/machinery/door/airlock/glass{
- id_tag = "permabolt1";
- name = "Cell 1"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"ach" = (
-/obj/machinery/door/airlock{
- name = "Unisex Restroom";
- req_access_txt = "0"
- },
-/turf/open/floor/plasteel/freezer,
-/area/security/prison)
-"aci" = (
-/obj/vehicle/secway,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/security/armory)
-"acj" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/machinery/suit_storage_unit/hos,
-/turf/open/floor/carpet,
-/area/security/hos)
-"ack" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"acl" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"acm" = (
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 4;
- name = "Armory APC";
- pixel_x = 24;
- pixel_y = 0
- },
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"acn" = (
-/obj/item/weapon/storage/secure/safe/HoS{
- pixel_x = 35
- },
-/obj/structure/closet/secure_closet/hos,
-/turf/open/floor/carpet,
-/area/security/hos)
-"aco" = (
-/obj/structure/closet/bombcloset,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/main)
-"acp" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/main)
-"acq" = (
-/obj/effect/landmark/secequipment,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/main)
-"acr" = (
-/obj/structure/chair/comfy/black,
-/turf/open/floor/carpet,
-/area/security/hos)
-"acs" = (
-/obj/machinery/newscaster/security_unit{
- pixel_x = -30;
- pixel_y = 0
- },
-/obj/machinery/camera{
- c_tag = "Head of Security's Office";
- dir = 4;
- network = list("SS13")
- },
-/obj/machinery/recharger{
- pixel_y = 4
- },
-/obj/structure/table/wood,
-/turf/open/floor/carpet,
-/area/security/hos)
-"act" = (
-/obj/machinery/holopad,
-/turf/open/floor/carpet,
-/area/security/hos)
-"acu" = (
-/turf/open/floor/carpet,
-/area/security/hos)
-"acv" = (
-/obj/structure/closet/secure_closet{
- anchored = 1;
- name = "Contraband Locker";
- req_access_txt = "3"
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/security/armory)
-"acw" = (
-/obj/structure/sign/securearea{
- pixel_y = -32
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/space)
-"acx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/auxstarboard)
-"acy" = (
-/obj/structure/lattice,
-/obj/item/stack/cable_coil/random,
-/turf/open/space,
-/area/space)
-"acz" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"acA" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 2
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"acB" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"acC" = (
-/obj/structure/bed,
-/obj/machinery/camera{
- c_tag = "Prison Cell 3";
- network = list("SS13","Prison")
- },
-/obj/item/device/radio/intercom{
- desc = "Talk through this. It looks like it has been modified to not broadcast.";
- dir = 2;
- name = "Prison Intercom (General)";
- pixel_x = 0;
- pixel_y = 24;
- prison_radio = 1
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"acD" = (
-/obj/structure/chair/stool,
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/button/door{
- id = "permabolt1";
- name = "Cell Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 0;
- pixel_y = 25;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"acE" = (
-/obj/structure/bed,
-/obj/machinery/camera{
- c_tag = "Prison Cell 2";
- network = list("SS13","Prison")
- },
-/obj/item/device/radio/intercom{
- desc = "Talk through this. It looks like it has been modified to not broadcast.";
- dir = 2;
- name = "Prison Intercom (General)";
- pixel_x = 0;
- pixel_y = 24;
- prison_radio = 1
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"acF" = (
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"acG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"acH" = (
-/obj/structure/bed,
-/obj/machinery/camera{
- c_tag = "Prison Cell 1";
- network = list("SS13","Prison")
- },
-/obj/item/device/radio/intercom{
- desc = "Talk through this. It looks like it has been modified to not broadcast.";
- dir = 2;
- name = "Prison Intercom (General)";
- pixel_x = 0;
- pixel_y = 24;
- prison_radio = 1
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"acI" = (
-/obj/machinery/door/poddoor/preopen{
- id = "executionfireblast";
- layer = 2.9;
- name = "blast door"
- },
-/obj/machinery/atmospherics/pipe/simple/general/hidden,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/westright{
- dir = 1;
- name = "Transfer Room";
- req_access_txt = "2"
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/security/transfer)
-"acJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"acK" = (
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plasteel/freezer,
-/area/security/prison)
-"acL" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"acM" = (
-/obj/structure/rack,
-/obj/item/weapon/gun/energy/e_gun{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/weapon/gun/energy/e_gun,
-/obj/item/weapon/gun/energy/e_gun{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plasteel{
- dir = 2
- },
-/area/ai_monitored/security/armory)
-"acN" = (
-/obj/structure/chair/stool/bar,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"acO" = (
-/obj/structure/closet/l3closet/security,
-/obj/machinery/camera{
- c_tag = "Brig Equipment Room";
- dir = 4
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/main)
-"acP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/main)
-"acQ" = (
-/obj/structure/table/wood,
-/obj/item/weapon/folder/red,
-/obj/item/weapon/stamp/hos,
-/turf/open/floor/carpet,
-/area/security/hos)
-"acR" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp/green{
- on = 0;
- pixel_x = -3;
- pixel_y = 8
- },
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/turf/open/floor/carpet,
-/area/security/hos)
-"acS" = (
-/obj/item/weapon/book/manual/wiki/security_space_law,
-/obj/structure/table/wood,
-/turf/open/floor/carpet,
-/area/security/hos)
-"acT" = (
-/obj/machinery/door/window/eastleft{
- name = "armoury desk";
- req_access_txt = "1"
- },
-/obj/machinery/door/window/westleft{
- name = "armoury desk";
- req_access_txt = "3"
- },
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"acU" = (
-/obj/machinery/door/airlock/external{
- name = "Security External Airlock";
- req_access_txt = "63"
- },
-/turf/open/floor/plating,
-/area/security/main)
-"acV" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/power/solar{
- id = "auxsolareast";
- name = "Port Auxiliary Solar Array"
- },
-/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/auxport)
-"acW" = (
-/obj/structure/cable,
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/auxport)
-"acX" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/poddoor/preopen{
- id = "executionfireblast";
- layer = 2.9;
- name = "blast door"
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/security/transfer)
-"acY" = (
-/obj/structure/table,
-/obj/item/weapon/paper,
-/obj/item/weapon/pen,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"acZ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/poddoor/preopen{
- id = "executionfireblast";
- layer = 2.9;
- name = "blast door"
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/security/transfer)
-"ada" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/obj/machinery/flasher{
- id = "PCell 3";
- pixel_x = -28
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"adb" = (
-/obj/structure/table,
-/obj/item/weapon/paper,
-/obj/item/weapon/pen,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"adc" = (
-/obj/machinery/flasher{
- id = "PCell 1";
- pixel_x = -28
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"add" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/obj/machinery/flasher{
- id = "PCell 2";
- pixel_x = -28
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"ade" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"adf" = (
-/obj/structure/toilet{
- dir = 1
- },
-/turf/open/floor/plasteel/freezer,
-/area/security/prison)
-"adg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"adh" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/carpet,
-/area/security/hos)
-"adi" = (
-/obj/machinery/flasher/portable,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/security/armory)
-"adj" = (
-/obj/structure/rack,
-/obj/item/weapon/gun/energy/e_gun/advtaser{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/weapon/gun/energy/e_gun/advtaser,
-/obj/item/weapon/gun/energy/e_gun/advtaser{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel{
- dir = 2
- },
-/area/ai_monitored/security/armory)
-"adk" = (
-/obj/structure/rack,
-/obj/item/weapon/gun/ballistic/shotgun/riot{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/weapon/gun/ballistic/shotgun/riot,
-/obj/item/weapon/gun/ballistic/shotgun/riot{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel{
- dir = 2
- },
-/area/ai_monitored/security/armory)
-"adl" = (
-/obj/machinery/door/poddoor/shutters{
- id = "armory";
- name = "Armoury Shutter"
- },
-/obj/machinery/button/door{
- id = "armory";
- name = "Armory Shutters";
- pixel_x = 0;
- pixel_y = -26;
- req_access_txt = "3"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
- },
-/area/ai_monitored/security/armory)
-"adm" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/hos)
-"adn" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/carpet,
-/area/security/hos)
-"ado" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/carpet,
-/area/security/hos)
-"adp" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/carpet,
-/area/security/hos)
-"adq" = (
-/obj/structure/table/wood,
-/obj/item/device/instrument/guitar{
- pixel_x = -7
- },
-/obj/item/device/instrument/eguitar{
- pixel_x = 5
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"adr" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/security/main)
-"ads" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/power/solar{
- id = "auxsolareast";
- name = "Port Auxiliary Solar Array"
- },
-/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/auxstarboard)
-"adt" = (
-/obj/structure/cable,
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/auxstarboard)
-"adu" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/auxport)
-"adv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/auxport)
-"adw" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/auxport)
-"adx" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/auxport)
-"ady" = (
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/auxport)
-"adz" = (
-/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/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/auxport)
-"adA" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/auxport)
-"adB" = (
-/obj/structure/sign/securearea{
- pixel_x = 32;
- pixel_y = 0
- },
-/turf/open/space,
-/area/space)
-"adC" = (
-/obj/structure/table,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/item/weapon/scalpel{
- pixel_y = 12
- },
-/obj/item/weapon/circular_saw,
-/obj/item/weapon/hemostat,
-/obj/item/weapon/retractor,
-/obj/item/weapon/surgical_drapes,
-/obj/item/weapon/razor,
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"adD" = (
-/obj/machinery/button/flasher{
- id = "executionflash";
- pixel_x = 24;
- pixel_y = 5
- },
-/obj/machinery/button/door{
- id = "executionspaceblast";
- name = "Vent to Space";
- pixel_x = 25;
- pixel_y = -5;
- req_access_txt = "7"
- },
-/obj/machinery/atmospherics/pipe/simple/general/hidden,
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"adE" = (
-/obj/structure/table,
-/obj/item/weapon/folder/red{
- pixel_x = 3
- },
-/obj/item/device/taperecorder{
- pixel_x = -3;
- pixel_y = 0
- },
-/obj/item/device/assembly/flash/handheld,
-/obj/item/weapon/reagent_containers/spray/pepper,
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"adF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/security/prison)
-"adG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/security/prison)
-"adH" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Long-Term Cell 3";
- req_access_txt = "2"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"adI" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Long-Term Cell 2";
- req_access_txt = "2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"adJ" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Long-Term Cell 1";
- req_access_txt = "2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"adK" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"adL" = (
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/brig)
-"adM" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/carpet,
-/area/security/hos)
-"adN" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Head of Security's Office APC";
- pixel_x = -24;
- pixel_y = 0
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/carpet,
-/area/security/hos)
-"adO" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"adP" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/security/hos)
-"adQ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"adR" = (
-/turf/closed/wall/r_wall,
-/area/security/main)
-"adS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/auxstarboard)
-"adT" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/auxstarboard)
-"adU" = (
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/auxstarboard)
-"adV" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/auxstarboard)
-"adW" = (
-/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"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/auxstarboard)
-"adX" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/auxstarboard)
-"adY" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/auxstarboard)
-"adZ" = (
-/obj/structure/cable,
-/obj/machinery/power/solar{
- id = "auxsolareast";
- name = "Port Auxiliary Solar Array"
- },
-/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/auxport)
-"aea" = (
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/security/transfer)
-"aeb" = (
-/obj/structure/table,
-/obj/item/device/flashlight/lamp,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"aec" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/security/transfer)
-"aed" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/machinery/button/ignition{
- id = "executionburn";
- pixel_x = 24;
- pixel_y = 5
- },
-/obj/machinery/button/door{
- id = "executionfireblast";
- name = "Transfer Area Lockdown";
- pixel_x = 25;
- pixel_y = -5;
- req_access_txt = "2"
- },
-/obj/machinery/atmospherics/pipe/simple/general/hidden,
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"aee" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"aef" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/prison)
-"aeg" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/security/transfer)
-"aeh" = (
-/obj/machinery/button/door{
- id = "permacell3";
- name = "Cell 3 Lockdown";
- pixel_x = -4;
- pixel_y = 25;
- req_access_txt = "2"
- },
-/obj/machinery/button/flasher{
- id = "PCell 3";
- pixel_x = 6;
- pixel_y = 24
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/red/corner{
- dir = 4
- },
-/area/security/prison)
-"aei" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aej" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/security/prison)
-"aek" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching Prison Wing holding areas.";
- name = "Prison Monitor";
- network = list("Prison");
- pixel_x = 0;
- pixel_y = 30
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/prison)
-"ael" = (
-/obj/machinery/button/door{
- id = "permacell2";
- name = "Cell 2 Lockdown";
- pixel_x = -4;
- pixel_y = 25;
- req_access_txt = "2"
- },
-/obj/machinery/button/flasher{
- id = "PCell 2";
- pixel_x = 6;
- pixel_y = 24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 4
- },
-/area/security/prison)
-"aem" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aen" = (
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching Prison Wing holding areas.";
- name = "Prison Monitor";
- network = list("Prison");
- pixel_x = 0;
- pixel_y = 30
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Prison Hallway";
- network = list("SS13","Prison")
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/prison)
-"aeo" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/security/prison)
-"aep" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aeq" = (
-/obj/machinery/button/door{
- id = "permacell1";
- name = "Cell 1 Lockdown";
- pixel_x = -4;
- pixel_y = 25;
- req_access_txt = "2"
- },
-/obj/machinery/button/flasher{
- id = "PCell 1";
- pixel_x = 6;
- pixel_y = 24
- },
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/turf/open/floor/plasteel/red/corner{
- dir = 4
- },
-/area/security/prison)
-"aer" = (
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "Prison Wing APC";
- pixel_x = 24;
- pixel_y = 0
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/prison)
-"aes" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/suit_storage_unit/security,
-/turf/open/floor/plasteel/red/side,
-/area/ai_monitored/security/armory)
-"aet" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"aeu" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/suit_storage_unit/security,
-/turf/open/floor/plasteel/red/side,
-/area/ai_monitored/security/armory)
-"aev" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 30;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/main)
-"aew" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/main)
-"aex" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/hos)
-"aey" = (
-/obj/machinery/door/airlock/glass_command{
- name = "Head of Security";
- req_access_txt = "58"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/security/hos)
-"aez" = (
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/brig)
-"aeA" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"aeB" = (
-/obj/structure/table,
-/obj/item/stack/packageWrap,
-/obj/item/weapon/pen,
-/turf/open/floor/plasteel,
-/area/security/main)
-"aeC" = (
-/obj/machinery/camera{
- c_tag = "Security Escape Pod";
- dir = 4;
- network = list("SS13")
- },
-/turf/open/floor/plating,
-/area/security/main)
-"aeD" = (
-/obj/structure/shuttle/engine/propulsion/burst{
- dir = 8
- },
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/pod_3)
-"aeE" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/pod_3)
-"aeG" = (
-/obj/structure/cable,
-/obj/machinery/power/solar{
- id = "auxsolareast";
- name = "Port Auxiliary Solar Array"
- },
-/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/auxstarboard)
-"aeH" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 8
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/security/transfer)
-"aeI" = (
-/obj/structure/rack,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/item/device/flashlight{
- pixel_x = 1;
- pixel_y = 5
- },
-/obj/item/weapon/tank/internals/anesthetic{
- pixel_x = -3;
- pixel_y = 1
- },
-/obj/item/weapon/tank/internals/oxygen/red{
- pixel_x = 3
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/security/transfer)
-"aeJ" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/security/transfer)
-"aeK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/general/hidden,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"aeL" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"aeM" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/prison)
-"aeN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security{
- aiControlDisabled = 0;
- icon_state = "door_closed";
- id_tag = null;
- locked = 0;
- name = "Prisoner Transfer Centre";
- req_access = null;
- req_access_txt = "2"
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"aeO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aeP" = (
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/prison)
-"aeQ" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aeR" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"aeS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aeT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aeU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aeV" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aeW" = (
-/obj/machinery/requests_console{
- department = "Security";
- departmentType = 5;
- pixel_x = -30;
- pixel_y = 0
- },
-/obj/machinery/camera{
- c_tag = "Brig Control Room";
- dir = 4
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/structure/rack,
-/obj/item/clothing/mask/gas/sechailer{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/mask/gas/sechailer,
-/obj/item/clothing/mask/gas/sechailer{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"aeX" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/ai_monitored/security/armory)
-"aeY" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/door/window/southleft{
- name = "Armory";
- req_access_txt = "3"
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"aeZ" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/ai_monitored/security/armory)
-"afa" = (
-/obj/machinery/door/airlock/titanium{
- name = "Emergency Shuttle Airlock"
- },
-/obj/docking_port/mobile/emergency{
- name = "Box emergency shuttle";
- timid = 0
- },
-/obj/docking_port/stationary{
- dir = 4;
- dwidth = 12;
- height = 18;
- id = "emergency_home";
- name = "BoxStation emergency evac bay";
- turf_type = /turf/open/space;
- width = 32
- },
-/turf/open/floor/plating,
-/area/shuttle/escape)
-"afb" = (
-/obj/machinery/recharger,
-/obj/structure/table,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/main)
-"afc" = (
-/obj/structure/table,
-/obj/machinery/recharger,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/main)
-"afd" = (
-/obj/item/device/radio/intercom{
- freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = 29
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/closet/wardrobe/red,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/main)
-"afe" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/main)
-"aff" = (
-/obj/effect/landmark/start/security_officer,
-/turf/open/floor/plasteel/red/side{
- dir = 9
- },
-/area/security/main)
-"afg" = (
-/obj/effect/landmark/start/security_officer,
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/main)
-"afh" = (
-/obj/effect/landmark/start/security_officer,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/main)
-"afi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/effect/landmark/start/security_officer,
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/main)
-"afj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/main)
-"afk" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/effect/landmark/start/security_officer,
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/main)
-"afl" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"afm" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/main)
-"afn" = (
-/turf/open/floor/plating,
-/area/security/main)
-"afo" = (
-/obj/machinery/door/airlock/external{
- name = "Escape Pod Three";
- req_access_txt = "0"
- },
-/turf/open/floor/plating,
-/area/security/main)
-"afp" = (
-/obj/machinery/door/airlock/titanium{
- name = "Escape Pod Airlock"
- },
-/obj/docking_port/mobile/pod{
- dir = 4;
- id = "pod3";
- name = "escape pod 3";
- port_angle = 180;
- preferred_direction = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_3)
-"afq" = (
-/obj/machinery/computer/shuttle/pod{
- pixel_y = -32;
- possible_destinations = "pod_lavaland3";
- shuttleId = "pod3"
- },
-/obj/structure/chair{
- dir = 4
- },
-/obj/machinery/status_display{
- density = 0;
- layer = 3;
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_3)
-"afr" = (
-/obj/item/device/radio/intercom{
- pixel_y = 25
- },
-/obj/item/weapon/storage/pod{
- pixel_x = 6;
- pixel_y = -32
- },
-/obj/structure/chair{
- dir = 4
- },
-/obj/machinery/light/small,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_3)
-"afs" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/pod_3)
-"aft" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/security/transfer)
-"afu" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/transfer)
-"afv" = (
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"afw" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- layer = 2.4
- },
-/obj/machinery/door/window/southleft{
- base_state = "right";
- dir = 4;
- icon_state = "right";
- name = "Armory";
- req_access_txt = "2"
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating,
-/area/security/transfer)
-"afx" = (
-/obj/machinery/light_switch{
- pixel_x = 25;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 9
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"afy" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"afz" = (
-/obj/structure/table,
-/obj/item/weapon/restraints/handcuffs,
-/turf/open/floor/plasteel/red/side{
- dir = 10
- },
-/area/security/prison)
-"afA" = (
-/turf/closed/wall/r_wall,
-/area/security/transfer)
-"afB" = (
-/obj/item/device/radio/intercom{
- dir = 4;
- name = "Station Intercom (General)";
- pixel_x = 27
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/prison)
-"afC" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"afD" = (
-/obj/structure/table,
-/obj/item/device/electropack,
-/turf/open/floor/plasteel/red/side,
-/area/security/prison)
-"afE" = (
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"afF" = (
-/obj/structure/table,
-/obj/item/device/assembly/signaler,
-/obj/item/clothing/suit/straight_jacket,
-/turf/open/floor/plasteel/red/side,
-/area/security/prison)
-"afG" = (
-/obj/structure/table,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/item/weapon/storage/box/hug,
-/obj/item/weapon/razor{
- pixel_x = -6
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/prison)
-"afH" = (
-/obj/structure/closet/secure_closet/brig{
- anchored = 1
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/prison)
-"afI" = (
-/turf/open/floor/plasteel/red/side,
-/area/security/prison)
-"afJ" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 1;
- pixel_y = -27
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/prison)
-"afK" = (
-/obj/machinery/door/airlock/glass_security{
- id_tag = null;
- name = "Evidence Storage";
- req_access_txt = "63"
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/brig)
-"afL" = (
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 9
- },
-/area/security/brig)
-"afM" = (
-/turf/open/floor/plasteel,
-/area/security/brig)
-"afN" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/red/side,
-/area/security/brig)
-"afO" = (
-/obj/machinery/door/airlock/command{
- name = "Command Tool Storage";
- req_access = null;
- req_access_txt = "19"
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"afP" = (
-/obj/machinery/door/airlock/command{
- cyclelinkeddir = 2;
- name = "Command Tool Storage";
- req_access = null;
- req_access_txt = "19"
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/storage/eva)
-"afQ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/sign/securearea{
- pixel_x = -32
- },
-/turf/open/floor/plating,
-/area/security/main)
-"afR" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/main)
-"afS" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Equipment Room";
- req_access_txt = "1"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/main)
-"afT" = (
-/obj/effect/landmark/start/security_officer,
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/main)
-"afU" = (
-/turf/open/floor/plasteel,
-/area/security/main)
-"afV" = (
-/obj/structure/table,
-/obj/item/weapon/restraints/handcuffs,
-/obj/item/device/assembly/timer,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/security/main)
-"afW" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/security/main)
-"afX" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/landmark/start/head_of_security,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/security/main)
-"afY" = (
-/obj/effect/landmark/start/security_officer,
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"afZ" = (
-/obj/structure/table,
-/obj/item/device/radio/off,
-/obj/item/weapon/screwdriver{
- pixel_y = 10
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"aga" = (
-/obj/structure/sign/pods{
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"agb" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/main)
-"agc" = (
-/obj/structure/closet/emcloset,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/security/main)
-"agd" = (
-/obj/machinery/atmospherics/pipe/manifold4w/general/visible,
-/turf/open/floor/plasteel,
-/area/atmos)
-"agf" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal{
- amount = 1
- },
-/obj/item/weapon/storage/box/bodybags,
-/obj/item/weapon/pen,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"agg" = (
-/obj/structure/closet/secure_closet/injection,
-/obj/structure/cable,
-/obj/machinery/power/apc{
- dir = 2;
- name = "Prisoner Transfer Centre";
- pixel_x = 0;
- pixel_y = -27
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"agh" = (
-/obj/structure/table,
-/obj/item/device/electropack,
-/obj/item/weapon/screwdriver,
-/obj/item/weapon/wrench,
-/obj/item/clothing/head/helmet,
-/obj/item/device/assembly/signaler,
-/obj/machinery/light/small,
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"agi" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_security{
- name = "Prison Wing";
- req_access_txt = "2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/prison)
-"agj" = (
-/turf/closed/wall,
-/area/security/brig)
-"agk" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_security{
- name = "Prison Wing";
- req_access_txt = "2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 9
- },
-/area/security/prison)
-"agl" = (
-/obj/machinery/door/airlock/security{
- name = "Interrogation";
- req_access = null;
- req_access_txt = "63"
- },
-/turf/open/floor/plasteel/black,
-/area/security/prison)
-"agm" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/table,
-/obj/item/stack/sheet/plasteel{
- amount = 10
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"agn" = (
-/turf/closed/wall/r_wall,
-/area/security/warden)
-"ago" = (
-/obj/machinery/computer/security,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"agp" = (
-/obj/machinery/computer/prisoner,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"agq" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/southleft{
- base_state = "right";
- icon_state = "right";
- name = "Armory";
- req_access_txt = "3"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"agr" = (
-/obj/machinery/computer/secure_data,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"ags" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/security/prison)
-"agt" = (
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"agu" = (
-/obj/structure/table,
-/obj/machinery/recharger,
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"agw" = (
-/obj/structure/table,
-/obj/machinery/syndicatebomb/training,
-/obj/item/weapon/gun/energy/laser/practice,
-/turf/open/floor/plasteel/red/side{
- dir = 9
- },
-/area/security/main)
-"agx" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/main)
-"agy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/main)
-"agz" = (
-/obj/effect/landmark/start/security_officer,
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/security/main)
-"agA" = (
-/obj/machinery/requests_console{
- department = "Security";
- departmentType = 5;
- pixel_y = 30
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/main)
-"agB" = (
-/obj/structure/table,
-/obj/item/device/assembly/flash/handheld,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/security/main)
-"agC" = (
-/obj/machinery/holopad,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/security/main)
-"agD" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/preopen{
- id = "Prison Gate";
- name = "prison blast door"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
- },
-/area/security/brig)
-"agE" = (
-/obj/structure/table,
-/obj/item/weapon/folder/red,
-/obj/item/weapon/pen,
-/turf/open/floor/plasteel,
-/area/security/main)
-"agF" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/sign/securearea{
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/machinery/door/poddoor/preopen{
- id = "Prison Gate";
- name = "prison blast door"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
- },
-/area/security/brig)
-"agG" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/main)
-"agH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/security/prison)
-"agI" = (
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/security/prison)
-"agJ" = (
-/obj/item/weapon/cigbutt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/black,
-/area/security/prison)
-"agK" = (
-/turf/open/floor/plasteel/black,
-/area/security/prison)
-"agL" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/black,
-/area/security/prison)
-"agM" = (
-/obj/item/clothing/gloves/color/latex,
-/obj/item/clothing/mask/surgical,
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/obj/structure/table/glass,
-/turf/open/floor/plasteel/whitered/side{
- dir = 9
- },
-/area/security/brig)
-"agN" = (
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/firstaid/regular,
-/obj/structure/table/glass,
-/turf/open/floor/plasteel/whitered/side{
- dir = 1
- },
-/area/security/brig)
-"agO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/brig)
-"agP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 9
- },
-/area/security/brig)
-"agQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"agR" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/warden)
-"agS" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"agT" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"agU" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"agV" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"agW" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/warden)
-"agX" = (
-/obj/structure/table,
-/obj/machinery/recharger,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"agY" = (
-/obj/structure/table,
-/obj/item/weapon/storage/fancy/donut_box,
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/main)
-"agZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/security/main)
-"aha" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/security/main)
-"ahb" = (
-/obj/effect/landmark/start/security_officer,
-/turf/open/floor/plasteel,
-/area/security/main)
-"ahc" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"ahd" = (
-/obj/structure/table,
-/obj/item/weapon/book/manual/wiki/security_space_law,
-/obj/item/weapon/book/manual/wiki/security_space_law,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/security/main)
-"ahe" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- icon_state = "pipe-j2s";
- sortType = 8
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"ahf" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/security/main)
-"ahg" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/landmark/start/security_officer,
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"ahh" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"ahi" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- icon_state = "pipe-j2s";
- sortType = 7
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/main)
-"ahj" = (
-/obj/machinery/door/window/eastright{
- base_state = "left";
- dir = 8;
- icon_state = "left";
- name = "Security Delivery";
- req_access_txt = "1"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/security/main)
-"ahk" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"ahl" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=8";
- dir = 8;
- freq = 1400;
- location = "Security"
- },
-/obj/structure/plasticflaps{
- opacity = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/security/main)
-"ahm" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/iv_drip{
- density = 0
- },
-/obj/item/weapon/reagent_containers/blood/empty,
-/turf/open/floor/plasteel/whitered/side{
- dir = 5
- },
-/area/security/brig)
-"ahn" = (
-/turf/closed/wall,
-/area/maintenance/fsmaint)
-"aho" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/security/prison)
-"ahp" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/security/prison)
-"ahq" = (
-/obj/structure/table,
-/obj/item/device/flashlight/lamp,
-/turf/open/floor/plasteel/black,
-/area/security/prison)
-"ahr" = (
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/brig)
-"ahs" = (
-/obj/item/device/radio/intercom{
- freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/table/glass,
-/obj/machinery/computer/med_data/laptop,
-/turf/open/floor/plasteel/whitered/side{
- dir = 1
- },
-/area/security/brig)
-"aht" = (
-/turf/open/floor/plasteel/whitered/corner{
- dir = 8
- },
-/area/security/brig)
-"ahu" = (
-/obj/item/weapon/storage/box/bodybags,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
- },
-/obj/item/weapon/reagent_containers/syringe{
- name = "steel point"
- },
-/obj/item/weapon/reagent_containers/glass/bottle/charcoal,
-/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/structure/table/glass,
-/turf/open/floor/plasteel/whitered/side{
- dir = 10
- },
-/area/security/brig)
-"ahv" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Brig Control APC";
- pixel_x = -24;
- pixel_y = 0
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"ahw" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"ahx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"ahy" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"ahz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"ahA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/main)
-"ahB" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"ahC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/security/main)
-"ahD" = (
-/obj/machinery/door/window/westleft{
- base_state = "left";
- dir = 4;
- icon_state = "left";
- name = "Brig Infirmary";
- req_access_txt = "0"
- },
-/turf/open/floor/plasteel/whitered/side{
- dir = 4
- },
-/area/security/brig)
-"ahE" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Brig Control";
- req_access_txt = "3"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"ahF" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"ahG" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"ahH" = (
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-y";
- dir = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"ahI" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"ahJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"ahK" = (
-/obj/structure/disposalpipe/segment{
- 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/chair,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/obj/effect/landmark/start/security_officer,
-/turf/open/floor/plasteel,
-/area/security/main)
-"ahL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"ahM" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"ahN" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Security Office APC";
- pixel_x = 24;
- pixel_y = 0
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/main)
-"ahO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/security/main)
-"ahP" = (
-/turf/open/floor/plasteel/white,
-/area/security/brig)
-"ahQ" = (
-/obj/structure/closet/secure_closet/warden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"ahR" = (
-/obj/structure/chair/office/dark,
-/obj/effect/landmark/start/warden,
-/obj/machinery/button/door{
- id = "Prison Gate";
- name = "Prison Wing Lockdown";
- pixel_x = -27;
- pixel_y = 8;
- req_access_txt = "2"
- },
-/obj/machinery/button/door{
- id = "Secure Gate";
- name = "Cell Shutters";
- pixel_x = -27;
- pixel_y = -2;
- req_access_txt = "0"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"ahS" = (
-/obj/structure/table,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"ahT" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"ahU" = (
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 10
- },
-/area/security/brig)
-"ahV" = (
-/obj/structure/table,
-/obj/item/weapon/folder/red,
-/obj/item/device/taperecorder{
- pixel_y = 0
- },
-/turf/open/floor/plasteel/black,
-/area/security/prison)
-"ahW" = (
-/obj/structure/bodycontainer/morgue,
-/obj/machinery/camera{
- c_tag = "Brig Infirmary";
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig)
-"ahX" = (
-/obj/structure/table,
-/obj/item/device/radio/intercom{
- dir = 4;
- name = "Station Intercom (General)";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"ahY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/brig)
-"ahZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 10
- },
-/area/security/main)
-"aia" = (
-/obj/structure/noticeboard{
- dir = 1;
- pixel_y = -27
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/red/side,
-/area/security/main)
-"aib" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"aic" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"aid" = (
-/turf/open/floor/plasteel/whitered/side{
- dir = 10
- },
-/area/security/brig)
-"aie" = (
-/obj/structure/table,
-/obj/item/weapon/folder/red,
-/obj/item/weapon/pen,
-/obj/item/weapon/hand_labeler,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/item/weapon/book/manual/wiki/security_space_law,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"aif" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"aig" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"aih" = (
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 6
- },
-/area/security/brig)
-"aii" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/warden)
-"aij" = (
-/obj/machinery/light_switch{
- pixel_y = -23
- },
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"aik" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/main)
-"ail" = (
-/obj/machinery/camera{
- c_tag = "Brig Interrogation";
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/security/prison)
-"aim" = (
-/obj/machinery/light_switch{
- pixel_y = -23
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/red/side,
-/area/security/main)
-"ain" = (
-/turf/open/floor/plasteel/whitered/side{
- dir = 8
- },
-/area/security/brig)
-"aio" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/rglass{
- amount = 50
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aip" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/main)
-"aiq" = (
-/obj/machinery/camera{
- c_tag = "Security Office";
- dir = 1;
- network = list("SS13")
- },
-/obj/machinery/computer/secure_data,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/main)
-"air" = (
-/obj/structure/chair,
-/turf/open/floor/plating,
-/area/security/vacantoffice2)
-"ais" = (
-/obj/structure/filingcabinet,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 5;
- pixel_y = -32
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/main)
-"ait" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -29
- },
-/obj/machinery/computer/security,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/main)
-"aiu" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/main)
-"aiv" = (
-/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/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/main)
-"aiw" = (
-/obj/machinery/door/window/westleft{
- base_state = "right";
- dir = 4;
- icon_state = "right";
- name = "Brig Infirmary";
- req_access_txt = "0"
- },
-/turf/open/floor/plasteel/whitered/side{
- dir = 4
- },
-/area/security/brig)
-"aix" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 6
- },
-/area/security/main)
-"aiy" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/red/corner{
- dir = 4
- },
-/area/security/brig)
-"aiz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/security/brig)
-"aiA" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"aiB" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/black,
-/area/security/prison)
-"aiC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/security/prison)
-"aiD" = (
-/obj/structure/bodycontainer/morgue,
-/turf/open/floor/plasteel/black,
-/area/security/brig)
-"aiE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/black,
-/area/security/prison)
-"aiF" = (
-/obj/structure/bed,
-/obj/item/clothing/suit/straight_jacket,
-/turf/open/floor/plasteel/whitered/side,
-/area/security/brig)
-"aiG" = (
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/brig)
-"aiH" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/brig)
-"aiI" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_x = -32
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/warden)
-"aiJ" = (
-/obj/structure/table/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/door/window/brigdoor{
- dir = 1;
- name = "Armory Desk";
- req_access_txt = "3"
- },
-/obj/machinery/door/window/southleft{
- name = "Reception Desk";
- req_access_txt = "63"
- },
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen{
- pixel_x = 4;
- pixel_y = 4
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"aiK" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/warden)
-"aiL" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/warden)
-"aiM" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Brig Control";
- req_access_txt = "3"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"aiN" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/warden)
-"aiO" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/bed,
-/obj/item/clothing/suit/straight_jacket,
-/turf/open/floor/plasteel/whitered/side{
- dir = 6
- },
-/area/security/brig)
-"aiP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/security/main)
-"aiQ" = (
-/obj/machinery/camera{
- c_tag = "Brig East"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/brig)
-"aiR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/brig)
-"aiS" = (
-/obj/item/stack/rods,
-/turf/open/space,
-/area/space)
-"aiT" = (
-/turf/closed/wall,
-/area/security/processing)
-"aiU" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/processing)
-"aiV" = (
-/turf/closed/wall/r_wall,
-/area/security/processing)
-"aiW" = (
-/obj/machinery/door/airlock/security{
- name = "Interrogation";
- req_access = null;
- req_access_txt = "63"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/security/prison)
-"aiX" = (
-/turf/closed/wall/r_wall,
-/area/security/brig)
-"aiY" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 2;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/courtroom)
-"aiZ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/security/brig)
-"aja" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"ajb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"ajc" = (
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/brig)
-"ajd" = (
-/obj/structure/sign/goldenplaque{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/brig)
-"aje" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/brig)
-"ajf" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/brig)
-"ajg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"ajh" = (
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/obj/structure/closet/secure_closet/courtroom,
-/obj/effect/decal/cleanable/cobweb,
-/obj/structure/sign/securearea{
- pixel_x = -32
- },
-/obj/item/weapon/gavelhammer,
-/turf/open/floor/plasteel,
-/area/crew_quarters/courtroom)
-"aji" = (
-/obj/structure/chair{
- name = "Judge"
- },
-/turf/open/floor/plasteel/blue/side{
- dir = 9
- },
-/area/crew_quarters/courtroom)
-"ajj" = (
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "Station Intercom (General)";
- pixel_y = 20
- },
-/obj/machinery/camera{
- c_tag = "Courtroom North"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/courtroom)
-"ajk" = (
-/obj/structure/chair{
- name = "Judge"
- },
-/turf/open/floor/plasteel/blue/side{
- dir = 5
- },
-/area/crew_quarters/courtroom)
-"ajl" = (
-/obj/structure/chair{
- name = "Judge"
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/blue/side{
- dir = 1
- },
-/area/crew_quarters/courtroom)
-"ajm" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
-"ajn" = (
-/turf/open/floor/plasteel,
-/area/crew_quarters/courtroom)
-"ajo" = (
-/turf/closed/wall,
-/area/crew_quarters/courtroom)
-"ajp" = (
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
-"ajq" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/auxport)
-"ajr" = (
-/obj/machinery/computer/gulag_teleporter_computer,
-/turf/open/floor/plasteel,
-/area/security/processing)
-"ajs" = (
-/obj/machinery/gulag_teleporter,
-/turf/open/floor/plasteel,
-/area/security/processing)
-"ajt" = (
-/obj/structure/sign/securearea{
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/table,
-/obj/item/weapon/storage/box/prisoner,
-/obj/machinery/camera{
- c_tag = "Labor Shuttle Dock North"
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"aju" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/obj/machinery/computer/security{
- name = "Labor Camp Monitoring";
- network = list("Labor")
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"ajv" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 9
- },
-/area/security/brig)
-"ajw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/security/brig)
-"ajx" = (
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/brig)
-"ajy" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Brig APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/brig)
-"ajz" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/brig)
-"ajA" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/brig)
-"ajB" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"ajC" = (
-/obj/item/weapon/storage/toolbox/drone,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"ajD" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"ajE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/neutral/side{
- dir = 5
- },
-/area/crew_quarters/courtroom)
-"ajF" = (
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel/red/corner{
- dir = 2
- },
-/area/security/brig)
-"ajG" = (
-/obj/machinery/light,
-/obj/machinery/door_timer{
- id = "Cell 1";
- name = "Cell 1";
- pixel_y = -32
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/brig)
-"ajH" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 4
- },
-/area/crew_quarters/courtroom)
-"ajI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"ajJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"ajK" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"ajL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/brig)
-"ajM" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/courtroom)
-"ajN" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security{
- name = "Brig";
- req_access = null;
- req_access_txt = "63; 42"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"ajO" = (
-/obj/structure/table/wood,
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- dir = 8;
- listening = 1;
- name = "Station Intercom (Court)";
- pixel_x = 0
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
- },
-/area/crew_quarters/courtroom)
-"ajP" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 9
- },
-/area/crew_quarters/courtroom)
-"ajQ" = (
-/obj/structure/table/wood,
-/obj/item/weapon/book/manual/wiki/security_space_law,
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
- },
-/area/crew_quarters/courtroom)
-"ajR" = (
-/obj/structure/table/wood,
-/obj/item/weapon/gavelblock,
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
- },
-/area/crew_quarters/courtroom)
-"ajS" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/crew_quarters/courtroom)
-"ajT" = (
-/obj/structure/chair{
- dir = 8;
- name = "Defense"
- },
-/turf/open/floor/plasteel/green/side{
- dir = 5
- },
-/area/crew_quarters/courtroom)
-"ajU" = (
-/obj/machinery/door/window/southleft{
- name = "Court Cell";
- req_access_txt = "2"
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
-"ajV" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
-"ajW" = (
-/obj/machinery/door/airlock/external{
- name = "Solar Maintenance";
- req_access = null;
- req_access_txt = "10; 13"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
-"ajX" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/labor)
-"ajZ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/open/floor/plating,
-/area/mining_construction)
-"aka" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"akb" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"akc" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"akd" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/security/processing)
-"ake" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/brig)
-"akf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security{
- name = "Labor Shuttle";
- req_access = null;
- req_access_txt = "2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"akg" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/camera{
- c_tag = "Brig West";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/red/corner{
- dir = 2
- },
-/area/security/brig)
-"akh" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aki" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/red/corner{
- dir = 8
- },
-/area/security/brig)
-"akj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/brig)
-"akk" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 2
- },
-/area/security/brig)
-"akl" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"akm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/red/corner{
- dir = 8
- },
-/area/security/brig)
-"akn" = (
-/obj/structure/table/wood,
-/obj/item/weapon/folder/blue,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/neutral/side{
- dir = 4
- },
-/area/crew_quarters/courtroom)
-"ako" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door_timer{
- id = "Cell 2";
- name = "Cell 2";
- pixel_y = -32
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/brig)
-"akp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/brig)
-"akq" = (
-/obj/machinery/camera{
- c_tag = "Brig Central";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door_timer{
- id = "Cell 3";
- name = "Cell 3";
- pixel_y = -32
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/brig)
-"akr" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 9
- },
-/area/security/brig)
-"aks" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/red/corner{
- dir = 8
- },
-/area/security/brig)
-"akt" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door_timer{
- id = "Cell 4";
- name = "Cell 4";
- pixel_y = -32
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/brig)
-"aku" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/brig)
-"akv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"akw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/courtroom)
-"akx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/security/brig)
-"aky" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/neutral/side{
- dir = 8
- },
-/area/crew_quarters/courtroom)
-"akz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/brig)
-"akA" = (
-/obj/structure/chair{
- dir = 8;
- name = "Defense"
- },
-/turf/open/floor/plasteel/green/side{
- dir = 6
- },
-/area/crew_quarters/courtroom)
-"akB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
-"akC" = (
-/obj/machinery/computer/shuttle/labor,
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = -31;
- pixel_y = 0
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/labor)
-"akD" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/labor)
-"akE" = (
-/obj/structure/table,
-/obj/item/weapon/folder/red,
-/obj/item/weapon/restraints/handcuffs,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/labor)
-"akF" = (
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/labor)
-"akG" = (
-/obj/structure/grille,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 32
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/processing)
-"akH" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"akI" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"akJ" = (
-/obj/machinery/light_switch{
- pixel_x = 27
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"akK" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/security/processing)
-"akL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/meter,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"akM" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/brig)
-"akN" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/brig)
-"akO" = (
-/obj/machinery/door/window/brigdoor{
- id = "Cell 1";
- name = "Cell 1";
- req_access_txt = "1"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/brig)
-"akP" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/brig)
-"akQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/closed/wall,
-/area/security/brig)
-"akR" = (
-/obj/machinery/door/window/brigdoor{
- id = "Cell 2";
- name = "Cell 2";
- req_access_txt = "1"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/brig)
-"akS" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/brig)
-"akT" = (
-/obj/machinery/door/window/brigdoor{
- id = "Cell 3";
- name = "Cell 3";
- req_access_txt = "1"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/brig)
-"akU" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Brig Desk";
- req_access_txt = "1"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig)
-"akV" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/brig)
-"akW" = (
-/obj/machinery/door/airlock/glass_security{
- cyclelinkeddir = 2;
- id_tag = "innerbrig";
- name = "Brig";
- req_access_txt = "63"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/brig)
-"akX" = (
-/obj/machinery/door/airlock/glass_security{
- cyclelinkeddir = 2;
- id_tag = "innerbrig";
- name = "Brig";
- req_access_txt = "63"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 9
- },
-/area/security/brig)
-"akY" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/brig)
-"akZ" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/brig)
-"ala" = (
-/obj/machinery/door/window/brigdoor{
- id = "Cell 4";
- name = "Cell 4";
- req_access_txt = "1"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/red/side,
-/area/security/brig)
-"alb" = (
-/obj/structure/chair{
- dir = 4;
- name = "Prosecution"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 9
- },
-/area/crew_quarters/courtroom)
-"alc" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/neutral/side{
- dir = 8
- },
-/area/crew_quarters/courtroom)
-"ald" = (
-/obj/machinery/holopad,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/crew_quarters/courtroom)
-"ale" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/neutral/side{
- dir = 6
- },
-/area/crew_quarters/courtroom)
-"alf" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/brig)
-"alg" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/auxstarboard)
-"alh" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/external{
- name = "Solar Maintenance";
- req_access = null;
- req_access_txt = "10; 13"
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
-"ali" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"alj" = (
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/labor)
-"alk" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"all" = (
-/obj/machinery/mineral/labor_claim_console{
- machinedir = 2;
- pixel_x = 30;
- pixel_y = 30
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/labor)
-"alm" = (
-/obj/machinery/button/flasher{
- id = "gulagshuttleflasher";
- name = "Flash Control";
- pixel_x = 0;
- pixel_y = -26;
- req_access_txt = "1"
- },
-/obj/machinery/light,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/labor)
-"aln" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- name = "Labor Camp Shuttle Airlock";
- req_access_txt = "2";
- shuttledocked = 1
- },
-/turf/open/floor/plating,
-/area/security/processing)
-"alo" = (
-/obj/machinery/door/airlock/titanium{
- name = "Labor Shuttle Airlock";
- req_access_txt = "2"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/labor)
-"alp" = (
-/turf/open/floor/plating,
-/area/security/processing)
-"alq" = (
-/turf/open/floor/plasteel,
-/area/security/processing)
-"alr" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/security/processing)
-"als" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/security/processing)
-"alt" = (
-/obj/structure/reagent_dispensers/peppertank,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/security/armory)
-"alu" = (
-/obj/machinery/nuclearbomb/selfdestruct,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/nuke_storage)
-"alv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/item/device/radio/intercom{
- desc = "Talk through this. It looks like it has been modified to not broadcast.";
- dir = 2;
- name = "Prison Intercom (General)";
- pixel_x = -25;
- pixel_y = -2;
- prison_radio = 1
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/brig)
-"alw" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/brig)
-"alx" = (
-/turf/open/floor/plasteel/floorgrime,
-/area/security/brig)
-"aly" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/item/device/radio/intercom{
- desc = "Talk through this. It looks like it has been modified to not broadcast.";
- dir = 2;
- name = "Prison Intercom (General)";
- pixel_x = -25;
- pixel_y = -2;
- prison_radio = 1
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/brig)
-"alz" = (
-/obj/machinery/button/door{
- id = "briggate";
- name = "Desk Shutters";
- pixel_x = -26;
- pixel_y = 6;
- req_access_txt = "0"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/button/flasher{
- id = "brigentry";
- pixel_x = -28;
- pixel_y = -8
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig)
-"alA" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "briggate";
- name = "security shutters"
- },
-/obj/machinery/door/window/eastleft{
- name = "Brig Desk";
- req_access_txt = "1"
- },
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen,
-/turf/open/floor/plasteel/black,
-/area/security/brig)
-"alB" = (
-/obj/machinery/computer/secure_data,
-/turf/open/floor/plasteel/black,
-/area/security/brig)
-"alC" = (
-/turf/open/floor/plasteel/red/side{
- dir = 9
- },
-/area/security/brig)
-"alD" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/crew_quarters/courtroom)
-"alE" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/obj/machinery/flasher{
- id = "Cell 4";
- pixel_x = 28
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/brig)
-"alF" = (
-/obj/machinery/atmospherics/components/unary/tank/air{
- dir = 2
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"alG" = (
-/obj/structure/chair{
- dir = 4;
- name = "Prosecution"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 10
- },
-/area/crew_quarters/courtroom)
-"alH" = (
-/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/courtroom)
-"alI" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/neutral/side{
- dir = 10
- },
-/area/crew_quarters/courtroom)
-"alJ" = (
-/obj/item/device/radio/beacon,
-/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/courtroom)
-"alK" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"alL" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/power/apc{
- dir = 8;
- name = "Courtroom APC";
- pixel_x = -24;
- pixel_y = 0
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/crew_quarters/courtroom)
-"alM" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"alN" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/auxstarboard)
-"alO" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"alP" = (
-/turf/closed/wall,
-/area/maintenance/fsmaint2)
-"alQ" = (
-/obj/machinery/power/solar_control{
- id = "auxsolareast";
- name = "Fore Port Solar Control";
- track = 0
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
-"alR" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/auxsolarport)
-"alS" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 32;
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
-"alT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
-"alU" = (
-/turf/closed/wall,
-/area/maintenance/fpmaint2)
-"alV" = (
-/obj/effect/decal/cleanable/vomit,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"alW" = (
-/obj/item/weapon/cigbutt/cigarbutt,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"alX" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/floor/plasteel,
-/area/atmos)
-"alY" = (
-/obj/machinery/door/airlock/titanium{
- name = "Labor Shuttle Airlock";
- req_access_txt = "2"
- },
-/turf/open/floor/plasteel/black,
-/area/shuttle/labor)
-"alZ" = (
-/obj/machinery/mineral/stacking_machine/laborstacker{
- input_dir = 2;
- output_dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/shuttle/labor)
-"ama" = (
-/mob/living/simple_animal/sloth/paperwork,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"amb" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"amc" = (
-/obj/machinery/computer/shuttle/labor,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"amd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/security/processing)
-"ame" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"amf" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/flasher{
- id = "Cell 1";
- pixel_x = -28
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/brig)
-"amg" = (
-/obj/structure/closet/secure_closet/brig{
- id = "Cell 1";
- name = "Cell 1 Locker"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/brig)
-"amh" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet,
-/obj/machinery/flasher{
- id = "Cell 2";
- pixel_x = -28
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/brig)
-"ami" = (
-/obj/structure/closet/secure_closet/brig{
- id = "Cell 2";
- name = "Cell 2 Locker"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/brig)
-"amj" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet,
-/obj/machinery/flasher{
- id = "Cell 3";
- pixel_x = -28
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/brig)
-"amk" = (
-/obj/structure/closet/secure_closet/brig{
- id = "Cell 3";
- name = "Cell 3 Locker"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/brig)
-"aml" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/button/door{
- desc = "A remote control switch for the medbay foyer.";
- id = "outerbrig";
- name = "Brig Exterior Doors Control";
- normaldoorcontrol = 1;
- pixel_x = -26;
- pixel_y = -5;
- req_access_txt = "63"
- },
-/obj/machinery/button/door{
- desc = "A remote control switch for the medbay foyer.";
- id = "innerbrig";
- name = "Brig Interior Doors Control";
- normaldoorcontrol = 1;
- pixel_x = -26;
- pixel_y = 5;
- req_access_txt = "63"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig)
-"amm" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "briggate";
- name = "security shutters"
- },
-/obj/machinery/door/window/eastright{
- name = "Brig Desk";
- req_access_txt = "2"
- },
-/obj/item/weapon/restraints/handcuffs,
-/obj/item/device/radio/off,
-/turf/open/floor/plasteel/black,
-/area/security/brig)
-"amn" = (
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig)
-"amo" = (
-/obj/machinery/flasher{
- id = "brigentry";
- pixel_x = 28
- },
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/brig)
-"amp" = (
-/obj/structure/closet/secure_closet/brig{
- id = "Cell 4";
- name = "Cell 4 Locker"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/brig)
-"amq" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet,
-/obj/item/device/radio/intercom{
- desc = "Talk through this. It looks like it has been modified to not broadcast.";
- dir = 2;
- name = "Prison Intercom (General)";
- pixel_x = 25;
- pixel_y = -2;
- prison_radio = 1
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/brig)
-"amr" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/crew_quarters/courtroom)
-"ams" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/crew_quarters/courtroom)
-"amt" = (
-/obj/machinery/door/airlock/glass{
- name = "Courtroom";
- req_access_txt = "42"
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
-"amu" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
-"amv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 2;
- name = "Solar Maintenance";
- req_access = null;
- req_access_txt = "10; 13"
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"amw" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"amx" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"amy" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
-"amz" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/terminal,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
-"amA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
-"amB" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"amC" = (
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"amD" = (
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"amE" = (
-/obj/structure/bed,
-/obj/effect/landmark/xeno_spawn,
-/obj/item/weapon/bedsheet,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"amF" = (
-/obj/machinery/computer/slot_machine{
- balance = 15;
- money = 500
- },
-/obj/item/weapon/coin/iron,
-/obj/item/weapon/coin/diamond,
-/obj/item/weapon/coin/diamond,
-/obj/item/weapon/coin/diamond,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"amG" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/item/toy/sword,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"amH" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/structure/noticeboard{
- dir = 8;
- pixel_x = 27;
- pixel_y = 0
- },
-/obj/item/trash/plate,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"amI" = (
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"amJ" = (
-/obj/machinery/mineral/labor_claim_console{
- machinedir = 1;
- pixel_x = 30;
- pixel_y = 0
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"amK" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
- },
-/turf/closed/wall,
-/area/security/processing)
-"amL" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/processing)
-"amM" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Prisoner Processing";
- req_access_txt = "2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/security/processing)
-"amN" = (
-/obj/structure/table,
-/obj/item/clothing/glasses/sunglasses{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/clothing/glasses/sunglasses{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/clothing/ears/earmuffs{
- pixel_x = -3;
- pixel_y = -2
- },
-/obj/item/clothing/ears/earmuffs{
- pixel_x = -3;
- pixel_y = -2
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"amO" = (
-/turf/open/space,
-/obj/machinery/porta_turret/syndicate{
- dir = 9
- },
-/turf/closed/wall/mineral/plastitanium{
- dir = 8;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
-"amP" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/shutters{
- id = "syndieshutters";
- name = "blast shutters"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/shuttle/syndicate)
-"amQ" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/machinery/door/poddoor/preopen{
- id = "Secure Gate";
- name = "brig shutters"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/brig)
-"amR" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/grille,
-/obj/machinery/door/poddoor/preopen{
- id = "Secure Gate";
- name = "brig shutters"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/brig)
-"amS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/closed/wall/r_wall,
-/area/security/brig)
-"amT" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "briggate";
- name = "security shutters"
- },
-/obj/machinery/door/window/southleft{
- name = "Brig Desk";
- req_access_txt = "1"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig)
-"amU" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/preopen{
- id = "briggate";
- name = "security blast door"
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/brig)
-"amV" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "briggate";
- name = "security shutters"
- },
-/obj/machinery/door/window/southleft{
- base_state = "right";
- icon_state = "right";
- name = "Brig Desk";
- req_access_txt = "1"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig)
-"amW" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_security{
- cyclelinkeddir = 1;
- id_tag = "outerbrig";
- name = "Brig";
- req_access_txt = "63"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/brig)
-"amX" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_security{
- cyclelinkeddir = 1;
- id_tag = "outerbrig";
- name = "Brig";
- req_access_txt = "63"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 9
- },
-/area/security/brig)
-"amY" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
-"amZ" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
-"ana" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
-"anb" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"anc" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"and" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"ane" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"anf" = (
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"ang" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/power/apc{
- dir = 8;
- name = "Fore Port Solar APC";
- pixel_x = -25;
- pixel_y = 3
- },
-/obj/machinery/camera{
- c_tag = "Fore Port Solar Control";
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
-"anh" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/smes,
-/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
-"ani" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
-"anj" = (
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
- icon_state = "manifold";
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"ank" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"anl" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- icon_state = "intact";
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"anm" = (
-/obj/item/trash/sosjerky,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"ann" = (
-/obj/item/weapon/electronics/airalarm,
-/obj/item/weapon/circuitboard/machine/seed_extractor,
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 4;
- name = "4maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"ano" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"anp" = (
-/obj/item/weapon/cigbutt,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"anq" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"anr" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/flasher{
- id = "gulagshuttleflasher";
- pixel_x = 25
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"ans" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/processing)
-"ant" = (
-/obj/machinery/gulag_item_reclaimer{
- pixel_y = 24
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"anu" = (
-/obj/machinery/button/door{
- desc = "A remote control switch for the exit.";
- id = "laborexit";
- name = "exit button";
- normaldoorcontrol = 1;
- pixel_x = 26;
- pixel_y = -6;
- req_access_txt = "0"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/processing)
-"anv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/processing)
-"anw" = (
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/hallway/primary/fore)
-"anx" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 32
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/hallway/primary/fore)
-"any" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 32
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/hallway/primary/fore)
-"anz" = (
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"anA" = (
-/turf/open/floor/plasteel/red/corner{
- dir = 4
- },
-/area/hallway/primary/fore)
-"anB" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/sign/securearea{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 4
- },
-/area/hallway/primary/fore)
-"anC" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/crew_quarters/courtroom)
-"anD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"anE" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- req_access_txt = "13"
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"anF" = (
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"anG" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"anH" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 0
- },
-/turf/closed/wall/r_wall,
-/area/maintenance/auxsolarport)
-"anI" = (
-/obj/machinery/door/airlock/engineering{
- icon_state = "door_closed";
- locked = 0;
- name = "Fore Port Solar Access";
- req_access_txt = "10"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
-"anJ" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- icon_state = "intact";
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"anK" = (
-/obj/effect/decal/cleanable/egg_smudge,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"anL" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"anM" = (
-/obj/structure/closet/crate,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"anN" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- name = "Labor Camp Shuttle Airlock";
- shuttledocked = 1
- },
-/turf/open/floor/plating,
-/area/security/processing)
-"anO" = (
-/obj/machinery/door/airlock/titanium{
- id_tag = "prisonshuttle";
- name = "Labor Shuttle Airlock"
- },
-/obj/docking_port/mobile{
- dir = 8;
- dwidth = 2;
- height = 5;
- id = "laborcamp";
- name = "labor camp shuttle";
- port_angle = 90;
- width = 9
- },
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 2;
- height = 5;
- id = "laborcamp_home";
- name = "fore bay 1";
- width = 9
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"anP" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security{
- id_tag = "laborexit";
- name = "Labor Shuttle";
- req_access = null;
- req_access_txt = "63"
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"anQ" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 32
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"anR" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"anS" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"anT" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 2;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"anU" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Courtroom"
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
-"anV" = (
-/obj/machinery/light/small,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
-"anW" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
-"anX" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 5;
- pixel_y = -32
- },
-/obj/machinery/camera{
- c_tag = "Courtroom South";
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
-"anY" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
-"anZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"aoa" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"aob" = (
-/obj/machinery/light_switch{
- pixel_x = -20;
- pixel_y = 0
- },
-/obj/item/device/radio/intercom{
- pixel_y = 25
- },
-/turf/open/floor/wood,
-/area/lawoffice)
-"aoc" = (
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/turf/open/floor/wood,
-/area/lawoffice)
-"aod" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/fsmaint)
-"aoe" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/closed/wall,
-/area/maintenance/fsmaint)
-"aof" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/auxsolarstarboard)
-"aog" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"aoh" = (
-/obj/machinery/power/solar_control{
- id = "auxsolareast";
- name = "Fore Starboard Solar Control";
- track = 0
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"aoi" = (
-/obj/structure/rack,
-/obj/item/clothing/mask/gas,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 32
- },
-/obj/item/device/multitool,
-/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"aoj" = (
-/obj/machinery/camera{
- c_tag = "Fore Port Solar Access"
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aok" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- icon_state = "intact";
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aol" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aom" = (
-/obj/machinery/atmospherics/components/binary/valve{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aon" = (
-/obj/structure/chair,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aoo" = (
-/obj/structure/rack,
-/obj/item/weapon/circuitboard/machine/monkey_recycler,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aop" = (
-/obj/structure/shuttle/engine/heater,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/labor)
-"aoq" = (
-/obj/structure/grille,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = -32
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/processing)
-"aor" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/red/side{
- dir = 6
- },
-/area/security/processing)
-"aos" = (
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"aot" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 6
- },
-/area/security/processing)
-"aou" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/camera{
- c_tag = "Labor Shuttle Dock South";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/red/side{
- dir = 6
- },
-/area/security/processing)
-"aov" = (
-/turf/open/floor/plasteel/red/corner{
- dir = 8
- },
-/area/hallway/primary/fore)
-"aow" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/red/corner{
- dir = 8
- },
-/area/hallway/primary/fore)
-"aox" = (
-/obj/machinery/camera{
- c_tag = "Fore Primary Hallway West";
- dir = 1
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 8
- },
-/area/hallway/primary/fore)
-"aoy" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=EVA";
- location = "Security"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aoz" = (
-/turf/open/floor/plasteel/red/corner{
- dir = 2
- },
-/area/hallway/primary/fore)
-"aoA" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -29
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/red/corner{
- dir = 2
- },
-/area/hallway/primary/fore)
-"aoB" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 2
- },
-/area/hallway/primary/fore)
-"aoC" = (
-/obj/machinery/vending/coffee,
-/turf/open/floor/plasteel/red/corner{
- dir = 2
- },
-/area/hallway/primary/fore)
-"aoD" = (
-/obj/machinery/camera{
- c_tag = "Fore Primary Hallway East";
- dir = 1
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 5;
- pixel_y = -32
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 2
- },
-/area/hallway/primary/fore)
-"aoE" = (
-/obj/machinery/vending/cigarette,
-/turf/open/floor/plasteel/red/corner{
- dir = 2
- },
-/area/hallway/primary/fore)
-"aoF" = (
-/obj/machinery/vending/snack/random,
-/turf/open/floor/plasteel/red/corner{
- dir = 2
- },
-/area/hallway/primary/fore)
-"aoG" = (
-/obj/structure/table,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
-"aoH" = (
-/obj/structure/table,
-/obj/item/weapon/book/manual/wiki/security_space_law{
- pixel_x = -3;
- pixel_y = 5
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
-"aoI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/power/apc{
- dir = 2;
- name = "Fitness Room APC";
- pixel_x = 0;
- pixel_y = -24
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/crew_quarters/fitness)
-"aoJ" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"aoK" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"aoL" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "Air Out";
- on = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"aoM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"aoN" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"aoO" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/terminal,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"aoP" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aoQ" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aoR" = (
-/obj/machinery/atmospherics/components/trinary/filter{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aoS" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aoT" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aoU" = (
-/obj/structure/bed,
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aoV" = (
-/turf/open/space,
-/area/space/nearstation)
-"aoW" = (
-/obj/structure/table,
-/obj/item/weapon/stamp,
-/obj/item/weapon/poster/random_official,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aoX" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aoY" = (
-/obj/structure/shuttle/engine/propulsion,
-/turf/open/floor/plating/airless,
-/area/shuttle/labor)
-"aoZ" = (
-/obj/machinery/atmospherics/components/binary/valve/digital{
- name = "Waste Release"
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"apa" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/floor/plasteel,
-/area/atmos)
-"apb" = (
-/obj/structure/plasticflaps,
-/turf/open/floor/plating,
-/area/security/processing)
-"apc" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Security Maintenance";
- req_access_txt = "2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/security/processing)
-"apd" = (
-/turf/closed/wall,
-/area/security/detectives_office)
-"ape" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering{
- name = "Vacant Office B";
- req_access_txt = "32"
- },
-/turf/open/floor/plating,
-/area/security/vacantoffice2)
-"apf" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/security/detectives_office)
-"apg" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"aph" = (
-/turf/closed/wall,
-/area/lawoffice)
-"api" = (
-/obj/machinery/door/airlock{
- name = "Law Office";
- req_access_txt = "38"
- },
-/turf/open/floor/plasteel,
-/area/lawoffice)
-"apj" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"apk" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/hallway/primary/fore)
-"apl" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/closed/wall,
-/area/maintenance/fsmaint)
-"apm" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/red/corner{
- dir = 4
- },
-/area/hallway/primary/fore)
-"apn" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/closed/wall,
-/area/maintenance/fsmaint)
-"apo" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/closed/wall,
-/area/maintenance/fsmaint)
-"app" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"apq" = (
-/obj/machinery/space_heater,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"apr" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "Dormitory Maintenance APC";
- pixel_y = 24
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"aps" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/reagent_dispensers/watertank,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"apt" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"apu" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"apv" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"apw" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- name = "Air In";
- on = 1
- },
-/obj/effect/landmark/blobstart,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"apx" = (
-/obj/machinery/door/airlock/atmos{
- name = "Atmospherics Maintenance";
- req_access_txt = "12;24"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"apy" = (
-/obj/item/weapon/wrench,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"apz" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"apA" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/power/apc{
- dir = 8;
- name = "Fore Starboard Solar APC";
- pixel_x = -25;
- pixel_y = 3
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"apB" = (
-/obj/machinery/camera{
- c_tag = "Fore Starboard Solars";
- dir = 1
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/smes,
-/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"apC" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/fsmaint2)
-"apD" = (
-/obj/structure/closet/wardrobe/mixed,
-/obj/item/clothing/shoes/jackboots,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"apE" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"apF" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/floor/plating,
-/area/atmos)
-"apG" = (
-/obj/machinery/portable_atmospherics/canister/water_vapor,
-/turf/open/floor/plasteel,
-/area/janitor)
-"apH" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/pod_1)
-"apI" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 1;
- frequency = 1441;
- id = "waste_out"
- },
-/turf/open/floor/plating/airless,
-/area/atmos)
-"apJ" = (
-/turf/closed/wall,
-/area/mining_construction)
-"apK" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/pod_2)
-"apL" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/fpmaint2)
-"apM" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/fpmaint2)
-"apN" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"apO" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"apP" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile{
- obj_integrity = 35
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"apQ" = (
-/obj/structure/lattice,
-/turf/open/space,
-/area/space/nearstation)
-"apR" = (
-/obj/item/weapon/paper{
- info = "01001001 00100000 01101000 01101111 01110000 01100101 00100000 01111001 01101111 01110101 00100000 01110011 01110100 01100001 01111001 00100000 01110011 01100001 01100110 01100101 00101110 00100000 01001100 01101111 01110110 01100101 00101100 00100000 01101101 01101111 01101101 00101110";
- name = "Note from Beepsky's Mom"
- },
-/turf/open/floor/plating,
-/area/security/processing)
-"apS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/security/processing)
-"apU" = (
-/turf/open/floor/plating,
-/area/security/vacantoffice2)
-"apV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/construction)
-"apW" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"apX" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/crew_quarters/fitness)
-"apY" = (
-/obj/structure/closet/secure_closet/personal,
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"apZ" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/wood,
-/area/lawoffice)
-"aqa" = (
-/obj/structure/table,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"aqb" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/storage/briefcase,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/wood,
-/area/lawoffice)
-"aqc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/maintenance/fsmaint)
-"aqd" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 4
- },
-/area/hallway/primary/fore)
-"aqe" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"aqf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"aqg" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"aqh" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"aqi" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"aqj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"aqk" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Dormitory APC";
- pixel_y = -24
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/crew_quarters/sleep)
-"aql" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"aqm" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"aqn" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet,
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/machinery/button/door{
- id = "Dorm4";
- name = "Dorm Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"aqo" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"aqp" = (
-/obj/structure/rack{
- dir = 1
- },
-/obj/item/clothing/suit/fire/firefighter,
-/obj/item/weapon/tank/internals/oxygen,
-/obj/item/clothing/mask/gas,
-/obj/item/weapon/extinguisher,
-/obj/item/clothing/head/hardhat/red,
-/obj/item/clothing/glasses/meson,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"aqq" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"aqr" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/crew_quarters/fitness)
-"aqs" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/crew_quarters/fitness)
-"aqt" = (
-/obj/structure/grille,
-/obj/effect/landmark/syndicate_breach_area,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/crew_quarters/fitness)
-"aqu" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/crew_quarters/fitness)
-"aqv" = (
-/obj/machinery/door/airlock/external{
- name = "External Access";
- req_access = null;
- req_access_txt = "13"
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aqw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/engineering{
- icon_state = "door_closed";
- locked = 0;
- name = "Fore Starboard Solar Access";
- req_access_txt = "10"
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"aqx" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 0
- },
-/turf/closed/wall/r_wall,
-/area/maintenance/auxsolarstarboard)
-"aqy" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aqz" = (
-/obj/structure/table,
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aqA" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aqB" = (
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aqC" = (
-/obj/machinery/computer/slot_machine{
- balance = 15;
- money = 500
- },
-/obj/item/weapon/coin/iron,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aqD" = (
-/obj/effect/decal/cleanable/cobweb,
-/obj/item/weapon/coin/gold,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aqE" = (
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aqF" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/pod_1)
-"aqG" = (
-/obj/docking_port/stationary/random{
- dir = 4;
- id = "pod_lavaland3";
- name = "lavaland"
- },
-/turf/open/space,
-/area/space)
-"aqH" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/pod_2)
-"aqI" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"aqJ" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 2;
- name = "External Access";
- req_access = null;
- req_access_txt = "13"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aqK" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/fpmaint2)
-"aqL" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- icon_state = "intact";
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aqM" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- icon_state = "intact";
- dir = 10
- },
-/obj/machinery/meter,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aqN" = (
-/obj/structure/closet/secure_closet/miner{
- locked = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"aqO" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aqP" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Arrivals North Maintenance APC";
- pixel_x = -1;
- pixel_y = 26
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aqQ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"aqR" = (
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"aqS" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/weapon/stock_parts/cell/potato{
- name = "\improper Beepsky's emergency battery"
- },
-/turf/open/floor/plating,
-/area/security/processing)
-"aqT" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Labor Shuttle Dock APC";
- pixel_x = -24
- },
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plating,
-/area/security/processing)
-"aqV" = (
-/obj/structure/table/wood,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/turf/open/floor/plating,
-/area/security/vacantoffice2)
-"aqW" = (
-/turf/open/floor/carpet,
-/area/security/detectives_office)
-"aqX" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/obj/structure/chair,
-/turf/open/floor/plating,
-/area/security/vacantoffice2)
-"aqY" = (
-/obj/structure/table/wood,
-/obj/item/weapon/pen,
-/turf/open/floor/plating,
-/area/security/vacantoffice2)
-"aqZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"ara" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/machinery/requests_console{
- department = "Law office";
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/structure/closet/lawcloset,
-/turf/open/floor/wood,
-/area/lawoffice)
-"arb" = (
-/obj/structure/table/wood,
-/obj/item/weapon/book/manual/wiki/security_space_law,
-/obj/item/weapon/book/manual/wiki/security_space_law,
-/obj/item/weapon/pen/red,
-/turf/open/floor/wood,
-/area/lawoffice)
-"arc" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"ard" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/preopen{
- id = "lawyer_blast";
- name = "privacy door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/lawoffice)
-"are" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp/green{
- pixel_x = 1;
- pixel_y = 5
- },
-/turf/open/floor/wood,
-/area/lawoffice)
-"arf" = (
-/turf/closed/wall,
-/area/crew_quarters/sleep)
-"arg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/maintenance/fsmaint)
-"arh" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"ari" = (
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/structure/closet/secure_closet/personal/cabinet,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"arj" = (
-/turf/closed/wall,
-/area/crew_quarters/fitness)
-"ark" = (
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/structure/closet/secure_closet/personal/cabinet,
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"arl" = (
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j2";
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 9
- },
-/area/crew_quarters/fitness)
-"arm" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/crew_quarters/fitness)
-"arn" = (
-/obj/structure/closet/athletic_mixed,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
- },
-/area/crew_quarters/fitness)
-"aro" = (
-/turf/open/floor/engine{
- name = "Holodeck Projector Floor"
- },
-/area/holodeck/rec_center)
-"arp" = (
-/obj/structure/grille,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 32
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"arq" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/cobweb,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 8;
- name = "8maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"arr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"ars" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Bar Maintenance APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"art" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Fore Starboard Solar Access"
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aru" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"arv" = (
-/obj/structure/table,
-/obj/item/weapon/pen,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"arw" = (
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"arx" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"ary" = (
-/obj/structure/closet,
-/obj/item/weapon/coin/iron,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"arz" = (
-/obj/item/weapon/coin/gold,
-/obj/item/weapon/coin/iron,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"arA" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"arB" = (
-/turf/closed/wall/r_wall,
-/area/hallway/secondary/entry)
-"arC" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"arD" = (
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"arE" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/mining_construction)
-"arF" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- icon_state = "intact";
- dir = 5
- },
-/turf/closed/wall,
-/area/maintenance/fpmaint2)
-"arG" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- icon_state = "intact";
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/fpmaint2)
-"arH" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"arI" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"arJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"arK" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- icon_state = "intact";
- dir = 9
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/fpmaint2)
-"arL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"arM" = (
-/obj/structure/closet/crate{
- icon_state = "crateopen";
- opened = 1
- },
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"arN" = (
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"arO" = (
-/obj/machinery/monkey_recycler,
-/obj/item/weapon/reagent_containers/food/snacks/monkeycube,
-/obj/item/weapon/reagent_containers/food/snacks/monkeycube,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"arP" = (
-/turf/closed/wall,
-/area/maintenance/fpmaint)
-"arQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"arR" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 2;
- on = 1
- },
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp,
-/turf/open/floor/plating,
-/area/security/vacantoffice2)
-"arS" = (
-/obj/structure/table/wood,
-/turf/open/floor/plating,
-/area/security/vacantoffice2)
-"arT" = (
-/turf/open/floor/plasteel,
-/area/security/vacantoffice2)
-"arU" = (
-/obj/structure/rack,
-/turf/open/floor/plasteel,
-/area/security/vacantoffice2)
-"arV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/filingcabinet/employment,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/turf/open/floor/wood,
-/area/lawoffice)
-"arW" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/closed/wall,
-/area/lawoffice)
-"arX" = (
-/obj/structure/table/wood,
-/obj/item/weapon/folder/blue,
-/obj/item/weapon/folder/blue,
-/obj/item/weapon/folder/blue,
-/obj/item/weapon/folder/blue,
-/obj/item/weapon/stamp/law,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/lawoffice)
-"arY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/lawoffice)
-"arZ" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/obj/effect/landmark/start/lawyer,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/wood,
-/area/lawoffice)
-"asa" = (
-/obj/machinery/status_display{
- density = 0;
- layer = 3;
- pixel_x = 32;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 4
- },
-/area/hallway/primary/fore)
-"asb" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/disposal/bin,
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
- },
-/area/crew_quarters/fitness)
-"asc" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"asd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/sleep)
-"ase" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"asf" = (
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/neutral/side{
- dir = 5
- },
-/area/crew_quarters/sleep)
-"asg" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 9
- },
-/area/crew_quarters/sleep)
-"ash" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"asi" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"asj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/security/vacantoffice2)
-"ask" = (
-/obj/structure/dresser,
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"asl" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/open/floor/plating,
-/area/security/vacantoffice2)
-"asm" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"asn" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plating,
-/area/security/vacantoffice2)
-"aso" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Law Office Maintenance";
- req_access_txt = "38"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/lawoffice)
-"asp" = (
-/obj/structure/table/wood,
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"asq" = (
-/obj/machinery/camera{
- c_tag = "Fitness Room"
- },
-/obj/structure/closet/masks,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
- },
-/area/crew_quarters/fitness)
-"asr" = (
-/obj/structure/closet/boxinggloves,
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/item/clothing/shoes/jackboots,
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
- },
-/area/crew_quarters/fitness)
-"ass" = (
-/obj/structure/closet/lasertag/red,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 5
- },
-/area/crew_quarters/fitness)
-"ast" = (
-/obj/structure/closet/lasertag/blue,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
- },
-/area/crew_quarters/fitness)
-"asu" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet/red,
-/obj/machinery/button/door{
- id = "Dorm5";
- name = "Cabin Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 0;
- pixel_y = -25;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"asv" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"asw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"asx" = (
-/obj/structure/door_assembly/door_assembly_mai,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"asy" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Firefighting equipment";
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"asz" = (
-/obj/structure/table,
-/obj/item/weapon/reagent_containers/food/snacks/donut,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"asA" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"asB" = (
-/turf/closed/wall,
-/area/maintenance/electrical)
-"asC" = (
-/turf/open/floor/plasteel/airless,
-/area/space/nearstation)
-"asD" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"asE" = (
-/turf/closed/wall,
-/area/hallway/secondary/entry)
-"asF" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/mining_construction)
-"asG" = (
-/obj/machinery/light,
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"asH" = (
-/obj/structure/closet/toolcloset,
-/turf/open/floor/plasteel/yellow/side{
- dir = 9
- },
-/area/mining_construction)
-"asI" = (
-/obj/structure/closet/toolcloset,
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/mining_construction)
-"asJ" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plasteel/yellow/side{
- dir = 5
- },
-/area/mining_construction)
-"asK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"asL" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet/red,
-/obj/machinery/button/door{
- id = "Dorm6";
- name = "Cabin Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 0;
- pixel_y = -25;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"asM" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 8
- },
-/area/crew_quarters/fitness)
-"asN" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"asO" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"asP" = (
-/obj/structure/chair/stool,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"asQ" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"asR" = (
-/obj/effect/decal/cleanable/cobweb,
-/obj/structure/closet/secure_closet/chemical,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"asS" = (
-/obj/structure/closet/secure_closet/medical1,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"asT" = (
-/obj/structure/closet/secure_closet/chemical,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"asU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/security/vacantoffice2)
-"asV" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"asW" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/rack,
-/obj/item/weapon/storage/briefcase,
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"asX" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"asY" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/crew_quarters/fitness)
-"asZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/crew_quarters/fitness)
-"ata" = (
-/turf/open/floor/wood,
-/area/lawoffice)
-"atb" = (
-/obj/structure/table,
-/obj/item/stack/sheet/plasteel{
- amount = 10
- },
-/obj/item/stack/rods{
- amount = 50
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/mining_construction)
-"atc" = (
-/obj/structure/chair/office/dark,
-/obj/effect/landmark/start/lawyer,
-/turf/open/floor/wood,
-/area/lawoffice)
-"atd" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 4
- },
-/area/hallway/primary/fore)
-"ate" = (
-/obj/effect/landmark/xeno_spawn,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"atf" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"atg" = (
-/obj/machinery/door/airlock{
- id_tag = "Dorm4";
- name = "Dorm 4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"ath" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"ati" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 4
- },
-/area/crew_quarters/sleep)
-"atj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 8
- },
-/area/crew_quarters/sleep)
-"atk" = (
-/obj/machinery/camera{
- c_tag = "Auxillary Mining Base";
- dir = 8;
- network = list("SS13","AuxBase")
- },
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"atl" = (
-/obj/docking_port/mobile/auxillary_base{
- dheight = 4;
- dir = 4;
- dwidth = 4;
- height = 9;
- width = 9
- },
-/obj/machinery/bluespace_beacon,
-/obj/machinery/computer/auxillary_base{
- pixel_y = 0
- },
-/turf/closed/wall,
-/area/shuttle/auxillary_base)
-"atm" = (
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"atn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/closed/wall,
-/area/maintenance/fpmaint2)
-"ato" = (
-/obj/machinery/light_switch{
- pixel_y = -23
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/carpet,
-/area/security/hos)
-"atp" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 1;
- name = "Construction Zone";
- req_access = null;
- req_access_txt = "0";
- req_one_access_txt = "0"
- },
-/turf/open/floor/plating,
-/area/mining_construction)
-"atq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/fpmaint2)
-"atr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"ats" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/light,
-/turf/open/floor/plating,
-/area/security/vacantoffice2)
-"att" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"atu" = (
-/obj/machinery/camera{
- c_tag = "Vacant Office B";
- dir = 1
- },
-/obj/structure/table/wood,
-/turf/open/floor/plasteel,
-/area/security/vacantoffice2)
-"atv" = (
-/obj/structure/table,
-/obj/item/weapon/shard,
-/obj/item/weapon/shard{
- icon_state = "medium"
- },
-/obj/item/weapon/shard{
- icon_state = "small"
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"atw" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"atx" = (
-/obj/machinery/button/door{
- id = "maint3";
- name = "Blast Door Control C";
- pixel_x = 0;
- pixel_y = 24;
- req_access_txt = "0"
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aty" = (
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/maintenance/fsmaint2)
-"atA" = (
-/obj/structure/table,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"atB" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"atC" = (
-/obj/item/stack/rods{
- amount = 50
- },
-/obj/structure/rack,
-/obj/item/stack/cable_coil{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/stack/cable_coil{
- amount = 5
- },
-/obj/item/stack/sheet/mineral/plasma{
- amount = 10;
- layer = 2.9
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/electrical)
-"atD" = (
-/obj/machinery/recharge_station,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/electrical)
-"atE" = (
-/obj/machinery/power/port_gen/pacman,
-/turf/open/floor/plating,
-/area/maintenance/electrical)
-"atF" = (
-/turf/open/floor/mech_bay_recharge_floor,
-/area/maintenance/electrical)
-"atG" = (
-/obj/machinery/mech_bay_recharge_port,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plating,
-/area/maintenance/electrical)
-"atH" = (
-/obj/machinery/computer/mech_bay_power_console,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/circuit,
-/area/maintenance/electrical)
-"atI" = (
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/mining_construction)
-"atJ" = (
-/obj/machinery/space_heater,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"atK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/security/vacantoffice2)
-"atL" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"atM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/closed/wall,
-/area/maintenance/fpmaint2)
-"atN" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"atO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/fpmaint2)
-"atP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/closed/wall,
-/area/maintenance/fpmaint2)
-"atQ" = (
-/obj/machinery/door/airlock{
- id_tag = "Dorm5";
- name = "Cabin 1"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"atR" = (
-/obj/effect/landmark/carpspawn,
-/obj/structure/lattice,
-/turf/open/space,
-/area/space/nearstation)
-"atS" = (
-/turf/closed/wall,
-/area/space/nearstation)
-"atT" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"atU" = (
-/obj/structure/rack{
- dir = 1
- },
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"atV" = (
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 8
- },
-/area/crew_quarters/fitness)
-"atW" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"atX" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"atY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/security/vacantoffice2)
-"atZ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Holodeck Door"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"aua" = (
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/crew_quarters/fitness)
-"aub" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/yellow/side,
-/area/mining_construction)
-"auc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/yellow/side{
- dir = 10
- },
-/area/mining_construction)
-"aud" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aue" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/maintenance/fpmaint2)
-"auf" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/lawoffice)
-"aug" = (
-/obj/structure/table/wood,
-/obj/machinery/camera{
- c_tag = "Law Office";
- dir = 1;
- network = list("SS13")
- },
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen,
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching Prison Wing holding areas.";
- dir = 1;
- name = "Prison Monitor";
- network = list("Prison");
- pixel_x = 0;
- pixel_y = -27
- },
-/turf/open/floor/wood,
-/area/lawoffice)
-"auh" = (
-/obj/structure/table/wood,
-/obj/item/device/taperecorder{
- pixel_y = 0
- },
-/obj/item/weapon/cartridge/lawyer,
-/turf/open/floor/wood,
-/area/lawoffice)
-"aui" = (
-/obj/machinery/photocopier,
-/obj/machinery/button/door{
- id = "lawyer_blast";
- name = "Privacy Shutters";
- pixel_x = 25;
- pixel_y = 8
- },
-/turf/open/floor/wood,
-/area/lawoffice)
-"auj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/brig)
-"auk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/neutral/side{
- dir = 4
- },
-/area/crew_quarters/sleep)
-"aul" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/neutral/side{
- dir = 8
- },
-/area/crew_quarters/sleep)
-"aum" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aun" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/crew_quarters/sleep)
-"auo" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"aup" = (
-/obj/machinery/door/airlock{
- id_tag = "Dorm6";
- name = "Cabin 2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"auq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/security/vacantoffice2)
-"aur" = (
-/obj/machinery/door/window/eastright{
- base_state = "left";
- dir = 8;
- icon_state = "left";
- name = "Fitness Ring"
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness)
-"aus" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"aut" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness)
-"auu" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"auv" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness)
-"auw" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet,
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/machinery/button/door{
- id = "Dorm3";
- name = "Dorm Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"aux" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/corner{
- dir = 4
- },
-/area/crew_quarters/sleep)
-"auy" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Holodeck Door"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"auz" = (
-/obj/machinery/camera{
- c_tag = "Holodeck"
- },
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"auA" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"auB" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/crew_quarters/fitness)
-"auC" = (
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"auD" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"auE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"auF" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"auG" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"auH" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"auI" = (
-/turf/open/floor/plating,
-/area/maintenance/electrical)
-"auJ" = (
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/electrical)
-"auK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/electrical)
-"auL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/electrical)
-"auM" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/electrical)
-"auN" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"auO" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"auP" = (
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"auQ" = (
-/turf/open/floor/plasteel,
-/area/mining_construction)
-"auR" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel/neutral/side{
- dir = 8
- },
-/area/crew_quarters/sleep)
-"auS" = (
-/obj/machinery/requests_console{
- department = "Crew Quarters";
- pixel_y = 30
- },
-/obj/machinery/camera{
- c_tag = "Dormitory North"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
- },
-/area/crew_quarters/sleep)
-"auT" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"auU" = (
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
- },
-/area/crew_quarters/sleep)
-"auV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/maintenance/fpmaint2)
-"auW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
- },
-/area/crew_quarters/sleep)
-"auX" = (
-/obj/structure/mirror{
- icon_state = "mirror_broke";
- pixel_y = 28;
- broken = 1
- },
-/obj/machinery/iv_drip,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"auY" = (
-/obj/structure/mirror{
- icon_state = "mirror_broke";
- pixel_y = 28;
- broken = 1
- },
-/obj/item/weapon/shard{
- icon_state = "medium"
- },
-/obj/item/weapon/circuitboard/computer/operating,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"auZ" = (
-/obj/structure/frame/computer,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"ava" = (
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/structure/chair,
-/obj/item/weapon/reagent_containers/blood/random,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"avb" = (
-/turf/open/floor/plasteel/airless{
- icon_state = "damaged3"
- },
-/area/space/nearstation)
-"avc" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 4;
- name = "4maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"avd" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- req_access_txt = "13"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"ave" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 32
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"avf" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Chemical Storage";
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"avg" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
- },
-/area/crew_quarters/sleep)
-"avh" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/power/apc{
- dir = 8;
- name = "Vacant Office B APC";
- pixel_x = -24;
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/security/vacantoffice2)
-"avi" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Law Office APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/lawoffice)
-"avj" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/hallway/primary/fore)
-"avk" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 4
- },
-/area/hallway/primary/fore)
-"avl" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -5;
- pixel_y = 30
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
- },
-/area/crew_quarters/sleep)
-"avm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
- },
-/area/crew_quarters/sleep)
-"avn" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
- },
-/area/crew_quarters/sleep)
-"avo" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 0
- },
-/turf/closed/wall,
-/area/maintenance/electrical)
-"avp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/poddoor/shutters{
- id = "aux_base_shutters";
- name = "Auxillary Base Shutters"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/mining_construction)
-"avq" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"avr" = (
-/obj/machinery/firealarm{
- pixel_y = 24
- },
-/obj/machinery/camera{
- c_tag = "Detective's Office";
- dir = 2
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"avs" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"avt" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"avu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/neutral/side{
- dir = 5
- },
-/area/crew_quarters/sleep)
-"avv" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/obj/effect/landmark/start/assistant,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"avw" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/neutral/side{
- dir = 8
- },
-/area/crew_quarters/fitness)
-"avx" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/crew_quarters/fitness)
-"avy" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness)
-"avz" = (
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/crew_quarters/fitness)
-"avA" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness)
-"avB" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/security/armory)
-"avC" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"avD" = (
-/obj/machinery/computer/holodeck,
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"avE" = (
-/obj/machinery/door/poddoor/preopen{
- id = "maint3"
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"avF" = (
-/obj/machinery/door/poddoor/preopen{
- id = "maint3"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"avG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"avH" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/electrical)
-"avI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"avJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/electrical)
-"avK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/electrical)
-"avL" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Electrical Maintenance APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plating,
-/area/maintenance/electrical)
-"avM" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/electrical)
-"avN" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/electrical)
-"avO" = (
-/obj/structure/table,
-/obj/item/clothing/gloves/color/fyellow,
-/obj/item/weapon/storage/toolbox/electrical{
- pixel_x = 1;
- pixel_y = -1
- },
-/obj/item/device/multitool,
-/obj/item/device/radio/intercom{
- freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = 29
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/electrical)
-"avP" = (
-/obj/structure/sign/pods,
-/turf/closed/wall,
-/area/hallway/secondary/entry)
-"avQ" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Auxillary Base Construction";
- dir = 8
- },
-/obj/machinery/computer/camera_advanced/base_construction,
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/mining_construction)
-"avR" = (
-/obj/structure/table/wood,
-/obj/item/weapon/storage/firstaid/regular,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"avS" = (
-/obj/item/weapon/wrench,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"avT" = (
-/obj/docking_port/stationary{
- dheight = 9;
- dir = 2;
- dwidth = 5;
- height = 24;
- id = "syndicate_ne";
- name = "northeast of station";
- turf_type = /turf/open/space;
- width = 18
- },
-/turf/open/space,
-/area/space)
-"avU" = (
-/obj/item/weapon/paper/crumpled,
-/turf/open/floor/plasteel/airless{
- icon_state = "damaged2"
- },
-/area/space/nearstation)
-"avV" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"avW" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"avX" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/chair/stool,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"avY" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"avZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/fpmaint)
-"awa" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/closed/wall,
-/area/maintenance/fpmaint)
-"awb" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"awc" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"awd" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "EVA Maintenance APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"awe" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"awf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"awg" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"awh" = (
-/obj/effect/landmark/blobstart,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"awi" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"awj" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"awk" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"awl" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"awm" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"awn" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"awo" = (
-/obj/machinery/door/airlock{
- id_tag = "Dorm3";
- name = "Dorm 3"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"awp" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/item/weapon/storage/pill_bottle/dice,
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"awq" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"awr" = (
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"aws" = (
-/obj/structure/table/wood,
-/obj/item/weapon/coin/silver,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"awt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"awu" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"awv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"aww" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/brig)
-"awx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"awy" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"awz" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Fitness"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"awA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"awB" = (
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/crew_quarters/fitness)
-"awC" = (
-/obj/structure/table,
-/obj/item/weapon/paper{
- desc = "";
- info = "Brusies sustained in the holodeck can be healed simply by sleeping.";
- name = "Holodeck Disclaimer"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"awD" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"awE" = (
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"awF" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"awG" = (
-/obj/structure/girder,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"awH" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"awI" = (
-/obj/machinery/button/door{
- id = "maint2";
- name = "Blast Door Control B";
- pixel_x = -28;
- pixel_y = 4;
- req_access_txt = "0"
- },
-/obj/machinery/button/door{
- id = "maint1";
- name = "Blast Door Control A";
- pixel_x = -28;
- pixel_y = -6;
- req_access_txt = "0"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"awJ" = (
-/obj/structure/janitorialcart,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"awK" = (
-/obj/structure/table/glass,
-/obj/item/weapon/pen,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"awL" = (
-/obj/structure/table/glass,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"awM" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"awN" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"awO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/electrical)
-"awP" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/electrical)
-"awQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/engineering{
- name = "Electrical Maintenance";
- req_access_txt = "11"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/electrical)
-"awR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/electrical)
-"awS" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/electrical)
-"awT" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/electrical)
-"awU" = (
-/obj/structure/table,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/obj/item/wallframe/camera,
-/obj/item/wallframe/camera,
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/item/device/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/electrical)
-"awV" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"awW" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"awX" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"awY" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/arrival{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"awZ" = (
-/turf/open/floor/plasteel/arrival{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"axa" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/electrical)
-"axb" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/arrival{
- dir = 5
- },
-/area/hallway/secondary/entry)
-"axc" = (
-/obj/structure/rack{
- dir = 4
- },
-/obj/item/weapon/electronics/airlock,
-/obj/item/weapon/electronics/airlock,
-/obj/item/weapon/electronics/airlock,
-/obj/item/weapon/electronics/airlock,
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil,
-/obj/item/wallframe/camera,
-/obj/item/wallframe/camera,
-/obj/item/wallframe/camera,
-/obj/item/wallframe/camera,
-/obj/item/device/assault_pod/mining,
-/obj/machinery/computer/security/telescreen{
- desc = "Used for the Auxillary Mining Base.";
- dir = 8;
- name = "Auxillary Base Monitor";
- network = list("AuxBase");
- pixel_x = 28
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/mining_construction)
-"axe" = (
-/obj/machinery/sleeper{
- dir = 4;
- icon_state = "sleeper-open"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"axf" = (
-/obj/effect/landmark/blobstart,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"axg" = (
-/obj/structure/table/glass,
-/obj/item/weapon/storage/bag/trash,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"axh" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/arrival{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"axi" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"axj" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Firefighting equipment";
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"axk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"axl" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"axm" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = -32
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"axn" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"axo" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"axp" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"axq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"axr" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = -32
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"axs" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"axt" = (
-/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/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"axu" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"axv" = (
-/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 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"axw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"axx" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"axy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/ai_monitored/storage/eva)
-"axz" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/storage/eva)
-"axA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/ai_monitored/storage/eva)
-"axB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"axC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/blue/corner{
- dir = 8
- },
-/area/hallway/primary/fore)
-"axD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/fsmaint)
-"axE" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/blue/corner,
-/area/hallway/primary/fore)
-"axF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"axG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/arrival{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"axH" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"axI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 4
- },
-/area/hallway/secondary/entry)
-"axJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"axK" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/closed/wall,
-/area/maintenance/fpmaint2)
-"axL" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"axM" = (
-/obj/structure/table/wood,
-/obj/item/device/paicard,
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"axN" = (
-/obj/structure/table/wood,
-/obj/item/weapon/storage/crayons,
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"axO" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"axP" = (
-/obj/structure/table/wood,
-/obj/item/toy/cards/deck{
- pixel_x = 2
- },
-/obj/item/clothing/mask/balaclava{
- pixel_x = -8;
- pixel_y = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"axQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"axR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Fitness"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"axS" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness)
-"axT" = (
-/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/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"axU" = (
-/obj/structure/window/reinforced,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness)
-"axV" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"axW" = (
-/obj/machinery/door/window/eastright{
- base_state = "left";
- icon_state = "left";
- name = "Fitness Ring"
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness)
-"axX" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"axY" = (
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/crew_quarters/fitness)
-"axZ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Holodeck Door"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"aya" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"ayb" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"ayc" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"ayd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aye" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"ayf" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"ayg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"ayh" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"ayi" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"ayj" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/weapon/stock_parts/cell/high/plus,
-/obj/item/weapon/stock_parts/cell/high/plus,
-/turf/open/floor/plating,
-/area/maintenance/electrical)
-"ayk" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"ayl" = (
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aym" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"ayn" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"ayo" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"ayp" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"ayq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/mining_construction)
-"ayr" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/arrival{
- dir = 4
- },
-/area/hallway/secondary/entry)
-"ays" = (
-/obj/structure/closet/wardrobe/white,
-/obj/item/clothing/shoes/jackboots,
-/obj/item/weapon/reagent_containers/blood/random,
-/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"ayt" = (
-/obj/structure/table/glass,
-/obj/item/weapon/hemostat,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"ayu" = (
-/obj/structure/table/glass,
-/obj/item/weapon/restraints/handcuffs/cable/zipties,
-/obj/item/weapon/reagent_containers/blood/random,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"ayv" = (
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/item/device/radio/off,
-/obj/item/device/assembly/timer,
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"ayw" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"ayx" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"ayy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"ayz" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/fpmaint2)
-"ayA" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"ayB" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"ayC" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"ayD" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"ayE" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/fpmaint)
-"ayF" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"ayG" = (
-/turf/closed/wall/r_wall,
-/area/gateway)
-"ayH" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"ayI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/sign/securearea{
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"ayJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"ayK" = (
-/obj/structure/closet/crate/rcd,
-/obj/machinery/camera/motion{
- c_tag = "EVA Motion Sensor";
- name = "motion-sensitive security camera"
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/storage/eva)
-"ayL" = (
-/turf/closed/wall/r_wall,
-/area/ai_monitored/storage/eva)
-"ayM" = (
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/obj/item/clothing/head/welding,
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"ayN" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/item/weapon/hand_labeler,
-/obj/item/device/flashlight,
-/obj/item/device/flashlight,
-/obj/item/device/flashlight,
-/obj/item/device/flashlight,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/storage/eva)
-"ayO" = (
-/obj/structure/table,
-/obj/item/weapon/storage/toolbox/electrical{
- pixel_x = 1;
- pixel_y = -1
- },
-/obj/item/weapon/screwdriver{
- pixel_y = 16
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/storage/eva)
-"ayP" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "EVA Storage APC";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"ayQ" = (
-/obj/structure/table,
-/obj/item/stack/cable_coil{
- pixel_x = 3;
- pixel_y = -7
- },
-/obj/machinery/cell_charger,
-/obj/item/weapon/stock_parts/cell/high/plus,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/storage/eva)
-"ayR" = (
-/obj/structure/table,
-/obj/item/weapon/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -1
- },
-/obj/item/device/multitool,
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"ayS" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/sign/securearea{
- pixel_y = 32
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/ai_monitored/storage/eva)
-"ayT" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/table,
-/obj/item/device/assembly/signaler,
-/obj/item/device/assembly/signaler,
-/obj/item/weapon/stock_parts/cell/high/plus,
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"ayU" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"ayV" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet,
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/machinery/button/door{
- id = "Dorm2";
- name = "Dorm Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"ayW" = (
-/turf/closed/wall,
-/area/ai_monitored/storage/eva)
-"ayX" = (
-/obj/structure/table,
-/obj/item/weapon/storage/belt/utility,
-/obj/item/weapon/storage/belt/utility,
-/obj/item/weapon/storage/belt/utility,
-/obj/item/clothing/head/welding,
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"ayY" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/turf/open/floor/plasteel/blue/corner{
- dir = 8
- },
-/area/hallway/primary/fore)
-"ayZ" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/blue/corner,
-/area/hallway/primary/fore)
-"aza" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/sleep)
-"azb" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/turf/open/floor/plasteel/neutral/corner{
- dir = 2
- },
-/area/crew_quarters/sleep)
-"azc" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 8
- },
-/area/crew_quarters/sleep)
-"azd" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 6
- },
-/area/crew_quarters/sleep)
-"aze" = (
-/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/sleep)
-"azf" = (
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"azg" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/crew_quarters/fitness)
-"azh" = (
-/obj/machinery/camera{
- c_tag = "Fitness Room South";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/crew_quarters/fitness)
-"azi" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"azj" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -29
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 10
- },
-/area/crew_quarters/fitness)
-"azk" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"azl" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/neutral/corner{
- dir = 8
- },
-/area/crew_quarters/fitness)
-"azm" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"azn" = (
-/obj/structure/table,
-/obj/item/weapon/storage/firstaid/regular,
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"azo" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"azp" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/crew_quarters/fitness)
-"azq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"azr" = (
-/obj/structure/grille/broken,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"azs" = (
-/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/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"azt" = (
-/obj/machinery/power/terminal,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/electrical)
-"azu" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plating,
-/area/maintenance/electrical)
-"azv" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/electrical)
-"azw" = (
-/obj/machinery/light_switch{
- pixel_y = -25
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/electrical)
-"azx" = (
-/obj/machinery/power/terminal,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/electrical)
-"azy" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 2;
- name = "Port Docking Bay 1"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"azz" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"azA" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"azB" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"azC" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -29
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"azD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/arrival{
- dir = 4
- },
-/area/hallway/secondary/entry)
-"azE" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"azF" = (
-/turf/closed/wall,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"azG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/closed/wall,
-/area/maintenance/fpmaint2)
-"azH" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/space,
-/area/space)
-"azI" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/space,
-/area/space)
-"azJ" = (
-/obj/machinery/gateway{
- dir = 9
- },
-/turf/open/floor/plasteel/vault{
- dir = 1
- },
-/area/gateway)
-"azK" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/gateway)
-"azL" = (
-/obj/machinery/gateway{
- dir = 5
- },
-/turf/open/floor/plasteel/vault{
- dir = 4
- },
-/area/gateway)
-"azM" = (
-/obj/machinery/gateway{
- dir = 1
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/gateway)
-"azN" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/gateway)
-"azO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"azP" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"azQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "EVA Maintenance";
- req_access_txt = "18"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"azR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"azS" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_command{
- name = "EVA Storage";
- req_access_txt = "18"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"azT" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/turf/open/floor/plasteel/neutral/corner{
- dir = 2
- },
-/area/crew_quarters/sleep)
-"azU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"azV" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/sleep)
-"azW" = (
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"azX" = (
-/obj/machinery/door/airlock{
- name = "Unisex Showers";
- req_access_txt = "0"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"azY" = (
-/obj/structure/table,
-/obj/item/device/radio/off,
-/obj/item/device/radio/off,
-/obj/item/device/assembly/prox_sensor,
-/obj/item/device/assembly/prox_sensor,
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"azZ" = (
-/turf/open/floor/plasteel/blue/corner{
- dir = 8
- },
-/area/hallway/primary/fore)
-"aAa" = (
-/turf/open/floor/plasteel/blue/corner,
-/area/hallway/primary/fore)
-"aAb" = (
-/obj/machinery/door/airlock{
- id_tag = "Dorm2";
- name = "Dorm 2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"aAc" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aAd" = (
-/obj/machinery/light_switch{
- pixel_y = -25
- },
-/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/sleep)
-"aAe" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aAf" = (
-/obj/structure/closet/wardrobe/pjs,
-/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/sleep)
-"aAg" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -29
- },
-/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/sleep)
-"aAh" = (
-/turf/closed/wall,
-/area/crew_quarters/toilet)
-"aAi" = (
-/obj/structure/closet/wardrobe/pjs,
-/turf/open/floor/plasteel/neutral/side{
- dir = 6
- },
-/area/crew_quarters/sleep)
-"aAj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/power/apc{
- dir = 2;
- name = "Security Checkpoint APC";
- pixel_x = 1;
- pixel_y = -24
- },
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/security/checkpoint2)
-"aAk" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/fitness)
-"aAl" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 10
- },
-/area/crew_quarters/fitness)
-"aAm" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/fitness)
-"aAn" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light_switch{
- pixel_y = -25
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/fitness)
-"aAo" = (
-/obj/structure/reagent_dispensers/water_cooler,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/neutral/side{
- dir = 6
- },
-/area/crew_quarters/fitness)
-"aAp" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/fitness)
-"aAq" = (
-/obj/machinery/atmospherics/components/unary/tank/air{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aAr" = (
-/obj/structure/closet,
-/obj/effect/decal/cleanable/cobweb,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aAs" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aAt" = (
-/obj/machinery/door/poddoor/preopen{
- id = "maint2"
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aAu" = (
-/obj/machinery/door/poddoor/preopen{
- id = "maint2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aAv" = (
-/obj/structure/closet,
-/obj/effect/landmark/blobstart,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aAw" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Garden APC";
- pixel_x = 27;
- pixel_y = 2
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aAx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aAy" = (
-/obj/machinery/power/smes{
- charge = 0
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/electrical)
-"aAz" = (
-/obj/machinery/computer/monitor{
- name = "backup power monitoring console"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/maintenance/electrical)
-"aAA" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/closed/wall,
-/area/maintenance/electrical)
-"aAB" = (
-/obj/machinery/power/smes{
- charge = 0
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/electrical)
-"aAC" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
- },
-/turf/closed/wall/r_wall,
-/area/hallway/secondary/entry)
-"aAD" = (
-/obj/structure/grille,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 32
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"aAE" = (
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aAF" = (
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aAG" = (
-/obj/machinery/vending/coffee,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aAH" = (
-/obj/machinery/camera{
- c_tag = "Arrivals Bay 1 North";
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aAI" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aAJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/arrival{
- dir = 4
- },
-/area/hallway/secondary/entry)
-"aAK" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/sink{
- pixel_y = 30
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aAL" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Primary Tool Storage APC";
- pixel_x = 1;
- pixel_y = -24
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/storage/primary)
-"aAM" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aAN" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aAO" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aAP" = (
-/obj/machinery/hydroponics/soil,
-/turf/open/floor/grass,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aAQ" = (
-/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aAR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aAS" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -5;
- pixel_y = 30
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aAT" = (
-/obj/machinery/seed_extractor,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aAU" = (
-/obj/structure/sink{
- pixel_y = 30
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aAV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aAW" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/tank/jetpack/carbondioxide,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aAX" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/neutral/side{
- dir = 8
- },
-/area/crew_quarters/sleep)
-"aAY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aAZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aBa" = (
-/turf/closed/wall/r_wall,
-/area/ai_monitored/nuke_storage)
-"aBb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/nuke_storage)
-"aBc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/nuke_storage)
-"aBd" = (
-/obj/machinery/gateway{
- dir = 8
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/gateway)
-"aBe" = (
-/turf/open/floor/plasteel/black,
-/area/gateway)
-"aBf" = (
-/obj/machinery/gateway{
- dir = 4
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/gateway)
-"aBg" = (
-/obj/machinery/gateway/centerstation,
-/turf/open/floor/plasteel/black,
-/area/gateway)
-"aBh" = (
-/obj/machinery/camera{
- c_tag = "EVA Maintenance";
- dir = 8;
- network = list("SS13")
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"aBi" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Gateway APC";
- pixel_x = -24;
- pixel_y = -1
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/gateway)
-"aBj" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/item/weapon/tank/jetpack/carbondioxide,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aBk" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/ai_monitored/storage/eva)
-"aBl" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Security Maintenance";
- req_access_txt = "1"
- },
-/turf/open/floor/plating,
-/area/security/checkpoint2)
-"aBm" = (
-/obj/effect/landmark/start/assistant,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aBn" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aBo" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aBp" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/clothing/shoes/magboots,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aBq" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/clothing/shoes/magboots,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aBr" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aBs" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/ai_monitored/storage/eva)
-"aBt" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/ai_monitored/storage/eva)
-"aBu" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/open/floor/plasteel/blue/corner,
-/area/hallway/primary/fore)
-"aBv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aBw" = (
-/obj/item/seeds/apple,
-/obj/item/seeds/banana,
-/obj/item/seeds/cocoapod,
-/obj/item/seeds/grape,
-/obj/item/seeds/orange,
-/obj/item/seeds/sugarcane,
-/obj/item/seeds/wheat,
-/obj/item/seeds/watermelon,
-/obj/structure/table/glass,
-/obj/item/seeds/tower,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aBx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/closed/wall,
-/area/crew_quarters/toilet)
-"aBy" = (
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aBz" = (
-/obj/machinery/shower{
- dir = 4
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aBA" = (
-/obj/machinery/shower{
- dir = 8
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aBB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/maintenance/fsmaint2)
-"aBC" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aBD" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aBE" = (
-/obj/item/clothing/under/rank/mailman,
-/obj/item/clothing/head/mailman,
-/obj/structure/closet,
-/obj/effect/landmark/blobstart,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aBF" = (
-/obj/machinery/space_heater,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aBG" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aBH" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aBI" = (
-/turf/closed/wall,
-/area/security/checkpoint2)
-"aBJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/security/checkpoint2)
-"aBK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/security/checkpoint2)
-"aBL" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Garden Maintenance";
- req_access_txt = "12"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aBM" = (
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aBN" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/storage/primary)
-"aBO" = (
-/obj/machinery/requests_console{
- department = "EVA";
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aBP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aBQ" = (
-/turf/closed/wall,
-/area/storage/primary)
-"aBR" = (
-/turf/closed/wall/r_wall,
-/area/storage/primary)
-"aBS" = (
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/circuit,
-/area/ai_monitored/nuke_storage)
-"aBT" = (
-/obj/machinery/computer/bank_machine,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/nuke_storage)
-"aBU" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Vault APC";
- pixel_x = 0;
- pixel_y = 25
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/circuit,
-/area/ai_monitored/nuke_storage)
-"aBV" = (
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/nuke_storage)
-"aBW" = (
-/obj/structure/filingcabinet,
-/obj/item/weapon/folder/documents,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/nuke_storage)
-"aBX" = (
-/obj/machinery/gateway{
- dir = 10
- },
-/turf/open/floor/plasteel/vault{
- dir = 4
- },
-/area/gateway)
-"aBY" = (
-/obj/machinery/gateway{
- dir = 6
- },
-/turf/open/floor/plasteel/vault{
- dir = 1
- },
-/area/gateway)
-"aBZ" = (
-/obj/machinery/gateway,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/gateway)
-"aCa" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aCb" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/item/weapon/pen{
- desc = "Writes upside down!";
- name = "astronaut pen"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aCc" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aCd" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet,
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/machinery/button/door{
- id = "Dorm1";
- name = "Dorm Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"aCe" = (
-/obj/effect/landmark/xeno_spawn,
-/obj/item/weapon/bikehorn/rubberducky,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aCf" = (
-/obj/machinery/camera{
- c_tag = "Theatre Storage"
- },
-/turf/open/floor/plasteel/white/side{
- dir = 4
- },
-/area/crew_quarters/theatre)
-"aCg" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aCh" = (
-/obj/machinery/vending/autodrobe,
-/turf/open/floor/plasteel/white/side{
- dir = 4
- },
-/area/crew_quarters/theatre)
-"aCi" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/ai_monitored/storage/eva)
-"aCj" = (
-/obj/machinery/camera{
- c_tag = "EVA East";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aCk" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aCl" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aCm" = (
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/structure/mirror{
- pixel_x = -28
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aCn" = (
-/obj/structure/urinal{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aCo" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aCp" = (
-/obj/machinery/camera{
- c_tag = "Arrivals North";
- dir = 8;
- network = list("SS13")
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/arrival{
- dir = 4
- },
-/area/hallway/secondary/entry)
-"aCq" = (
-/obj/structure/table/wood,
-/obj/machinery/requests_console{
- department = "Theatre";
- departmentType = 0;
- name = "theatre RC";
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/item/weapon/reagent_containers/food/snacks/baguette,
-/obj/item/toy/dummy,
-/turf/open/floor/plasteel/white/side{
- dir = 4
- },
-/area/crew_quarters/theatre)
-"aCr" = (
-/turf/closed/wall,
-/area/crew_quarters/theatre)
-"aCs" = (
-/obj/structure/closet/wardrobe/red,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/checkpoint2)
-"aCt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aCu" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/crew_quarters/fitness)
-"aCv" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/crew_quarters/fitness)
-"aCw" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/crew_quarters/fitness)
-"aCx" = (
-/obj/machinery/atmospherics/components/binary/valve,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aCy" = (
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aCz" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aCA" = (
-/obj/structure/grille/broken,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/window{
- icon_state = "window";
- dir = 4
- },
-/obj/structure/window,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/maintenance/fsmaint2)
-"aCB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/closed/wall,
-/area/maintenance/fsmaint2)
-"aCC" = (
-/obj/machinery/door/poddoor/preopen{
- id = "maint1"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aCD" = (
-/obj/machinery/door/poddoor/preopen{
- id = "maint1"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aCE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/fsmaint2)
-"aCF" = (
-/obj/structure/girder,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aCG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aCH" = (
-/obj/machinery/space_heater,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aCI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aCJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aCK" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aCL" = (
-/obj/structure/closet/secure_closet/security,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 9
- },
-/area/security/checkpoint2)
-"aCM" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aCN" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aCO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aCP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aCQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aCR" = (
-/turf/closed/wall,
-/area/chapel/main)
-"aCS" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/arrival)
-"aCT" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/glass{
- amount = 50
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/mining_construction)
-"aCU" = (
-/obj/machinery/door/airlock/titanium{
- name = "Arrivals Shuttle Airlock"
- },
-/turf/open/floor/plating,
-/area/shuttle/arrival)
-"aCV" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/arrival)
-"aCW" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aCX" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/mining_construction)
-"aCY" = (
-/obj/machinery/computer/security,
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 0;
- pixel_y = 30
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/checkpoint2)
-"aCZ" = (
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/checkpoint2)
-"aDa" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aDb" = (
-/obj/structure/table,
-/obj/item/weapon/wirecutters,
-/obj/item/device/flashlight{
- pixel_x = 1;
- pixel_y = 5
- },
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aDc" = (
-/obj/machinery/computer/card,
-/obj/machinery/light{
- dir = 1
- },
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- name = "Station Intercom (General)";
- pixel_y = 20
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/checkpoint2)
-"aDd" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aDe" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aDf" = (
-/obj/machinery/computer/secure_data,
-/obj/machinery/requests_console{
- department = "Security";
- departmentType = 5;
- pixel_y = 30
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/checkpoint2)
-"aDg" = (
-/obj/machinery/biogenerator,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aDh" = (
-/obj/machinery/vending/assist,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aDi" = (
-/obj/structure/window/reinforced,
-/turf/open/floor/plasteel/black,
-/area/gateway)
-"aDj" = (
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/plasteel/black,
-/area/gateway)
-"aDk" = (
-/obj/structure/table,
-/obj/item/device/assembly/igniter{
- pixel_x = -8;
- pixel_y = -4
- },
-/obj/item/device/assembly/igniter,
-/obj/item/weapon/screwdriver{
- pixel_y = 16
- },
-/obj/machinery/camera{
- c_tag = "Primary Tool Storage"
- },
-/obj/machinery/requests_console{
- department = "Tool Storage";
- departmentType = 0;
- pixel_y = 30
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aDl" = (
-/obj/structure/table,
-/obj/item/device/t_scanner,
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aDm" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/obj/item/weapon/stock_parts/cell/high/plus,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aDn" = (
-/obj/structure/table,
-/obj/item/device/assembly/signaler,
-/obj/item/device/assembly/signaler,
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- name = "Station Intercom (General)";
- pixel_y = 20
- },
-/obj/item/device/multitool,
-/obj/item/device/multitool{
- pixel_x = 4
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aDo" = (
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aDp" = (
-/obj/structure/table,
-/obj/item/weapon/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -1
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aDq" = (
-/obj/machinery/vending/tool,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aDr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/nuke_storage)
-"aDs" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/vault{
- dir = 1
- },
-/area/ai_monitored/nuke_storage)
-"aDt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/nuke_storage)
-"aDv" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel/vault{
- dir = 4
- },
-/area/ai_monitored/nuke_storage)
-"aDw" = (
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/gateway)
-"aDx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/window{
- name = "Gateway Chamber";
- req_access_txt = "62"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/black,
-/area/gateway)
-"aDy" = (
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/black,
-/area/gateway)
-"aDz" = (
-/obj/structure/rack{
- dir = 1
- },
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"aDA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aDB" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aDC" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aDD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aDE" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/machinery/light,
-/obj/machinery/camera{
- c_tag = "EVA Storage";
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aDF" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aDG" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/turf/open/floor/plasteel/neutral/side{
- dir = 4
- },
-/area/crew_quarters/sleep)
-"aDH" = (
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- pixel_x = 1;
- pixel_y = 9
- },
-/obj/item/weapon/pen,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/item/weapon/folder/white,
-/obj/item/weapon/stamp/rd{
- pixel_x = 3;
- pixel_y = -2
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"aDI" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
-/turf/closed/wall/r_wall,
-/area/ai_monitored/storage/eva)
-"aDK" = (
-/obj/machinery/door/airlock{
- id_tag = "Dorm1";
- name = "Dorm 1"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"aDL" = (
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aDM" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aDN" = (
-/obj/machinery/light/small,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aDO" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aDP" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aDQ" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aDR" = (
-/obj/structure/table/wood,
-/obj/structure/mirror{
- pixel_x = -28
- },
-/obj/item/weapon/lipstick/random{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/weapon/lipstick/random{
- pixel_x = -2;
- pixel_y = -2
- },
-/turf/open/floor/plasteel/white/side{
- dir = 4
- },
-/area/crew_quarters/theatre)
-"aDS" = (
-/obj/machinery/door/airlock{
- name = "Unisex Showers";
- req_access_txt = "0"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aDT" = (
-/obj/machinery/light/small,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aDU" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aDV" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aDW" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aDX" = (
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aDY" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start/mime,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white/side{
- dir = 4
- },
-/area/crew_quarters/theatre)
-"aDZ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aEa" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/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/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aEb" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Theatre Maintenance";
- req_access_txt = "46"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/crew_quarters/theatre)
-"aEc" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white/side{
- dir = 4
- },
-/area/crew_quarters/theatre)
-"aEd" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aEe" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aEf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aEg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/power/apc{
- dir = 2;
- name = "Chapel APC";
- pixel_x = 0;
- pixel_y = -24
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/chapel/main)
-"aEh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aEi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Chapel Maintenance";
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aEj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aEk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aEl" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aEm" = (
-/obj/machinery/door/window{
- dir = 8;
- name = "Mass Driver";
- req_access_txt = "22"
- },
-/obj/machinery/mass_driver{
- dir = 4;
- id = "chapelgun";
- name = "Holy Driver"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/chapel/main)
-"aEn" = (
-/obj/machinery/door/poddoor{
- id = "chapelgun";
- name = "Chapel Launcher Door"
- },
-/turf/open/floor/plating,
-/area/chapel/main)
-"aEo" = (
-/obj/structure/table,
-/obj/item/weapon/storage/firstaid/regular,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"aEp" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"aEq" = (
-/obj/machinery/computer/arcade,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"aEr" = (
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"aEs" = (
-/obj/structure/closet/wardrobe/black,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"aEt" = (
-/obj/structure/closet/wardrobe/green,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"aEu" = (
-/obj/structure/closet/wardrobe/grey,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"aEv" = (
-/obj/structure/closet/wardrobe/mixed,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"aEw" = (
-/obj/machinery/requests_console{
- department = "Arrival shuttle";
- name = "Arrivals Shuttle console";
- pixel_y = 30
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"aEx" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 4;
- icon_state = "burst_r"
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/arrival)
-"aEy" = (
-/obj/structure/shuttle/engine/heater{
- icon_state = "heater";
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/arrival)
-"aEz" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Entry Hall APC";
- pixel_x = 24;
- pixel_y = 0
- },
-/obj/structure/cable,
-/turf/open/floor/plasteel/arrival{
- dir = 4
- },
-/area/hallway/secondary/entry)
-"aEA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 2;
- icon_state = "pipe-j1s";
- sortType = 18
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aEB" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aEC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aED" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aEE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint2)
-"aEF" = (
-/obj/structure/table/glass,
-/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,
-/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,
-/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,
-/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,
-/obj/item/weapon/reagent_containers/food/snacks/grown/citrus/orange,
-/obj/item/weapon/reagent_containers/food/snacks/grown/grapes,
-/obj/item/weapon/reagent_containers/food/snacks/grown/cocoapod,
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aEG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/checkpoint2)
-"aEH" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint2)
-"aEI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint2)
-"aEJ" = (
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/checkpoint2)
-"aEK" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint2)
-"aEL" = (
-/obj/machinery/door/airlock{
- name = "Garden";
- req_access_txt = "0"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aEM" = (
-/turf/open/floor/circuit,
-/area/ai_monitored/nuke_storage)
-"aEN" = (
-/obj/structure/closet/crate{
- name = "Gold Crate"
- },
-/obj/item/stack/sheet/mineral/gold{
- pixel_x = -1;
- pixel_y = 5
- },
-/obj/item/stack/sheet/mineral/gold{
- pixel_y = 2
- },
-/obj/item/stack/sheet/mineral/gold{
- pixel_x = 1;
- pixel_y = -2
- },
-/obj/item/weapon/storage/belt/champion,
-/turf/open/floor/plasteel/vault{
- dir = 1
- },
-/area/ai_monitored/nuke_storage)
-"aEO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/nuke_storage)
-"aEP" = (
-/obj/item/weapon/coin/silver{
- pixel_x = 7;
- pixel_y = 12
- },
-/obj/item/weapon/coin/silver{
- pixel_x = 12;
- pixel_y = 7
- },
-/obj/item/weapon/coin/silver{
- pixel_x = 4;
- pixel_y = 8
- },
-/obj/item/weapon/coin/silver{
- pixel_x = -6;
- pixel_y = 5
- },
-/obj/item/weapon/coin/silver{
- pixel_x = 5;
- pixel_y = -8
- },
-/obj/structure/closet/crate{
- name = "Silver Crate"
- },
-/turf/open/floor/plasteel/vault{
- dir = 4
- },
-/area/ai_monitored/nuke_storage)
-"aEQ" = (
-/obj/structure/table,
-/obj/item/weapon/paper/pamphlet,
-/turf/open/floor/plasteel,
-/area/gateway)
-"aER" = (
-/obj/machinery/camera{
- c_tag = "Gateway";
- dir = 4;
- network = list("SS13")
- },
-/obj/structure/table,
-/obj/structure/sign/biohazard{
- pixel_x = -32
- },
-/obj/item/weapon/storage/firstaid/regular,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/gateway)
-"aES" = (
-/obj/structure/table,
-/obj/item/device/radio/off{
- pixel_y = 6
- },
-/obj/item/device/radio/off{
- pixel_x = 6;
- pixel_y = 4
- },
-/obj/item/device/radio/off{
- pixel_x = -6;
- pixel_y = 4
- },
-/obj/item/device/radio/off,
-/turf/open/floor/plasteel,
-/area/gateway)
-"aET" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/gateway)
-"aEU" = (
-/obj/structure/table,
-/obj/machinery/recharger,
-/obj/structure/sign/biohazard{
- pixel_x = 32
- },
-/turf/open/floor/plasteel,
-/area/gateway)
-"aEV" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"aEW" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/ai_monitored/storage/eva)
-"aEX" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_command{
- name = "EVA Storage";
- req_access_txt = "18"
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aEY" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/ai_monitored/storage/eva)
-"aEZ" = (
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/storage/eva)
-"aFa" = (
-/obj/machinery/suit_storage_unit/cmo,
-/turf/open/floor/plasteel/barber,
-/area/medical/cmo)
-"aFb" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/storage/eva)
-"aFc" = (
-/obj/structure/sign/securearea,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/storage/eva)
-"aFd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/neutral/side{
- dir = 4
- },
-/area/crew_quarters/sleep)
-"aFe" = (
-/obj/machinery/camera{
- c_tag = "Dormitory South";
- c_tag_order = 999;
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 8
- },
-/area/crew_quarters/sleep)
-"aFf" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aFg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/toilet)
-"aFh" = (
-/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aFi" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Dormitory Bathrooms APC";
- pixel_x = 26;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aFj" = (
-/turf/open/floor/plasteel/redblue/redside,
-/area/crew_quarters/theatre)
-"aFk" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/floor/plasteel/redblue/redside,
-/area/crew_quarters/theatre)
-"aFl" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/dresser,
-/turf/open/floor/plasteel/redblue/redside,
-/area/crew_quarters/theatre)
-"aFm" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aFn" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aFo" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aFp" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aFq" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/space,
-/area/space)
-"aFr" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aFs" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aFt" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aFu" = (
-/turf/closed/wall,
-/area/library)
-"aFv" = (
-/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/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aFw" = (
-/turf/closed/wall,
-/area/chapel/office)
-"aFx" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aFy" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Chapel Office APC";
- pixel_x = 0;
- pixel_y = -24
- },
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/chapel/office)
-"aFz" = (
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aFA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/computer/pod/old{
- density = 0;
- icon = 'icons/obj/airlock_machines.dmi';
- icon_state = "airlock_control_standby";
- id = "chapelgun";
- name = "Mass Driver Controller";
- pixel_x = 24;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aFB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aFC" = (
-/obj/structure/chair,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"aFD" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"aFE" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"aFF" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 4;
- icon_state = "propulsion"
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/arrival)
-"aFG" = (
-/turf/open/floor/plasteel/arrival{
- dir = 4
- },
-/area/hallway/secondary/entry)
-"aFH" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint2)
-"aFI" = (
-/obj/machinery/camera{
- c_tag = "Security Checkpoint";
- dir = 1
- },
-/obj/machinery/airalarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/obj/machinery/light_switch{
- pixel_x = 6;
- pixel_y = -25
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/red/side{
- dir = 10
- },
-/area/security/checkpoint2)
-"aFJ" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- icon_state = "intact";
- dir = 1
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aFK" = (
-/obj/item/weapon/paper_bin{
- pixel_x = 1;
- pixel_y = 9
- },
-/obj/item/weapon/pen,
-/obj/structure/table,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint2)
-"aFL" = (
-/obj/item/device/radio/off,
-/obj/item/weapon/crowbar,
-/obj/item/device/assembly/flash/handheld,
-/obj/structure/table,
-/turf/open/floor/plasteel/red/side{
- dir = 6
- },
-/area/security/checkpoint2)
-"aFM" = (
-/obj/machinery/recharger{
- pixel_y = 4
- },
-/obj/structure/table,
-/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint2)
-"aFN" = (
-/obj/structure/table/glass,
-/obj/item/weapon/cultivator,
-/obj/item/weapon/hatchet,
-/obj/item/weapon/crowbar,
-/obj/item/device/plant_analyzer,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aFO" = (
-/obj/machinery/camera{
- c_tag = "Garden";
- dir = 8;
- network = list("SS13")
- },
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aFP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aFQ" = (
-/obj/structure/table,
-/obj/item/stack/cable_coil{
- pixel_x = 2;
- pixel_y = -2
- },
-/obj/item/stack/cable_coil{
- pixel_x = 3;
- pixel_y = -7
- },
-/obj/item/weapon/screwdriver{
- pixel_y = 16
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aFR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aFS" = (
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aFT" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aFU" = (
-/obj/effect/landmark/start/assistant,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aFV" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"aFW" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel,
-/area/gateway)
-"aFX" = (
-/obj/item/device/radio/intercom{
- freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = -30
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/gateway)
-"aFY" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aFZ" = (
-/obj/structure/table,
-/obj/item/weapon/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -1
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aGa" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/vault{
- dir = 6
- },
-/area/ai_monitored/nuke_storage)
-"aGb" = (
-/turf/open/floor/plasteel/vault{
- dir = 1
- },
-/area/ai_monitored/nuke_storage)
-"aGc" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/camera/motion{
- c_tag = "Vault";
- dir = 1;
- network = list("MiniSat")
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel/vault{
- dir = 10
- },
-/area/ai_monitored/nuke_storage)
-"aGd" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/vault,
-/area/ai_monitored/nuke_storage)
-"aGe" = (
-/obj/structure/safe,
-/obj/item/clothing/head/bearpelt,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
-/obj/item/weapon/gun/ballistic/revolver/russian,
-/obj/item/ammo_box/a357,
-/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,
-/turf/open/floor/plasteel/vault{
- dir = 4
- },
-/area/ai_monitored/nuke_storage)
-"aGf" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/open/floor/plasteel,
-/area/gateway)
-"aGg" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"aGh" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"aGi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/storage/eva)
-"aGj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/storage/eva)
-"aGk" = (
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aGl" = (
-/obj/machinery/light_switch{
- pixel_x = 27
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aGm" = (
-/obj/structure/toilet{
- pixel_y = 8
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aGn" = (
-/obj/structure/toilet{
- pixel_y = 8
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/effect/landmark/blobstart,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aGo" = (
-/obj/structure/table,
-/obj/item/stack/sheet/rglass{
- amount = 50
- },
-/obj/item/stack/sheet/rglass{
- amount = 50
- },
-/obj/item/stack/rods{
- amount = 50
- },
-/obj/item/stack/rods{
- amount = 50
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aGp" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/recharge_station,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aGq" = (
-/obj/item/stack/sheet/plasteel{
- amount = 10
- },
-/obj/structure/table,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aGr" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start/clown,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/redblue,
-/area/crew_quarters/theatre)
-"aGs" = (
-/obj/machinery/suit_storage_unit/rd,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"aGt" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/blue/corner{
- dir = 8
- },
-/area/hallway/primary/fore)
-"aGu" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/blue/corner,
-/area/hallway/primary/fore)
-"aGv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/theatre)
-"aGw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/closet/secure_closet/freezer/cream_pie,
-/turf/open/floor/plasteel/redblue,
-/area/crew_quarters/theatre)
-"aGx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/toilet)
-"aGy" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aGz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aGA" = (
-/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/sortjunction{
- dir = 4;
- icon_state = "pipe-j1s";
- sortType = 19
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aGB" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- icon_state = "pipe-j1s";
- sortType = 20
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aGC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aGD" = (
-/obj/structure/table/wood,
-/obj/structure/mirror{
- pixel_x = -28
- },
-/obj/item/device/flashlight/lamp/bananalamp{
- pixel_y = 3
- },
-/turf/open/floor/plasteel/redblue,
-/area/crew_quarters/theatre)
-"aGE" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aGF" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- icon_state = "pipe-j2s";
- sortType = 17
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aGG" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Library Maintenance";
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/library)
-"aGH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aGI" = (
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j1";
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aGJ" = (
-/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/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aGK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aGL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aGM" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Crematorium Maintenance";
- req_access_txt = "27"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/chapel/office)
-"aGN" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aGO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/chapel/office)
-"aGP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aGQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aGR" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aGS" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aGT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aGU" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/requests_console{
- department = "Chapel";
- departmentType = 2;
- pixel_y = 30
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aGV" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aGW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aGX" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/space,
-/area/space)
-"aGY" = (
-/obj/machinery/airalarm{
- pixel_y = 25
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aGZ" = (
-/obj/machinery/door/airlock/security{
- name = "Security Checkpoint";
- req_access = null;
- req_access_txt = "1"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/security/checkpoint2)
-"aHa" = (
-/obj/machinery/door/firedoor,
-/obj/structure/table/reinforced,
-/obj/item/weapon/paper,
-/obj/machinery/door/window/westright{
- dir = 1;
- name = "Security Checkpoint";
- req_access_txt = "1"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aHb" = (
-/obj/structure/table/wood,
-/obj/item/weapon/paper_bin{
- pixel_x = 1;
- pixel_y = 9
- },
-/obj/item/stack/packageWrap,
-/turf/open/floor/wood,
-/area/library)
-"aHc" = (
-/obj/structure/table/wood,
-/obj/item/weapon/storage/pill_bottle/dice,
-/turf/open/floor/wood,
-/area/library)
-"aHd" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/wood,
-/area/library)
-"aHe" = (
-/obj/structure/table,
-/obj/item/weapon/storage/toolbox/electrical{
- pixel_x = 1;
- pixel_y = -1
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aHf" = (
-/obj/structure/closet/wardrobe/chaplain_black,
-/obj/item/device/radio/intercom{
- pixel_y = 25
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aHg" = (
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/obj/machinery/camera{
- c_tag = "Chapel Office";
- dir = 2;
- network = list("SS13")
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aHh" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/gateway)
-"aHi" = (
-/obj/structure/closet/coffin,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"aHj" = (
-/obj/machinery/light_switch{
- pixel_x = -20;
- pixel_y = 0
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/gateway)
-"aHk" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aHl" = (
-/obj/structure/closet/coffin,
-/obj/machinery/door/window/eastleft{
- name = "Coffin Storage";
- req_access_txt = "22"
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"aHm" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aHn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aHo" = (
-/obj/structure/table/glass,
-/obj/item/weapon/reagent_containers/food/snacks/grown/poppy,
-/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,
-/turf/open/floor/plasteel/chapel{
- dir = 4
- },
-/area/chapel/main)
-"aHp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"aHq" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/chapel/main)
-"aHr" = (
-/obj/effect/landmark/marauder_entry,
-/turf/open/space,
-/area/space)
-"aHs" = (
-/obj/machinery/door/airlock/titanium{
- name = "Arrivals Shuttle Airlock"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"aHu" = (
-/obj/machinery/status_display{
- density = 0;
- layer = 3;
- pixel_x = 32;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/white/corner{
- dir = 4
- },
-/area/hallway/secondary/entry)
-"aHv" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/gateway)
-"aHw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"aHx" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile{
- obj_integrity = 25
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"aHy" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/checkpoint2)
-"aHz" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plasteel/green/side{
- dir = 5
- },
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aHA" = (
-/obj/item/weapon/reagent_containers/spray/plantbgone,
-/obj/item/weapon/reagent_containers/spray/pestspray{
- pixel_x = 3;
- pixel_y = 4
- },
-/obj/item/weapon/reagent_containers/glass/bottle/nutrient/ez,
-/obj/item/weapon/reagent_containers/glass/bottle/nutrient/rh{
- pixel_x = 2;
- pixel_y = 1
- },
-/obj/structure/table/glass,
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/green/side{
- dir = 9
- },
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aHB" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/storage/eva)
-"aHC" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/storage/eva)
-"aHD" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aHE" = (
-/obj/structure/table,
-/obj/item/weapon/weldingtool,
-/obj/item/weapon/crowbar,
-/obj/item/stack/packageWrap,
-/obj/item/stack/packageWrap,
-/obj/item/stack/packageWrap,
-/obj/item/stack/packageWrap,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aHF" = (
-/obj/structure/sign/securearea,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/nuke_storage)
-"aHG" = (
-/obj/machinery/door/airlock/vault{
- icon_state = "door_locked";
- locked = 1;
- req_access_txt = "53"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/ai_monitored/nuke_storage)
-"aHH" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Dormitory"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/neutral/side{
- dir = 4
- },
-/area/crew_quarters/sleep)
-"aHI" = (
-/turf/open/floor/plasteel/redblue,
-/area/crew_quarters/theatre)
-"aHJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/gateway)
-"aHK" = (
-/obj/structure/closet/secure_closet/freezer/cream_pie,
-/turf/open/floor/plasteel/redblue,
-/area/crew_quarters/theatre)
-"aHL" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/structure/closet/l3closet/scientist,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/gateway)
-"aHM" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/closed/wall,
-/area/crew_quarters/bar)
-"aHN" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/weapon/crowbar,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aHO" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aHP" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Central Access"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aHQ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Central Access"
- },
-/turf/open/floor/plasteel/blue/corner{
- dir = 8
- },
-/area/hallway/primary/central)
-"aHR" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Central Access"
- },
-/turf/open/floor/plasteel/blue/side{
- dir = 4
- },
-/area/hallway/primary/central)
-"aHS" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/maintenance{
- name = "Bar Storage Maintenance";
- req_access_txt = "25"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/crew_quarters/bar)
-"aHT" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Dormitory"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/neutral/side{
- dir = 8
- },
-/area/crew_quarters/sleep)
-"aHU" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/structure/mirror{
- pixel_x = -28
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aHV" = (
-/obj/machinery/door/airlock{
- name = "Unit 1"
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aHW" = (
-/obj/machinery/door/airlock{
- name = "Unit 2"
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aHX" = (
-/obj/machinery/door/airlock{
- name = "Unit B"
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aHY" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aHZ" = (
-/obj/structure/table/wood,
-/obj/machinery/airalarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/obj/item/weapon/storage/crayons{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/reagent_containers/food/snacks/pie/cream{
- pixel_x = -3;
- pixel_y = -3
- },
-/turf/open/floor/plasteel/redblue,
-/area/crew_quarters/theatre)
-"aIa" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aIb" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Theatre APC";
- pixel_x = -25
- },
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/crew_quarters/theatre)
-"aIc" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Bar APC";
- pixel_y = -24
- },
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/crew_quarters/bar)
-"aId" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aIe" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/bar)
-"aIf" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aIg" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=2";
- freq = 1400;
- location = "Bar"
- },
-/obj/structure/plasticflaps{
- opacity = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/turf/open/floor/plasteel{
- dir = 2
- },
-/area/crew_quarters/bar)
-"aIh" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Kitchen APC";
- pixel_y = -24
- },
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/crew_quarters/kitchen)
-"aIi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/kitchen)
-"aIj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- icon_state = "pipe-j1s";
- sortType = 21
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aIk" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aIl" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/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/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aIm" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aIn" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Hydroponics APC";
- pixel_y = -24
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/hydroponics)
-"aIo" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aIp" = (
-/turf/closed/wall,
-/area/hydroponics)
-"aIq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/hydroponics)
-"aIr" = (
-/obj/structure/filingcabinet,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/library)
-"aIs" = (
-/obj/structure/chair/office/dark,
-/obj/machinery/camera{
- c_tag = "Library North";
- dir = 2;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/library)
-"aIt" = (
-/turf/open/floor/wood,
-/area/library)
-"aIu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/wood,
-/area/library)
-"aIv" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/library)
-"aIw" = (
-/obj/structure/chair/office/dark,
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/effect/landmark/start/assistant,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/library)
-"aIx" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/wood,
-/area/library)
-"aIy" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"aIz" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aIA" = (
-/obj/structure/table/wood,
-/obj/item/weapon/paper_bin{
- pixel_x = -2;
- pixel_y = 5
- },
-/obj/item/weapon/storage/crayons,
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aIB" = (
-/obj/structure/bodycontainer/crematorium,
-/obj/effect/landmark/revenantspawn,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"aIC" = (
-/obj/effect/landmark/start/chaplain,
-/obj/structure/chair,
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aID" = (
-/obj/structure/closet/coffin,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"aIE" = (
-/obj/structure/table/glass,
-/turf/open/floor/plasteel/chapel,
-/area/chapel/main)
-"aIF" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/security/warden)
-"aIG" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"aIH" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/lights/mixed,
-/obj/item/weapon/pipe_dispenser,
-/obj/machinery/button/door{
- id = "aux_base_shutters";
- name = "Public Shutters Control";
- pixel_x = 24;
- pixel_y = 0;
- req_access_txt = "0";
- req_one_access_txt = "32;47;48"
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 6
- },
-/area/mining_construction)
-"aII" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aIJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aIK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aIL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aIM" = (
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aIN" = (
-/obj/structure/table,
-/obj/item/weapon/wrench,
-/obj/item/device/analyzer,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aIO" = (
-/obj/machinery/camera{
- c_tag = "Arrivals Lounge";
- dir = 2
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aIP" = (
-/obj/structure/sign/map/left{
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aIQ" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -5;
- pixel_y = 30
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aIR" = (
-/obj/structure/sign/map/right{
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aIS" = (
-/obj/structure/table/glass,
-/obj/item/weapon/hatchet,
-/obj/item/weapon/cultivator,
-/obj/item/weapon/crowbar,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/item/device/plant_analyzer,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aIT" = (
-/obj/item/weapon/storage/bag/plants/portaseeder,
-/obj/structure/table/glass,
-/obj/item/device/plant_analyzer,
-/obj/item/device/radio/intercom{
- freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = 29
- },
-/obj/machinery/light_switch{
- pixel_x = -6;
- pixel_y = -25
- },
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aIU" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=8";
- freq = 1400;
- location = "Tool Storage"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aIV" = (
-/obj/machinery/button/door{
- id = "stationawaygate";
- name = "Gateway Access Shutter Control";
- pixel_x = -1;
- pixel_y = -24;
- req_access_txt = "31"
- },
-/turf/open/floor/plasteel,
-/area/gateway)
-"aIW" = (
-/obj/structure/table,
-/obj/item/weapon/crowbar,
-/obj/item/device/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
- },
-/obj/item/clothing/gloves/color/fyellow,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aIX" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aIY" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aIZ" = (
-/obj/structure/table,
-/obj/item/weapon/storage/belt/utility,
-/obj/item/weapon/storage/firstaid/regular,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aJa" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/gateway)
-"aJb" = (
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aJc" = (
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal/bin,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aJd" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/hallway/primary/port)
-"aJe" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/hallway/primary/port)
-"aJf" = (
-/obj/machinery/camera{
- c_tag = "EVA South";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aJg" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/neutral/side{
- dir = 4
- },
-/area/hallway/primary/central)
-"aJh" = (
-/turf/open/floor/plasteel,
-/area/gateway)
-"aJi" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/closet/secure_closet/exile,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/gateway)
-"aJj" = (
-/obj/structure/table,
-/obj/item/stack/sheet/glass{
- amount = 50
- },
-/obj/item/stack/sheet/glass{
- amount = 50
- },
-/obj/item/weapon/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -1
- },
-/obj/item/weapon/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -1
- },
-/obj/item/weapon/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -1
- },
-/obj/item/weapon/extinguisher,
-/obj/item/weapon/extinguisher,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aJk" = (
-/obj/machinery/door/airlock{
- name = "Theatre Backstage";
- req_access_txt = "46"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/theatre)
-"aJl" = (
-/obj/structure/tank_dispenser/oxygen,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aJm" = (
-/obj/structure/sink/kitchen{
- pixel_y = 28
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aJn" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/hallway/primary/central)
-"aJo" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Central Hallway North";
- dir = 2
- },
-/turf/open/floor/plasteel/blue/side{
- dir = 1
- },
-/area/hallway/primary/central)
-"aJp" = (
-/turf/open/floor/plasteel/blue/side{
- dir = 9
- },
-/area/hallway/primary/central)
-"aJq" = (
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aJr" = (
-/turf/open/floor/plasteel/blue/corner{
- dir = 1
- },
-/area/hallway/primary/central)
-"aJs" = (
-/turf/open/floor/plasteel/blue/side{
- dir = 1
- },
-/area/hallway/primary/central)
-"aJt" = (
-/obj/structure/sign/directions/security{
- dir = 1;
- icon_state = "direction_sec";
- pixel_x = 32;
- pixel_y = 40
- },
-/obj/structure/sign/directions/medical{
- dir = 4;
- icon_state = "direction_med";
- pixel_x = 32;
- pixel_y = 32
- },
-/obj/structure/sign/directions/evac{
- dir = 4;
- icon_state = "direction_evac";
- pixel_x = 32;
- pixel_y = 24
- },
-/turf/open/floor/plasteel/blue/corner{
- dir = 4
- },
-/area/hallway/primary/central)
-"aJu" = (
-/turf/open/floor/plasteel/blue/side{
- dir = 5
- },
-/area/hallway/primary/central)
-"aJv" = (
-/obj/machinery/vending/cola/random,
-/turf/open/floor/plasteel/black,
-/area/hallway/primary/central)
-"aJw" = (
-/turf/closed/wall,
-/area/hallway/primary/central)
-"aJx" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aJy" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/neutral/side{
- dir = 8
- },
-/area/hallway/primary/central)
-"aJz" = (
-/obj/machinery/camera{
- c_tag = "Dormitory Toilets";
- dir = 1
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aJA" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Kitchen Maintenance";
- req_access_txt = "28"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/crew_quarters/kitchen)
-"aJB" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/maintenance{
- name = "Hydroponics Maintenance";
- req_access_txt = "35"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/hydroponics)
-"aJC" = (
-/turf/closed/wall,
-/area/crew_quarters/bar)
-"aJD" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Bar Maintenance";
- req_access_txt = "12"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aJE" = (
-/obj/item/weapon/reagent_containers/food/drinks/shaker,
-/obj/item/weapon/gun/ballistic/revolver/doublebarrel,
-/obj/structure/table/wood,
-/obj/item/stack/spacecash/c10,
-/obj/item/stack/spacecash/c100,
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aJF" = (
-/obj/machinery/newscaster{
- pixel_x = 30
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/wood,
-/area/library)
-"aJG" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/button/crematorium{
- pixel_x = 25
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"aJH" = (
-/obj/machinery/door/window/southleft{
- base_state = "left";
- dir = 2;
- icon_state = "left";
- name = "Bar Delivery";
- req_access_txt = "25"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"aJI" = (
-/turf/closed/wall,
-/area/crew_quarters/kitchen)
-"aJJ" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"aJK" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=2";
- freq = 1400;
- location = "Kitchen"
- },
-/obj/structure/plasticflaps{
- opacity = 1
- },
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/turf/open/floor/plasteel{
- dir = 2
- },
-/area/crew_quarters/kitchen)
-"aJL" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=2";
- freq = 1400;
- location = "Hydroponics"
- },
-/obj/structure/plasticflaps{
- opacity = 1
- },
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/turf/open/floor/plasteel{
- dir = 2
- },
-/area/hydroponics)
-"aJM" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp{
- pixel_y = 10
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aJN" = (
-/obj/structure/table,
-/obj/item/weapon/book/manual/hydroponics_pod_people,
-/obj/item/weapon/paper/hydroponics,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aJO" = (
-/obj/structure/table,
-/obj/machinery/reagentgrinder,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aJP" = (
-/obj/structure/table/wood,
-/obj/item/weapon/folder/yellow,
-/obj/item/weapon/pen,
-/turf/open/floor/wood,
-/area/library)
-"aJQ" = (
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/library)
-"aJR" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/library)
-"aJS" = (
-/obj/structure/table/wood,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/wood,
-/area/library)
-"aJT" = (
-/obj/structure/table/wood,
-/obj/item/weapon/nullrod,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aJU" = (
-/obj/structure/table/wood,
-/obj/item/weapon/pen,
-/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aJV" = (
-/obj/structure/closet/coffin,
-/obj/machinery/door/window/eastleft{
- dir = 8;
- name = "Coffin Storage";
- req_access_txt = "22"
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"aJW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aJX" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/neutral/side,
-/area/hallway/secondary/entry)
-"aJY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/neutral/side,
-/area/hallway/secondary/entry)
-"aJZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Primary Tool Storage"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aKa" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Primary Tool Storage"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aKb" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/hallway/primary/port)
-"aKc" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- icon_state = "door_closed";
- lockdownbyai = 0;
- locked = 0;
- name = "Gateway Access";
- req_access_txt = "62"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/gateway)
-"aKd" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/shutters{
- id = "stationawaygate";
- name = "Gateway Access Shutters"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/gateway)
-"aKe" = (
-/obj/structure/table/glass,
-/turf/open/floor/plasteel/chapel{
- dir = 4
- },
-/area/chapel/main)
-"aKf" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/power/apc{
- dir = 8;
- name = "Auxillary Base Construction APC";
- pixel_x = -24;
- pixel_y = 0
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/mining_construction)
-"aKg" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"aKh" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -29
- },
-/obj/machinery/light,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"aKi" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 4;
- icon_state = "burst_l"
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/arrival)
-"aKj" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/neutral/corner{
- dir = 2
- },
-/area/hallway/secondary/entry)
-"aKk" = (
-/turf/open/floor/plasteel/neutral/side,
-/area/hallway/secondary/entry)
-"aKl" = (
-/turf/open/floor/plasteel/neutral/corner{
- dir = 8
- },
-/area/hallway/secondary/entry)
-"aKm" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Garden"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aKn" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aKo" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/neutral/side{
- dir = 4
- },
-/area/hallway/primary/central)
-"aKp" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/storage/primary)
-"aKq" = (
-/obj/item/device/radio/intercom{
- pixel_y = 25
- },
-/obj/machinery/camera{
- c_tag = "Theatre Stage";
- dir = 2
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aKr" = (
-/obj/machinery/airalarm{
- dir = 2;
- pixel_y = 24
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aKs" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/storage/primary)
-"aKt" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/hallway/primary/port)
-"aKu" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/hallway/primary/port)
-"aKv" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/hallway/primary/port)
-"aKw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/hallway/primary/port)
-"aKx" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/hallway/primary/port)
-"aKy" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"aKz" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aKA" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/shutters{
- id = "stationawaygate";
- name = "Gateway Access Shutters"
- },
-/turf/open/floor/plasteel,
-/area/gateway)
-"aKB" = (
-/obj/structure/sign/securearea,
-/turf/closed/wall/r_wall,
-/area/gateway)
-"aKC" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aKD" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aKE" = (
-/turf/open/floor/plasteel/blue/side{
- dir = 8
- },
-/area/hallway/primary/central)
-"aKF" = (
-/turf/open/floor/plasteel/blue/side{
- dir = 4
- },
-/area/hallway/primary/central)
-"aKG" = (
-/obj/machinery/vending/snack/random,
-/turf/open/floor/plasteel/black,
-/area/hallway/primary/central)
-"aKH" = (
-/obj/structure/sink{
- pixel_y = 30
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aKI" = (
-/obj/structure/closet/secure_closet/hydroponics,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aKJ" = (
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aKK" = (
-/obj/structure/closet/wardrobe/botanist,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aKL" = (
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/obj/machinery/camera{
- c_tag = "Hydroponics Storage"
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/plantgenes,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aKM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aKN" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aKO" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aKP" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aKQ" = (
-/obj/machinery/reagentgrinder,
-/obj/structure/table/wood,
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aKR" = (
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aKS" = (
-/obj/machinery/camera{
- c_tag = "Bar Storage"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aKT" = (
-/obj/structure/closet/secure_closet/freezer/meat,
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aKU" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aKV" = (
-/obj/machinery/door/window/southleft{
- base_state = "left";
- dir = 2;
- icon_state = "left";
- name = "Kitchen Delivery";
- req_access_txt = "28"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/crew_quarters/kitchen)
-"aKW" = (
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aKX" = (
-/obj/machinery/door/window/eastright{
- name = "Hydroponics Delivery";
- req_access_txt = "35"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aKY" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aKZ" = (
-/obj/machinery/airalarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/obj/machinery/camera{
- c_tag = "Chapel Crematorium";
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"aLa" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aLb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock{
- name = "Crematorium";
- req_access_txt = "27"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"aLc" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aLd" = (
-/obj/structure/table,
-/obj/item/weapon/reagent_containers/spray/plantbgone{
- pixel_x = 0;
- pixel_y = 3
- },
-/obj/item/weapon/reagent_containers/spray/plantbgone{
- pixel_x = 8;
- pixel_y = 8
- },
-/obj/item/weapon/reagent_containers/spray/plantbgone{
- pixel_x = 13;
- pixel_y = 5
- },
-/obj/item/weapon/watertank,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aLe" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aLf" = (
-/obj/machinery/airalarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/turf/open/floor/wood,
-/area/library)
-"aLg" = (
-/obj/structure/table/wood,
-/turf/open/floor/wood,
-/area/library)
-"aLh" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/open/floor/wood,
-/area/library)
-"aLi" = (
-/obj/structure/chair/comfy/beige,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry)
-"aLj" = (
-/obj/structure/chair/comfy/beige,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry)
-"aLk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aLl" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 32
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aLm" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aLn" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aLo" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/chapel/office)
-"aLp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aLq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aLr" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aLt" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/fpmaint2)
-"aLu" = (
-/obj/machinery/door/airlock/engineering{
- cyclelinkeddir = 1;
- name = "Auxillary Base Construction";
- req_access_txt = "0";
- req_one_access_txt = "32;47;48"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/mining_construction)
-"aLv" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aLw" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"aLx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aLy" = (
-/obj/structure/chair/comfy/beige,
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry)
-"aLz" = (
-/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry)
-"aLA" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp/green{
- pixel_x = 1;
- pixel_y = 5
- },
-/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry)
-"aLB" = (
-/turf/open/floor/plasteel/neutral/side{
- dir = 8
- },
-/area/hallway/secondary/entry)
-"aLC" = (
-/obj/machinery/vending/cigarette,
-/turf/open/floor/plasteel/black,
-/area/hallway/secondary/entry)
-"aLD" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aLE" = (
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aLF" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aLG" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/power/apc{
- name = "Port Hall APC";
- dir = 1;
- pixel_y = 26
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aLH" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aLI" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 5;
- pixel_y = 30
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aLJ" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 32
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aLK" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aLL" = (
-/obj/machinery/camera{
- c_tag = "Port Hallway 2";
- dir = 2
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aLM" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aLN" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aLO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/neutral/corner{
- dir = 4
- },
-/area/hallway/primary/central)
-"aLP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aLQ" = (
-/obj/machinery/camera{
- c_tag = "Central Hallway North-East";
- dir = 2
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aLR" = (
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/corner{
- dir = 1
- },
-/area/hallway/primary/central)
-"aLS" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aLT" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aLU" = (
-/obj/machinery/airalarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/reagent_dispensers/beerkeg,
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aLV" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aLW" = (
-/obj/machinery/camera{
- c_tag = "Central Hallway North-West";
- dir = 2
- },
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aLX" = (
-/turf/open/floor/plasteel/blue/corner{
- dir = 4
- },
-/area/hallway/primary/central)
-"aLY" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aLZ" = (
-/turf/open/floor/plasteel{
- icon_state = "L3"
- },
-/area/hallway/primary/central)
-"aMa" = (
-/turf/open/floor/plasteel{
- icon_state = "L1"
- },
-/area/hallway/primary/central)
-"aMb" = (
-/turf/open/floor/plasteel{
- icon_state = "L7"
- },
-/area/hallway/primary/central)
-"aMc" = (
-/turf/open/floor/plasteel{
- icon_state = "L5"
- },
-/area/hallway/primary/central)
-"aMd" = (
-/turf/open/floor/plasteel{
- icon_state = "L11"
- },
-/area/hallway/primary/central)
-"aMe" = (
-/turf/open/floor/plasteel{
- icon_state = "L9"
- },
-/area/hallway/primary/central)
-"aMf" = (
-/turf/open/floor/plasteel{
- icon_state = "L13";
- name = "floor"
- },
-/area/hallway/primary/central)
-"aMg" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/corner{
- dir = 4
- },
-/area/hallway/primary/central)
-"aMh" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aMi" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/landmark/xeno_spawn,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aMj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/neutral/corner{
- dir = 1
- },
-/area/hallway/primary/central)
-"aMk" = (
-/obj/machinery/chem_master/condimaster{
- name = "CondiMaster Neo"
- },
-/obj/machinery/camera{
- c_tag = "Kitchen Cold Room"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aMl" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aMm" = (
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aMn" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aMo" = (
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aMp" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aMq" = (
-/obj/structure/piano{
- icon_state = "piano"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aMr" = (
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aMs" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aMt" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -5;
- pixel_y = -31
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aMu" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aMv" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aMw" = (
-/obj/machinery/computer/slot_machine,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aMx" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aMy" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aMz" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aMA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aMB" = (
-/obj/machinery/vending/coffee,
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aMC" = (
-/obj/machinery/vending/cola/random,
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aMD" = (
-/obj/machinery/icecream_vat,
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aME" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aMF" = (
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aMG" = (
-/obj/structure/closet/crate/hydroponics,
-/obj/item/weapon/shovel/spade,
-/obj/item/weapon/wrench,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/item/weapon/wirecutters,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aMH" = (
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/library)
-"aMI" = (
-/obj/machinery/light/small,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aMJ" = (
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/wood,
-/area/library)
-"aMK" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"aML" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aMM" = (
-/obj/machinery/camera{
- c_tag = "Chapel North";
- dir = 2;
- network = list("SS13")
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aMN" = (
-/obj/machinery/chem_master/condimaster,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aMO" = (
-/obj/structure/table/wood,
-/obj/item/weapon/reagent_containers/food/snacks/chips,
-/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/carpet,
-/area/hallway/secondary/entry)
-"aMP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/hallway/secondary/entry)
-"aMQ" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aMR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aMS" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aMT" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aMU" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aMV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aMW" = (
-/obj/structure/bodycontainer/morgue,
-/obj/effect/landmark/revenantspawn,
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"aMX" = (
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aMY" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aMZ" = (
-/turf/closed/wall,
-/area/hallway/secondary/exit)
-"aNa" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"aNb" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aNc" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Central Access"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aNd" = (
-/obj/structure/table/wood,
-/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry)
-"aNe" = (
-/turf/open/floor/carpet,
-/area/hallway/secondary/entry)
-"aNf" = (
-/obj/structure/chair/comfy/beige{
- dir = 8
- },
-/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry)
-"aNg" = (
-/obj/machinery/vending/coffee,
-/turf/open/floor/plasteel/black,
-/area/hallway/secondary/entry)
-"aNh" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aNi" = (
-/turf/open/floor/goonplaque,
-/area/hallway/secondary/entry)
-"aNj" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=CHW";
- location = "Lockers"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aNk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aNl" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aNm" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aNn" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aNo" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aNp" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aNq" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aNr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aNs" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aNt" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aNu" = (
-/obj/structure/closet/secure_closet/bar{
- req_access_txt = "25"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aNv" = (
-/turf/open/floor/plasteel{
- icon_state = "L4"
- },
-/area/hallway/primary/central)
-"aNw" = (
-/turf/open/floor/plasteel{
- icon_state = "L2"
- },
-/area/hallway/primary/central)
-"aNx" = (
-/obj/effect/landmark/observer_start,
-/turf/open/floor/plasteel{
- icon_state = "L8"
- },
-/area/hallway/primary/central)
-"aNy" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=Lockers";
- location = "EVA"
- },
-/turf/open/floor/plasteel{
- icon_state = "L6"
- },
-/area/hallway/primary/central)
-"aNz" = (
-/turf/open/floor/plasteel{
- icon_state = "L12"
- },
-/area/hallway/primary/central)
-"aNA" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=Security";
- location = "EVA2"
- },
-/turf/open/floor/plasteel{
- icon_state = "L10"
- },
-/area/hallway/primary/central)
-"aNB" = (
-/turf/open/floor/plasteel{
- icon_state = "L14"
- },
-/area/hallway/primary/central)
-"aNC" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=EVA2";
- location = "Dorm"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aND" = (
-/obj/structure/closet/gmcloset,
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/glass{
- amount = 50
- },
-/obj/item/stack/cable_coil,
-/obj/item/device/flashlight/lamp,
-/obj/item/device/flashlight/lamp/green,
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aNE" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aNF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aNG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aNH" = (
-/obj/machinery/door/window{
- dir = 4;
- name = "Theatre Stage";
- req_access_txt = "0"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aNI" = (
-/obj/machinery/computer/slot_machine,
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/status_display{
- density = 0;
- layer = 3;
- pixel_x = 32;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aNJ" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aNK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/mob/living/simple_animal/hostile/retaliate/goat{
- name = "Pete"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aNL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/hydroponics)
-"aNM" = (
-/obj/structure/kitchenspike,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aNN" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Hydroponics";
- req_access_txt = "35"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aNO" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/structure/closet/chefcloset,
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aNP" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/wood,
-/area/library)
-"aNQ" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/hydroponics)
-"aNR" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/carpet,
-/area/hallway/secondary/entry)
-"aNS" = (
-/obj/machinery/bookbinder{
- pixel_y = 0
- },
-/turf/open/floor/wood,
-/area/library)
-"aNT" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aNU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Port Hallway";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aNV" = (
-/obj/machinery/photocopier,
-/turf/open/floor/wood,
-/area/library)
-"aNW" = (
-/obj/machinery/door/airlock/glass{
- name = "Chapel Office";
- req_access_txt = "22"
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"aNX" = (
-/obj/item/device/radio/intercom{
- broadcasting = 1;
- frequency = 1480;
- name = "Confessional Intercom";
- pixel_x = 25
- },
-/obj/structure/chair,
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aNY" = (
-/obj/machinery/door/morgue{
- name = "Confession Booth (Chaplain)";
- req_access_txt = "22"
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aNZ" = (
-/obj/structure/chair,
-/turf/open/floor/plasteel/red/side{
- dir = 9
- },
-/area/hallway/secondary/exit)
-"aOa" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/chair,
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/hallway/secondary/exit)
-"aOb" = (
-/obj/structure/chair,
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/hallway/secondary/exit)
-"aOc" = (
-/obj/structure/chair,
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"aOd" = (
-/obj/structure/chair,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"aOe" = (
-/obj/item/device/radio/beacon,
-/obj/machinery/camera{
- c_tag = "Arrivals Bay 1 South"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aOf" = (
-/obj/machinery/vending/snack/random,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aOg" = (
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aOh" = (
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aOi" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aOj" = (
-/obj/structure/table/wood,
-/obj/item/weapon/storage/fancy/cigarettes{
- pixel_y = 2
- },
-/obj/item/weapon/lighter/greyscale{
- pixel_x = 4;
- pixel_y = 2
- },
-/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry)
-"aOk" = (
-/obj/machinery/vending/cola/random,
-/turf/open/floor/plasteel/black,
-/area/hallway/secondary/entry)
-"aOl" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aOm" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aOn" = (
-/obj/machinery/light,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aOo" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aOp" = (
-/obj/machinery/camera{
- c_tag = "Port Hallway 3";
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aOq" = (
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j1";
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aOr" = (
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j2";
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aOs" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aOt" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/light,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aOu" = (
-/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/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aOv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aOw" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/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/manifold/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aOx" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aOy" = (
-/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"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aOz" = (
-/obj/structure/sign/directions/security{
- dir = 4;
- icon_state = "direction_sec";
- pixel_x = 32;
- pixel_y = -24
- },
-/obj/structure/sign/directions/evac{
- dir = 4;
- icon_state = "direction_evac";
- pixel_x = 32;
- pixel_y = -32
- },
-/obj/structure/sign/directions/engineering{
- pixel_x = 32;
- pixel_y = -40
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aOA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aOB" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Central Access"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aOC" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aOD" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=QM";
- location = "CHW"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aOE" = (
-/turf/open/floor/plasteel/blue/corner{
- dir = 8
- },
-/area/hallway/primary/central)
-"aOF" = (
-/obj/machinery/light,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = -32
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/blue/corner{
- dir = 8
- },
-/area/hallway/primary/central)
-"aOG" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = -32
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/light,
-/turf/open/floor/plasteel/blue/corner{
- dir = 8
- },
-/area/hallway/primary/central)
-"aOH" = (
-/obj/structure/window/reinforced,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aOI" = (
-/obj/structure/kitchenspike,
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aOJ" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aOK" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/crew_quarters/bar)
-"aOL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aOM" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aON" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aOO" = (
-/obj/machinery/door/airlock{
- name = "Bar Storage";
- req_access_txt = "25"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel{
- icon_state = "wood"
- },
-/area/crew_quarters/bar)
-"aOP" = (
-/obj/effect/landmark/blobstart,
-/obj/item/toy/beach_ball/holoball,
-/turf/open/floor/plating,
-/area/crew_quarters/bar)
-"aOQ" = (
-/obj/machinery/requests_console{
- department = "Hydroponics";
- departmentType = 2;
- pixel_x = 0;
- pixel_y = 30
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/hydroponics)
-"aOR" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/hydroponics)
-"aOS" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/carpet,
-/area/library)
-"aOT" = (
-/obj/machinery/gibber,
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aOU" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"aOV" = (
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/turf/open/floor/plasteel/black,
-/area/hydroponics)
-"aOW" = (
-/obj/machinery/hydroponics/constructable,
-/obj/machinery/camera{
- c_tag = "Hydroponics North";
- dir = 2
- },
-/turf/open/floor/plasteel/black,
-/area/hydroponics)
-"aOX" = (
-/obj/machinery/hydroponics/constructable,
-/turf/open/floor/plasteel/black,
-/area/hydroponics)
-"aOY" = (
-/obj/structure/chair/comfy/beige{
- dir = 1;
- icon_state = "comfychair"
- },
-/obj/effect/landmark/start/assistant,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry)
-"aOZ" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/hydroponics)
-"aPa" = (
-/obj/structure/chair/comfy/beige{
- dir = 1;
- icon_state = "comfychair"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry)
-"aPb" = (
-/obj/structure/bookcase/random/religion,
-/turf/open/floor/wood,
-/area/library)
-"aPc" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aPd" = (
-/obj/structure/bookcase/random/reference,
-/turf/open/floor/wood,
-/area/library)
-"aPe" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aPf" = (
-/obj/machinery/computer/libraryconsole,
-/obj/structure/table/wood,
-/turf/open/floor/wood,
-/area/library)
-"aPg" = (
-/obj/structure/bookcase{
- name = "Forbidden Knowledge"
- },
-/turf/open/floor/engine/cult,
-/area/library)
-"aPh" = (
-/obj/structure/table/wood,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen/invisible,
-/turf/open/floor/engine/cult,
-/area/library)
-"aPi" = (
-/obj/structure/table/wood,
-/obj/item/device/taperecorder{
- pixel_y = 0
- },
-/obj/item/device/camera,
-/obj/item/device/radio/intercom{
- pixel_y = 25
- },
-/turf/open/floor/engine/cult,
-/area/library)
-"aPj" = (
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aPk" = (
-/turf/open/floor/plasteel/chapel{
- dir = 4
- },
-/area/chapel/main)
-"aPl" = (
-/turf/open/floor/plasteel/chapel{
- dir = 1
- },
-/area/chapel/main)
-"aPm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/chapel{
- dir = 4
- },
-/area/chapel/main)
-"aPn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/chapel{
- dir = 1
- },
-/area/chapel/main)
-"aPo" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/tinted/fulltile,
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aPp" = (
-/obj/machinery/camera{
- c_tag = "Escape Arm Holding Area";
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 8;
- name = "Station Intercom (General)";
- pixel_x = -28
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/hallway/secondary/exit)
-"aPq" = (
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"aPr" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"aPs" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"aPt" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aPu" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aPv" = (
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- name = "Station Intercom (General)";
- pixel_y = 20
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aPw" = (
-/obj/machinery/disposal/bin,
-/obj/structure/sign/securearea{
- desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'";
- icon_state = "monkey_painting";
- name = "Mr. Deempisi portrait";
- pixel_x = -28;
- pixel_y = -4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/button/door{
- id = "barShutters";
- name = "bar shutters";
- pixel_x = 4;
- pixel_y = 28
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aPx" = (
-/obj/structure/chair/comfy/beige{
- dir = 1;
- icon_state = "comfychair"
- },
-/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry)
-"aPy" = (
-/obj/machinery/vending/snack/random,
-/turf/open/floor/plasteel/black,
-/area/hallway/secondary/entry)
-"aPz" = (
-/turf/closed/wall,
-/area/maintenance/port)
-"aPA" = (
-/turf/closed/wall,
-/area/crew_quarters/locker)
-"aPB" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aPC" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aPD" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aPE" = (
-/obj/machinery/status_display{
- density = 0;
- layer = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/locker)
-"aPF" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/storage/art)
-"aPG" = (
-/turf/closed/wall,
-/area/storage/art)
-"aPH" = (
-/obj/machinery/door/airlock/glass{
- name = "Art Storage"
- },
-/turf/open/floor/plasteel,
-/area/storage/art)
-"aPI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aPJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/storage/art)
-"aPK" = (
-/turf/closed/wall,
-/area/storage/emergency2)
-"aPL" = (
-/obj/structure/table,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aPM" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aPN" = (
-/obj/structure/table,
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aPO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aPP" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/obj/structure/table,
-/obj/machinery/chem_dispenser/drinks/beer,
-/obj/item/device/radio/intercom{
- pixel_y = 25
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aPQ" = (
-/turf/closed/wall,
-/area/storage/tools)
-"aPR" = (
-/turf/closed/wall/r_wall,
-/area/bridge)
-"aPS" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/poddoor/preopen{
- id = "bridge blast";
- layer = 2.9;
- name = "bridge blast door"
- },
-/turf/open/floor/plating,
-/area/bridge)
-"aPT" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/door/poddoor/preopen{
- id = "bridge blast";
- layer = 2.9;
- name = "bridge blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/bridge)
-"aPU" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/status_display{
- density = 0;
- layer = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/poddoor/preopen{
- id = "bridge blast";
- layer = 2.9;
- name = "bridge blast door"
- },
-/turf/open/floor/plating,
-/area/bridge)
-"aPV" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/poddoor/preopen{
- id = "bridge blast";
- layer = 2.9;
- name = "bridge blast door"
- },
-/turf/open/floor/plating,
-/area/bridge)
-"aPW" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/status_display{
- density = 0;
- layer = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/poddoor/preopen{
- id = "bridge blast";
- layer = 2.9;
- name = "bridge blast door"
- },
-/turf/open/floor/plating,
-/area/bridge)
-"aPX" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/poddoor/preopen{
- id = "bridge blast";
- layer = 2.9;
- name = "bridge blast door"
- },
-/turf/open/floor/plating,
-/area/bridge)
-"aPY" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aPZ" = (
-/obj/structure/table,
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = -31
- },
-/obj/item/clothing/head/hardhat/cakehat,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aQa" = (
-/obj/structure/table,
-/obj/item/weapon/kitchen/fork,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aQb" = (
-/obj/structure/window/reinforced,
-/obj/structure/table/wood,
-/obj/item/device/instrument/violin,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aQc" = (
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aQd" = (
-/obj/structure/chair,
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aQe" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aQf" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/green/side{
- dir = 9
- },
-/area/hydroponics)
-"aQg" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/obj/machinery/door/poddoor/preopen{
- id = "barShutters";
- name = "privacy shutters"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/bar)
-"aQh" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/green/side{
- dir = 5
- },
-/area/hydroponics)
-"aQi" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aQj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/crew_quarters/kitchen)
-"aQk" = (
-/obj/machinery/door/airlock{
- name = "Kitchen cold room";
- req_access_txt = "28"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aQl" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"aQm" = (
-/turf/open/floor/plasteel/green/side{
- dir = 1
- },
-/area/hydroponics)
-"aQn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"aQo" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"aQp" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/library)
-"aQq" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/library)
-"aQr" = (
-/obj/structure/closet/crate,
-/obj/item/clothing/shoes/workboots/mining,
-/obj/item/clothing/under/rank/curator/treasure_hunter,
-/obj/item/clothing/suit/curator,
-/obj/item/clothing/head/curator,
-/obj/item/weapon/storage/backpack/satchel/explorer,
-/obj/machinery/light/small,
-/turf/open/floor/engine/cult,
-/area/library)
-"aQs" = (
-/obj/structure/destructible/cult/tome,
-/obj/item/clothing/under/suit_jacket/red,
-/obj/item/weapon/book/codex_gigas,
-/turf/open/floor/engine/cult,
-/area/library)
-"aQt" = (
-/obj/effect/landmark/blobstart,
-/obj/structure/chair/comfy/brown{
- dir = 1
- },
-/turf/open/floor/engine/cult,
-/area/library)
-"aQu" = (
-/turf/open/floor/plasteel/chapel,
-/area/chapel/main)
-"aQv" = (
-/turf/open/floor/plasteel/chapel{
- dir = 8
- },
-/area/chapel/main)
-"aQw" = (
-/obj/structure/table/wood,
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aQx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/chapel,
-/area/chapel/main)
-"aQy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/chapel{
- dir = 8
- },
-/area/chapel/main)
-"aQz" = (
-/obj/item/device/radio/intercom{
- broadcasting = 1;
- frequency = 1480;
- name = "Confessional Intercom";
- pixel_x = 25
- },
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aQA" = (
-/obj/machinery/door/morgue{
- name = "Confession Booth"
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aQB" = (
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/hallway/secondary/exit)
-"aQC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"aQD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"aQE" = (
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"aQF" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- name = "Security Escape Airlock";
- req_access_txt = "2"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"aQG" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 32
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aQH" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aQI" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/neutral/corner{
- dir = 4
- },
-/area/hallway/secondary/entry)
-"aQJ" = (
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"aQK" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/neutral/corner{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"aQL" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aQM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aQN" = (
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aQO" = (
-/obj/structure/closet/wardrobe/white,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aQP" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aQQ" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aQR" = (
-/obj/machinery/vending/cola/random,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aQS" = (
-/obj/machinery/vending/coffee,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aQT" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aQU" = (
-/obj/machinery/vending/cigarette,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aQV" = (
-/obj/machinery/vending/clothing,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aQW" = (
-/obj/structure/closet/secure_closet/personal,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aQX" = (
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aQY" = (
-/obj/structure/table,
-/obj/item/stack/cable_coil/random,
-/obj/item/stack/cable_coil/random,
-/turf/open/floor/plasteel,
-/area/storage/art)
-"aQZ" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/light_switch{
- pixel_x = 27
- },
-/turf/open/floor/plasteel,
-/area/storage/art)
-"aRa" = (
-/turf/open/floor/plasteel,
-/area/storage/art)
-"aRb" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aRc" = (
-/obj/machinery/door/airlock{
- name = "Port Emergency Storage";
- req_access_txt = "0"
- },
-/turf/open/floor/plating,
-/area/storage/emergency2)
-"aRd" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"aRe" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/storage/tools)
-"aRf" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Auxiliary Tool Storage";
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aRg" = (
-/obj/machinery/vending/boozeomat,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aRh" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aRi" = (
-/obj/machinery/computer/atmos_alert,
-/turf/open/floor/plasteel/yellow/side{
- dir = 10
- },
-/area/bridge)
-"aRj" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/storage/secure/briefcase,
-/obj/item/weapon/storage/box/PDAs{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/weapon/storage/box/ids,
-/turf/open/floor/plasteel,
-/area/bridge)
-"aRk" = (
-/obj/machinery/computer/monitor{
- name = "bridge power monitoring console"
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 6
- },
-/area/bridge)
-"aRl" = (
-/obj/machinery/computer/station_alert,
-/turf/open/floor/plasteel/yellow/side,
-/area/bridge)
-"aRm" = (
-/obj/machinery/computer/communications,
-/turf/open/floor/plasteel/blue/side{
- dir = 0
- },
-/area/bridge)
-"aRn" = (
-/obj/machinery/computer/shuttle/labor,
-/turf/open/floor/plasteel/blue/side{
- dir = 10
- },
-/area/bridge)
-"aRo" = (
-/obj/machinery/modular_computer/console/preset/command,
-/turf/open/floor/plasteel/green/side{
- dir = 10
- },
-/area/bridge)
-"aRp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/computer/shuttle/mining,
-/turf/open/floor/plasteel/blue/side{
- dir = 6
- },
-/area/bridge)
-"aRq" = (
-/obj/machinery/computer/med_data,
-/turf/open/floor/plasteel/green/side{
- dir = 6
- },
-/area/bridge)
-"aRr" = (
-/obj/machinery/computer/crew,
-/turf/open/floor/plasteel/green/side{
- dir = 2
- },
-/area/bridge)
-"aRs" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/storage/toolbox/emergency,
-/obj/item/weapon/wrench,
-/obj/item/device/assembly/timer,
-/obj/item/device/assembly/signaler,
-/obj/item/device/assembly/signaler,
-/turf/open/floor/plasteel,
-/area/bridge)
-"aRt" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aRu" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aRv" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aRw" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aRx" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aRy" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -5;
- pixel_y = 30
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aRz" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aRA" = (
-/obj/machinery/vending/dinnerware,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aRB" = (
-/obj/item/device/radio/intercom{
- pixel_y = 25
- },
-/obj/machinery/camera{
- c_tag = "Kitchen";
- dir = 2
- },
-/obj/structure/closet/secure_closet/freezer/fridge,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aRC" = (
-/obj/structure/sink/kitchen{
- pixel_y = 28
- },
-/obj/machinery/food_cart,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aRD" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aRE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/hydroponics)
-"aRF" = (
-/obj/structure/table,
-/obj/machinery/microwave{
- pixel_x = -3;
- pixel_y = 6
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aRG" = (
-/obj/structure/table,
-/obj/machinery/microwave{
- pixel_x = -3;
- pixel_y = 6
- },
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aRH" = (
-/obj/structure/closet/secure_closet/freezer/kitchen,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aRI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/hydroponics)
-"aRJ" = (
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aRK" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "Library APC";
- pixel_x = 24
- },
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/library)
-"aRL" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Holding Area";
- req_access_txt = "2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"aRM" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aRN" = (
-/obj/structure/bookcase/random/fiction,
-/turf/open/floor/wood,
-/area/library)
-"aRO" = (
-/obj/structure/displaycase/trophy,
-/turf/open/floor/wood,
-/area/library)
-"aRP" = (
-/obj/machinery/camera{
- c_tag = "Library South";
- dir = 8;
- network = list("SS13")
- },
-/turf/open/floor/wood,
-/area/library)
-"aRQ" = (
-/obj/machinery/door/morgue{
- name = "Private Study";
- req_access_txt = "37"
- },
-/turf/open/floor/engine/cult,
-/area/library)
-"aRR" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aRS" = (
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aRT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/rack,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/item/weapon/electronics/apc,
-/obj/item/weapon/electronics/airlock,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aRU" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"aRV" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Auxiliary Tool Storage APC";
- pixel_y = 24
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/table,
-/obj/item/stack/sheet/glass{
- amount = 50
- },
-/obj/item/stack/rods{
- amount = 50
- },
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aRW" = (
-/obj/structure/grille,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"aRX" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/arrival{
- dir = 2
- },
-/area/hallway/secondary/entry)
-"aRY" = (
-/turf/open/floor/plasteel/arrival{
- dir = 2
- },
-/area/hallway/secondary/entry)
-"aRZ" = (
-/turf/open/floor/plasteel/white/corner{
- dir = 8
- },
-/area/hallway/secondary/entry)
-"aSa" = (
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/obj/machinery/camera{
- c_tag = "Auxiliary Tool Storage";
- dir = 2
- },
-/obj/structure/table,
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/weapon/storage/box/lights/mixed,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aSb" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aSc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aSd" = (
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = -24
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aSe" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aSf" = (
-/obj/machinery/camera{
- c_tag = "Arrivals Hallway";
- dir = 8;
- network = list("SS13")
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aSg" = (
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aSh" = (
-/obj/structure/closet/wardrobe/mixed,
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_x = -27
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aSi" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aSj" = (
-/obj/effect/landmark/lightsout,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aSk" = (
-/obj/structure/table,
-/obj/item/stack/cable_coil/random,
-/obj/item/stack/cable_coil/random,
-/obj/item/stack/cable_coil,
-/obj/item/weapon/paper_bin/construction,
-/obj/item/stack/cable_coil,
-/turf/open/floor/plasteel,
-/area/storage/art)
-"aSl" = (
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/obj/item/weapon/storage/box/lights/mixed,
-/turf/open/floor/plating,
-/area/storage/emergency2)
-"aSm" = (
-/turf/open/floor/plating,
-/area/storage/emergency2)
-"aSn" = (
-/obj/item/weapon/extinguisher,
-/turf/open/floor/plating,
-/area/storage/emergency2)
-"aSo" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aSp" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aSq" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aSr" = (
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aSs" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/storage/tools)
-"aSt" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aSu" = (
-/turf/open/floor/plasteel/yellow/corner{
- dir = 1
- },
-/area/bridge)
-"aSv" = (
-/obj/structure/table/reinforced,
-/obj/item/device/assembly/flash/handheld,
-/obj/item/device/assembly/flash/handheld,
-/turf/open/floor/plasteel,
-/area/bridge)
-"aSw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/yellow/corner{
- dir = 4
- },
-/area/bridge)
-"aSx" = (
-/obj/structure/chair{
- dir = 1;
- name = "Engineering Station"
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aSy" = (
-/obj/structure/chair{
- dir = 1;
- name = "Command Station"
- },
-/obj/machinery/button/door{
- id = "bridge blast";
- name = "Bridge Blast Door Control";
- pixel_x = 28;
- pixel_y = -2;
- req_access_txt = "19"
- },
-/obj/machinery/keycard_auth{
- pixel_x = 29;
- pixel_y = 8
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aSz" = (
-/obj/structure/table/reinforced,
-/obj/item/device/aicard,
-/obj/item/device/multitool,
-/turf/open/floor/plasteel/blue/side{
- dir = 8
- },
-/area/bridge)
-"aSA" = (
-/turf/open/floor/plasteel/green/corner{
- dir = 1
- },
-/area/bridge)
-"aSB" = (
-/obj/structure/table/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/blue/side{
- dir = 4
- },
-/area/bridge)
-"aSC" = (
-/turf/open/floor/plasteel/green/corner{
- dir = 4
- },
-/area/bridge)
-"aSD" = (
-/obj/structure/chair{
- dir = 1;
- name = "Crew Station"
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aSE" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/storage/fancy/donut_box,
-/turf/open/floor/plasteel,
-/area/bridge)
-"aSF" = (
-/mob/living/carbon/monkey/punpun,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aSG" = (
-/obj/structure/table/wood/poker,
-/obj/item/toy/cards/deck,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aSH" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aSI" = (
-/obj/machinery/door/airlock/glass{
- name = "Kitchen";
- req_access_txt = "28"
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/kitchen)
-"aSJ" = (
-/obj/effect/landmark/start/cook,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aSK" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aSL" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aSM" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aSN" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aSO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aSP" = (
-/obj/machinery/smartfridge,
-/turf/closed/wall,
-/area/crew_quarters/kitchen)
-"aSQ" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/hydroponics)
-"aSR" = (
-/turf/open/floor/plasteel/black,
-/area/hydroponics)
-"aSS" = (
-/obj/machinery/seed_extractor,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aST" = (
-/obj/machinery/biogenerator,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aSU" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/hydroponics)
-"aSV" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aSW" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aSX" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aSY" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/head/that{
- throwforce = 1
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aSZ" = (
-/obj/effect/landmark/start/bartender,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aTa" = (
-/obj/machinery/requests_console{
- department = "Bar";
- departmentType = 2;
- pixel_x = 30;
- pixel_y = 0;
- receive_ore_updates = 1
- },
-/obj/machinery/camera{
- c_tag = "Bar";
- dir = 8;
- network = list("SS13")
- },
-/obj/structure/table,
-/obj/machinery/chem_dispenser/drinks,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aTb" = (
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/turf/open/floor/wood,
-/area/library)
-"aTc" = (
-/obj/machinery/door/window/northright{
- base_state = "right";
- dir = 8;
- icon_state = "right";
- name = "Library Desk Door";
- req_access_txt = "37"
- },
-/turf/open/floor/wood,
-/area/library)
-"aTd" = (
-/obj/structure/table/wood,
-/obj/machinery/computer/libraryconsole/bookmanagement{
- pixel_y = 0
- },
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/turf/open/floor/wood,
-/area/library)
-"aTe" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aTf" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/chapel,
-/area/chapel/main)
-"aTg" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/chapel{
- dir = 8
- },
-/area/chapel/main)
-"aTh" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/chapel,
-/area/chapel/main)
-"aTi" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel/chapel{
- dir = 8
- },
-/area/chapel/main)
-"aTj" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aTk" = (
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/hallway/secondary/exit)
-"aTl" = (
-/obj/machinery/vending/cola/random,
-/obj/machinery/status_display{
- layer = 4;
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/open/floor/plasteel/escape{
- dir = 9
- },
-/area/hallway/secondary/exit)
-"aTm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"aTn" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- name = "Escape Airlock"
- },
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"aTo" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- name = "Escape Airlock"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"aTq" = (
-/turf/closed/wall,
-/area/security/vacantoffice{
- name = "Vacant Office A"
- })
-"aTr" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/status_display{
- density = 0;
- layer = 3;
- pixel_x = 32;
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aTs" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/security/vacantoffice)
-"aTt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/security/vacantoffice)
-"aTu" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aTv" = (
-/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/open/floor/plating,
-/area/maintenance/port)
-"aTw" = (
-/obj/structure/closet/wardrobe/green,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aTx" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aTy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aTz" = (
-/obj/structure/table,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aTA" = (
-/obj/structure/table,
-/obj/item/weapon/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aTB" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aTC" = (
-/obj/structure/table,
-/obj/item/weapon/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -1
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aTD" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/machinery/camera{
- c_tag = "Locker Room East";
- dir = 8;
- network = list("SS13")
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aTE" = (
-/obj/structure/table,
-/obj/item/weapon/hand_labeler,
-/turf/open/floor/plasteel,
-/area/storage/art)
-"aTF" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/structure/table,
-/obj/item/device/camera_film,
-/obj/item/device/camera,
-/turf/open/floor/plasteel,
-/area/storage/art)
-"aTG" = (
-/obj/structure/table,
-/obj/item/weapon/storage/crayons,
-/obj/item/weapon/storage/crayons,
-/turf/open/floor/plasteel,
-/area/storage/art)
-"aTH" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/plating,
-/area/storage/emergency2)
-"aTI" = (
-/obj/machinery/space_heater,
-/turf/open/floor/plating,
-/area/storage/emergency2)
-"aTJ" = (
-/obj/machinery/light/small,
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plating,
-/area/storage/emergency2)
-"aTK" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/tank/internals/emergency_oxygen,
-/obj/item/weapon/tank/internals/emergency_oxygen,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/turf/open/floor/plating,
-/area/storage/emergency2)
-"aTL" = (
-/obj/structure/table,
-/obj/item/weapon/storage/toolbox/emergency,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aTM" = (
-/obj/structure/table,
-/obj/item/weapon/reagent_containers/food/snacks/mint,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aTN" = (
-/obj/structure/table,
-/obj/item/weapon/kitchen/rollingpin,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aTO" = (
-/obj/structure/table,
-/obj/item/weapon/book/manual/chef_recipes,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aTP" = (
-/obj/structure/rack,
-/obj/item/clothing/gloves/color/fyellow,
-/obj/item/clothing/suit/hazardvest,
-/obj/item/device/multitool,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aTQ" = (
-/turf/closed/wall,
-/area/bridge)
-"aTR" = (
-/obj/machinery/computer/prisoner,
-/turf/open/floor/plasteel/red/side{
- dir = 10
- },
-/area/bridge)
-"aTS" = (
-/obj/machinery/computer/secure_data,
-/turf/open/floor/plasteel/red/side{
- dir = 6
- },
-/area/bridge)
-"aTT" = (
-/obj/machinery/computer/security,
-/turf/open/floor/plasteel/red/side,
-/area/bridge)
-"aTU" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aTV" = (
-/obj/structure/table/reinforced,
-/obj/machinery/recharger,
-/turf/open/floor/plasteel,
-/area/bridge)
-"aTW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aTX" = (
-/turf/open/floor/plasteel,
-/area/bridge)
-"aTY" = (
-/turf/open/floor/plasteel/blue/corner{
- dir = 1
- },
-/area/bridge)
-"aTZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/blue/corner{
- dir = 4
- },
-/area/bridge)
-"aUa" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aUb" = (
-/obj/machinery/computer/teleporter,
-/turf/open/floor/plasteel/brown{
- dir = 10
- },
-/area/bridge)
-"aUc" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/storage/firstaid/regular,
-/turf/open/floor/plasteel,
-/area/bridge)
-"aUd" = (
-/obj/machinery/computer/security/mining{
- network = list("MINE","AuxBase")
- },
-/turf/open/floor/plasteel/brown{
- dir = 6
- },
-/area/bridge)
-"aUe" = (
-/obj/machinery/computer/cargo/request,
-/turf/open/floor/plasteel/brown{
- dir = 2
- },
-/area/bridge)
-"aUf" = (
-/obj/machinery/airalarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/obj/machinery/camera{
- c_tag = "Bar West";
- dir = 4;
- network = list("SS13")
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aUg" = (
-/obj/structure/chair,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aUh" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/eastleft{
- name = "Hydroponics Desk";
- req_access_txt = "35"
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
- },
-/area/crew_quarters/kitchen)
-"aUi" = (
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/hydroponics)
-"aUj" = (
-/obj/machinery/vending/hydronutrients,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aUk" = (
-/obj/machinery/vending/hydroseeds{
- slogan_delay = 700
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aUl" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"aUm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"aUn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aUo" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aUp" = (
-/obj/structure/table,
-/obj/item/clothing/head/soft/grey{
- pixel_x = -2;
- pixel_y = 3
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aUq" = (
-/obj/structure/table,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aUr" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/obj/effect/landmark/start/assistant,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aUs" = (
-/obj/structure/table,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aUt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aUu" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aUv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aUw" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/machinery/light/small,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aUx" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aUy" = (
-/obj/machinery/camera{
- c_tag = "Vacant Office";
- dir = 4;
- network = list("SS13")
- },
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"aUz" = (
-/obj/machinery/hydroponics/constructable,
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/open/floor/plasteel/black,
-/area/hydroponics)
-"aUA" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp,
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"aUB" = (
-/obj/structure/bookcase/random/adult,
-/turf/open/floor/wood,
-/area/library)
-"aUC" = (
-/obj/structure/chair/comfy/black,
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/wood,
-/area/library)
-"aUD" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp/green{
- pixel_x = 1;
- pixel_y = 5
- },
-/turf/open/floor/wood,
-/area/library)
-"aUE" = (
-/obj/machinery/libraryscanner,
-/turf/open/floor/wood,
-/area/library)
-"aUF" = (
-/obj/effect/landmark/start/librarian,
-/obj/structure/chair/office/dark,
-/turf/open/floor/wood,
-/area/library)
-"aUG" = (
-/obj/machinery/airalarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aUH" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel/chapel{
- dir = 4
- },
-/area/chapel/main)
-"aUI" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/chapel{
- dir = 1
- },
-/area/chapel/main)
-"aUJ" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/chapel{
- dir = 4
- },
-/area/chapel/main)
-"aUK" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/chapel{
- dir = 1
- },
-/area/chapel/main)
-"aUL" = (
-/obj/machinery/computer/arcade,
-/turf/open/floor/plasteel/escape{
- dir = 8
- },
-/area/hallway/secondary/exit)
-"aUM" = (
-/obj/machinery/camera{
- c_tag = "Arrivals Bay 2";
- dir = 8;
- network = list("SS13")
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aUN" = (
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"aUO" = (
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"aUP" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- pixel_y = 23
- },
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"aUQ" = (
-/obj/structure/table/wood,
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"aUR" = (
-/obj/structure/table/wood,
-/obj/item/weapon/pen/red,
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"aUS" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aUT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aUU" = (
-/obj/structure/closet/wardrobe/grey,
-/obj/machinery/requests_console{
- department = "Locker Room";
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aUV" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aUW" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp/green,
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"aUX" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aUY" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aUZ" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aVa" = (
-/obj/machinery/airalarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/obj/structure/closet/toolcloset,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aVb" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 32
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/blue/side{
- dir = 5
- },
-/area/hallway/primary/central)
-"aVc" = (
-/obj/structure/sign/securearea{
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/preopen{
- id = "bridge blast";
- name = "bridge blast door"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
- },
-/area/bridge)
-"aVd" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/bridge)
-"aVe" = (
-/obj/machinery/camera{
- c_tag = "Bridge West";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/bridge)
-"aVf" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 4
- },
-/area/bridge)
-"aVg" = (
-/obj/structure/chair{
- dir = 1;
- name = "Security Station"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aVh" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Fore Primary Hallway APC";
- pixel_x = -24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/camera{
- c_tag = "Fore Primary Hallway";
- dir = 4;
- network = list("SS13")
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/hallway/primary/fore)
-"aVi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aVj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aVk" = (
-/obj/machinery/holopad,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aVl" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aVm" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aVn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aVo" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aVp" = (
-/obj/item/device/radio/beacon,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aVq" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 1
- },
-/area/bridge)
-"aVr" = (
-/obj/machinery/camera{
- c_tag = "Bridge East";
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 4
- },
-/area/bridge)
-"aVs" = (
-/obj/structure/chair{
- dir = 1;
- name = "Logistics Station"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aVt" = (
-/obj/structure/sign/securearea{
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/preopen{
- id = "bridge blast";
- name = "bridge blast door"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
- },
-/area/bridge)
-"aVu" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 32
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/blue/side{
- dir = 9
- },
-/area/hallway/primary/central)
-"aVv" = (
-/obj/machinery/camera{
- c_tag = "Bridge East Entrance";
- dir = 2
- },
-/turf/open/floor/plasteel/blue/side{
- dir = 1
- },
-/area/hallway/primary/central)
-"aVw" = (
-/obj/structure/table/wood/poker,
-/obj/item/clothing/mask/cigarette/cigar,
-/obj/item/toy/cards/deck,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aVx" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aVy" = (
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aVz" = (
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aVA" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/item/weapon/reagent_containers/food/snacks/pie/cream,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aVB" = (
-/obj/structure/table,
-/obj/item/weapon/reagent_containers/food/condiment/enzyme{
- layer = 5
- },
-/obj/item/stack/packageWrap,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aVC" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aVD" = (
-/obj/structure/table,
-/obj/item/weapon/reagent_containers/food/condiment/saltshaker{
- pixel_x = -3;
- pixel_y = 0
- },
-/obj/item/weapon/reagent_containers/food/condiment/peppermill{
- pixel_x = 3
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aVE" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/donkpockets{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/reagent_containers/glass/beaker{
- pixel_x = 5
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aVF" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aVG" = (
-/obj/structure/table,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aVH" = (
-/obj/machinery/processor,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aVI" = (
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/hydroponics)
-"aVJ" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/hydroponics/constructable,
-/turf/open/floor/plasteel/black,
-/area/hydroponics)
-"aVK" = (
-/obj/effect/landmark/start/botanist,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aVL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 2;
- icon_state = "pipe-j2s";
- sortType = 16
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"aVM" = (
-/obj/machinery/hydroponics/constructable,
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/hydroponics)
-"aVN" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"aVO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/airalarm{
- pixel_y = 25
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"aVP" = (
-/obj/structure/table/wood,
-/obj/item/weapon/paper,
-/turf/open/floor/wood,
-/area/library)
-"aVQ" = (
-/obj/structure/chair/comfy/black{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/library)
-"aVR" = (
-/obj/structure/table/wood,
-/obj/item/weapon/pen/red,
-/obj/item/weapon/pen/blue{
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/wood,
-/area/library)
-"aVS" = (
-/obj/structure/table/wood,
-/obj/item/device/camera_film,
-/obj/item/device/camera_film,
-/turf/open/floor/wood,
-/area/library)
-"aVT" = (
-/obj/structure/table/wood,
-/obj/item/weapon/paper_bin{
- pixel_x = 1;
- pixel_y = 9
- },
-/turf/open/floor/wood,
-/area/library)
-"aVU" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/chapel{
- dir = 8
- },
-/area/chapel/main)
-"aVV" = (
-/obj/machinery/camera{
- c_tag = "Chapel South";
- dir = 8;
- network = list("SS13")
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aVW" = (
-/obj/item/device/radio/intercom{
- pixel_x = -25
- },
-/turf/open/floor/plasteel/escape{
- dir = 8
- },
-/area/hallway/secondary/exit)
-"aVX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"aVY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/library)
-"aVZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Library"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/library)
-"aWa" = (
-/obj/structure/grille,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"aWb" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/library)
-"aWc" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aWd" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/carpet,
-/area/library)
-"aWe" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Chapel"
- },
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aWf" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"aWg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aWh" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"aWi" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"aWj" = (
-/obj/structure/grille,
-/obj/structure/window{
- icon_state = "window";
- dir = 8
- },
-/obj/structure/window,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aWk" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aWl" = (
-/obj/structure/grille,
-/obj/structure/window{
- icon_state = "window";
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aWm" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_x = -28;
- pixel_y = 0
- },
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"aWn" = (
-/obj/structure/closet/wardrobe/black,
-/obj/item/clothing/shoes/jackboots,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aWo" = (
-/obj/machinery/camera{
- c_tag = "Locker Room West";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aWp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aWq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aWr" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/carpet,
-/area/security/vacantoffice)
-"aWs" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/carpet,
-/area/security/vacantoffice)
-"aWt" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"aWu" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aWv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aWw" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Art Storage";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plating,
-/area/storage/art)
-"aWx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/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/open/floor/plating,
-/area/maintenance/port)
-"aWy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/crew_quarters/locker/locker_toilet)
-"aWz" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Port Emergency Storage APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plating,
-/area/storage/emergency2)
-"aWA" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aWB" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aWC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/port)
-"aWD" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aWE" = (
-/obj/machinery/computer/med_data,
-/obj/machinery/newscaster{
- pixel_x = 0;
- pixel_y = 32
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"aWF" = (
-/obj/structure/closet/toolcloset,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aWG" = (
-/obj/machinery/computer/secure_data,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"aWH" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/blue/side{
- dir = 4
- },
-/area/hallway/primary/central)
-"aWI" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/preopen{
- id = "bridge blast";
- name = "bridge blast door"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
- },
-/area/bridge)
-"aWJ" = (
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/door/airlock/glass_command{
- cyclelinkeddir = 4;
- name = "Bridge";
- req_access_txt = "19"
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aWK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/bridge)
-"aWL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/glass_command{
- cyclelinkeddir = 8;
- name = "Bridge";
- req_access_txt = "19"
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aWM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aWN" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aWO" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 5;
- pixel_y = -32
- },
-/obj/machinery/light,
-/obj/machinery/light_switch{
- pixel_x = -6;
- pixel_y = -22
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/blue/side{
- dir = 0
- },
-/area/bridge)
-"aWP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/blue/corner,
-/area/bridge)
-"aWQ" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/blue/side{
- dir = 0
- },
-/area/bridge)
-"aWR" = (
-/obj/structure/fireaxecabinet{
- pixel_y = -32
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/blue/side{
- dir = 0
- },
-/area/bridge)
-"aWS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/blue/side{
- dir = 0
- },
-/area/bridge)
-"aWT" = (
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Bridge";
- departmentType = 5;
- name = "Bridge RC";
- pixel_y = -30
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/blue/side{
- dir = 0
- },
-/area/bridge)
-"aWU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/blue/side{
- dir = 0
- },
-/area/bridge)
-"aWV" = (
-/obj/machinery/turretid{
- control_area = "AI Upload Chamber";
- name = "AI Upload turret control";
- pixel_y = -25
- },
-/obj/machinery/camera{
- c_tag = "Bridge Center";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/blue/side{
- dir = 0
- },
-/area/bridge)
-"aWW" = (
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 2;
- name = "Bridge APC";
- pixel_y = -24
- },
-/obj/structure/cable,
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/blue/side{
- dir = 0
- },
-/area/bridge)
-"aWX" = (
-/obj/machinery/newscaster{
- pixel_y = -32
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/blue/side{
- dir = 0
- },
-/area/bridge)
-"aWY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/blue/corner{
- dir = 8
- },
-/area/bridge)
-"aWZ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/bridge)
-"aXa" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/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/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aXb" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/poddoor/preopen{
- id = "bridge blast";
- name = "bridge blast door"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
- },
-/area/bridge)
-"aXc" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/glass_command{
- cyclelinkeddir = 4;
- name = "Bridge";
- req_access_txt = "19"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aXd" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/blue/side{
- dir = 8
- },
-/area/hallway/primary/central)
-"aXe" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/door/airlock/glass_command{
- cyclelinkeddir = 8;
- name = "Bridge";
- req_access_txt = "19"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aXf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aXg" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aXh" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aXi" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = -31
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aXj" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/lighter,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aXk" = (
-/obj/structure/table/reinforced,
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 32
- },
-/obj/item/weapon/book/manual/barman_recipes,
-/obj/item/weapon/reagent_containers/glass/rag,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aXl" = (
-/obj/machinery/door/window/southright{
- name = "Bar Door";
- req_access_txt = "0";
- req_one_access_txt = "25;28"
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aXm" = (
-/obj/effect/landmark/start/cook,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aXn" = (
-/obj/structure/table,
-/obj/machinery/reagentgrinder,
-/obj/machinery/requests_console{
- department = "Kitchen";
- departmentType = 2;
- pixel_x = 30;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aXo" = (
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/hydroponics)
-"aXp" = (
-/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"aXq" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"aXr" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aXs" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aXt" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aXu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/library)
-"aXv" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aXw" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aXx" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aXy" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Chapel"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aXz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aXA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aXB" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aXC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"aXD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/escape{
- dir = 8
- },
-/area/hallway/secondary/exit)
-"aXE" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/closed/wall,
-/area/maintenance/port)
-"aXF" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/crew_quarters/fitness)
-"aXG" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"aXI" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- id_tag = null;
- name = "Port Docking Bay 2";
- req_access_txt = "0"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"aXJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/maintenance/port)
-"aXK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/security/detectives_office)
-"aXL" = (
-/turf/open/floor/carpet,
-/area/security/vacantoffice)
-"aXM" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Cargo Bay Warehouse Maintenance";
- req_access_txt = "31"
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aXN" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"aXO" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aXP" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aXQ" = (
-/turf/closed/wall,
-/area/crew_quarters/locker/locker_toilet)
-"aXR" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"aXS" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/closed/wall,
-/area/hydroponics)
-"aXT" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Library"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/library)
-"aXU" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/carpet,
-/area/library)
-"aXV" = (
-/obj/machinery/holopad,
-/turf/open/floor/carpet,
-/area/library)
-"aXW" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aXX" = (
-/obj/machinery/door/airlock/engineering{
- name = "Vacant Office A";
- req_access_txt = "32"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"aXY" = (
-/obj/structure/chair/office/dark,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"aXZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/security/vacantoffice)
-"aYa" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Aft Port Maintenance APC";
- pixel_x = -27;
- pixel_y = 2
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aYb" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aYc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/port)
-"aYd" = (
-/obj/structure/chair/office/dark,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"aYe" = (
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"aYf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aYg" = (
-/obj/effect/landmark/xeno_spawn,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/construction)
-"aYh" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aYi" = (
-/obj/structure/closet/secure_closet/detective,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"aYj" = (
-/obj/structure/table/wood,
-/obj/item/device/taperecorder,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/button/door{
- id = "kanyewest";
- name = "Privacy Shutters";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"aYk" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/blue/side{
- dir = 0
- },
-/area/hallway/primary/central)
-"aYl" = (
-/turf/open/floor/plasteel/blue/corner,
-/area/hallway/primary/central)
-"aYm" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/blue/side{
- dir = 6
- },
-/area/hallway/primary/central)
-"aYn" = (
-/obj/machinery/camera{
- c_tag = "Bridge West Entrance";
- dir = 1
- },
-/turf/open/floor/plasteel/blue/side{
- dir = 0
- },
-/area/hallway/primary/central)
-"aYo" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/preopen{
- id = "bridge blast";
- name = "bridge blast door"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
- },
-/area/bridge)
-"aYp" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/bridge)
-"aYq" = (
-/obj/structure/closet/emcloset,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/blue/side{
- dir = 0
- },
-/area/bridge)
-"aYr" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -29
- },
-/turf/open/floor/plasteel/blue/side{
- dir = 0
- },
-/area/bridge)
-"aYs" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/blue/side{
- dir = 0
- },
-/area/bridge)
-"aYt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai_upload)
-"aYu" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen,
-/turf/open/floor/plasteel/blue/side{
- dir = 6
- },
-/area/bridge)
-"aYv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai_upload)
-"aYw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/highsecurity{
- icon_state = "door_closed";
- locked = 0;
- name = "AI Upload Access";
- req_access_txt = "16"
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai_upload)
-"aYx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai_upload)
-"aYy" = (
-/obj/machinery/ai_status_display,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai_upload)
-"aYz" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai_upload)
-"aYA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai_upload)
-"aYB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai_upload)
-"aYC" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/plasteel/blue/side{
- dir = 10
- },
-/area/bridge)
-"aYD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/blue/side{
- dir = 0
- },
-/area/bridge)
-"aYE" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/blue/side{
- dir = 10
- },
-/area/hallway/primary/central)
-"aYF" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Central Hall APC";
- pixel_y = -24
- },
-/obj/structure/cable,
-/turf/open/floor/plasteel/blue/side{
- dir = 0
- },
-/area/hallway/primary/central)
-"aYG" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/blue/corner{
- dir = 8
- },
-/area/hallway/primary/central)
-"aYH" = (
-/obj/structure/table,
-/obj/item/weapon/razor,
-/obj/structure/window{
- icon_state = "window";
- dir = 1
- },
-/turf/open/floor/plasteel/barber,
-/area/crew_quarters/locker)
-"aYI" = (
-/obj/structure/chair/stool/bar,
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aYJ" = (
-/obj/machinery/light_switch{
- pixel_y = -25
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aYK" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock{
- name = "Kitchen";
- req_access_txt = "28"
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/kitchen)
-"aYL" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aYM" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/button/door{
- id = "kitchen";
- name = "Kitchen Shutters Control";
- pixel_x = -1;
- pixel_y = -24;
- req_access_txt = "28"
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aYN" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aYO" = (
-/obj/item/weapon/reagent_containers/glass/bucket,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aYP" = (
-/obj/structure/reagent_dispensers/watertank/high,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aYQ" = (
-/obj/machinery/hydroponics/constructable,
-/turf/open/floor/plasteel/green/side{
- dir = 1
- },
-/area/hydroponics)
-"aYR" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start/botanist,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aYS" = (
-/obj/structure/closet,
-/obj/item/clothing/under/suit_jacket/female{
- pixel_x = 3;
- pixel_y = 1
- },
-/obj/item/clothing/under/suit_jacket/really_black{
- pixel_x = -2;
- pixel_y = 0
- },
-/obj/structure/window{
- icon_state = "window";
- dir = 1
- },
-/turf/open/floor/plasteel/barber,
-/area/crew_quarters/locker)
-"aYT" = (
-/obj/machinery/camera{
- c_tag = "Hydroponics South";
- dir = 8;
- network = list("SS13")
- },
-/obj/structure/reagent_dispensers/watertank/high,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aYU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aYV" = (
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"aYW" = (
-/turf/open/floor/carpet,
-/area/library)
-"aYX" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aYY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/library)
-"aYZ" = (
-/obj/structure/table/wood,
-/obj/item/weapon/storage/box/evidence,
-/obj/item/weapon/hand_labeler{
- pixel_x = 5
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"aZa" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"aZb" = (
-/obj/machinery/camera{
- c_tag = "Bar South";
- dir = 1
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aZc" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"aZd" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/turf/open/floor/wood,
-/area/library)
-"aZe" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Chapel"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aZf" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aZg" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aZh" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aZi" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"aZj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/escape{
- dir = 8
- },
-/area/hallway/secondary/exit)
-"aZk" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"aZl" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"aZm" = (
-/obj/machinery/camera{
- c_tag = "Escape Arm Airlocks";
- dir = 8;
- network = list("SS13")
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"aZn" = (
-/obj/structure/table/wood,
-/obj/item/weapon/folder/blue,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"aZo" = (
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"aZp" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/electronics/apc,
-/obj/item/weapon/stock_parts/cell{
- maxcharge = 2000
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"aZq" = (
-/obj/machinery/button/door{
- id = "heads_meeting";
- name = "Security Shutters";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"aZr" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/tank/air{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aZs" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aZt" = (
-/obj/structure/toilet{
- pixel_y = 8
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"aZu" = (
-/obj/machinery/photocopier,
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"aZv" = (
-/obj/machinery/door/airlock{
- name = "Unit 1"
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"aZw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"aZx" = (
-/turf/open/floor/plasteel/barber,
-/area/crew_quarters/locker)
-"aZy" = (
-/obj/machinery/camera{
- c_tag = "Conference Room";
- dir = 2
- },
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"aZz" = (
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"aZA" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aZB" = (
-/obj/machinery/portable_atmospherics/pump,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aZC" = (
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"aZD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aZE" = (
-/turf/closed/wall,
-/area/quartermaster/storage)
-"aZF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/maintenance/port)
-"aZG" = (
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"aZH" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "packageSort2"
- },
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"aZI" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/stack/sheet/cardboard,
-/obj/item/stack/rods{
- amount = 50
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"aZJ" = (
-/obj/structure/table/wood,
-/obj/item/device/camera/detective,
-/turf/open/floor/carpet,
-/area/security/detectives_office)
-"aZK" = (
-/turf/closed/wall,
-/area/quartermaster/office)
-"aZL" = (
-/obj/machinery/light_switch{
- pixel_x = 27
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"aZM" = (
-/turf/closed/wall/r_wall,
-/area/bridge/meeting_room)
-"aZN" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/blue/corner,
-/area/hallway/primary/central)
-"aZO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/bridge/meeting_room)
-"aZP" = (
-/turf/closed/wall,
-/area/bridge/meeting_room)
-"aZQ" = (
-/obj/machinery/door/airlock/command{
- name = "Conference Room";
- req_access = null;
- req_access_txt = "19"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"aZR" = (
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai_upload)
-"aZS" = (
-/obj/machinery/porta_turret/ai{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai_upload)
-"aZT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai_upload)
-"aZU" = (
-/obj/machinery/porta_turret/ai{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai_upload)
-"aZV" = (
-/turf/closed/wall/r_wall,
-/area/crew_quarters/captain)
-"aZW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/crew_quarters/captain)
-"aZX" = (
-/obj/machinery/door/airlock/command{
- name = "Captain's Office";
- req_access = null;
- req_access_txt = "20"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"aZY" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/blue/corner{
- dir = 8
- },
-/area/hallway/primary/central)
-"aZZ" = (
-/obj/machinery/vending/cigarette{
- pixel_x = 0;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"baa" = (
-/obj/machinery/computer/arcade,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"bab" = (
-/obj/machinery/light,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"bac" = (
-/obj/machinery/newscaster{
- pixel_y = -28
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"bad" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"bae" = (
-/obj/structure/noticeboard{
- pixel_y = -27
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"baf" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bag" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"bah" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
- pixel_y = -30
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"bai" = (
-/obj/machinery/light/small,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"baj" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/storage/fancy/donut_box,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "kitchen";
- name = "kitchen shutters"
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"bak" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "kitchen";
- name = "kitchen shutters"
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"bal" = (
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"bam" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/hydroponics)
-"ban" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/northleft{
- name = "Hydroponics Desk";
- req_access_txt = "35"
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"bao" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
- pixel_y = 32
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/captain)
-"bap" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/westright{
- dir = 1;
- name = "Hydroponics Desk";
- req_access_txt = "35"
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"baq" = (
-/obj/machinery/ai_status_display{
- pixel_y = 32
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/captain)
-"bar" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bas" = (
-/obj/machinery/vending/coffee,
-/turf/open/floor/wood,
-/area/library)
-"bat" = (
-/obj/structure/table/wood,
-/obj/item/weapon/pen,
-/turf/open/floor/wood,
-/area/library)
-"bau" = (
-/obj/structure/chair/comfy/black{
- dir = 4
- },
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/turf/open/floor/wood,
-/area/library)
-"bav" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/turf/open/floor/wood,
-/area/library)
-"baw" = (
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
- },
-/obj/structure/mirror{
- pixel_x = 28
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"bax" = (
-/obj/structure/chair/comfy/black{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/library)
-"bay" = (
-/obj/structure/chair/comfy/black,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/bridge/meeting_room)
-"baz" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"baA" = (
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"baB" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"baC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"baD" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Escape Hallway APC";
- pixel_x = -25
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plasteel/escape{
- dir = 8
- },
-/area/hallway/secondary/exit)
-"baE" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"baF" = (
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"baG" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"baH" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"baI" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/carpet,
-/area/bridge/meeting_room)
-"baJ" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -29
- },
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"baK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/bridge/meeting_room)
-"baL" = (
-/obj/machinery/atmospherics/components/unary/tank/air{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"baM" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "Locker Restrooms APC";
- pixel_x = 27;
- pixel_y = 2
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plating,
-/area/crew_quarters/locker/locker_toilet)
-"baN" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"baO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"baP" = (
-/obj/structure/table/wood,
-/obj/item/weapon/storage/fancy/donut_box,
-/turf/open/floor/carpet,
-/area/crew_quarters/captain)
-"baQ" = (
-/obj/structure/chair/comfy/brown{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/captain)
-"baR" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"baS" = (
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"baT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"baU" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"baV" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security{
- name = "Detective's Office";
- req_access_txt = "4"
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"baW" = (
-/obj/item/weapon/storage/secure/safe{
- pixel_x = -23
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"baX" = (
-/obj/structure/chair/comfy/brown,
-/obj/effect/landmark/start/detective,
-/turf/open/floor/carpet,
-/area/security/detectives_office)
-"baY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/closet/crate,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"baZ" = (
-/obj/machinery/status_display{
- layer = 4;
- pixel_x = 0;
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bba" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bbb" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/blue/corner{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"bbc" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bbd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bbe" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bbf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bbg" = (
-/obj/effect/landmark/blobstart,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bbh" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bbi" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bbj" = (
-/obj/structure/table,
-/obj/item/weapon/aiModule/reset,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai_upload)
-"bbk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai_upload)
-"bbl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"bbm" = (
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai_upload)
-"bbn" = (
-/obj/structure/table,
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai_upload)
-"bbo" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bbp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai_upload)
-"bbq" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"bbr" = (
-/obj/machinery/camera{
- c_tag = "Locker Room South";
- dir = 8;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"bbs" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"bbt" = (
-/obj/structure/closet/crate,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"bbu" = (
-/obj/machinery/power/apc{
- cell_type = 2500;
- dir = 1;
- name = "Captain's Office APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bbv" = (
-/obj/machinery/status_display{
- pixel_x = 0;
- pixel_y = 32
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/captain)
-"bbw" = (
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bbx" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Diner"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"bby" = (
-/obj/structure/sign/barsign,
-/turf/closed/wall,
-/area/crew_quarters/bar)
-"bbz" = (
-/turf/open/floor/plasteel/white/corner{
- dir = 1
- },
-/area/hallway/primary/starboard)
-"bbA" = (
-/obj/machinery/camera{
- c_tag = "Starboard Primary Hallway 2";
- dir = 2;
- network = list("SS13")
- },
-/turf/open/floor/plasteel/white/corner{
- dir = 1
- },
-/area/hallway/primary/starboard)
-"bbB" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Hydroponics";
- req_access_txt = "35"
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"bbC" = (
-/obj/structure/chair/comfy/black{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/bridge/meeting_room)
-"bbD" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/library)
-"bbE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/library)
-"bbF" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/chapel/main)
-"bbG" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/turf/open/floor/plasteel/escape{
- dir = 8
- },
-/area/hallway/secondary/exit)
-"bbH" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bbI" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Vacant Office A APC";
- pixel_x = -24;
- pixel_y = 0
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plating,
-/area/security/vacantoffice{
- name = "Vacant Office A"
- })
-"bbJ" = (
-/obj/structure/disposalpipe/segment,
-/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"
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bbK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bbL" = (
-/obj/machinery/door/airlock{
- name = "Unit 2"
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"bbM" = (
-/obj/item/weapon/book/manual/wiki/security_space_law,
-/obj/structure/table/wood,
-/turf/open/floor/carpet,
-/area/bridge/meeting_room)
-"bbN" = (
-/obj/machinery/washing_machine,
-/obj/machinery/light,
-/turf/open/floor/plasteel/barber,
-/area/crew_quarters/locker)
-"bbO" = (
-/obj/machinery/washing_machine,
-/turf/open/floor/plasteel/barber,
-/area/crew_quarters/locker)
-"bbP" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"bbQ" = (
-/obj/structure/table/wood,
-/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey{
- pixel_x = 3
- },
-/obj/item/weapon/lighter,
-/turf/open/floor/carpet,
-/area/security/detectives_office)
-"bbR" = (
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bbS" = (
-/obj/structure/closet/crate,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"bbT" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp/green,
-/turf/open/floor/carpet,
-/area/security/detectives_office)
-"bbU" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Detective Maintenance";
- req_access_txt = "4"
- },
-/turf/open/floor/plating,
-/area/security/detectives_office)
-"bbV" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bbW" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/preopen{
- id = "heads_meeting";
- layer = 2.9;
- name = "privacy shutters"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/bridge/meeting_room)
-"bbX" = (
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bbY" = (
-/obj/machinery/recharger{
- pixel_y = 4
- },
-/obj/structure/table,
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bbZ" = (
-/obj/structure/table/wood,
-/turf/open/floor/carpet,
-/area/crew_quarters/captain)
-"bca" = (
-/turf/open/floor/carpet,
-/area/bridge/meeting_room)
-"bcb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bcc" = (
-/obj/machinery/vending/snack/random,
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bcd" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bce" = (
-/obj/structure/table,
-/obj/item/weapon/aiModule/supplied/quarantine,
-/obj/machinery/camera/motion{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai_upload)
-"bcf" = (
-/obj/machinery/holopad,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai_upload)
-"bcg" = (
-/obj/structure/table,
-/obj/item/weapon/aiModule/supplied/freeform,
-/obj/structure/sign/kiddieplaque{
- pixel_x = 32
- },
-/obj/machinery/camera/motion{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai_upload)
-"bch" = (
-/obj/machinery/vending/cigarette,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bci" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bcj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j1"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bck" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bcl" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/maintenance/disposal)
-"bcm" = (
-/obj/structure/chair/comfy/brown{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/captain)
-"bcn" = (
-/obj/structure/displaycase/captain,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bco" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=Dorm";
- location = "HOP2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bcp" = (
-/obj/structure/sign/directions/evac{
- dir = 4;
- icon_state = "direction_evac";
- pixel_x = 32;
- pixel_y = 28
- },
-/obj/structure/sign/directions/security{
- dir = 1;
- icon_state = "direction_sec";
- pixel_x = 32;
- pixel_y = 36
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bcq" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bcr" = (
-/obj/machinery/camera{
- c_tag = "Starboard Primary Hallway";
- dir = 2;
- network = list("SS13")
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bcs" = (
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bct" = (
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"bcu" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bcv" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -5;
- pixel_y = 30
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bcw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/crew_quarters/locker)
-"bcx" = (
-/obj/machinery/camera{
- c_tag = "Starboard Primary Hallway 5";
- dir = 2;
- network = list("SS13")
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bcy" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/white/corner{
- dir = 4
- },
-/area/hallway/secondary/exit)
-"bcz" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bcA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bcB" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bcC" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bcD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bcE" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"bcF" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"bcG" = (
-/obj/structure/table/wood,
-/obj/machinery/computer/security/wooden_tv,
-/turf/open/floor/carpet,
-/area/security/detectives_office)
-"bcH" = (
-/obj/structure/table/wood,
-/obj/item/weapon/storage/fancy/cigarettes,
-/obj/item/clothing/glasses/sunglasses,
-/turf/open/floor/carpet,
-/area/security/detectives_office)
-"bcI" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bcJ" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/obj/structure/closet/crate/freezer,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"bcK" = (
-/obj/structure/rack{
- dir = 4
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bcL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j2";
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bcM" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bcN" = (
-/obj/item/weapon/folder/blue,
-/obj/structure/table/wood,
-/turf/open/floor/carpet,
-/area/bridge/meeting_room)
-"bcO" = (
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"bcP" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/captain)
-"bcQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/captain)
-"bcR" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"bcS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"bcT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/quartermaster/storage)
-"bcV" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/structure/filingcabinet,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"bcW" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bcX" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/poddoor/preopen{
- id = "heads_meeting";
- layer = 2.9;
- name = "privacy shutters"
- },
-/turf/open/floor/plating,
-/area/bridge/meeting_room)
-"bcY" = (
-/obj/item/weapon/hand_labeler,
-/obj/item/device/assembly/timer,
-/obj/structure/table,
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bcZ" = (
-/obj/structure/table/wood,
-/obj/item/device/radio/intercom{
- dir = 8;
- freerange = 1;
- name = "Station Intercom (Command)";
- pixel_x = 0
- },
-/turf/open/floor/carpet,
-/area/bridge/meeting_room)
-"bda" = (
-/obj/structure/chair/comfy/black{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/bridge/meeting_room)
-"bdb" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white/side{
- dir = 2
- },
-/area/hallway/primary/starboard)
-"bdc" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
- pixel_y = -30
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel/white/corner{
- dir = 2
- },
-/area/hallway/primary/starboard)
-"bdd" = (
-/obj/machinery/vending/cola/random,
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bde" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bdf" = (
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/obj/machinery/porta_turret/ai{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai_upload)
-"bdg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai_upload)
-"bdh" = (
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/turret_protected/ai_upload)
-"bdi" = (
-/obj/machinery/computer/arcade,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bdj" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bdk" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bdl" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bdm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bdn" = (
-/obj/machinery/camera{
- c_tag = "Central Hallway East";
- dir = 4;
- network = list("SS13")
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/status_display{
- density = 0;
- layer = 3;
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/blue/corner{
- dir = 8
- },
-/area/hallway/primary/central)
-"bdo" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bdp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bdq" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bdr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bds" = (
-/obj/machinery/camera{
- c_tag = "Starboard Primary Hallway 4";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bdt" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bdu" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bdv" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=HOP2";
- location = "Stbd"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bdw" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bdx" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bdy" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bdz" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bdA" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- name = "Cargo Escape Airlock"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"bdB" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bdC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 1;
- icon_state = "pipe-j2s";
- sortType = 1
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bdD" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bdE" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"bdF" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/carpet,
-/area/bridge/meeting_room)
-"bdG" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bdH" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bdI" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/bridge/meeting_room)
-"bdJ" = (
-/obj/machinery/door/airlock{
- name = "Unit 3"
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"bdK" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/bridge/meeting_room)
-"bdL" = (
-/obj/effect/landmark/blobstart,
-/obj/item/clothing/suit/ianshirt,
-/obj/structure/closet,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bdM" = (
-/obj/item/latexballon,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bdN" = (
-/obj/machinery/door/airlock/medical{
- name = "Morgue";
- req_access_txt = "6"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bdO" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bdP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/assembly/chargebay)
-"bdQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/closed/wall,
-/area/maintenance/disposal)
-"bdR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bdS" = (
-/obj/structure/closet/crate/internals,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"bdT" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Disposal APC";
- pixel_x = -24;
- pixel_y = 0
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bdU" = (
-/obj/structure/closet/crate/medical,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"bdW" = (
-/obj/item/clothing/gloves/color/rainbow,
-/obj/item/clothing/head/soft/rainbow,
-/obj/item/clothing/shoes/sneakers/rainbow,
-/obj/item/clothing/under/color/rainbow,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bdX" = (
-/obj/item/weapon/storage/fancy/donut_box,
-/obj/structure/table,
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bdY" = (
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen,
-/obj/structure/table/wood,
-/turf/open/floor/carpet,
-/area/bridge/meeting_room)
-"bdZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bea" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"beb" = (
-/obj/structure/table,
-/obj/item/weapon/aiModule/core/full/asimov,
-/obj/item/weapon/aiModule/core/freeformcore,
-/obj/machinery/door/window{
- base_state = "right";
- dir = 4;
- icon_state = "right";
- name = "Core Modules";
- req_access_txt = "20"
- },
-/obj/structure/window/reinforced,
-/obj/item/weapon/aiModule/core/full/corp,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/weapon/aiModule/core/full/custom,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai_upload)
-"bec" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai_upload)
-"bed" = (
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 2;
- name = "Upload APC";
- pixel_y = -24
- },
-/obj/structure/cable,
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai_upload)
-"bee" = (
-/obj/machinery/computer/upload/ai,
-/obj/machinery/flasher{
- id = "AI";
- pixel_x = 0;
- pixel_y = -21
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai_upload)
-"bef" = (
-/obj/machinery/computer/upload/borg,
-/obj/item/device/radio/intercom{
- broadcasting = 1;
- frequency = 1447;
- listening = 0;
- name = "Station Intercom (AI Private)";
- pixel_y = -29
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai_upload)
-"beg" = (
-/obj/structure/table,
-/obj/item/weapon/aiModule/supplied/oxygen,
-/obj/item/weapon/aiModule/zeroth/oneHuman,
-/obj/machinery/door/window{
- base_state = "left";
- dir = 8;
- icon_state = "left";
- name = "High-Risk Modules";
- req_access_txt = "20"
- },
-/obj/item/weapon/aiModule/reset/purge,
-/obj/structure/window/reinforced,
-/obj/item/weapon/aiModule/core/full/antimov,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/weapon/aiModule/supplied/protectStation,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai_upload)
-"beh" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai_upload)
-"bei" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bej" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bek" = (
-/obj/structure/chair,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bel" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bem" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/captain)
-"ben" = (
-/obj/structure/table/wood,
-/obj/machinery/camera{
- c_tag = "Captain's Office";
- dir = 8
- },
-/obj/item/weapon/storage/lockbox/medal{
- pixel_y = 0
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"beo" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=Stbd";
- location = "HOP"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bep" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/blue/corner{
- dir = 8
- },
-/area/hallway/primary/central)
-"beq" = (
-/obj/structure/sign/directions/medical{
- dir = 4;
- icon_state = "direction_med";
- pixel_x = 32;
- pixel_y = -24
- },
-/obj/structure/sign/directions/science{
- dir = 4;
- icon_state = "direction_sci";
- pixel_x = 32;
- pixel_y = -32
- },
-/obj/structure/sign/directions/engineering{
- pixel_x = 32;
- pixel_y = -40
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"ber" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
- pixel_y = -30
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bes" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/blue/corner,
-/area/hallway/primary/starboard)
-"bet" = (
-/turf/open/floor/plasteel/blue/side{
- dir = 0
- },
-/area/hallway/primary/starboard)
-"beu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/blue/side{
- dir = 0
- },
-/area/hallway/primary/starboard)
-"bev" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/blue/corner{
- dir = 8
- },
-/area/hallway/primary/starboard)
-"bew" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bex" = (
-/obj/machinery/button/door{
- id = "qm_warehouse";
- name = "Warehouse Door Control";
- pixel_x = -1;
- pixel_y = -24;
- req_access_txt = "31"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/obj/structure/closet/crate,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"bey" = (
-/turf/open/floor/plasteel/white/corner{
- dir = 8
- },
-/area/hallway/primary/starboard)
-"bez" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"beA" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "packageSort2"
- },
-/obj/structure/plasticflaps,
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"beB" = (
-/obj/machinery/camera{
- c_tag = "Starboard Primary Hallway 3";
- dir = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"beC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"beD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/obj/structure/closet/crate,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"beE" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"beF" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/brown{
- dir = 1
- },
-/area/quartermaster/office)
-"beG" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/red/corner{
- dir = 2
- },
-/area/hallway/secondary/exit)
-"beH" = (
-/obj/machinery/newscaster{
- pixel_y = -32
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel/escape{
- dir = 2
- },
-/area/hallway/secondary/exit)
-"beI" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 5;
- pixel_y = -32
- },
-/turf/open/floor/plasteel/escape{
- dir = 2
- },
-/area/hallway/secondary/exit)
-"beJ" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white/corner{
- dir = 8
- },
-/area/hallway/secondary/exit)
-"beK" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 2;
- name = "Port Docking Bay 4";
- req_access_txt = "0"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"beL" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 2;
- name = "Port Docking Bay 3";
- req_access_txt = "0"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"beM" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"beN" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -29
- },
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"beO" = (
-/turf/closed/wall,
-/area/maintenance/disposal)
-"beP" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "garbage"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"beQ" = (
-/obj/structure/disposaloutlet{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"beR" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "garbage"
- },
-/obj/machinery/recycler,
-/obj/structure/sign/securearea{
- name = "\improper STAY CLEAR HEAVY MACHINERY";
- pixel_y = 32
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"beS" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "garbage"
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"beT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/maintenance/disposal)
-"beU" = (
-/obj/machinery/conveyor{
- dir = 6;
- id = "garbage";
- verted = -1
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"beV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/quartermaster/office)
-"beW" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/obj/structure/table/reinforced,
-/obj/item/stack/wrapping_paper{
- pixel_x = 3;
- pixel_y = 4
- },
-/obj/item/stack/packageWrap{
- pixel_x = -1;
- pixel_y = -1
- },
-/turf/open/floor/plasteel/brown{
- dir = 1
- },
-/area/quartermaster/office)
-"beX" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"beY" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"beZ" = (
-/obj/machinery/mineral/stacking_unit_console{
- dir = 2;
- machinedir = 8
- },
-/turf/closed/wall,
-/area/maintenance/disposal)
-"bfa" = (
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"bfb" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 32
- },
-/obj/effect/landmark/event_spawn,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/chapel/main)
-"bfc" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Locker Room APC";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/crew_quarters/locker)
-"bfd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bfe" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bff" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bfg" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/item/stack/sheet/cardboard,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"bfh" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bfi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"bfj" = (
-/obj/structure/disposalpipe/trunk,
-/obj/structure/disposaloutlet{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"bfk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/power/apc{
- dir = 2;
- name = "Cargo Bay APC";
- pixel_x = 1;
- pixel_y = -24
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"bfl" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bfm" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"bfn" = (
-/obj/machinery/disposal/deliveryChute{
- dir = 8
- },
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"bfo" = (
-/turf/open/floor/plasteel/brown/corner{
- dir = 8
- },
-/area/hallway/primary/central)
-"bfp" = (
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Bridge";
- departmentType = 5;
- name = "Bridge RC";
- pixel_y = -30
- },
-/obj/machinery/light,
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bfq" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bfr" = (
-/obj/structure/noticeboard{
- dir = 8;
- pixel_x = 27;
- pixel_y = 0
- },
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bfs" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai_upload)
-"bft" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai_upload)
-"bfu" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai_upload)
-"bfv" = (
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai_upload)
-"bfw" = (
-/obj/machinery/status_display{
- density = 0;
- layer = 4
- },
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai_upload)
-"bfx" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai_upload)
-"bfy" = (
-/obj/structure/table/wood,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bfz" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai_upload)
-"bfA" = (
-/obj/structure/table/wood,
-/obj/item/weapon/hand_tele,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bfB" = (
-/obj/structure/table/wood,
-/obj/item/weapon/folder/blue,
-/obj/item/weapon/stamp/captain,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bfC" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp/green,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bfD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bfE" = (
-/obj/structure/table/wood,
-/obj/item/weapon/pinpointer,
-/obj/item/weapon/disk/nuclear,
-/obj/item/weapon/storage/secure/safe{
- pixel_x = 35;
- pixel_y = 5
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bfF" = (
-/turf/closed/wall,
-/area/medical/chemistry)
-"bfG" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/medical/medbay)
-"bfH" = (
-/obj/structure/sign/bluecross_2,
-/turf/closed/wall,
-/area/medical/medbay)
-"bfI" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bfJ" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bfK" = (
-/turf/closed/wall,
-/area/security/checkpoint/medical)
-"bfL" = (
-/turf/closed/wall,
-/area/medical/morgue)
-"bfM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bfN" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bfO" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bfP" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Starboard Primary Hallway APC";
- pixel_y = -24
- },
-/obj/structure/cable,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bfQ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"bfR" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/hand_labeler{
- pixel_y = 8
- },
-/obj/item/weapon/hand_labeler{
- pixel_y = 8
- },
-/obj/item/weapon/storage/box,
-/obj/item/weapon/storage/box,
-/obj/item/weapon/storage/box,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bfS" = (
-/turf/closed/wall,
-/area/storage/emergency)
-"bfT" = (
-/turf/closed/wall,
-/area/assembly/chargebay)
-"bfU" = (
-/turf/open/floor/plasteel/loadingarea{
- dir = 1
- },
-/area/hallway/primary/starboard)
-"bfV" = (
-/turf/closed/wall/r_wall,
-/area/assembly/robotics)
-"bfW" = (
-/turf/open/floor/plasteel/purple/side{
- dir = 10
- },
-/area/hallway/primary/starboard)
-"bfX" = (
-/turf/open/floor/plasteel/purple/side{
- dir = 2
- },
-/area/hallway/primary/starboard)
-"bfY" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -29
- },
-/turf/open/floor/plasteel/purple/side{
- dir = 2
- },
-/area/hallway/primary/starboard)
-"bfZ" = (
-/obj/structure/sign/securearea{
- pixel_x = 0;
- pixel_y = -32
- },
-/turf/open/floor/plasteel/purple/side{
- dir = 2
- },
-/area/hallway/primary/starboard)
-"bga" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/purple/side{
- dir = 2
- },
-/area/hallway/primary/starboard)
-"bgb" = (
-/turf/open/floor/plasteel/purple/side{
- dir = 6
- },
-/area/hallway/primary/starboard)
-"bgc" = (
-/turf/closed/wall/r_wall,
-/area/toxins/lab)
-"bgd" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/escape{
- dir = 2
- },
-/area/hallway/secondary/exit)
-"bge" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/escape{
- dir = 10
- },
-/area/hallway/secondary/exit)
-"bgf" = (
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bgg" = (
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bgh" = (
-/obj/machinery/vending/cigarette,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bgi" = (
-/obj/machinery/camera{
- c_tag = "Arrivals Bay 3 & 4";
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bgj" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "garbage"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bgk" = (
-/obj/machinery/conveyor{
- dir = 5;
- id = "garbage"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bgl" = (
-/obj/machinery/conveyor{
- dir = 10;
- id = "garbage";
- verted = -1
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bgm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bgn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 8
- },
-/area/hallway/primary/central)
-"bgo" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "Mech Bay APC";
- pixel_x = 26;
- pixel_y = 0
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/assembly/chargebay)
-"bgp" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bgq" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bgr" = (
-/obj/machinery/door/airlock{
- name = "Unit 4"
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"bgs" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"bgt" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bgu" = (
-/obj/machinery/button/door{
- id = "qm_warehouse";
- name = "Warehouse Door Control";
- pixel_x = -1;
- pixel_y = 24;
- req_access_txt = "31"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bgv" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/quartermaster/office)
-"bgw" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bgx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bgy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/closed/wall,
-/area/maintenance/port)
-"bgz" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bgA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"bgB" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/closed/wall,
-/area/quartermaster/storage)
-"bgC" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/closed/wall,
-/area/quartermaster/office)
-"bgD" = (
-/obj/machinery/conveyor_switch/oneway{
- id = "packageSort2"
- },
-/obj/machinery/camera{
- c_tag = "Cargo Delivery Office";
- dir = 4;
- network = list("SS13")
- },
-/obj/machinery/requests_console{
- department = "Cargo Bay";
- departmentType = 2;
- pixel_x = -30;
- pixel_y = 0
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/brown{
- dir = 1
- },
-/area/quartermaster/office)
-"bgE" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/obj/machinery/airalarm{
- dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bgF" = (
-/obj/structure/table/glass,
-/obj/machinery/reagentgrinder,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bgG" = (
-/obj/machinery/camera{
- c_tag = "Central Hallway West";
- dir = 8
- },
-/turf/open/floor/plasteel/blue/corner,
-/area/hallway/primary/central)
-"bgH" = (
-/obj/machinery/door/window/eastright{
- dir = 1;
- name = "Bridge Delivery";
- req_access_txt = "19"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/bridge/meeting_room)
-"bgI" = (
-/obj/machinery/computer/slot_machine,
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bgJ" = (
-/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bgK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bgL" = (
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
- pixel_y = -32
- },
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bgM" = (
-/obj/machinery/vending/coffee,
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bgN" = (
-/turf/open/floor/plasteel/black,
-/area/engine/gravity_generator)
-"bgO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"bgP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bgQ" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 2
- },
-/area/medical/medbay)
-"bgR" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"bgS" = (
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Captain's Desk";
- departmentType = 5;
- name = "Captain RC";
- pixel_x = -30;
- pixel_y = 0
- },
-/obj/structure/filingcabinet,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bgT" = (
-/obj/machinery/computer/communications,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bgU" = (
-/obj/structure/chair/comfy/brown{
- dir = 4
- },
-/obj/effect/landmark/start/captain,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bgV" = (
-/obj/structure/table/wood,
-/obj/item/weapon/book/manual/wiki/security_space_law,
-/obj/item/weapon/coin/plasma,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bgW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/holopad,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bgX" = (
-/obj/structure/table/wood,
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/item/device/camera,
-/obj/item/weapon/storage/photo_album{
- pixel_y = -10
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bgY" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bgZ" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Chemistry APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/mob/living/simple_animal/bot/cleanbot{
- name = "C.L.E.A.N."
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bha" = (
-/obj/structure/closet/secure_closet/chemical,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bhb" = (
-/obj/machinery/chem_dispenser,
-/turf/open/floor/plasteel/whiteyellow/side{
- dir = 1
- },
-/area/medical/chemistry)
-"bhc" = (
-/obj/machinery/camera{
- c_tag = "Chemistry";
- dir = 2;
- network = list("SS13")
- },
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/obj/machinery/chem_heater,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bhd" = (
-/obj/machinery/chem_master,
-/turf/open/floor/plasteel/whiteyellow/side{
- dir = 5
- },
-/area/medical/chemistry)
-"bhe" = (
-/obj/structure/chair,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bhf" = (
-/obj/structure/table,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = 0;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bhg" = (
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 2
- },
-/area/medical/medbay)
-"bhh" = (
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bhi" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/checkpoint/medical)
-"bhj" = (
-/obj/machinery/camera{
- c_tag = "Security Post - Medbay";
- dir = 2;
- network = list("SS13")
- },
-/obj/machinery/requests_console{
- department = "Security";
- departmentType = 5;
- pixel_y = 30
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/checkpoint/medical)
-"bhk" = (
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- pixel_x = 1;
- pixel_y = 9
- },
-/obj/item/weapon/pen,
-/obj/machinery/button/door{
- desc = "A remote control switch for the medbay foyer.";
- id = "MedbayFoyer";
- name = "Medbay Doors Control";
- normaldoorcontrol = 1;
- pixel_x = 0;
- pixel_y = 26;
- req_access_txt = "5"
- },
-/obj/item/weapon/book/manual/wiki/security_space_law,
-/turf/open/floor/plasteel/red/side{
- dir = 9
- },
-/area/security/checkpoint/medical)
-"bhl" = (
-/obj/structure/filingcabinet,
-/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/checkpoint/medical)
-"bhm" = (
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bhn" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/bodybags,
-/obj/item/weapon/pen,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bho" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bhp" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Morgue APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bhq" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bhr" = (
-/obj/machinery/door/airlock{
- name = "Starboard Emergency Storage";
- req_access_txt = "0"
- },
-/turf/open/floor/plating,
-/area/storage/emergency)
-"bhs" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint/medical)
-"bht" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- name = "Mech Bay";
- req_access_txt = "29";
- req_one_access_txt = "0"
- },
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"bhu" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/shutters{
- id = "Skynet_launch";
- name = "mech bay"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"bhv" = (
-/obj/machinery/airalarm{
- pixel_y = 25
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/whitered/side{
- dir = 8
- },
-/area/assembly/robotics)
-"bhw" = (
-/obj/machinery/computer/rdconsole/robotics,
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bhx" = (
-/obj/machinery/requests_console{
- department = "Robotics";
- departmentType = 2;
- name = "Robotics RC";
- pixel_y = 30;
- receive_ore_updates = 1
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/r_n_d/circuit_imprinter,
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bhy" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "robotics";
- name = "robotics lab shutters"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/assembly/robotics)
-"bhz" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/eastright{
- base_state = "left";
- dir = 2;
- icon_state = "left";
- name = "Robotics Desk";
- req_access_txt = "29"
- },
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "robotics";
- name = "robotics lab shutters"
- },
-/turf/open/floor/plating,
-/area/assembly/robotics)
-"bhA" = (
-/turf/closed/wall,
-/area/medical/research{
- name = "Research Division"
- })
-"bhB" = (
-/obj/machinery/door/airlock/research{
- cyclelinkeddir = 2;
- name = "Research Division Access";
- req_access_txt = "47"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bhC" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "rnd";
- name = "research lab shutters"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/toxins/lab)
-"bhD" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/southright{
- name = "Research and Development Desk";
- req_access_txt = "7"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "rnd";
- name = "research lab shutters"
- },
-/turf/open/floor/plating,
-/area/toxins/lab)
-"bhE" = (
-/obj/structure/table,
-/obj/item/stack/sheet/glass{
- amount = 50;
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/clothing/glasses/welding,
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bhF" = (
-/obj/structure/table,
-/obj/item/weapon/storage/toolbox/mechanical{
- pixel_x = 2;
- pixel_y = 3
- },
-/obj/item/weapon/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -1
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bhG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/maintenance/asmaint2)
-"bhH" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bhI" = (
-/obj/machinery/conveyor{
- dir = 1;
- id = "garbage"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bhJ" = (
-/obj/structure/disposalpipe/trunk{
- dir = 2
- },
-/obj/machinery/disposal/deliveryChute{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/window{
- base_state = "right";
- dir = 4;
- icon_state = "right";
- layer = 3
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bhL" = (
-/obj/machinery/mineral/stacking_machine{
- input_dir = 1;
- stack_amt = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bhM" = (
-/turf/open/floor/circuit,
-/area/assembly/chargebay)
-"bhN" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bhO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bhQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/locker/locker_toilet)
-"bhR" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/window{
- icon_state = "window";
- dir = 1
- },
-/obj/structure/window,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bhS" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/window{
- icon_state = "window";
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bhT" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/window,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bhU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bhV" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bhW" = (
-/obj/machinery/door/poddoor/shutters{
- id = "qm_warehouse";
- name = "warehouse shutters"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
- },
-/area/quartermaster/storage)
-"bhX" = (
-/obj/structure/disposalpipe/wrapsortjunction{
- dir = 1
- },
-/turf/closed/wall,
-/area/quartermaster/storage)
-"bhY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/quartermaster/storage)
-"bhZ" = (
-/obj/machinery/door/window/eastleft{
- dir = 4;
- icon_state = "right";
- name = "Mail";
- req_access_txt = "50"
- },
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"bia" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/structure/disposaloutlet{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"bib" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/item/device/radio/intercom{
- freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = 29
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bic" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bid" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/blue/corner,
-/area/hallway/primary/central)
-"bie" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=1";
- dir = 1;
- freq = 1400;
- location = "Bridge"
- },
-/obj/structure/plasticflaps{
- opacity = 1
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/bridge/meeting_room)
-"bif" = (
-/obj/machinery/vending/cigarette,
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"big" = (
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/engine/gravity_generator)
-"bih" = (
-/turf/open/floor/plasteel/vault{
- dir = 1
- },
-/area/engine/gravity_generator)
-"bii" = (
-/turf/open/floor/plasteel/vault{
- dir = 4
- },
-/area/engine/gravity_generator)
-"bij" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"bik" = (
-/obj/item/device/radio/intercom{
- dir = 8;
- freerange = 1;
- name = "Station Intercom (Command)";
- pixel_x = -28
- },
-/obj/machinery/suit_storage_unit/captain,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bil" = (
-/obj/machinery/computer/card,
-/obj/item/weapon/card/id/captains_spare,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bim" = (
-/obj/structure/table/wood,
-/obj/machinery/recharger,
-/obj/item/weapon/melee/chainofcommand,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bin" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bio" = (
-/obj/structure/table/glass,
-/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,
-/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9
- },
-/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9
- },
-/obj/machinery/requests_console{
- department = "Chemistry";
- departmentType = 2;
- pixel_x = -30;
- pixel_y = 0;
- receive_ore_updates = 1
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bip" = (
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"biq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bir" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/eastright{
- dir = 8;
- name = "Chemistry Desk";
- req_access_txt = "33"
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/medical/chemistry)
-"bis" = (
-/obj/structure/chair/office/light{
- dir = 4
- },
-/obj/effect/landmark/start/chemist,
-/turf/open/floor/plasteel/whiteyellow/side{
- dir = 4
- },
-/area/medical/chemistry)
-"bit" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"biu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"biv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 8
- },
-/area/quartermaster/office)
-"biw" = (
-/turf/open/floor/plasteel,
-/area/security/checkpoint/medical)
-"bix" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/obj/effect/landmark/start/depsec/medical,
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/checkpoint/medical)
-"biy" = (
-/obj/machinery/computer/secure_data,
-/obj/item/device/radio/intercom{
- pixel_x = 25
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/checkpoint/medical)
-"biz" = (
-/obj/structure/bodycontainer/morgue,
-/obj/effect/landmark/revenantspawn,
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"biA" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"biB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"biC" = (
-/turf/open/floor/plating,
-/area/storage/emergency)
-"biD" = (
-/obj/item/weapon/storage/box/lights/mixed,
-/turf/open/floor/plating,
-/area/storage/emergency)
-"biE" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/item/weapon/extinguisher,
-/turf/open/floor/plating,
-/area/storage/emergency)
-"biF" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 1;
- icon_state = "pipe-j2s";
- sortType = 2
- },
-/obj/structure/noticeboard{
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"biG" = (
-/obj/machinery/mech_bay_recharge_port{
- icon_state = "recharge_port";
- dir = 2
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/assembly/chargebay)
-"biH" = (
-/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/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"biI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/circuit,
-/area/assembly/chargebay)
-"biJ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/circuit,
-/area/assembly/chargebay)
-"biK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/whitered/corner{
- icon_state = "whiteredcorner";
- dir = 1
- },
-/area/assembly/robotics)
-"biL" = (
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"biN" = (
-/turf/open/floor/plasteel/whitered/side{
- dir = 1
- },
-/area/assembly/robotics)
-"biO" = (
-/obj/machinery/camera{
- c_tag = "Robotics Lab";
- dir = 2;
- network = list("SS13","RD")
- },
-/obj/machinery/button/door{
- dir = 2;
- id = "robotics";
- name = "Shutters Control Button";
- pixel_x = 6;
- pixel_y = 24;
- req_access_txt = "29"
- },
-/obj/structure/table,
-/obj/item/weapon/book/manual/robotics_cyborgs{
- pixel_x = 2;
- pixel_y = 5
- },
-/obj/item/weapon/reagent_containers/glass/beaker/large,
-/turf/open/floor/plasteel/whitered/corner{
- dir = 4
- },
-/area/assembly/robotics)
-"biP" = (
-/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/plasteel/whitered/side{
- dir = 1
- },
-/area/assembly/robotics)
-"biQ" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/whitered/side{
- dir = 1
- },
-/area/assembly/robotics)
-"biR" = (
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"biS" = (
-/obj/machinery/camera{
- c_tag = "Research Division Access";
- dir = 2;
- network = list("SS13")
- },
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"biT" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"biU" = (
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 1
- },
-/area/toxins/lab)
-"biV" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start/scientist,
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 1
- },
-/area/toxins/lab)
-"biW" = (
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"biY" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bja" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bjb" = (
-/obj/machinery/conveyor{
- dir = 1;
- id = "garbage"
- },
-/obj/structure/sign/vacuum{
- pixel_x = -32
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bjc" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bjd" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bje" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bjf" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Disposal Access";
- req_access_txt = "12"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bjg" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bjh" = (
-/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/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bji" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bjj" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bjk" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bjl" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bjm" = (
-/obj/structure/table,
-/obj/item/weapon/hand_labeler,
-/obj/item/weapon/hand_labeler,
-/obj/machinery/requests_console{
- department = "Cargo Bay";
- departmentType = 2;
- pixel_x = 0;
- pixel_y = 30
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bjn" = (
-/obj/structure/table,
-/obj/item/clothing/head/soft,
-/obj/item/clothing/head/soft,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bjo" = (
-/obj/machinery/camera{
- c_tag = "Cargo Bay North"
- },
-/obj/structure/closet/wardrobe/cargotech,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bjp" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "Station Intercom (General)";
- pixel_y = 20
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bjq" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 5;
- pixel_y = 30
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bjr" = (
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bjs" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_mining{
- name = "Cargo Office";
- req_access_txt = "50"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bjt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bju" = (
-/obj/machinery/photocopier,
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "Station Intercom (General)";
- pixel_y = 20
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bjv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bjw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bjx" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bjy" = (
-/obj/machinery/camera{
- c_tag = "Gravity Generator Room";
- dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/black,
-/area/engine/gravity_generator)
-"bjz" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/maintcentral)
-"bjA" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/maintcentral)
-"bjB" = (
-/turf/open/floor/plating,
-/area/maintenance/maintcentral)
-"bjC" = (
-/obj/structure/closet/wardrobe/black,
-/turf/open/floor/plating,
-/area/maintenance/maintcentral)
-"bjD" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Bridge Maintenance APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plating,
-/area/maintenance/maintcentral)
-"bjE" = (
-/obj/machinery/airalarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bjF" = (
-/obj/machinery/newscaster/security_unit{
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/machinery/keycard_auth{
- pixel_x = 0;
- pixel_y = -24
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bjG" = (
-/obj/machinery/door/window{
- base_state = "right";
- dir = 4;
- icon_state = "right";
- name = "Captain's Desk Door";
- req_access_txt = "20"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bjH" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bjI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bjJ" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bjK" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bjL" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bjM" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/security/checkpoint/medical)
-"bjN" = (
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 30;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/checkpoint/medical)
-"bjO" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bjP" = (
-/obj/machinery/computer/mech_bay_power_console,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"bjQ" = (
-/obj/machinery/smartfridge/chemistry/preloaded,
-/turf/open/floor/plating,
-/area/medical/chemistry)
-"bjR" = (
-/obj/structure/table/glass,
-/obj/item/weapon/storage/box/beakers{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/weapon/storage/box/beakers{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/weapon/reagent_containers/glass/beaker/large,
-/obj/item/weapon/reagent_containers/glass/beaker/large,
-/obj/item/weapon/reagent_containers/dropper,
-/obj/item/weapon/reagent_containers/dropper,
-/turf/open/floor/plasteel/whiteyellow/side{
- dir = 4
- },
-/area/medical/chemistry)
-"bjS" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bjT" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 2
- },
-/area/medical/medbay)
-"bjU" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 2
- },
-/area/medical/medbay)
-"bjV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 2
- },
-/area/medical/medbay)
-"bjX" = (
-/obj/structure/table,
-/obj/machinery/recharger{
- pixel_y = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/checkpoint/medical)
-"bjY" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/checkpoint/medical)
-"bjZ" = (
-/obj/structure/closet/firecloset,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bka" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bkb" = (
-/obj/machinery/camera{
- c_tag = "Medbay Morgue";
- dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bkc" = (
-/obj/machinery/space_heater,
-/turf/open/floor/plating,
-/area/storage/emergency)
-"bkd" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/plating,
-/area/storage/emergency)
-"bke" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/tank/internals/emergency_oxygen,
-/obj/item/weapon/tank/internals/emergency_oxygen,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/turf/open/floor/plating,
-/area/storage/emergency)
-"bkf" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plating,
-/area/storage/emergency)
-"bkh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/circuit,
-/area/assembly/chargebay)
-"bki" = (
-/obj/structure/table/glass,
-/obj/item/weapon/reagent_containers/glass/beaker/large{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/weapon/reagent_containers/glass/beaker{
- pixel_x = 8;
- pixel_y = 2
- },
-/obj/item/weapon/reagent_containers/dropper,
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bkj" = (
-/obj/structure/closet/emcloset,
-/obj/machinery/airalarm{
- dir = 2;
- pixel_y = 24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bkk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bkm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bkn" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/firealarm{
- pixel_y = 27
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bko" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/status_display{
- density = 0;
- layer = 3;
- pixel_x = 32;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bkp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bkq" = (
-/obj/structure/closet/firecloset,
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bkr" = (
-/obj/machinery/shower{
- dir = 8
- },
-/obj/structure/sign/securearea{
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bks" = (
-/obj/machinery/requests_console{
- department = "Science";
- departmentType = 2;
- name = "Science Requests Console";
- pixel_x = -30;
- pixel_y = 0;
- receive_ore_updates = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bkt" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bku" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bkv" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bkw" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bkx" = (
-/obj/machinery/status_display{
- density = 0;
- pixel_y = 2;
- supply_display = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/quartermaster/office)
-"bky" = (
-/turf/closed/wall,
-/area/maintenance/asmaint2)
-"bkz" = (
-/obj/machinery/conveyor{
- dir = 1;
- id = "garbage";
- layer = 2.5
- },
-/obj/machinery/door/poddoor/preopen{
- id = "Disposal Exit";
- layer = 3;
- name = "disposal exit vent"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bkA" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"bkB" = (
-/obj/machinery/button/door{
- id = "Disposal Exit";
- name = "Disposal Vent Control";
- pixel_x = -25;
- pixel_y = 4;
- req_access_txt = "12"
- },
-/obj/machinery/button/massdriver{
- id = "trash";
- pixel_x = -26;
- pixel_y = -6
- },
-/obj/structure/chair/stool,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bkC" = (
-/obj/effect/decal/cleanable/oil,
-/obj/machinery/light_switch{
- pixel_x = 25;
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bkD" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bkE" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
- },
-/turf/closed/wall/r_wall,
-/area/maintenance/port)
-"bkF" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/port)
-"bkG" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Cargo Bay Maintenance";
- req_access_txt = "31"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"bkH" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"bkI" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/engine/gravity_generator)
-"bkJ" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"bkK" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bkL" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/chem_heater,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bkM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bkN" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"bkO" = (
-/obj/machinery/light_switch{
- pixel_x = 28;
- pixel_y = 0
- },
-/obj/item/weapon/screwdriver{
- pixel_y = 10
- },
-/obj/item/device/radio/off,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/plasteel/red/side{
- dir = 6
- },
-/area/security/checkpoint/medical)
-"bkP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bkQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/light/small,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bkR" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/light_switch{
- pixel_y = -25
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bkS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 8
- },
-/area/hallway/primary/central)
-"bkT" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/maintcentral)
-"bkU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/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
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bkV" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"bkW" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/maintcentral)
-"bkX" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Conference Room APC";
- pixel_x = 24;
- pixel_y = 0
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/bridge/meeting_room)
-"bkY" = (
-/obj/effect/landmark/blobstart,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/maintcentral)
-"bkZ" = (
-/obj/machinery/gravity_generator/main/station,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/engine/gravity_generator)
-"bla" = (
-/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/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"blb" = (
-/obj/machinery/door/airlock/command{
- name = "Captain's Quarters";
- req_access = null;
- req_access_txt = "20"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/crew_quarters/captain)
-"blc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/crew_quarters/captain)
-"bld" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Captain's Office Maintenance";
- req_access_txt = "20"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/captain)
-"ble" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"blf" = (
-/obj/structure/table/glass,
-/obj/item/weapon/storage/box/syringes,
-/obj/item/clothing/glasses/science{
- pixel_x = 2;
- pixel_y = 4
- },
-/obj/item/clothing/glasses/science,
-/obj/item/device/radio/intercom{
- dir = 8;
- name = "Station Intercom (General)";
- pixel_x = -28
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"blg" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Morgue Maintenance";
- req_access_txt = "6"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/medical/morgue)
-"blh" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/eastright{
- base_state = "left";
- dir = 8;
- icon_state = "left";
- name = "Chemistry Desk";
- req_access_txt = "33"
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/medical/chemistry)
-"bli" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"blj" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/paper_bin{
- pixel_x = 1;
- pixel_y = 9
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"blk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 4
- },
-/area/medical/medbay)
-"bll" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/folder/white,
-/obj/item/weapon/pen,
-/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"blm" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/reagent_containers/food/drinks/britcup{
- desc = "Kingston's personal cup."
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bln" = (
-/obj/structure/table/reinforced,
-/obj/machinery/camera{
- c_tag = "Medbay Foyer";
- dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/machinery/cell_charger,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"blo" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "Starboard Emergency Storage APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/storage/emergency)
-"blp" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Medbay Security APC";
- pixel_x = -25
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/checkpoint/medical)
-"blq" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/sortjunction{
- sortType = 9
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"blr" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bls" = (
-/obj/structure/table,
-/obj/item/weapon/storage/toolbox/mechanical,
-/obj/item/weapon/crowbar/large,
-/obj/machinery/camera{
- c_tag = "Mech Bay";
- dir = 1
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"blt" = (
-/obj/machinery/recharge_station,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"blu" = (
-/obj/machinery/computer/mech_bay_power_console,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"blv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"blw" = (
-/turf/open/floor/mech_bay_recharge_floor,
-/area/assembly/chargebay)
-"blx" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"bly" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"blz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"blA" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/assembly/robotics)
-"blB" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/obj/machinery/mecha_part_fabricator,
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"blC" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"blD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/assembly/robotics)
-"blE" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/table,
-/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/weapon/storage/firstaid/regular{
- empty = 1;
- name = "First-Aid (empty)"
- },
-/obj/item/device/healthanalyzer,
-/obj/item/device/healthanalyzer,
-/obj/item/device/healthanalyzer,
-/obj/item/device/radio/intercom{
- freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = 29
- },
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"blF" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/conveyor{
- dir = 4;
- id = "robo1"
- },
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"blG" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"blH" = (
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"blI" = (
-/obj/machinery/r_n_d/destructive_analyzer,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/toxins/lab)
-"blJ" = (
-/obj/machinery/r_n_d/protolathe,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/toxins/lab)
-"blK" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/toxins/lab)
-"blL" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"blM" = (
-/obj/effect/turf_decal/bot,
-/obj/effect/landmark/start/roboticist,
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"blO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"blP" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- req_access_txt = "13"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"blQ" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"blR" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 32
- },
-/obj/item/weapon/cigbutt,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"blS" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/mass_driver{
- id = "trash"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"blT" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"blU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"blV" = (
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"blW" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"blX" = (
-/obj/machinery/door/airlock/research{
- cyclelinkeddir = 1;
- name = "Research Division Access";
- req_access_txt = "47"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"blY" = (
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"blZ" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bma" = (
-/obj/structure/table/glass,
-/obj/item/weapon/stock_parts/manipulator,
-/obj/item/weapon/stock_parts/capacitor,
-/obj/item/weapon/stock_parts/capacitor,
-/obj/item/weapon/stock_parts/manipulator,
-/obj/item/weapon/stock_parts/micro_laser,
-/obj/item/weapon/stock_parts/micro_laser,
-/obj/item/stack/cable_coil{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/stack/cable_coil,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bmb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bmc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bmd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bme" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bmf" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/brown{
- dir = 8
- },
-/area/quartermaster/office)
-"bmg" = (
-/obj/machinery/door/airlock/glass_mining{
- name = "Cargo Bay";
- req_access_txt = "31"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bmh" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bmi" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bmj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bmk" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_mining{
- name = "Delivery Office";
- req_access_txt = "50"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bml" = (
-/obj/machinery/mineral/ore_redemption{
- input_dir = 8;
- output_dir = 4
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/office)
-"bmm" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bmn" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/status_display{
- density = 0;
- layer = 3;
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 8
- },
-/area/hallway/primary/central)
-"bmo" = (
-/turf/closed/wall,
-/area/crew_quarters/heads)
-"bmp" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/maintcentral)
-"bmq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/crew_quarters/heads)
-"bmr" = (
-/turf/closed/wall/r_wall,
-/area/crew_quarters/heads)
-"bms" = (
-/obj/machinery/door/airlock/command{
- name = "Head of Personnel";
- req_access = null;
- req_access_txt = "57"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/heads)
-"bmt" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel/brown{
- dir = 8
- },
-/area/quartermaster/office)
-"bmu" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"bmv" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/black,
-/area/engine/gravity_generator)
-"bmw" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/engine/gravity_generator)
-"bmx" = (
-/turf/closed/wall,
-/area/crew_quarters/captain)
-"bmy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/captain)
-"bmz" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/dresser,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/captain)
-"bmA" = (
-/obj/machinery/door/airlock{
- name = "Private Restroom";
- req_access_txt = "0"
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/captain)
-"bmB" = (
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/captain)
-"bmC" = (
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
- },
-/obj/structure/mirror{
- pixel_x = 28
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/captain)
-"bmD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/captain)
-"bmE" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bmF" = (
-/obj/structure/table/glass,
-/obj/machinery/airalarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/obj/item/stack/cable_coil/random,
-/obj/item/stack/cable_coil/random,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bmG" = (
-/obj/machinery/chem_dispenser,
-/turf/open/floor/plasteel/whiteyellow/side{
- dir = 2
- },
-/area/medical/chemistry)
-"bmH" = (
-/obj/machinery/door/airlock/glass_mining{
- name = "Cargo Bay";
- req_access_txt = "31"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bmI" = (
-/obj/machinery/chem_master,
-/turf/open/floor/plasteel/whiteyellow/side{
- dir = 6
- },
-/area/medical/chemistry)
-"bmJ" = (
-/obj/item/device/radio/intercom{
- broadcasting = 1;
- freerange = 0;
- frequency = 1485;
- listening = 0;
- name = "Station Intercom (Medbay)";
- pixel_x = 0;
- pixel_y = -30
- },
-/obj/machinery/light,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bmK" = (
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bmL" = (
-/obj/structure/chair/office/light{
- dir = 8
- },
-/obj/machinery/button/door{
- desc = "A remote control switch for the medbay foyer.";
- id = "MedbayFoyer";
- name = "Medbay Doors Control";
- normaldoorcontrol = 1;
- pixel_x = -26;
- req_access_txt = "5"
- },
-/obj/effect/landmark/start/medical_doctor,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bmM" = (
-/obj/structure/chair/office/light{
- dir = 1
- },
-/obj/structure/sign/nosmoking_2{
- pixel_x = 28
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bmN" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint/medical)
-"bmO" = (
-/obj/structure/closet,
-/turf/open/floor/plasteel/red/side{
- dir = 10
- },
-/area/security/checkpoint/medical)
-"bmP" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bmQ" = (
-/obj/item/weapon/stamp{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/weapon/stamp/denied{
- pixel_x = 4;
- pixel_y = -2
- },
-/obj/structure/table,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bmR" = (
-/obj/structure/table,
-/obj/item/weapon/paper/morguereminder{
- pixel_x = 5;
- pixel_y = 4
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bmS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bmT" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bmU" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/security/checkpoint/medical)
-"bmV" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/medical{
- name = "Morgue";
- req_access_txt = "6;5"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bmW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/closed/wall,
-/area/medical/morgue)
-"bmX" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/medical/genetics)
-"bmY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/medical/morgue)
-"bmZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/medical/genetics)
-"bna" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bnb" = (
-/obj/machinery/recharge_station,
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"bnc" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/assembly/chargebay)
-"bnf" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bng" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bnh" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bni" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/table,
-/obj/item/weapon/storage/toolbox/electrical{
- pixel_x = 1;
- pixel_y = 6
- },
-/obj/item/clothing/head/welding{
- pixel_x = -3;
- pixel_y = 5
- },
-/obj/item/clothing/glasses/welding,
-/obj/item/device/multitool{
- pixel_x = 3
- },
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"bnj" = (
-/obj/structure/table,
-/obj/item/stack/sheet/plasteel{
- amount = 10
- },
-/obj/item/stack/cable_coil,
-/obj/item/device/assembly/flash/handheld,
-/obj/item/device/assembly/flash/handheld,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"bnk" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bnl" = (
-/obj/item/weapon/stock_parts/console_screen,
-/obj/structure/table/glass,
-/obj/item/weapon/stock_parts/console_screen,
-/obj/item/weapon/stock_parts/console_screen,
-/obj/item/weapon/stock_parts/matter_bin,
-/obj/item/weapon/stock_parts/matter_bin,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/item/weapon/stock_parts/scanning_module{
- pixel_x = 2;
- pixel_y = 3
- },
-/obj/item/weapon/stock_parts/scanning_module,
-/obj/machinery/power/apc{
- dir = 4;
- name = "Research Lab APC";
- pixel_x = 26;
- pixel_y = 0
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bnm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/medical/research{
- name = "Research Division"
- })
-"bnn" = (
-/obj/machinery/computer/rdconsole/core,
-/turf/open/floor/plasteel,
-/area/toxins/lab)
-"bno" = (
-/obj/machinery/r_n_d/circuit_imprinter,
-/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
-/turf/open/floor/plasteel,
-/area/toxins/lab)
-"bnp" = (
-/turf/open/floor/plasteel,
-/area/toxins/lab)
-"bnq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/toxins/lab)
-"bnr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/structure/plasticflaps{
- opacity = 1
- },
-/turf/open/floor/plasteel/loadingarea,
-/area/toxins/lab)
-"bns" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/asmaint2)
-"bnt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bnu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/closed/wall,
-/area/maintenance/asmaint2)
-"bnv" = (
-/obj/machinery/door/poddoor{
- id = "trash";
- name = "disposal bay door"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bnw" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bnx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bny" = (
-/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/manifold4w/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bnz" = (
-/obj/effect/landmark/start/cargo_technician,
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bnA" = (
-/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/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bnB" = (
-/obj/structure/closet/wardrobe/chemistry_white,
-/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bnC" = (
-/obj/structure/chair,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bnD" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/table,
-/obj/item/weapon/book/manual/wiki/chemistry,
-/obj/item/weapon/book/manual/wiki/chemistry{
- pixel_x = 3;
- pixel_y = 3
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bnE" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bnF" = (
-/obj/structure/sign/nosmoking_2{
- pixel_x = 0;
- pixel_y = 30
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bnG" = (
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/clipboard,
-/obj/item/weapon/pen/red,
-/obj/structure/table,
-/obj/machinery/computer/stockexchange,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bnH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bnI" = (
-/obj/machinery/computer/cargo/request,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bnJ" = (
-/obj/machinery/firealarm{
- pixel_y = 27
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bnK" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"bnL" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/brown{
- dir = 1
- },
-/area/quartermaster/office)
-"bnM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bnN" = (
-/turf/open/floor/plasteel/red/corner{
- dir = 2
- },
-/area/hallway/primary/central)
-"bnO" = (
-/obj/machinery/newscaster/security_unit{
- pixel_x = 0;
- pixel_y = 32
- },
-/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads)
-"bnP" = (
-/obj/machinery/button/flasher{
- id = "hopflash";
- pixel_x = 6;
- pixel_y = 36
- },
-/obj/machinery/button/door{
- id = "hop";
- name = "Privacy Shutters Control";
- pixel_x = 6;
- pixel_y = 25;
- req_access_txt = "57"
- },
-/obj/machinery/button/door{
- id = "hopqueue";
- name = "Queue Shutters Control";
- pixel_x = -4;
- pixel_y = 25;
- req_access_txt = "57"
- },
-/obj/machinery/light_switch{
- pixel_x = -4;
- pixel_y = 36
- },
-/obj/machinery/pdapainter,
-/turf/open/floor/plasteel/blue/side{
- dir = 9
- },
-/area/crew_quarters/heads)
-"bnQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/bed/dogbed{
- anchored = 1;
- desc = "Ian's bed! Looks comfy.";
- name = "Ian's bed"
- },
-/mob/living/simple_animal/pet/dog/corgi/Ian{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads)
-"bnR" = (
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching Prison Wing holding areas.";
- name = "Prison Monitor";
- network = list("Prison");
- pixel_x = 0;
- pixel_y = 30
- },
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads)
-"bnS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads)
-"bnT" = (
-/obj/structure/grille,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/gravity_generator)
-"bnU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/glass_engineering{
- name = "Gravity Generator";
- req_access_txt = "11";
- req_one_access_txt = "0"
- },
-/turf/open/floor/plasteel/black,
-/area/engine/gravity_generator)
-"bnV" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/gravity_generator)
-"bnW" = (
-/obj/structure/grille,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/gravity_generator)
-"bnX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/crew_quarters/captain)
-"bnY" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet/captain,
-/obj/machinery/airalarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/carpet,
-/area/crew_quarters/captain)
-"bnZ" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp/green,
-/turf/open/floor/carpet,
-/area/crew_quarters/captain)
-"boa" = (
-/obj/structure/toilet{
- dir = 4
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/captain)
-"bob" = (
-/obj/structure/table/glass,
-/obj/item/weapon/grenade/chem_grenade,
-/obj/item/weapon/grenade/chem_grenade,
-/obj/item/weapon/grenade/chem_grenade,
-/obj/item/weapon/grenade/chem_grenade,
-/obj/item/weapon/screwdriver{
- pixel_x = -2;
- pixel_y = 6
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"boc" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bod" = (
-/obj/structure/table,
-/obj/item/weapon/folder/white,
-/obj/item/device/radio/headset/headset_med,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"boe" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_medical{
- id_tag = "MedbayFoyer";
- name = "Medbay";
- req_access_txt = "5"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 1
- },
-/area/medical/medbay)
-"bof" = (
-/turf/closed/wall,
-/area/medical/medbay)
-"bog" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/medical/medbay)
-"boh" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_medical{
- id_tag = "MedbayFoyer";
- name = "Medbay";
- req_access_txt = "5"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 1
- },
-/area/medical/medbay)
-"boi" = (
-/obj/machinery/computer/med_data,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"boj" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/machinery/requests_console{
- announcementConsole = 0;
- department = "Medbay";
- departmentType = 1;
- name = "Medbay RC";
- pixel_x = 30;
- pixel_y = 0;
- pixel_z = 0
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bok" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Security Office";
- req_access_txt = "63"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/security/checkpoint/medical)
-"bol" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- pixel_y = 23
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bom" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bon" = (
-/turf/closed/wall/r_wall,
-/area/medical/genetics)
-"boo" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"boq" = (
-/obj/structure/bed/roller,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 4
- },
-/area/medical/medbay)
-"bor" = (
-/obj/structure/table,
-/obj/item/clothing/gloves/color/latex,
-/obj/item/weapon/surgical_drapes,
-/obj/item/weapon/razor,
-/turf/open/floor/plasteel/black,
-/area/assembly/robotics)
-"bos" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/power/apc{
- dir = 8;
- name = "Robotics Lab APC";
- pixel_x = -25
- },
-/obj/structure/cable,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bou" = (
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"bov" = (
-/obj/structure/table,
-/obj/item/device/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
- },
-/obj/item/device/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
- },
-/obj/item/device/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
- },
-/obj/item/device/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
- },
-/obj/item/weapon/stock_parts/cell/high/plus,
-/obj/item/weapon/stock_parts/cell/high/plus,
-/obj/item/weapon/crowbar,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"bow" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor/preopen{
- id = "Biohazard";
- name = "biohazard containment door"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
-"box" = (
-/turf/closed/wall,
-/area/assembly/robotics)
-"boy" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor/preopen{
- id = "Biohazard";
- name = "biohazard containment door"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
-"boz" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor/preopen{
- id = "Biohazard";
- name = "biohazard containment door"
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
-"boA" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"boB" = (
-/turf/closed/wall,
-/area/toxins/lab)
-"boC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/assembly/robotics)
-"boD" = (
-/obj/structure/table,
-/obj/item/weapon/circular_saw,
-/obj/item/weapon/scalpel{
- pixel_y = 12
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/assembly/robotics)
-"boE" = (
-/obj/structure/table,
-/obj/item/weapon/hemostat,
-/obj/item/weapon/cautery{
- pixel_x = 4
- },
-/turf/open/floor/plasteel/black,
-/area/assembly/robotics)
-"boF" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"boG" = (
-/obj/structure/table,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/device/mmi,
-/obj/item/device/mmi,
-/obj/item/device/mmi,
-/turf/open/floor/plasteel/black,
-/area/assembly/robotics)
-"boH" = (
-/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/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"boI" = (
-/obj/structure/grille,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"boJ" = (
-/obj/machinery/conveyor_switch/oneway{
- id = "QMLoad2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"boK" = (
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"boL" = (
-/obj/structure/table,
-/obj/item/weapon/retractor,
-/turf/open/floor/plasteel/black,
-/area/assembly/robotics)
-"boM" = (
-/turf/open/floor/plasteel/white/corner{
- dir = 2
- },
-/area/medical/research{
- name = "Research Division"
- })
-"boN" = (
-/turf/open/floor/plasteel/brown/corner{
- dir = 1
- },
-/area/quartermaster/office)
-"boO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white/side{
- dir = 2
- },
-/area/medical/research{
- name = "Research Division"
- })
-"boP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"boQ" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/weapon/stock_parts/cell/high/plus,
-/obj/item/weapon/stock_parts/cell/high/plus,
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"boR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"boS" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/westleft{
- name = "Cargo Desk";
- req_access_txt = "50"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"boT" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"boU" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"boV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"boW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 8
- },
-/area/hallway/primary/central)
-"boX" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "hopqueue";
- name = "HoP Queue Shutters"
- },
-/turf/open/floor/plasteel/loadingarea{
- dir = 8
- },
-/area/hallway/primary/central)
-"boY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/hallway/primary/central)
-"boZ" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/northleft{
- dir = 8;
- icon_state = "left";
- name = "Reception Window";
- req_access_txt = "0"
- },
-/obj/machinery/door/window/brigdoor{
- base_state = "rightsecure";
- dir = 4;
- icon_state = "rightsecure";
- name = "Head of Personnel's Desk";
- req_access = null;
- req_access_txt = "57"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/flasher{
- id = "hopflash";
- pixel_x = 0;
- pixel_y = 28
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "hop";
- layer = 2.9;
- name = "Privacy Shutters"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads)
-"bpa" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bpb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/heads)
-"bpc" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/blue/side{
- dir = 8
- },
-/area/crew_quarters/heads)
-"bpd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/crew_quarters/heads)
-"bpe" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/heads)
-"bpf" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads)
-"bpg" = (
-/obj/structure/chair/office/light,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"bph" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"bpi" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"bpj" = (
-/obj/structure/chair/comfy/brown{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Captain's Quarters";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/captain)
-"bpk" = (
-/obj/structure/closet/secure_closet/captains,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/captain)
-"bpl" = (
-/obj/structure/table/wood,
-/obj/item/weapon/storage/box/matches,
-/obj/item/weapon/razor{
- pixel_x = -4;
- pixel_y = 2
- },
-/obj/item/clothing/mask/cigarette/cigar,
-/obj/item/weapon/reagent_containers/food/drinks/flask/gold,
-/turf/open/floor/carpet,
-/area/crew_quarters/captain)
-"bpm" = (
-/obj/machinery/shower{
- dir = 1
- },
-/obj/item/weapon/soap/deluxe,
-/obj/item/weapon/bikehorn/rubberducky,
-/obj/effect/landmark/revenantspawn,
-/obj/structure/curtain,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/captain)
-"bpn" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bpo" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bpp" = (
-/obj/machinery/door/window/eastright{
- base_state = "left";
- dir = 8;
- icon_state = "left";
- name = "Research Division Delivery";
- req_access_txt = "47"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/toxins/lab)
-"bpq" = (
-/obj/machinery/light_switch{
- pixel_x = 0;
- pixel_y = -23
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bpr" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=8";
- dir = 8;
- freq = 1400;
- location = "Research Division"
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/toxins/lab)
-"bps" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/loadingarea{
- dir = 4
- },
-/area/quartermaster/storage)
-"bpt" = (
-/obj/structure/table,
-/obj/item/weapon/hand_labeler,
-/obj/item/stack/packageWrap,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bpu" = (
-/obj/structure/bed/roller,
-/obj/machinery/button/door{
- desc = "A remote control switch for the medbay foyer.";
- id = "MedbayFoyer";
- name = "Medbay Exit Button";
- normaldoorcontrol = 1;
- pixel_x = 0;
- pixel_y = 26
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bpv" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical{
- name = "Medbay Reception";
- req_access_txt = "5"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bpw" = (
-/obj/machinery/status_display,
-/turf/closed/wall,
-/area/medical/medbay)
-"bpx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bpy" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bpz" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bpA" = (
-/obj/machinery/computer/cargo,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bpB" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bpC" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bpD" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_medical{
- id_tag = null;
- name = "Chemistry Lab";
- req_access_txt = "5; 33"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bpE" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/medical/genetics)
-"bpF" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/southleft{
- dir = 1;
- name = "Chemistry Desk";
- req_access_txt = "33"
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/medical/chemistry)
-"bpG" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Genetics APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bpH" = (
-/obj/structure/table/glass,
-/obj/item/weapon/folder/white,
-/obj/item/device/radio/headset/headset_medsci,
-/obj/machinery/requests_console{
- department = "Genetics";
- departmentType = 0;
- name = "Genetics Requests Console";
- pixel_x = 0;
- pixel_y = 30
- },
-/obj/item/weapon/storage/pill_bottle/mutadone,
-/obj/item/weapon/storage/pill_bottle/mannitol,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bpI" = (
-/obj/machinery/dna_scannernew,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 5
- },
-/area/medical/genetics)
-"bpJ" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/airalarm{
- frequency = 1439;
- pixel_y = 23
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bpK" = (
-/mob/living/carbon/monkey,
-/turf/open/floor/plasteel,
-/area/medical/genetics)
-"bpL" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/medical/genetics)
-"bpM" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/medical/chemistry)
-"bpN" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bpO" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bpP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bpQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bpR" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bpS" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/bodybags,
-/obj/item/weapon/pen,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/assembly/robotics)
-"bpT" = (
-/obj/structure/table,
-/obj/item/weapon/storage/belt/utility,
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/glass{
- amount = 20;
- pixel_x = -3;
- pixel_y = 6
- },
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"bpU" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/weapon/stock_parts/cell/high/plus,
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"bpV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/assembly/robotics)
-"bpW" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "robotics2";
- name = "robotics lab shutters"
- },
-/obj/structure/window/fulltile,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "robotics2";
- name = "robotics lab shutters"
- },
-/turf/open/floor/plating,
-/area/assembly/robotics)
-"bpX" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white/corner{
- dir = 8
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bpY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/assembly/robotics)
-"bpZ" = (
-/obj/item/weapon/folder/white,
-/obj/structure/table,
-/obj/item/weapon/disk/tech_disk{
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/item/weapon/disk/tech_disk{
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/item/weapon/disk/design_disk,
-/obj/item/weapon/disk/design_disk,
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bqa" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/window/eastright{
- name = "Robotics Surgery";
- req_access_txt = "29"
- },
-/turf/open/floor/plasteel/black,
-/area/assembly/robotics)
-"bqc" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bqd" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/conveyor{
- dir = 4;
- id = "robo2"
- },
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"bqe" = (
-/turf/closed/wall/r_wall,
-/area/toxins/explab)
-"bqf" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "rnd2";
- name = "research lab shutters"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bqg" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bqh" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bqi" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad2"
- },
-/obj/machinery/door/poddoor{
- id = "QMLoaddoor2";
- name = "supply dock loading door"
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"bqj" = (
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad2"
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"bqk" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "rnd2";
- name = "research lab shutters"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bql" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"bqm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bqn" = (
-/obj/machinery/light_switch{
- pixel_x = 27
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bqo" = (
-/obj/machinery/autolathe,
-/obj/machinery/light_switch{
- pixel_x = -27
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bqp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/table/reinforced,
-/obj/item/device/destTagger,
-/obj/item/device/destTagger,
-/turf/open/floor/plasteel/brown{
- dir = 1
- },
-/area/quartermaster/office)
-"bqq" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/heads)
-"bqr" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/crew_quarters/heads)
-"bqs" = (
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bqt" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bqu" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bqv" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/hallway/primary/central)
-"bqw" = (
-/turf/open/floor/plasteel/red/corner{
- dir = 4
- },
-/area/hallway/primary/central)
-"bqx" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "hop";
- layer = 2.9;
- name = "Privacy Shutters"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/crew_quarters/heads)
-"bqy" = (
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bqz" = (
-/turf/open/floor/carpet,
-/area/crew_quarters/heads)
-"bqA" = (
-/obj/machinery/computer/card,
-/turf/open/floor/plasteel/blue/side{
- dir = 10
- },
-/area/crew_quarters/heads)
-"bqB" = (
-/obj/machinery/holopad,
-/turf/open/floor/carpet,
-/area/crew_quarters/heads)
-"bqC" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads)
-"bqD" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/power/apc{
- dir = 8;
- name = "Gravity Generator APC";
- pixel_x = -25;
- pixel_y = 1
- },
-/obj/structure/table,
-/obj/item/weapon/paper/gravity_gen{
- layer = 3
- },
-/obj/item/weapon/pen/blue,
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -35
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"bqE" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"bqF" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"bqG" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable,
-/obj/machinery/power/smes{
- charge = 5e+006
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"bqH" = (
-/turf/closed/wall/r_wall,
-/area/teleporter)
-"bqI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/teleporter)
-"bqJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/teleporter)
-"bqK" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Teleporter Maintenance";
- req_access_txt = "17"
- },
-/obj/structure/sign/securearea{
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/teleporter)
-"bqL" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bqM" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/medical/medbay)
-"bqN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bqO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteyellow/side{
- dir = 1
- },
-/area/medical/medbay)
-"bqP" = (
-/obj/structure/bed/roller,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bqQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bqR" = (
-/obj/structure/table,
-/obj/item/weapon/crowbar,
-/obj/item/clothing/neck/stethoscope,
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/obj/structure/sign/nosmoking_2{
- pixel_x = 0;
- pixel_y = 30
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteyellow/corner{
- dir = 4
- },
-/area/medical/medbay)
-"bqS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteyellow/side{
- dir = 1
- },
-/area/medical/medbay)
-"bqT" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel/whiteyellow/side{
- dir = 1
- },
-/area/medical/medbay)
-"bqU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/noticeboard{
- pixel_y = 32
- },
-/obj/machinery/camera{
- c_tag = "Medbay West";
- dir = 2;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bqV" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteyellow/corner{
- dir = 1
- },
-/area/medical/medbay)
-"bqW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bqX" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bqY" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bqZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bra" = (
-/obj/structure/table/glass,
-/obj/item/weapon/storage/box/rxglasses,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"brb" = (
-/obj/machinery/computer/scan_consolenew,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 6
- },
-/area/medical/genetics)
-"brc" = (
-/obj/structure/chair/office/light{
- dir = 4
- },
-/obj/effect/landmark/start/geneticist,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"brd" = (
-/turf/open/floor/plasteel,
-/area/medical/genetics)
-"bre" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/mob/living/carbon/monkey,
-/turf/open/floor/plasteel,
-/area/medical/genetics)
-"brf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"brg" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"brh" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 2
- },
-/area/medical/medbay)
-"bri" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 2
- },
-/area/medical/medbay)
-"brj" = (
-/obj/structure/bed/roller,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 6
- },
-/area/medical/medbay)
-"brk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"brm" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white/side{
- dir = 9
- },
-/area/medical/research{
- name = "Research Division"
- })
-"brn" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bro" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white/side{
- dir = 10
- },
-/area/medical/research{
- name = "Research Division"
- })
-"brp" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"brq" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/button/door{
- dir = 2;
- id = "robotics2";
- name = "Shutters Control Button";
- pixel_x = 24;
- pixel_y = -24;
- req_access_txt = "29"
- },
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"brr" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/toxins/explab)
-"brs" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/eastright{
- base_state = "left";
- dir = 8;
- icon_state = "left";
- name = "Robotics Desk";
- req_access_txt = "29"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "robotics2";
- name = "robotics lab shutters"
- },
-/obj/item/weapon/folder/white,
-/obj/item/weapon/pen,
-/turf/open/floor/plating,
-/area/assembly/robotics)
-"brt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white/side{
- dir = 9
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bru" = (
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/explab)
-"brv" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/explab)
-"brw" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/explab)
-"brx" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "rnd2";
- name = "research lab shutters"
- },
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/toxins/lab)
-"bry" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Experimentation Lab Maintenance";
- req_access_txt = "47"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/toxins/explab)
-"brz" = (
-/obj/structure/table,
-/obj/item/weapon/pen,
-/obj/machinery/camera{
- c_tag = "Experimentor Lab";
- dir = 2;
- network = list("SS13","RD")
- },
-/obj/item/weapon/hand_labeler,
-/obj/item/stack/packageWrap,
-/turf/open/floor/plasteel/white/side{
- dir = 2
- },
-/area/toxins/explab)
-"brA" = (
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- pixel_x = 0;
- pixel_y = 6
- },
-/turf/open/floor/plasteel/white/corner{
- dir = 2
- },
-/area/toxins/explab)
-"brB" = (
-/obj/structure/closet/l3closet/scientist,
-/turf/open/floor/plasteel/white/side{
- dir = 2
- },
-/area/toxins/explab)
-"brC" = (
-/obj/structure/table,
-/obj/item/weapon/folder/white,
-/obj/item/weapon/folder/white,
-/obj/machinery/airalarm{
- frequency = 1439;
- pixel_y = 23
- },
-/obj/item/device/radio/off,
-/turf/open/floor/plasteel/white/side{
- dir = 2
- },
-/area/toxins/explab)
-"brD" = (
-/obj/structure/closet/emcloset{
- pixel_x = -2
- },
-/turf/open/floor/plasteel/white/corner{
- dir = 8
- },
-/area/toxins/explab)
-"brE" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "8;12"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"brF" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/sign/securearea{
- pixel_x = -32
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"brG" = (
-/obj/machinery/atmospherics/components/binary/valve{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"brH" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"brI" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"brJ" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- name = "Supply Dock Airlock";
- req_access_txt = "31"
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"brK" = (
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"brL" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"brM" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=8";
- dir = 8;
- freq = 1400;
- location = "QM #1"
- },
-/obj/effect/turf_decal/bot,
-/mob/living/simple_animal/bot/mulebot{
- beacon_freq = 1400;
- home_destination = "QM #1";
- suffix = "#1"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"brN" = (
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"brO" = (
-/obj/structure/table,
-/obj/machinery/requests_console{
- department = "Cargo Bay";
- departmentType = 2;
- pixel_x = -30;
- pixel_y = 0
- },
-/obj/item/device/multitool,
-/obj/machinery/camera{
- c_tag = "Cargo Office";
- dir = 4;
- network = list("SS13")
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"brP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/explab)
-"brQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j2";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"brR" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"brS" = (
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads)
-"brT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"brU" = (
-/obj/structure/grille,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = -32
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "hop";
- layer = 2.9;
- name = "Privacy Shutters"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/crew_quarters/heads)
-"brV" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/medical/medbay)
-"brW" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/vending/cart,
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads)
-"brX" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/masks{
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/item/weapon/storage/box/gloves{
- pixel_x = 3;
- pixel_y = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"brY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"brZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads)
-"bsa" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"bsb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"bsc" = (
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"bsd" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"bse" = (
-/obj/machinery/power/terminal{
- icon_state = "term";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"bsf" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"bsg" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"bsh" = (
-/turf/closed/wall,
-/area/teleporter)
-"bsi" = (
-/obj/structure/table,
-/obj/item/weapon/hand_tele,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/teleporter)
-"bsj" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 1
- },
-/obj/structure/table,
-/obj/item/device/radio/beacon,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"bsk" = (
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"bsl" = (
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "Station Intercom (General)";
- pixel_y = 20
- },
-/obj/structure/closet/crate,
-/obj/item/weapon/crowbar,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"bsm" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"bsn" = (
-/obj/machinery/camera{
- c_tag = "Teleporter"
- },
-/obj/machinery/airalarm{
- frequency = 1439;
- pixel_y = 23
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"bso" = (
-/obj/machinery/light_switch{
- pixel_x = 27
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"bsp" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/blue/side{
- dir = 8
- },
-/area/hallway/primary/central)
-"bsq" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- freerange = 0;
- frequency = 1485;
- listening = 1;
- name = "Station Intercom (Medbay)";
- pixel_x = 0;
- pixel_y = -30
- },
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bsr" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bss" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bst" = (
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- freerange = 0;
- frequency = 1485;
- listening = 1;
- name = "Station Intercom (Medbay)";
- pixel_x = 30;
- pixel_y = 0
- },
-/obj/machinery/camera{
- c_tag = "Medbay East";
- dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = -22
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bsu" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_medical{
- id_tag = "GeneticsDoor";
- name = "Genetics";
- req_access_txt = "5; 68"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bsv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bsw" = (
-/obj/machinery/door/airlock/research{
- name = "Robotics Lab";
- req_access_txt = "29";
- req_one_access_txt = "0"
- },
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bsx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bsy" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bsz" = (
-/obj/machinery/status_display{
- density = 0;
- layer = 3;
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/white/side{
- dir = 5
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bsA" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
-/turf/open/floor/plasteel/white/side{
- dir = 9
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bsC" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bsD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bsE" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/research{
- name = "Experimentation Lab";
- req_access_txt = "47"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/explab)
-"bsF" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/explab)
-"bsG" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/explab)
-"bsH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/toxins/explab)
-"bsI" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Experimentation Lab APC";
- pixel_x = 26;
- pixel_y = 0
- },
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/explab)
-"bsJ" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/asmaint2)
-"bsK" = (
-/obj/structure/table/glass,
-/obj/item/weapon/storage/box/disks{
- pixel_x = 2;
- pixel_y = 2
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bsL" = (
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bsM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bsN" = (
-/obj/machinery/door/window/westleft{
- name = "Monkey Pen";
- req_access_txt = "9"
- },
-/turf/open/floor/plasteel,
-/area/medical/genetics)
-"bsO" = (
-/obj/structure/bodycontainer/morgue,
-/turf/open/floor/plasteel/black,
-/area/assembly/robotics)
-"bsP" = (
-/obj/structure/table/optable{
- name = "Robotics Operating Table"
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/black,
-/area/assembly/robotics)
-"bsQ" = (
-/turf/open/floor/plasteel/black,
-/area/assembly/robotics)
-"bsR" = (
-/obj/machinery/computer/operating{
- name = "Robotics Operating Computer"
- },
-/turf/open/floor/plasteel/black,
-/area/assembly/robotics)
-"bsS" = (
-/obj/machinery/camera{
- c_tag = "Robotics Lab - South";
- dir = 1;
- network = list("SS13","RD")
- },
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bsT" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bsU" = (
-/obj/structure/table/optable{
- name = "Robotics Operating Table"
- },
-/obj/item/weapon/surgical_drapes,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"bsV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bsW" = (
-/obj/structure/closet/wardrobe/robotics_black,
-/obj/item/device/radio/headset/headset_sci{
- pixel_x = -3
- },
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bsX" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/white/side{
- dir = 5
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bsY" = (
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/obj/effect/landmark/start/head_of_personnel,
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads)
-"bsZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bta" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Research Division North";
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"btb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/noticeboard{
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"btc" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/teleporter)
-"btd" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"bte" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white/side{
- dir = 6
- },
-/area/medical/research{
- name = "Research Division"
- })
-"btf" = (
-/obj/machinery/requests_console{
- announcementConsole = 0;
- department = "Medbay";
- departmentType = 1;
- name = "Medbay RC";
- pixel_x = -30;
- pixel_y = 0;
- pixel_z = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"btg" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bth" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bti" = (
-/obj/structure/closet/secure_closet/personal/patient,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"btj" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/explab)
-"btk" = (
-/obj/structure/closet/wardrobe/white,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"btl" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"btm" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 2;
- icon_state = "pipe-j2s";
- sortType = 12
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"btn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/medical/research{
- name = "Research Division"
- })
-"bto" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/sign/securearea{
- pixel_x = 32
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"btp" = (
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"btq" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"btr" = (
-/obj/machinery/camera{
- c_tag = "Cargo Recieving Dock";
- dir = 4
- },
-/obj/machinery/button/door{
- id = "QMLoaddoor";
- layer = 4;
- name = "Loading Doors";
- pixel_x = -24;
- pixel_y = -8
- },
-/obj/machinery/button/door{
- dir = 2;
- id = "QMLoaddoor2";
- layer = 4;
- name = "Loading Doors";
- pixel_x = -24;
- pixel_y = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bts" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=8";
- dir = 8;
- freq = 1400;
- location = "QM #2"
- },
-/obj/effect/turf_decal/bot,
-/mob/living/simple_animal/bot/mulebot{
- home_destination = "QM #2";
- suffix = "#2"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"btt" = (
-/obj/structure/table,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/obj/item/weapon/folder/yellow,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"btu" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"btv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"btw" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 8
- },
-/area/medical/research{
- name = "Research Division"
- })
-"btx" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor/preopen{
- id = "Biohazard";
- name = "biohazard containment door"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
-"bty" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"btz" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/brown/corner{
- dir = 8
- },
-/area/hallway/primary/central)
-"btA" = (
-/obj/machinery/camera{
- c_tag = "Research Division West";
- dir = 2;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"btB" = (
-/obj/structure/table,
-/obj/machinery/recharger,
-/turf/open/floor/plasteel/blue/side{
- dir = 9
- },
-/area/crew_quarters/heads)
-"btC" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads)
-"btD" = (
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen,
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads)
-"btE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads)
-"btF" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering{
- name = "Gravity Generator";
- req_access_txt = "11"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
- },
-/area/engine/gravity_generator)
-"btG" = (
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"btH" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/teleporter)
-"btI" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Teleporter APC";
- pixel_x = -24
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"btJ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/bluespace_beacon,
-/turf/open/floor/plasteel,
-/area/teleporter)
-"btK" = (
-/obj/machinery/holopad,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"btL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"btM" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Teleport Access";
- req_access_txt = "17"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"btN" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"btO" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/blue/side{
- dir = 8
- },
-/area/hallway/primary/central)
-"btP" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -5;
- pixel_y = 30
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"btQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white/side{
- dir = 10
- },
-/area/medical/research{
- name = "Research Division"
- })
-"btR" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"btS" = (
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"btT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"btU" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"btV" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"btW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white/side{
- dir = 5
- },
-/area/medical/research{
- name = "Research Division"
- })
-"btX" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"btY" = (
-/obj/machinery/requests_console{
- department = "Science";
- departmentType = 2;
- name = "Science Requests Console";
- pixel_x = 0;
- pixel_y = -30;
- receive_ore_updates = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/explab)
-"btZ" = (
-/obj/machinery/light,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bua" = (
-/turf/closed/wall,
-/area/medical/genetics)
-"bub" = (
-/obj/machinery/light,
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -35
- },
-/turf/open/floor/plasteel/loadingarea{
- dir = 8
- },
-/area/quartermaster/storage)
-"buc" = (
-/obj/machinery/light,
-/obj/machinery/power/apc{
- dir = 2;
- name = "Cargo Office APC";
- pixel_x = 1;
- pixel_y = -24
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/brown/corner{
- dir = 2
- },
-/area/quartermaster/office)
-"bud" = (
-/turf/open/floor/plasteel/brown/corner{
- dir = 8
- },
-/area/quartermaster/office)
-"bue" = (
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Head of Personnel's Desk";
- departmentType = 5;
- name = "Head of Personnel RC";
- pixel_y = -30
- },
-/obj/machinery/camera{
- c_tag = "Head of Personnel's Office";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads)
-"buf" = (
-/obj/machinery/computer/scan_consolenew,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 5
- },
-/area/medical/genetics)
-"bug" = (
-/obj/structure/chair/office/light{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bui" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"buj" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "robotics2";
- name = "robotics lab shutters"
- },
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/assembly/robotics)
-"buk" = (
-/turf/open/floor/plasteel/white/side{
- dir = 8
- },
-/area/medical/sleeper)
-"bul" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bum" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bun" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"buo" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bup" = (
-/obj/machinery/light,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"buq" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/medical/genetics)
-"bur" = (
-/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/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bus" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"but" = (
-/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/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"buu" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/explab)
-"buv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/explab)
-"buw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/explab)
-"bux" = (
-/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/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 4
- },
-/area/medical/genetics)
-"buy" = (
-/obj/structure/disposalpipe/sortjunction{
- sortType = 23
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/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/manifold4w/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"buz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"buB" = (
-/obj/machinery/conveyor_switch/oneway{
- convdir = -1;
- id = "QMLoad"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"buC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"buD" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=8";
- dir = 8;
- freq = 1400;
- location = "QM #3"
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"buE" = (
-/obj/structure/table,
-/obj/machinery/airalarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/obj/machinery/computer/stockexchange,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"buF" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"buG" = (
-/obj/machinery/door/airlock/research{
- name = "Genetics Research";
- req_access_txt = "9"
- },
-/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/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"buH" = (
-/obj/machinery/door/airlock/research{
- name = "Genetics Research Access";
- req_access_txt = "47"
- },
-/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/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"buI" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"buJ" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"buK" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"buL" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"buM" = (
-/obj/machinery/keycard_auth{
- pixel_x = -24;
- pixel_y = 0
- },
-/obj/machinery/computer/cargo,
-/turf/open/floor/plasteel/blue/side{
- dir = 8
- },
-/area/crew_quarters/heads)
-"buN" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads)
-"buO" = (
-/obj/structure/table,
-/obj/item/weapon/folder/blue,
-/obj/item/weapon/stamp/hop,
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads)
-"buP" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/closed/wall,
-/area/engine/gravity_generator)
-"buQ" = (
-/obj/machinery/airalarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"buR" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/engine/gravity_generator)
-"buS" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/machinery/camera{
- c_tag = "Gravity Generator Foyer"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"buT" = (
-/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/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 8
- },
-/area/medical/research{
- name = "Research Division"
- })
-"buU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor/preopen{
- id = "Biohazard";
- name = "biohazard containment door"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
-"buV" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"buW" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/teleporter)
-"buX" = (
-/obj/machinery/shieldwallgen,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/teleporter)
-"buY" = (
-/obj/machinery/shieldwallgen,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/teleporter)
-"buZ" = (
-/obj/structure/closet/crate,
-/turf/open/floor/plasteel,
-/area/teleporter)
-"bva" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/sign/securearea{
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/blue/side{
- dir = 8
- },
-/area/hallway/primary/central)
-"bvb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/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/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bvc" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bvd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/medical/sleeper)
-"bve" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bvf" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel/white/side{
- dir = 9
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bvg" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bvh" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/medical/sleeper)
-"bvi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/medical/sleeper)
-"bvj" = (
-/turf/closed/wall,
-/area/medical/sleeper)
-"bvk" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bvl" = (
-/obj/machinery/door/airlock/glass_medical{
- id_tag = "";
- name = "Surgery Observation";
- req_access_txt = "0"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/medical/sleeper)
-"bvm" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bvn" = (
-/obj/machinery/button/door{
- desc = "A remote control switch for the genetics doors.";
- id = "GeneticsDoor";
- name = "Genetics Exit Button";
- normaldoorcontrol = 1;
- pixel_x = 8;
- pixel_y = 24
- },
-/obj/structure/table,
-/obj/item/weapon/book/manual/medical_cloning{
- pixel_y = 6
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bvo" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bvp" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bvq" = (
-/obj/structure/chair,
-/obj/effect/landmark/start/geneticist,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bvr" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bvs" = (
-/obj/machinery/dna_scannernew,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 6
- },
-/area/medical/genetics)
-"bvt" = (
-/obj/machinery/door/airlock/glass_research{
- name = "Genetics Research";
- req_access_txt = "5; 9; 68"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bvu" = (
-/obj/structure/window/reinforced,
-/mob/living/carbon/monkey,
-/turf/open/floor/plasteel,
-/area/medical/genetics)
-"bvv" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/plasteel,
-/area/medical/genetics)
-"bvw" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bvx" = (
-/turf/closed/wall/r_wall,
-/area/medical/research{
- name = "Research Division"
- })
-"bvy" = (
-/obj/machinery/camera{
- c_tag = "Genetics Research";
- dir = 1;
- network = list("SS13","RD");
- pixel_x = 0
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 4
- },
-/area/medical/genetics)
-"bvz" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bvA" = (
-/obj/structure/sign/securearea,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/medical/genetics)
-"bvB" = (
-/obj/machinery/camera{
- c_tag = "Genetics Access";
- dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = -22
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bvC" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/security/checkpoint/science)
-"bvD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bvE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white/side{
- dir = 6
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bvF" = (
-/obj/structure/table,
-/obj/item/weapon/cartridge/quartermaster{
- pixel_x = 6;
- pixel_y = 5
- },
-/obj/item/weapon/cartridge/quartermaster,
-/obj/item/weapon/cartridge/quartermaster{
- pixel_x = -4;
- pixel_y = 7
- },
-/obj/machinery/requests_console{
- department = "Cargo Bay";
- departmentType = 2;
- pixel_x = -30;
- pixel_y = 0
- },
-/obj/item/weapon/coin/silver,
-/turf/open/floor/plasteel/brown{
- dir = 9
- },
-/area/quartermaster/qm)
-"bvG" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bvH" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white/side{
- dir = 9
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bvI" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bvJ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/crew_quarters/hor)
-"bvK" = (
-/turf/closed/wall,
-/area/crew_quarters/hor)
-"bvL" = (
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/checkpoint/supply)
-"bvM" = (
-/obj/machinery/light_switch{
- pixel_x = -20;
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/toxins/explab)
-"bvN" = (
-/obj/structure/chair/office/light,
-/obj/effect/landmark/start/scientist,
-/turf/open/floor/plasteel/white,
-/area/toxins/explab)
-"bvO" = (
-/turf/open/floor/plasteel/white,
-/area/toxins/explab)
-"bvP" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 5;
- pixel_y = -32
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/explab)
-"bvQ" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bvR" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bvS" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad"
- },
-/obj/machinery/door/poddoor{
- id = "QMLoaddoor";
- name = "supply dock loading door"
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"bvT" = (
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad"
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"bvU" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad"
- },
-/obj/machinery/light,
-/obj/machinery/status_display{
- density = 0;
- pixel_y = -30;
- supply_display = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"bvV" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"bvW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bvX" = (
-/obj/machinery/camera{
- c_tag = "Cargo Bay South";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bvY" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=8";
- dir = 8;
- freq = 1400;
- location = "QM #4"
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bvZ" = (
-/obj/structure/table,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = 6;
- pixel_y = -5
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bwa" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bwb" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bwc" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bwd" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/checkpoint/supply)
-"bwe" = (
-/turf/closed/wall,
-/area/security/checkpoint/supply)
-"bwf" = (
-/obj/machinery/camera{
- c_tag = "Cargo Bay Entrance";
- dir = 4;
- network = list("SS13")
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/brown/corner{
- dir = 8
- },
-/area/hallway/primary/central)
-"bwg" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "hopqueue";
- name = "HoP Queue Shutters"
- },
-/turf/open/floor/plasteel/loadingarea{
- dir = 4
- },
-/area/hallway/primary/central)
-"bwh" = (
-/obj/structure/sign/securearea{
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bwi" = (
-/obj/item/device/radio/intercom{
- dir = 8;
- name = "Station Intercom (General)";
- pixel_x = -28
- },
-/obj/structure/closet/secure_closet/hop,
-/turf/open/floor/plasteel/blue/side{
- dir = 10
- },
-/area/crew_quarters/heads)
-"bwj" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads)
-"bwk" = (
-/obj/structure/table,
-/obj/item/weapon/hand_labeler,
-/obj/item/stack/packageWrap{
- pixel_x = -1;
- pixel_y = -1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads)
-"bwl" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads)
-"bwm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/engine/gravity_generator)
-"bwn" = (
-/obj/structure/closet/radiation,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"bwo" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/engine/gravity_generator)
-"bwp" = (
-/obj/structure/closet/radiation,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"bwq" = (
-/obj/machinery/teleport/station,
-/turf/open/floor/plating,
-/area/teleporter)
-"bwr" = (
-/obj/machinery/computer/teleporter,
-/turf/open/floor/plating,
-/area/teleporter)
-"bws" = (
-/obj/structure/rack,
-/obj/item/weapon/tank/internals/oxygen,
-/obj/item/clothing/mask/gas,
-/turf/open/floor/plating,
-/area/teleporter)
-"bwt" = (
-/obj/machinery/teleport/hub,
-/turf/open/floor/plating,
-/area/teleporter)
-"bwu" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bwv" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=4";
- dir = 4;
- freq = 1400;
- location = "Medbay"
- },
-/obj/structure/plasticflaps{
- opacity = 1
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/medical/medbay)
-"bww" = (
-/obj/structure/chair,
-/obj/machinery/camera{
- c_tag = "Surgery Observation"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/medical/sleeper)
-"bwx" = (
-/obj/machinery/door/window/eastleft{
- name = "Medical Delivery";
- req_access_txt = "5"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/medical/medbay)
-"bwy" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bwz" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bwA" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bwB" = (
-/obj/structure/chair,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/black,
-/area/medical/sleeper)
-"bwC" = (
-/obj/machinery/computer/med_data,
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bwD" = (
-/obj/machinery/sleeper{
- icon_state = "sleeper-open";
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/medical/sleeper)
-"bwE" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/medical/sleeper)
-"bwF" = (
-/obj/structure/table/glass,
-/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
- pixel_x = 7;
- pixel_y = 1
- },
-/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
- pixel_x = 7;
- pixel_y = 1
- },
-/turf/open/floor/plasteel,
-/area/medical/sleeper)
-"bwG" = (
-/obj/structure/sign/nosmoking_2,
-/turf/closed/wall,
-/area/medical/sleeper)
-"bwH" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/turf/open/floor/plasteel,
-/area/medical/sleeper)
-"bwI" = (
-/obj/machinery/atmospherics/components/unary/cryo_cell,
-/turf/open/floor/plasteel,
-/area/medical/sleeper)
-"bwJ" = (
-/obj/structure/table/glass,
-/obj/machinery/camera{
- c_tag = "Medbay Cryogenics";
- dir = 2;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
- pixel_x = 0;
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/medical/sleeper)
-"bwK" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bwL" = (
-/obj/machinery/camera{
- c_tag = "Genetics Cloning";
- dir = 4;
- network = list("SS13")
- },
-/obj/structure/table,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/obj/item/weapon/storage/box/rxglasses{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/box/bodybags,
-/obj/item/weapon/pen,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bwM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/checkpoint/science)
-"bwN" = (
-/obj/machinery/light_switch{
- pixel_x = 8;
- pixel_y = 28
- },
-/obj/machinery/button/door{
- id = "Biohazard";
- name = "Biohazard Shutter Control";
- pixel_x = -5;
- pixel_y = 28;
- req_access_txt = "47"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/checkpoint/science)
-"bwO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/white/side{
- dir = 9
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bwQ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/crew_quarters/hor)
-"bwR" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"bwS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/qm)
-"bwT" = (
-/obj/machinery/door/airlock/glass_mining{
- name = "Quartermaster";
- req_access_txt = "41"
- },
-/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/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/qm)
-"bwU" = (
-/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/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/brown{
- dir = 4
- },
-/area/quartermaster/qm)
-"bwV" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/landmark/start/shaft_miner,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bwW" = (
-/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 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bwX" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 1;
- icon_state = "pipe-j2s";
- sortType = 3
- },
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bwY" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Security Office";
- req_access_txt = "63"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint/supply)
-"bwZ" = (
-/obj/structure/chair,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/medical/sleeper)
-"bxa" = (
-/obj/structure/chair,
-/obj/structure/sign/nosmoking_2{
- pixel_x = -28
- },
-/turf/open/floor/plasteel/black,
-/area/medical/sleeper)
-"bxb" = (
-/obj/structure/chair,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel/black,
-/area/medical/sleeper)
-"bxc" = (
-/obj/machinery/holopad,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/medical/sleeper)
-"bxd" = (
-/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/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bxe" = (
-/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/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bxf" = (
-/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/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white/side{
- dir = 5
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bxg" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bxi" = (
-/obj/machinery/computer/aifixer,
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Research Director's Desk";
- departmentType = 5;
- name = "Research Director RC";
- pixel_x = -2;
- pixel_y = 30;
- receive_ore_updates = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"bxj" = (
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching the RD's goons and the AI's satellite from the safety of his office.";
- name = "Research Monitor";
- network = list("RD","MiniSat");
- pixel_x = 0;
- pixel_y = 2
- },
-/obj/structure/table,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"bxk" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"bxl" = (
-/obj/structure/rack,
-/obj/item/weapon/circuitboard/aicore{
- pixel_x = -2;
- pixel_y = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
-"bxm" = (
-/obj/effect/landmark/xmastree/rdrod,
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
-"bxn" = (
-/turf/closed/wall,
-/area/toxins/explab)
-"bxo" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/toxins/explab)
-"bxp" = (
-/obj/machinery/computer/rdconsole/experiment,
-/turf/open/floor/plasteel/white/side{
- dir = 1
- },
-/area/toxins/explab)
-"bxq" = (
-/obj/structure/table,
-/obj/item/weapon/clipboard,
-/obj/item/weapon/book/manual/experimentor,
-/turf/open/floor/plasteel/white/corner{
- dir = 4
- },
-/area/toxins/explab)
-"bxr" = (
-/obj/structure/closet/radiation,
-/turf/open/floor/plasteel/white/corner{
- dir = 1
- },
-/area/toxins/explab)
-"bxs" = (
-/obj/machinery/button/door{
- id = "telelab";
- name = "Test Chamber Blast Doors";
- pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "47"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/explab)
-"bxt" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bxu" = (
-/turf/closed/wall,
-/area/quartermaster/qm)
-"bxv" = (
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/obj/effect/landmark/start/depsec/science,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint/science)
-"bxw" = (
-/obj/machinery/door/airlock/glass_mining{
- name = "Quartermaster";
- req_access_txt = "41"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/qm)
-"bxx" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/quartermaster/qm)
-"bxy" = (
-/turf/closed/wall,
-/area/quartermaster/miningdock)
-"bxz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/quartermaster/miningdock)
-"bxA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/mining{
- req_access_txt = "48"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bxB" = (
-/obj/item/weapon/paper_bin{
- pixel_x = 1;
- pixel_y = 9
- },
-/obj/item/weapon/pen,
-/obj/structure/table,
-/turf/open/floor/plasteel/red/side{
- dir = 9
- },
-/area/security/checkpoint/supply)
-"bxC" = (
-/obj/machinery/recharger{
- pixel_y = 4
- },
-/obj/structure/table,
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/checkpoint/supply)
-"bxD" = (
-/obj/item/weapon/book/manual/wiki/security_space_law,
-/obj/structure/table,
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/checkpoint/supply)
-"bxE" = (
-/obj/machinery/computer/secure_data,
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/checkpoint/supply)
-"bxF" = (
-/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/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white/side{
- dir = 9
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bxG" = (
-/obj/machinery/door/airlock/command{
- name = "Head of Personnel";
- req_access = null;
- req_access_txt = "57"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads)
-"bxH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/closed/wall,
-/area/engine/gravity_generator)
-"bxI" = (
-/obj/machinery/ai_status_display,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/closed/wall,
-/area/engine/gravity_generator)
-"bxJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/closed/wall,
-/area/engine/gravity_generator)
-"bxK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/closed/wall,
-/area/engine/gravity_generator)
-"bxL" = (
-/obj/machinery/camera{
- c_tag = "Central Hallway South-East";
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bxM" = (
-/obj/structure/chair/office/dark,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint2)
-"bxN" = (
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/structure/mirror{
- pixel_x = -28
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bxO" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bxP" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"bxQ" = (
-/turf/open/floor/plasteel,
-/area/medical/sleeper)
-"bxR" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/medical/sleeper)
-"bxS" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/medical/sleeper)
-"bxT" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/medical/sleeper)
-"bxU" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 10;
- pixel_x = 0;
- initialize_directions = 10
- },
-/turf/open/floor/plasteel,
-/area/medical/sleeper)
-"bxV" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/turf/open/floor/plasteel,
-/area/medical/sleeper)
-"bxW" = (
-/obj/machinery/door/airlock/glass_command{
- name = "Research Director";
- req_access_txt = "30"
- },
-/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/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"bxX" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bxY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"bxZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"bya" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"byb" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"byc" = (
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/computer/stockexchange,
-/turf/open/floor/plasteel/brown{
- dir = 2
- },
-/area/quartermaster/qm)
-"byd" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/brown{
- dir = 2
- },
-/area/quartermaster/qm)
-"bye" = (
-/obj/structure/sign/securearea,
-/turf/closed/wall/r_wall,
-/area/medical/genetics)
-"byf" = (
-/turf/closed/wall/r_wall,
-/area/toxins/server)
-"byg" = (
-/obj/structure/table,
-/obj/item/weapon/clipboard,
-/obj/item/weapon/stamp/qm{
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/brown{
- dir = 2
- },
-/area/quartermaster/qm)
-"byh" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Server Room";
- req_access = null;
- req_access_txt = "30"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/black,
-/area/toxins/server)
-"byi" = (
-/turf/closed/wall,
-/area/security/checkpoint/science)
-"byj" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Security Office";
- req_access_txt = "63"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/security/checkpoint/science)
-"byk" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/checkpoint/science)
-"byl" = (
-/obj/structure/table,
-/obj/item/weapon/folder/yellow,
-/obj/item/weapon/pen{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/weapon/pen/red,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/brown{
- dir = 2
- },
-/area/quartermaster/qm)
-"bym" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/quartermaster/qm)
-"byn" = (
-/obj/structure/filingcabinet,
-/obj/machinery/light_switch{
- pixel_y = -25
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/brown{
- dir = 6
- },
-/area/quartermaster/qm)
-"byo" = (
-/obj/structure/table,
-/obj/machinery/button/door{
- id = "Biohazard";
- name = "Biohazard Shutter Control";
- pixel_x = -5;
- pixel_y = 5;
- req_access_txt = "47"
- },
-/obj/machinery/button/door{
- id = "rnd2";
- name = "Research Lab Shutter Control";
- pixel_x = 5;
- pixel_y = 5;
- req_access_txt = "47"
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"byp" = (
-/obj/machinery/computer/robotics,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"byq" = (
-/obj/structure/chair/office/light{
- dir = 8
- },
-/obj/effect/landmark/start/research_director,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"byr" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
-"bys" = (
-/obj/structure/rack,
-/obj/item/device/aicard,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
-"byt" = (
-/turf/closed/wall/r_wall,
-/area/crew_quarters/hor)
-"byu" = (
-/obj/structure/displaycase/labcage,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
-"byv" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/preopen{
- id = "telelab";
- name = "test chamber blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/engine,
-/area/toxins/explab)
-"byw" = (
-/obj/machinery/door/poddoor/preopen{
- id = "telelab";
- name = "test chamber blast door"
- },
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/engine,
-/area/toxins/explab)
-"byx" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/heater{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"byy" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"byz" = (
-/turf/open/floor/plasteel/brown{
- dir = 1
- },
-/area/quartermaster/qm)
-"byA" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Quartermaster APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plasteel/brown{
- dir = 1
- },
-/area/quartermaster/qm)
-"byB" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plasteel/brown{
- dir = 1
- },
-/area/quartermaster/qm)
-"byC" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/brown{
- dir = 1
- },
-/area/quartermaster/qm)
-"byD" = (
-/obj/structure/closet/secure_closet/quartermaster,
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/turf/open/floor/plasteel/brown{
- dir = 5
- },
-/area/quartermaster/qm)
-"byE" = (
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"byF" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Mining Dock APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"byG" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"byH" = (
-/obj/machinery/light_switch{
- pixel_y = -25
- },
-/obj/structure/closet,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 10
- },
-/area/security/checkpoint/supply)
-"byI" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/checkpoint/supply)
-"byJ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/security/checkpoint/supply)
-"byK" = (
-/turf/open/floor/plasteel,
-/area/security/checkpoint/supply)
-"byL" = (
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/obj/effect/landmark/start/depsec/supply,
-/turf/open/floor/plasteel,
-/area/security/checkpoint/supply)
-"byM" = (
-/obj/item/device/radio/intercom{
- dir = 4;
- name = "Station Intercom (General)";
- pixel_x = 27
- },
-/obj/machinery/computer/security/mining{
- network = list("MINE","AuxBase")
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/checkpoint/supply)
-"byN" = (
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"byO" = (
-/obj/machinery/requests_console{
- department = "Security";
- departmentType = 5;
- pixel_y = -30
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint/supply)
-"byP" = (
-/obj/structure/sign/securearea{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/blue/side{
- dir = 1
- },
-/area/hallway/primary/central)
-"byQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/blue/side{
- dir = 1
- },
-/area/hallway/primary/central)
-"byR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/blue/side{
- dir = 1
- },
-/area/hallway/primary/central)
-"byS" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"byT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint/supply)
-"byU" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"byV" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 5;
- pixel_y = -32
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"byW" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 5;
- pixel_y = -32
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"byX" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"byY" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/medical/sleeper)
-"byZ" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/medical/sleeper)
-"bza" = (
-/obj/structure/chair,
-/obj/machinery/airalarm{
- frequency = 1439;
- pixel_y = 23
- },
-/turf/open/floor/plasteel/black,
-/area/medical/sleeper)
-"bzb" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/medical/sleeper)
-"bzc" = (
-/obj/machinery/door/airlock/glass_medical{
- id_tag = null;
- name = "Recovery Room";
- req_access_txt = "0"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bzd" = (
-/obj/structure/table,
-/obj/item/stack/packageWrap,
-/obj/item/stack/packageWrap,
-/obj/item/weapon/pen,
-/obj/machinery/requests_console{
- announcementConsole = 0;
- department = "Medbay";
- departmentType = 1;
- name = "Medbay RC";
- pixel_x = 0;
- pixel_y = 30;
- pixel_z = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bze" = (
-/obj/machinery/airalarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/obj/machinery/shower{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bzf" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bzg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bzh" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/medical/sleeper)
-"bzi" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 4;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel,
-/area/medical/sleeper)
-"bzj" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/medical/sleeper)
-"bzk" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bzl" = (
-/obj/machinery/dna_scannernew,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 10
- },
-/area/medical/genetics)
-"bzm" = (
-/obj/machinery/clonepod,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 6
- },
-/area/medical/genetics)
-"bzn" = (
-/obj/machinery/computer/cloning,
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 2
- },
-/area/medical/genetics)
-"bzo" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/light_switch{
- pixel_y = -28
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bzp" = (
-/obj/structure/closet/secure_closet/personal/patient,
-/obj/machinery/light,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bzq" = (
-/obj/structure/closet/secure_closet/medical1,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bzr" = (
-/obj/structure/closet/wardrobe/genetics_white,
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -29
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bzs" = (
-/turf/closed/wall,
-/area/maintenance/asmaint)
-"bzt" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 140;
- on = 1;
- pressure_checks = 0
- },
-/turf/open/floor/circuit{
- name = "Server Base";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/server)
-"bzu" = (
-/obj/machinery/r_n_d/server/robotics,
-/turf/open/floor/circuit{
- name = "Server Base";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/server)
-"bzv" = (
-/obj/machinery/atmospherics/pipe/simple{
- dir = 10
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/black,
-/area/toxins/server)
-"bzw" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple{
- dir = 4
- },
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'SERVER ROOM'.";
- name = "SERVER ROOM";
- pixel_y = 32
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/toxins/server)
-"bzx" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
- target_temperature = 80;
- dir = 2;
- on = 1
- },
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/plasteel/black,
-/area/toxins/server)
-"bzy" = (
-/obj/machinery/camera{
- c_tag = "Server Room";
- dir = 2;
- network = list("SS13","RD");
- pixel_x = 22
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "Server Room APC";
- pixel_x = 0;
- pixel_y = 25
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/black,
-/area/toxins/server)
-"bzz" = (
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = -30;
- pixel_y = 0
- },
-/obj/machinery/airalarm{
- pixel_y = 25
- },
-/obj/structure/closet,
-/turf/open/floor/plasteel/red/side{
- dir = 9
- },
-/area/security/checkpoint/science)
-"bzA" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/white/side{
- dir = 9
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bzB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bzC" = (
-/obj/structure/table,
-/obj/machinery/recharger{
- pixel_y = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/checkpoint/science)
-"bzD" = (
-/obj/structure/table,
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching the RD's goons from the safety of your own office.";
- name = "Research Monitor";
- network = list("RD");
- pixel_x = 0;
- pixel_y = 2
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/checkpoint/science)
-"bzE" = (
-/turf/open/floor/plasteel/white/side{
- dir = 5
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bzF" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bzG" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Central Access"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 2
- },
-/area/hallway/primary/central)
-"bzH" = (
-/obj/structure/table,
-/obj/item/weapon/hemostat,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white/side{
- dir = 2
- },
-/area/medical/sleeper)
-"bzI" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/table,
-/obj/item/weapon/surgicaldrill,
-/turf/open/floor/plasteel,
-/area/medical/sleeper)
-"bzJ" = (
-/obj/machinery/computer/mecha,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"bzK" = (
-/obj/structure/table,
-/obj/item/weapon/scalpel{
- pixel_y = 12
- },
-/obj/item/weapon/circular_saw,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bzL" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
-"bzM" = (
-/obj/structure/rack,
-/obj/item/device/taperecorder{
- pixel_x = -3
- },
-/obj/item/device/paicard{
- pixel_x = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
-"bzN" = (
-/obj/machinery/modular_computer/console/preset/research,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
-"bzO" = (
-/turf/open/floor/engine,
-/area/toxins/explab)
-"bzP" = (
-/obj/machinery/computer/cargo,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/brown{
- dir = 8
- },
-/area/quartermaster/qm)
-"bzQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/qm)
-"bzR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/qm)
-"bzS" = (
-/obj/structure/table,
-/obj/item/weapon/cautery{
- pixel_x = 4
- },
-/turf/open/floor/plasteel,
-/area/medical/sleeper)
-"bzT" = (
-/obj/structure/chair/office/dark,
-/obj/effect/landmark/start/quartermaster,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/qm)
-"bzU" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 2
- },
-/area/medical/sleeper)
-"bzV" = (
-/obj/structure/closet/wardrobe/white/medical,
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bzW" = (
-/obj/structure/closet/l3closet,
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bzX" = (
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 8
- },
-/area/medical/medbay)
-"bzY" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bzZ" = (
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plasteel/white/side{
- dir = 9
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bAa" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bAb" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/obj/effect/landmark/start/shaft_miner,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bAc" = (
-/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/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bAd" = (
-/obj/item/weapon/screwdriver{
- pixel_y = 10
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/item/device/radio/off,
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/checkpoint/supply)
-"bAe" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=AIW";
- location = "QM"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bAf" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bAg" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=AftH";
- location = "AIW"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bAh" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=CHE";
- location = "AIE"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bAi" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bAj" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=HOP";
- location = "CHE"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bAk" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bAl" = (
-/obj/structure/chair,
-/turf/open/floor/plasteel/black,
-/area/medical/sleeper)
-"bAm" = (
-/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/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bAn" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Mining Maintenance";
- req_access_txt = "48"
- },
-/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/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/quartermaster/miningdock)
-"bAo" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "Cargo Security APC";
- pixel_x = 1;
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/security/checkpoint/supply)
-"bAp" = (
-/obj/structure/closet/secure_closet/medical1,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bAq" = (
-/obj/machinery/sleeper{
- icon_state = "sleeper-open";
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Medbay Treatment Center";
- dir = 8;
- network = list("SS13")
- },
-/turf/open/floor/plasteel,
-/area/medical/sleeper)
-"bAr" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plasteel,
-/area/medical/sleeper)
-"bAs" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1;
- name = "Connector Port (Air Supply)"
- },
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/medical/sleeper)
-"bAt" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/wrench/medical,
-/turf/open/floor/plasteel,
-/area/medical/sleeper)
-"bAu" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/medical/sleeper)
-"bAv" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1;
- name = "Connector Port (Air Supply)"
- },
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plasteel,
-/area/medical/sleeper)
-"bAw" = (
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bAx" = (
-/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/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bAy" = (
-/obj/effect/landmark/blobstart,
-/turf/open/floor/plasteel/black{
- name = "Server Walkway";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/server)
-"bAz" = (
-/obj/machinery/airalarm/server{
- dir = 4;
- pixel_x = -22;
- pixel_y = 0
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel/black{
- name = "Server Walkway";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/server)
-"bAA" = (
-/obj/machinery/atmospherics/pipe/manifold{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/toxins/server)
-"bAB" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_command{
- name = "Server Room";
- req_access_txt = "30"
- },
-/turf/open/floor/plasteel/black,
-/area/toxins/server)
-"bAC" = (
-/obj/machinery/atmospherics/pipe/simple{
- dir = 9
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/toxins/server)
-"bAD" = (
-/obj/structure/chair/office/light,
-/obj/machinery/atmospherics/pipe/simple{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/toxins/server)
-"bAE" = (
-/obj/machinery/camera{
- c_tag = "Security Post - Science";
- dir = 4;
- network = list("SS13","RD")
- },
-/obj/machinery/newscaster{
- pixel_x = -30
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/checkpoint/science)
-"bAF" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint/science)
-"bAG" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint/science)
-"bAH" = (
-/obj/structure/table,
-/obj/item/weapon/book/manual/wiki/security_space_law,
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/checkpoint/science)
-"bAI" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bAJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bAK" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bAL" = (
-/obj/structure/table,
-/obj/item/device/plant_analyzer,
-/obj/item/weapon/stock_parts/cell/high/plus,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bAM" = (
-/obj/structure/table,
-/obj/item/device/analyzer,
-/obj/item/device/healthanalyzer,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bAN" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bAO" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/caution/corner{
- dir = 8
- },
-/area/hallway/primary/aft)
-"bAP" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 2
- },
-/area/hallway/primary/aft)
-"bAQ" = (
-/obj/effect/landmark/blobstart,
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/engine,
-/area/toxins/explab)
-"bAR" = (
-/obj/machinery/r_n_d/experimentor,
-/turf/open/floor/engine,
-/area/toxins/explab)
-"bAS" = (
-/obj/machinery/computer/security/mining{
- network = list("MINE","AuxBase")
- },
-/obj/machinery/camera{
- c_tag = "Quartermaster's Office";
- dir = 4
- },
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -35
- },
-/obj/machinery/status_display{
- density = 0;
- pixel_x = -32;
- pixel_y = 0;
- supply_display = 1
- },
-/turf/open/floor/plasteel/brown{
- dir = 10
- },
-/area/quartermaster/qm)
-"bAT" = (
-/obj/structure/closet/jcloset,
-/turf/open/floor/plasteel,
-/area/janitor)
-"bAU" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"bAV" = (
-/obj/machinery/door/window/westleft{
- name = "Janitoral Delivery";
- req_access_txt = "26"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/janitor)
-"bAW" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bAX" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/table,
-/obj/item/clothing/gloves/color/latex,
-/obj/item/clothing/mask/surgical,
-/obj/item/clothing/suit/apron/surgical,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/white/side{
- dir = 4
- },
-/area/medical/sleeper)
-"bAY" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bAZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bBa" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bBb" = (
-/obj/effect/landmark/start/medical_doctor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bBc" = (
-/obj/structure/table,
-/obj/item/weapon/surgical_drapes,
-/obj/item/weapon/razor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white/side{
- dir = 8
- },
-/area/medical/sleeper)
-"bBd" = (
-/obj/structure/table,
-/obj/structure/bedsheetbin{
- pixel_x = 2
- },
-/obj/item/clothing/suit/straight_jacket,
-/obj/item/clothing/mask/muzzle,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 8
- },
-/area/medical/sleeper)
-"bBe" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 4
- },
-/area/medical/sleeper)
-"bBf" = (
-/obj/structure/filingcabinet,
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 30;
- pixel_y = 0
- },
-/obj/machinery/newscaster{
- pixel_x = 0;
- pixel_y = -32
- },
-/obj/machinery/camera{
- c_tag = "Security Post - Cargo";
- dir = 1
- },
-/turf/open/floor/plasteel/red/side{
- dir = 6
- },
-/area/security/checkpoint/supply)
-"bBg" = (
-/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/open/floor/plasteel,
-/area/hallway/primary/central)
-"bBh" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 8
- },
-/area/hallway/primary/central)
-"bBi" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bBj" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bBk" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/camera{
- c_tag = "Central Primary Hallway South-West";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bBl" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bBm" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 8
- },
-/area/medical/medbay)
-"bBn" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bBo" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bBp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bBq" = (
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j2";
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/sign/directions/engineering{
- pixel_x = -32;
- pixel_y = -40
- },
-/obj/structure/sign/directions/medical{
- dir = 4;
- icon_state = "direction_med";
- pixel_x = -32;
- pixel_y = -24
- },
-/obj/structure/sign/directions/evac{
- dir = 4;
- icon_state = "direction_evac";
- pixel_x = -32;
- pixel_y = -32
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bBr" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/status_display{
- pixel_y = -32
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bBs" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bBt" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Central Primary Hallway South";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bBu" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bBv" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 8;
- icon_state = "pipe-j2s";
- sortType = 22
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bBw" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bBx" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bBy" = (
-/obj/machinery/light,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bBz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bBA" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bBB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bBC" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bBD" = (
-/turf/open/floor/plasteel/white/side{
- dir = 9
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bBE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bBF" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/obj/item/weapon/storage/firstaid/toxin,
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bBG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bBH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/quartermaster/miningdock)
-"bBI" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/structure/closet/wardrobe/miner,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bBJ" = (
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bBK" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bBL" = (
-/obj/machinery/vending/medical{
- pixel_x = -2
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bBN" = (
-/turf/closed/wall,
-/area/medical/cmo)
-"bBO" = (
-/obj/machinery/computer/med_data,
-/obj/machinery/airalarm{
- frequency = 1439;
- pixel_y = 23
- },
-/turf/open/floor/plasteel/barber,
-/area/medical/cmo)
-"bBP" = (
-/obj/machinery/computer/crew,
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Chief Medical Officer's Desk";
- departmentType = 5;
- name = "Chief Medical Officer RC";
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/open/floor/plasteel/barber,
-/area/medical/cmo)
-"bBQ" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/open/floor/plasteel/barber,
-/area/medical/cmo)
-"bBR" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bBS" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 120;
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
- },
-/turf/open/floor/circuit{
- name = "Server Base";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/server)
-"bBT" = (
-/obj/machinery/r_n_d/server/core,
-/turf/open/floor/circuit{
- name = "Server Base";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/server)
-"bBU" = (
-/obj/machinery/atmospherics/pipe/simple{
- dir = 9
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/turf/open/floor/plasteel/black,
-/area/toxins/server)
-"bBV" = (
-/obj/structure/grille,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'SERVER ROOM'.";
- name = "SERVER ROOM";
- pixel_y = -32
- },
-/obj/machinery/atmospherics/pipe/simple{
- dir = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/toxins/server)
-"bBW" = (
-/obj/structure/table,
-/obj/item/weapon/folder/white,
-/obj/item/weapon/pen,
-/turf/open/floor/plasteel/black,
-/area/toxins/server)
-"bBX" = (
-/obj/machinery/computer/rdservercontrol,
-/turf/open/floor/plasteel/black,
-/area/toxins/server)
-"bBY" = (
-/obj/item/device/radio/intercom{
- pixel_x = -25
- },
-/obj/structure/filingcabinet,
-/turf/open/floor/plasteel/red/side{
- dir = 10
- },
-/area/security/checkpoint/science)
-"bBZ" = (
-/obj/item/weapon/screwdriver{
- pixel_y = 10
- },
-/obj/item/device/radio/off,
-/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint/science)
-"bCa" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Science Security APC";
- pixel_y = -24
- },
-/obj/structure/cable,
-/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint/science)
-"bCb" = (
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- pixel_x = 1;
- pixel_y = 9
- },
-/obj/item/weapon/pen,
-/turf/open/floor/plasteel/red/side{
- dir = 6
- },
-/area/security/checkpoint/science)
-"bCc" = (
-/obj/machinery/computer/secure_data,
-/obj/machinery/requests_console{
- department = "Security";
- departmentType = 5;
- pixel_y = -30
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint/science)
-"bCd" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 8;
- icon_state = "pipe-j1s";
- sortType = 15
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bCe" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bCf" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "RD Office APC";
- pixel_x = -25
- },
-/obj/structure/cable,
-/obj/machinery/light_switch{
- pixel_y = -23
- },
-/obj/item/weapon/twohanded/required/kirbyplants/dead,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"bCg" = (
-/obj/structure/table,
-/obj/item/weapon/cartridge/signal/toxins,
-/obj/item/weapon/cartridge/signal/toxins{
- pixel_x = -4;
- pixel_y = 2
- },
-/obj/item/weapon/cartridge/signal/toxins{
- pixel_x = 4;
- pixel_y = 6
- },
-/obj/machinery/camera{
- c_tag = "Research Director's Office";
- dir = 1;
- network = list("SS13","RD")
- },
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -29
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"bCh" = (
-/obj/machinery/keycard_auth{
- pixel_x = 0;
- pixel_y = -24
- },
-/obj/machinery/light,
-/obj/machinery/computer/card/minor/rd,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"bCi" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"bCj" = (
-/obj/structure/closet/secure_closet/RD,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"bCk" = (
-/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"bCl" = (
-/obj/machinery/camera{
- c_tag = "Experimentor Lab Chamber";
- dir = 1;
- network = list("SS13","RD")
- },
-/obj/machinery/light,
-/obj/structure/sign/nosmoking_2{
- pixel_y = -32
- },
-/turf/open/floor/engine,
-/area/toxins/explab)
-"bCm" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bCn" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bCo" = (
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- pixel_x = 1;
- pixel_y = 9
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bCp" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 2
- },
-/area/hallway/primary/aft)
-"bCq" = (
-/turf/closed/wall,
-/area/maintenance/aft)
-"bCr" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bCs" = (
-/turf/closed/wall,
-/area/storage/tech)
-"bCt" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"bCu" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Central Access"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/caution/corner{
- dir = 8
- },
-/area/hallway/primary/central)
-"bCv" = (
-/turf/closed/wall,
-/area/janitor)
-"bCw" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"bCx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/gateway)
-"bCy" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/janitor)
-"bCz" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bCA" = (
-/obj/machinery/vending/cigarette,
-/turf/open/floor/plasteel/black,
-/area/hallway/primary/central)
-"bCB" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Surgery Maintenance";
- req_access_txt = "45"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/medical/sleeper)
-"bCC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bCD" = (
-/obj/structure/table,
-/obj/item/weapon/retractor,
-/turf/open/floor/plasteel/white/side{
- dir = 2
- },
-/area/medical/sleeper)
-"bCE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bCF" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bCG" = (
-/obj/structure/table,
-/obj/item/weapon/folder/white,
-/obj/item/weapon/gun/syringe,
-/obj/item/weapon/reagent_containers/dropper,
-/obj/item/weapon/soap/nanotrasen,
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bCH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bCI" = (
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/wood,
-/area/library)
-"bCJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bCK" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bCL" = (
-/obj/structure/closet/secure_closet/medical3,
-/obj/machinery/camera{
- c_tag = "Medbay Storage";
- dir = 2;
- network = list("SS13")
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bCM" = (
-/obj/structure/closet/secure_closet/medical3,
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bCN" = (
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal/bin,
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bCO" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/bodybags{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/box/rxglasses,
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bCP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/medical/sleeper)
-"bCQ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/medical/sleeper)
-"bCR" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bCS" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/iv_drip,
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 4
- },
-/area/medical/sleeper)
-"bCT" = (
-/obj/structure/table,
-/obj/item/weapon/storage/belt/medical{
- pixel_x = 0;
- pixel_y = 2
- },
-/obj/item/weapon/storage/belt/medical{
- pixel_x = 0;
- pixel_y = 2
- },
-/obj/item/weapon/storage/belt/medical{
- pixel_x = 0;
- pixel_y = 2
- },
-/obj/item/clothing/neck/stethoscope,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bCU" = (
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- freerange = 0;
- frequency = 1485;
- listening = 1;
- name = "Station Intercom (Medbay)";
- pixel_x = -30;
- pixel_y = 0
- },
-/obj/machinery/camera{
- c_tag = "Medbay South";
- dir = 4;
- network = list("SS13")
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bCV" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bCW" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/plasteel/barber,
-/area/medical/cmo)
-"bCX" = (
-/obj/effect/decal/cleanable/oil,
-/obj/item/weapon/cigbutt,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/storage)
-"bCY" = (
-/turf/open/floor/plasteel/barber,
-/area/medical/cmo)
-"bCZ" = (
-/obj/structure/chair/office/light,
-/obj/effect/landmark/start/chief_medical_officer,
-/turf/open/floor/plasteel/barber,
-/area/medical/cmo)
-"bDa" = (
-/obj/machinery/keycard_auth{
- pixel_x = 24;
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/barber,
-/area/medical/cmo)
-"bDb" = (
-/turf/closed/wall/r_wall,
-/area/toxins/xenobiology)
-"bDc" = (
-/turf/closed/wall,
-/area/toxins/storage)
-"bDd" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/airalarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/turf/open/floor/plasteel/white/side{
- dir = 5
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bDe" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"bDf" = (
-/obj/machinery/light_switch{
- pixel_x = 27
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/storage)
-"bDg" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bDh" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bDi" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 32
- },
-/turf/open/space,
-/area/space)
-"bDj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/storage)
-"bDk" = (
-/obj/structure/table,
-/obj/item/weapon/folder/yellow,
-/obj/item/weapon/pen,
-/obj/machinery/requests_console{
- department = "Mining";
- departmentType = 0;
- pixel_x = -30;
- pixel_y = 0
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bDl" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white/side{
- dir = 5
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bDm" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bDn" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bDo" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bDp" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 2
- },
-/area/hallway/primary/aft)
-"bDq" = (
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen,
-/obj/item/key/janitor,
-/turf/open/floor/plasteel,
-/area/janitor)
-"bDr" = (
-/obj/item/weapon/restraints/legcuffs/beartrap,
-/obj/item/weapon/restraints/legcuffs/beartrap,
-/obj/item/weapon/storage/box/mousetraps,
-/obj/item/weapon/storage/box/mousetraps,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/janitor)
-"bDs" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plasteel,
-/area/janitor)
-"bDt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/closed/wall,
-/area/maintenance/aft)
-"bDu" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bDv" = (
-/obj/structure/table,
-/obj/item/device/flashlight{
- pixel_x = 1;
- pixel_y = 5
- },
-/obj/item/device/flashlight{
- pixel_x = 1;
- pixel_y = 5
- },
-/obj/item/device/assembly/flash/handheld,
-/obj/item/device/assembly/flash/handheld,
-/obj/machinery/ai_status_display{
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bDw" = (
-/obj/structure/table,
-/obj/item/weapon/screwdriver{
- pixel_y = 16
- },
-/obj/item/weapon/wirecutters,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bDx" = (
-/obj/structure/table,
-/obj/item/weapon/electronics/apc,
-/obj/item/weapon/electronics/airlock,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bDy" = (
-/obj/machinery/camera{
- c_tag = "Tech Storage";
- dir = 2
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "Tech Storage APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bDz" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- pixel_y = 23
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bDA" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/power/apc{
- dir = 4;
- name = "Treatment Center APC";
- pixel_x = 26;
- pixel_y = 0
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/medical/sleeper)
-"bDB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white/side{
- dir = 4
- },
-/area/medical/sleeper)
-"bDC" = (
-/obj/machinery/computer/operating,
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bDD" = (
-/obj/structure/sign/nosmoking_2{
- pixel_x = -28
- },
-/obj/structure/bed,
-/obj/item/weapon/bedsheet/medical,
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 1
- },
-/area/medical/sleeper)
-"bDE" = (
-/obj/machinery/vending/wallmed{
- pixel_x = 28;
- pixel_y = 0
- },
-/obj/machinery/camera{
- c_tag = "Medbay Recovery Room";
- dir = 8;
- network = list("SS13")
- },
-/obj/machinery/iv_drip,
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bDF" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/preopen{
- id = "medpriv4";
- name = "privacy door"
- },
-/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/medical/medbay)
-"bDG" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 2
- },
-/area/hallway/primary/aft)
-"bDH" = (
-/obj/structure/closet/l3closet/janitor,
-/obj/machinery/airalarm{
- frequency = 1439;
- pixel_y = 23
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"bDI" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bDJ" = (
-/obj/item/weapon/storage/box/lights/mixed,
-/obj/item/weapon/storage/box/lights/mixed,
-/turf/open/floor/plasteel,
-/area/janitor)
-"bDK" = (
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/obj/machinery/camera{
- c_tag = "Custodial Closet"
- },
-/obj/vehicle/janicart,
-/turf/open/floor/plasteel,
-/area/janitor)
-"bDL" = (
-/turf/open/floor/plasteel,
-/area/janitor)
-"bDM" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/janitor)
-"bDN" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bDO" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bDP" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=8";
- dir = 1;
- freq = 1400;
- location = "Janitor"
- },
-/obj/structure/plasticflaps{
- opacity = 1
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/janitor)
-"bDQ" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bDR" = (
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bDS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/barber,
-/area/medical/cmo)
-"bDT" = (
-/obj/effect/landmark/start/medical_doctor,
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bDU" = (
-/obj/machinery/door/airlock/glass_command{
- name = "Chief Medical Officer";
- req_access_txt = "40"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/barber,
-/area/medical/cmo)
-"bDV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/sortjunction{
- sortType = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bDW" = (
-/obj/machinery/door/airlock/glass_medical{
- id_tag = null;
- name = "Medbay Storage";
- req_access_txt = "45"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bDY" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/storage)
-"bDZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bEa" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bEb" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/storage)
-"bEc" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/storage)
-"bEd" = (
-/obj/machinery/door/airlock/glass_medical{
- id_tag = null;
- name = "Medbay Storage";
- req_access_txt = "45"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bEe" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bEf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/white/side{
- dir = 5
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bEg" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/door/airlock/research{
- name = "Toxins Storage";
- req_access_txt = "8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/storage)
-"bEh" = (
-/obj/structure/table/glass,
-/obj/item/weapon/paper_bin{
- pixel_x = -2;
- pixel_y = 5
- },
-/turf/open/floor/plasteel/barber,
-/area/medical/cmo)
-"bEi" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/medical/cmo)
-"bEj" = (
-/obj/structure/table/glass,
-/obj/item/weapon/pen,
-/obj/item/clothing/neck/stethoscope,
-/mob/living/simple_animal/pet/cat/Runtime,
-/turf/open/floor/plasteel/barber,
-/area/medical/cmo)
-"bEk" = (
-/obj/structure/table/glass,
-/obj/item/weapon/folder/white,
-/obj/item/weapon/stamp/cmo,
-/obj/item/clothing/glasses/hud/health,
-/turf/open/floor/plasteel/barber,
-/area/medical/cmo)
-"bEl" = (
-/obj/structure/disposalpipe/segment,
-/obj/item/device/radio/intercom{
- pixel_x = 25
- },
-/obj/machinery/camera{
- c_tag = "Chief Medical Office";
- dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = -22
- },
-/turf/open/floor/plasteel/barber,
-/area/medical/cmo)
-"bEm" = (
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"bEn" = (
-/obj/machinery/camera{
- c_tag = "Xenobiology Test Chamber";
- dir = 2;
- network = list("Xeno","RD");
- pixel_x = 0
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"bEo" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
- },
-/area/toxins/storage)
-"bEp" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/structure/sign/nosmoking_2{
- pixel_x = 0;
- pixel_y = 32
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
- },
-/area/toxins/storage)
-"bEq" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Misc Research APC";
- pixel_x = -25
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plasteel/white/side{
- dir = 5
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bEr" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bEs" = (
-/turf/closed/wall,
-/area/toxins/mixing)
-"bEt" = (
-/obj/machinery/vending/coffee,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bEu" = (
-/obj/structure/closet/bombcloset,
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bEv" = (
-/obj/structure/closet/bombcloset,
-/obj/machinery/light_switch{
- pixel_x = 0;
- pixel_y = 28
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bEw" = (
-/obj/machinery/portable_atmospherics/canister,
-/obj/item/device/radio/intercom{
- pixel_y = 25
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bEx" = (
-/obj/machinery/portable_atmospherics/canister,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/obj/machinery/camera{
- c_tag = "Toxins Lab West";
- dir = 2;
- network = list("SS13","RD");
- pixel_y = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bEy" = (
-/obj/machinery/portable_atmospherics/pump,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bEz" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bEA" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bEB" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bEC" = (
-/turf/closed/wall/r_wall,
-/area/toxins/mixing)
-"bED" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bEE" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bEF" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 4;
- name = "4maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bEG" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bEH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/toxins/mixing)
-"bEI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bEJ" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"bEK" = (
-/obj/machinery/computer/security/mining{
- network = list("MINE","AuxBase")
- },
-/obj/machinery/camera{
- c_tag = "Mining Dock";
- dir = 4;
- network = list("SS13")
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bEL" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bEM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/toxins/mixing)
-"bEN" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel,
-/area/toxins/mixing)
-"bEO" = (
-/obj/structure/sign/securearea{
- pixel_x = -32
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/toxins/mixing)
-"bEP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bEQ" = (
-/obj/effect/landmark/start/shaft_miner,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bER" = (
-/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
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bES" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/maintenance/aft)
-"bET" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bEU" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bEV" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bEW" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bEX" = (
-/obj/structure/table,
-/obj/item/device/aicard,
-/obj/item/weapon/aiModule/reset,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bEY" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bEZ" = (
-/obj/structure/table,
-/obj/item/stack/cable_coil{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/stack/cable_coil,
-/obj/item/weapon/stock_parts/cell/high/plus,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bFa" = (
-/turf/open/floor/plating,
-/area/storage/tech)
-"bFb" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bFc" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/effect/landmark/blobstart,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bFd" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/caution/corner{
- dir = 8
- },
-/area/hallway/primary/aft)
-"bFe" = (
-/obj/machinery/door/airlock/engineering{
- name = "Tech Storage";
- req_access_txt = "23"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bFf" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start/janitor,
-/turf/open/floor/plasteel,
-/area/janitor)
-"bFg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/janitor)
-"bFh" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bFi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"bFj" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
-/turf/open/floor/plasteel/caution/corner{
- dir = 8
- },
-/area/hallway/primary/aft)
-"bFk" = (
-/obj/item/weapon/mop,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/turf/open/floor/plasteel,
-/area/janitor)
-"bFl" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/power/apc{
- dir = 8;
- name = "Custodial Closet APC";
- pixel_x = -24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plating,
-/area/janitor)
-"bFm" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 8;
- icon_state = "pipe-j2s";
- sortType = 6
- },
-/obj/structure/grille,
-/obj/structure/window/fulltile{
- obj_integrity = 25
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bFn" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/structure/grille/broken,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bFo" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bFp" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bFq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 2
- },
-/area/hallway/primary/aft)
-"bFr" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bFs" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Custodial Maintenance";
- req_access_txt = "26"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/janitor)
-"bFt" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bFu" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical{
- name = "Operating Theatre";
- req_access_txt = "45"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/medical/sleeper)
-"bFv" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bFw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 8
- },
-/area/medical/sleeper)
-"bFx" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bFy" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bFz" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/turf/open/floor/plasteel/white/side{
- dir = 1
- },
-/area/medical/sleeper)
-"bFA" = (
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bFB" = (
-/obj/structure/closet/secure_closet/medical2,
-/turf/open/floor/plasteel,
-/area/medical/sleeper)
-"bFC" = (
-/obj/structure/table,
-/obj/item/weapon/reagent_containers/food/condiment/peppermill{
- pixel_x = 5;
- pixel_y = -2
- },
-/obj/item/weapon/reagent_containers/food/condiment/saltshaker{
- pixel_x = -2;
- pixel_y = 2
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"bFD" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bFE" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/barber,
-/area/medical/cmo)
-"bFF" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bFG" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plasteel/barber,
-/area/medical/cmo)
-"bFH" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/light_switch{
- pixel_x = 28;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/barber,
-/area/medical/cmo)
-"bFI" = (
-/obj/machinery/airalarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/storage)
-"bFJ" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet/medical,
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bFK" = (
-/obj/structure/closet/wardrobe/pjs,
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bFL" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bFM" = (
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j2";
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bFN" = (
-/obj/structure/table,
-/obj/item/weapon/cartridge/medical{
- pixel_x = -2;
- pixel_y = 6
- },
-/obj/item/weapon/cartridge/medical{
- pixel_x = 6;
- pixel_y = 3
- },
-/obj/item/weapon/cartridge/medical,
-/obj/item/weapon/cartridge/chemistry{
- pixel_y = 2
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/barber,
-/area/medical/cmo)
-"bFO" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/medical/cmo)
-"bFP" = (
-/obj/machinery/computer/card/minor/cmo,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/barber,
-/area/medical/cmo)
-"bFQ" = (
-/obj/structure/sign/nosmoking_2{
- pixel_x = -32
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white/side{
- dir = 5
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bFR" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bFS" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bFT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bFU" = (
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bFV" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/obj/machinery/meter,
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bFW" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bFX" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bFY" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "8;12"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bFZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/toxins/mixing)
-"bGa" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/closed/wall,
-/area/maintenance/asmaint2)
-"bGb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/closed/wall,
-/area/toxins/mixing)
-"bGc" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/toxins/mixing)
-"bGd" = (
-/obj/machinery/doppler_array{
- dir = 4
- },
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/turf/open/floor/plasteel{
- dir = 2
- },
-/area/toxins/mixing)
-"bGe" = (
-/turf/closed/wall,
-/area/toxins/test_area)
-"bGf" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating/airless,
-/area/toxins/test_area)
-"bGg" = (
-/obj/structure/table,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"bGh" = (
-/obj/machinery/computer/shuttle/mining,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"bGi" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/quartermaster/miningdock)
-"bGj" = (
-/obj/machinery/computer/shuttle/mining,
-/turf/open/floor/plasteel/brown{
- dir = 9
- },
-/area/quartermaster/miningdock)
-"bGk" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start/scientist,
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bGl" = (
-/obj/item/device/assembly/prox_sensor{
- pixel_x = -4;
- pixel_y = 1
- },
-/obj/item/device/assembly/prox_sensor{
- pixel_x = 8;
- pixel_y = 9
- },
-/obj/item/device/assembly/prox_sensor{
- pixel_x = 9;
- pixel_y = -2
- },
-/obj/item/device/assembly/prox_sensor{
- pixel_x = 0;
- pixel_y = 2
- },
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bGm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bGn" = (
-/obj/structure/closet/secure_closet/miner,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bGo" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Firefighting equipment";
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bGp" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bGq" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bGr" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable,
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bGs" = (
-/obj/machinery/camera{
- c_tag = "Secure Tech Storage";
- dir = 2
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/storage/tech)
-"bGt" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/circuitboard/computer/borgupload{
- pixel_x = -1;
- pixel_y = 1
- },
-/obj/item/weapon/circuitboard/computer/aiupload{
- pixel_x = 2;
- pixel_y = -2
- },
-/turf/open/floor/plasteel,
-/area/storage/tech)
-"bGu" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
-/turf/closed/wall/r_wall,
-/area/storage/tech)
-"bGv" = (
-/obj/structure/table,
-/obj/machinery/cell_charger{
- pixel_y = 5
- },
-/obj/item/device/multitool,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bGw" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/circuitboard/computer/pandemic{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/weapon/circuitboard/computer/rdconsole,
-/obj/item/weapon/circuitboard/machine/rdserver{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/weapon/circuitboard/machine/destructive_analyzer,
-/obj/item/weapon/circuitboard/machine/protolathe,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/item/weapon/circuitboard/computer/aifixer,
-/obj/item/weapon/circuitboard/computer/teleporter,
-/obj/item/weapon/circuitboard/machine/circuit_imprinter,
-/obj/item/weapon/circuitboard/machine/mechfab,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bGx" = (
-/obj/structure/rack,
-/obj/item/weapon/circuitboard/machine/telecomms/processor,
-/obj/item/weapon/circuitboard/machine/telecomms/receiver,
-/obj/item/weapon/circuitboard/machine/telecomms/server,
-/obj/item/weapon/circuitboard/machine/telecomms/bus,
-/obj/item/weapon/circuitboard/machine/telecomms/broadcaster,
-/obj/item/weapon/circuitboard/computer/message_monitor{
- pixel_y = -5
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bGy" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/circuitboard/computer/mining,
-/obj/item/weapon/circuitboard/machine/autolathe{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/weapon/circuitboard/computer/arcade/battle,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bGz" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/wrench,
-/obj/item/weapon/screwdriver{
- pixel_y = 10
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bGA" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bGB" = (
-/obj/structure/table,
-/obj/item/weapon/grenade/chem_grenade/cleaner,
-/obj/item/weapon/grenade/chem_grenade/cleaner,
-/obj/item/weapon/grenade/chem_grenade/cleaner,
-/obj/machinery/requests_console{
- department = "Janitorial";
- departmentType = 1;
- pixel_y = -29
- },
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/turf/open/floor/plasteel,
-/area/janitor)
-"bGC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/research{
- name = "Toxins Launch Room Access";
- req_access_txt = "7"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bGD" = (
-/obj/structure/janitorialcart,
-/turf/open/floor/plasteel,
-/area/janitor)
-"bGE" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/janitor)
-"bGF" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bGG" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/toxins/mixing)
-"bGH" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bGI" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bGJ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bGK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/toxins/mixing)
-"bGL" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/toxins/mixing)
-"bGM" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bGN" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bGO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 2
- },
-/area/hallway/primary/aft)
-"bGP" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bGQ" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bGR" = (
-/obj/structure/table,
-/obj/item/weapon/hand_labeler,
-/obj/item/weapon/gun/syringe,
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bGS" = (
-/obj/structure/closet/crate/freezer/surplus_limbs,
-/obj/item/weapon/reagent_containers/glass/beaker/synthflesh,
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bGT" = (
-/obj/structure/table,
-/obj/item/weapon/folder/white,
-/obj/item/clothing/neck/stethoscope,
-/obj/machinery/vending/wallmed{
- pixel_y = 28
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bGU" = (
-/obj/structure/closet/secure_closet/personal/patient,
-/obj/machinery/button/door{
- id = "medpriv4";
- name = "Privacy Shutters";
- pixel_y = 25
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bGV" = (
-/obj/structure/chair/office/light{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bGW" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bGX" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bGY" = (
-/obj/machinery/portable_atmospherics/scrubber/huge,
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/storage)
-"bGZ" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/barber,
-/area/medical/cmo)
-"bHa" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/medical/cmo)
-"bHb" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/barber,
-/area/medical/cmo)
-"bHc" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white/side{
- dir = 5
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bHd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bHe" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Toxins Storage APC";
- pixel_x = -25
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/camera{
- c_tag = "Toxins Storage";
- dir = 4;
- network = list("SS13","RD")
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/storage)
-"bHf" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bHg" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bHh" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bHi" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bHj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bHk" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/caution/corner{
- dir = 8
- },
-/area/hallway/primary/aft)
-"bHl" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 2
- },
-/area/hallway/primary/aft)
-"bHm" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/research{
- name = "Toxins Lab";
- req_access_txt = "7"
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bHn" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/maintenance/asmaint)
-"bHo" = (
-/obj/structure/closet,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bHp" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bHq" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bHr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/toxins/mixing)
-"bHs" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/stripes/corner{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/toxins/mixing)
-"bHt" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bHu" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/obj/item/device/radio/intercom{
- pixel_y = 25
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/toxins/mixing)
-"bHv" = (
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching the test chamber.";
- dir = 8;
- layer = 4;
- name = "Test Chamber Telescreen";
- network = list("Toxins");
- pixel_x = 30;
- pixel_y = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/toxins/mixing)
-"bHw" = (
-/obj/item/target,
-/obj/structure/window/reinforced,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/toxins/test_area)
-"bHx" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"bHy" = (
-/obj/structure/closet/crate,
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 4;
- name = "Station Intercom (General)";
- pixel_x = 27
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bHz" = (
-/obj/item/weapon/ore/iron,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bHA" = (
-/turf/open/floor/plasteel/brown{
- dir = 8
- },
-/area/quartermaster/miningdock)
-"bHC" = (
-/obj/effect/landmark/blobstart,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bHD" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/chair/stool,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bHE" = (
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bHF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"bHG" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/circuitboard/computer/crew{
- pixel_x = -1;
- pixel_y = 1
- },
-/obj/item/weapon/circuitboard/computer/card{
- pixel_x = 2;
- pixel_y = -2
- },
-/obj/item/weapon/circuitboard/computer/communications{
- pixel_x = 5;
- pixel_y = -5
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/storage/tech)
-"bHH" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bHI" = (
-/obj/machinery/door/airlock/highsecurity{
- name = "Secure Tech Storage";
- req_access_txt = "19;23"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bHJ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bHK" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white/side{
- dir = 5
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bHL" = (
-/obj/machinery/camera{
- c_tag = "Research Division South";
- dir = 8;
- network = list("SS13")
- },
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plasteel/white/side{
- dir = 9
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bHM" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bHN" = (
-/obj/machinery/requests_console{
- department = "Tech storage";
- pixel_x = 0;
- pixel_y = -32
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bHO" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/storage/toolbox/electrical{
- pixel_x = 1;
- pixel_y = -1
- },
-/obj/item/device/multitool,
-/obj/item/clothing/glasses/meson,
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bHP" = (
-/turf/open/floor/plasteel/yellow/corner{
- dir = 2
- },
-/area/hallway/primary/aft)
-"bHQ" = (
-/obj/machinery/vending/assist,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bHR" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/camera{
- c_tag = "Aft Primary Hallway 2";
- dir = 4;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/caution/corner{
- dir = 8
- },
-/area/hallway/primary/aft)
-"bHS" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bHT" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/preopen{
- id = "medpriv1";
- name = "privacy door"
- },
-/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/medical/medbay)
-"bHU" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/grille/broken,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bHV" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Medbay Maintenance APC";
- pixel_x = -24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bHW" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/grille,
-/obj/structure/window/fulltile{
- obj_integrity = 35
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bHX" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile{
- obj_integrity = 25
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bHY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bHZ" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bIa" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bIb" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white/side{
- dir = 5
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bIc" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/turf/open/floor/plasteel/white/side{
- dir = 1
- },
-/area/medical/sleeper)
-"bId" = (
-/obj/machinery/vending/wallmed{
- pixel_y = -28
- },
-/obj/machinery/camera{
- c_tag = "Surgery Operating";
- dir = 1;
- network = list("SS13");
- pixel_x = 22
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bIe" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/status_display{
- density = 0;
- layer = 3;
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/caution/corner{
- dir = 8
- },
-/area/hallway/primary/aft)
-"bIf" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/doorButtons/access_button{
- idDoor = "virology_airlock_exterior";
- idSelf = "virology_airlock_control";
- name = "Virology Access Button";
- pixel_x = -24;
- pixel_y = 0;
- req_access_txt = "39"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/virology{
- autoclose = 0;
- frequency = 1449;
- icon_state = "door_locked";
- id_tag = "virology_airlock_exterior";
- locked = 1;
- name = "Virology Exterior Airlock";
- req_access_txt = "39"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bIg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 2;
- icon_state = "pipe-j2s";
- sortType = 13
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bIh" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bIi" = (
-/obj/structure/table,
-/obj/item/weapon/storage/firstaid/o2{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/firstaid/o2,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = -3;
- pixel_y = -3
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bIj" = (
-/obj/structure/table,
-/obj/machinery/light,
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/obj/item/clothing/glasses/hud/health,
-/obj/item/clothing/glasses/hud/health,
-/obj/item/clothing/glasses/hud/health,
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bIk" = (
-/obj/structure/table,
-/obj/machinery/requests_console{
- announcementConsole = 0;
- department = "Medbay";
- departmentType = 1;
- name = "Medbay RC";
- pixel_x = 0;
- pixel_y = -30;
- pixel_z = 0
- },
-/obj/item/weapon/storage/firstaid/fire{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/firstaid/fire,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = -3;
- pixel_y = -3
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bIl" = (
-/obj/structure/table,
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- freerange = 0;
- frequency = 1485;
- listening = 1;
- name = "Station Intercom (Medbay)";
- pixel_x = 0;
- pixel_y = -30
- },
-/obj/item/weapon/storage/firstaid/toxin{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/firstaid/toxin,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = -3;
- pixel_y = -3
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bIm" = (
-/obj/machinery/light,
-/obj/structure/table,
-/obj/item/weapon/storage/box/beakers{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/weapon/storage/box/syringes,
-/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{
- pixel_x = 7;
- pixel_y = -3
- },
-/obj/item/weapon/reagent_containers/glass/bottle/morphine{
- pixel_x = 8;
- pixel_y = -3
- },
-/obj/item/weapon/reagent_containers/syringe{
- pixel_x = 6;
- pixel_y = -3
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bIn" = (
-/obj/structure/table,
-/obj/item/weapon/storage/firstaid/brute{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/firstaid/brute,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = -3;
- pixel_y = -3
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bIo" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet/medical,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bIp" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bIq" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bIr" = (
-/obj/machinery/door/airlock/medical{
- name = "Patient Room";
- req_access_txt = "5"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bIs" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Xenobiology Maintenance";
- req_access_txt = "55"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/toxins/xenobiology)
-"bIt" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bIu" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bIv" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bIw" = (
-/obj/structure/closet/secure_closet/CMO,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/open/floor/plasteel/barber,
-/area/medical/cmo)
-"bIx" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
-/turf/closed/wall/r_wall,
-/area/toxins/xenobiology)
-"bIy" = (
-/obj/structure/disposaloutlet{
- dir = 1
- },
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"bIz" = (
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/toxins/storage)
-"bIA" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/toxins/storage)
-"bIB" = (
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/toxins/storage)
-"bIC" = (
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/storage)
-"bID" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/white/side{
- dir = 5
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bIE" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bIF" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bIG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bIH" = (
-/obj/machinery/pipedispenser/disposal,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bII" = (
-/obj/item/weapon/storage/secure/safe{
- pixel_x = 5;
- pixel_y = 29
- },
-/obj/machinery/camera{
- c_tag = "Virology Break Room"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bIJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bIK" = (
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bIL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bIM" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/sign/securearea{
- pixel_x = 32
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bIN" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/toxins/xenobiology)
-"bIO" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bIP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/chair/comfy/black,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bIQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bIR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bIS" = (
-/obj/machinery/door/airlock/research{
- name = "Toxins Launch Room";
- req_access_txt = "7"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/toxins/mixing)
-"bIT" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/toxins/xenobiology)
-"bIU" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/toxins/mixing)
-"bIV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/toxins/mixing)
-"bIW" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/toxins/mixing)
-"bIX" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'BOMB RANGE";
- name = "BOMB RANGE"
- },
-/turf/closed/wall,
-/area/toxins/test_area)
-"bIY" = (
-/obj/structure/chair,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plating/airless,
-/area/toxins/test_area)
-"bIZ" = (
-/obj/structure/chair,
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plating/airless,
-/area/toxins/test_area)
-"bJa" = (
-/obj/item/device/flashlight/lamp,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/toxins/test_area)
-"bJb" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- name = "Mining Dock Airlock";
- req_access = null;
- req_access_txt = "48";
- shuttledocked = 1
- },
-/turf/open/floor/plating,
-/area/quartermaster/miningdock)
-"bJc" = (
-/obj/machinery/door/airlock/titanium{
- name = "Mining Shuttle Airlock";
- req_access_txt = "0"
- },
-/obj/docking_port/mobile{
- dir = 8;
- dwidth = 3;
- height = 5;
- id = "mining";
- name = "mining shuttle";
- port_angle = 90;
- width = 7
- },
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 3;
- height = 5;
- id = "mining_home";
- name = "mining shuttle bay";
- width = 7
- },
-/turf/open/floor/plating,
-/area/shuttle/labor)
-"bJd" = (
-/obj/machinery/door/airlock/glass_mining{
- cyclelinkeddir = 8;
- name = "Mining Dock";
- req_access_txt = "48"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bJe" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bJf" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bJg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/storage/tech)
-"bJh" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/circuitboard/computer/robotics{
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/item/weapon/circuitboard/computer/mecha_control{
- pixel_x = 1;
- pixel_y = -1
- },
-/turf/open/floor/plasteel,
-/area/storage/tech)
-"bJi" = (
-/obj/structure/sign/securearea,
-/turf/closed/wall/r_wall,
-/area/storage/tech)
-"bJj" = (
-/obj/structure/table,
-/obj/item/weapon/stock_parts/subspace/analyzer,
-/obj/item/weapon/stock_parts/subspace/analyzer,
-/obj/item/weapon/stock_parts/subspace/analyzer,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bJk" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/circuitboard/computer/cloning{
- pixel_x = 0
- },
-/obj/item/weapon/circuitboard/computer/med_data{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/weapon/circuitboard/machine/clonescanner,
-/obj/item/weapon/circuitboard/machine/clonepod,
-/obj/item/weapon/circuitboard/computer/scan_consolenew,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bJl" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/circuitboard/computer/powermonitor{
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/item/weapon/circuitboard/computer/stationalert{
- pixel_x = 1;
- pixel_y = -1
- },
-/obj/item/weapon/circuitboard/computer/atmos_alert{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bJm" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/circuitboard/computer/secure_data{
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/item/weapon/circuitboard/computer/security{
- pixel_x = 1;
- pixel_y = -1
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bJn" = (
-/obj/machinery/light_switch{
- pixel_x = 27
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bJo" = (
-/turf/open/floor/plasteel/white/side{
- dir = 1
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bJp" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/caution/corner{
- dir = 8
- },
-/area/hallway/primary/aft)
-"bJq" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bJr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/white/side{
- dir = 1
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bJs" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bJt" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bJu" = (
-/obj/structure/light_construct{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/construction)
-"bJv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bJw" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bJx" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/blue/corner{
- dir = 8
- },
-/area/hallway/primary/central)
-"bJy" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bJz" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 1
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/caution/corner{
- dir = 8
- },
-/area/hallway/primary/aft)
-"bJA" = (
-/obj/effect/landmark/blobstart,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bJB" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bJC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/medical/sleeper)
-"bJD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/closed/wall/r_wall,
-/area/medical/sleeper)
-"bJE" = (
-/turf/closed/wall/r_wall,
-/area/medical/medbay)
-"bJF" = (
-/obj/machinery/pipedispenser/disposal/transit_tube,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bJG" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bJH" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/shieldwallgen/xenobiologyaccess,
-/turf/open/floor/plating,
-/area/toxins/xenobiology)
-"bJI" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/door/poddoor/preopen{
- id = "misclab";
- name = "test chamber blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"bJJ" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/door/poddoor/preopen{
- id = "misclab";
- name = "test chamber blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"bJK" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/door/poddoor/preopen{
- id = "misclab";
- name = "test chamber blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"bJL" = (
-/obj/machinery/door/window/southleft{
- dir = 1;
- name = "Test Chamber";
- req_access_txt = "55"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/door/poddoor/preopen{
- id = "misclab";
- name = "test chamber blast door"
- },
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"bJM" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "misclab";
- name = "test chamber blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"bJN" = (
-/turf/closed/wall,
-/area/toxins/xenobiology)
-"bJO" = (
-/obj/machinery/door/airlock/research{
- name = "Testing Lab";
- req_access_txt = "47"
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bJQ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bJR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/toxins/storage)
-"bJS" = (
-/turf/open/space,
-/obj/machinery/porta_turret/syndicate{
- dir = 5
- },
-/turf/closed/wall/mineral/plastitanium{
- dir = 1;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
-"bJT" = (
-/obj/machinery/vending/cigarette,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bJU" = (
-/obj/structure/closet/wardrobe/science_white,
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bJV" = (
-/obj/structure/closet/l3closet/scientist{
- pixel_x = -2
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bJW" = (
-/obj/item/device/transfer_valve{
- pixel_x = -5
- },
-/obj/item/device/transfer_valve{
- pixel_x = -5
- },
-/obj/item/device/transfer_valve{
- pixel_x = 0
- },
-/obj/item/device/transfer_valve{
- pixel_x = 0
- },
-/obj/item/device/transfer_valve{
- pixel_x = 5
- },
-/obj/item/device/transfer_valve{
- pixel_x = 5
- },
-/obj/machinery/requests_console{
- department = "Science";
- departmentType = 2;
- name = "Science Requests Console";
- pixel_x = 0;
- pixel_y = -30;
- receive_ore_updates = 1
- },
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bJX" = (
-/obj/item/device/assembly/signaler{
- pixel_x = 0;
- pixel_y = 8
- },
-/obj/item/device/assembly/signaler{
- pixel_x = -8;
- pixel_y = 5
- },
-/obj/item/device/assembly/signaler{
- pixel_x = 6;
- pixel_y = 5
- },
-/obj/item/device/assembly/signaler{
- pixel_x = -2;
- pixel_y = -2
- },
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bJY" = (
-/obj/structure/tank_dispenser,
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bJZ" = (
-/obj/item/device/assembly/timer{
- pixel_x = 5;
- pixel_y = 4
- },
-/obj/item/device/assembly/timer{
- pixel_x = -4;
- pixel_y = 2
- },
-/obj/item/device/assembly/timer{
- pixel_x = 6;
- pixel_y = -4
- },
-/obj/item/device/assembly/timer{
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bKa" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Toxins Lab APC";
- pixel_x = 26;
- pixel_y = 0
- },
-/obj/structure/cable,
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bKb" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/toxins/mixing)
-"bKc" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/toxins/mixing)
-"bKd" = (
-/obj/machinery/camera{
- c_tag = "Toxins Launch Room Access";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/toxins/mixing)
-"bKe" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/toxins/mixing)
-"bKf" = (
-/obj/machinery/door/window/southleft{
- name = "Mass Driver Door";
- req_access_txt = "7"
- },
-/turf/open/floor/plasteel/loadingarea,
-/area/toxins/mixing)
-"bKg" = (
-/turf/open/floor/plating/airless,
-/area/toxins/test_area)
-"bKh" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plating/airless,
-/area/toxins/test_area)
-"bKi" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plating/airless,
-/area/toxins/test_area)
-"bKj" = (
-/obj/machinery/camera{
- c_tag = "Mining Dock External";
- dir = 8
- },
-/obj/structure/reagent_dispensers/fueltank,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bKk" = (
-/obj/item/weapon/ore/silver,
-/obj/item/weapon/ore/silver,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bKl" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel/brown{
- dir = 10
- },
-/area/quartermaster/miningdock)
-"bKm" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0
- },
-/turf/closed/wall,
-/area/quartermaster/miningdock)
-"bKn" = (
-/obj/structure/rack{
- dir = 1
- },
-/obj/item/weapon/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -1
- },
-/obj/item/weapon/pickaxe{
- pixel_x = 5
- },
-/obj/item/weapon/shovel{
- pixel_x = -5
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bKo" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bKp" = (
-/obj/structure/closet/crate,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bKq" = (
-/obj/machinery/mineral/equipment_vendor,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bKr" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable,
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bKs" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bKt" = (
-/obj/structure/table,
-/obj/item/weapon/stock_parts/micro_laser,
-/obj/item/weapon/stock_parts/manipulator,
-/obj/item/weapon/stock_parts/manipulator,
-/obj/item/weapon/stock_parts/manipulator,
-/obj/item/weapon/stock_parts/manipulator,
-/obj/item/weapon/stock_parts/capacitor,
-/obj/item/weapon/stock_parts/micro_laser/high,
-/obj/item/weapon/stock_parts/micro_laser/high,
-/obj/item/weapon/stock_parts/micro_laser/high,
-/obj/item/weapon/stock_parts/micro_laser/high,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bKu" = (
-/obj/structure/table,
-/obj/item/weapon/stock_parts/subspace/amplifier,
-/obj/item/weapon/stock_parts/subspace/amplifier,
-/obj/item/weapon/stock_parts/subspace/amplifier,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bKv" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bKw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/asmaint)
-"bKx" = (
-/obj/structure/closet/crate,
-/obj/effect/landmark/blobstart,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/construction)
-"bKy" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/maintenance/asmaint)
-"bKz" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bKA" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/construction)
-"bKB" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bKC" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bKD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bKE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bKF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/obj/effect/landmark/start/cargo_technician,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bKG" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/sign/securearea{
- pixel_x = 0;
- pixel_y = -32
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bKH" = (
-/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/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bKI" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 8;
- icon_state = "pipe-j1s";
- sortType = 11
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bKJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bKK" = (
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "Medbay APC";
- pixel_x = 24;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/medical/medbay)
-"bKL" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bKM" = (
-/obj/machinery/vending/wallmed{
- pixel_y = 28
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bKN" = (
-/obj/machinery/door/airlock/medical{
- name = "Patient Room 2";
- req_access_txt = "5"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bKO" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bKP" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/westleft{
- name = "Delivery Desk";
- req_access_txt = "50"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/bot,
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bKQ" = (
-/obj/structure/rack{
- dir = 1
- },
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bKR" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/medical/medbay)
-"bKS" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "CM Office APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/medical/cmo)
-"bKT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bKU" = (
-/obj/machinery/door/airlock/engineering{
- name = "Construction Area";
- req_access_txt = "32"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/construction)
-"bKV" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bKW" = (
-/obj/item/weapon/wrench,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"bKX" = (
-/obj/machinery/button/door{
- id = "misclab";
- name = "Test Chamber Blast Doors";
- pixel_x = 0;
- pixel_y = -2;
- req_access_txt = "55"
- },
-/obj/structure/table/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"bKY" = (
-/obj/machinery/computer/security/telescreen{
- name = "Test Chamber Moniter";
- network = list("Xeno");
- pixel_x = 0;
- pixel_y = 2
- },
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"bKZ" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"bLa" = (
-/obj/machinery/door/window/southleft{
- name = "Test Chamber";
- req_access_txt = "55"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"bLb" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"bLc" = (
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/glasses/science,
-/obj/item/clothing/glasses/science,
-/obj/structure/table,
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"bLd" = (
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/machinery/doorButtons/access_button{
- idDoor = "virology_airlock_interior";
- idSelf = "virology_airlock_control";
- name = "Virology Access Button";
- pixel_x = 8;
- pixel_y = -28;
- req_access_txt = "39"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bLe" = (
-/obj/structure/sign/biohazard,
-/turf/closed/wall,
-/area/toxins/xenobiology)
-"bLf" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bLg" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bLh" = (
-/obj/structure/sign/fire,
-/turf/closed/wall,
-/area/medical/research{
- name = "Research Division"
- })
-"bLi" = (
-/obj/structure/sign/nosmoking_2{
- pixel_x = -32
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bLj" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = -32
- },
-/turf/open/floor/plating,
-/area/toxins/mixing)
-"bLk" = (
-/obj/machinery/mass_driver{
- dir = 4;
- id = "toxinsdriver"
- },
-/turf/open/floor/plating,
-/area/toxins/mixing)
-"bLl" = (
-/obj/machinery/door/poddoor{
- id = "toxinsdriver";
- name = "toxins launcher bay door"
- },
-/turf/open/floor/plating,
-/area/toxins/mixing)
-"bLm" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/toxins/mixing)
-"bLn" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/toxins/test_area)
-"bLo" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/toxins/test_area)
-"bLp" = (
-/obj/item/device/radio/beacon,
-/turf/open/floor/plating/airless,
-/area/toxins/test_area)
-"bLq" = (
-/turf/closed/indestructible{
- desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease";
- icon_state = "riveted";
- name = "hyper-reinforced wall"
- },
-/area/toxins/test_area)
-"bLr" = (
-/obj/machinery/camera{
- active_power_usage = 0;
- c_tag = "Bomb Test Site";
- desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site.";
- dir = 8;
- invuln = 1;
- light = null;
- name = "Hardened Bomb-Test Camera";
- network = list("Toxins");
- use_power = 0
- },
-/obj/item/target/alien{
- anchored = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating{
- luminosity = 2;
- initial_gas_mix = "o2=0.01;n2=0.01"
- },
-/area/toxins/test_area)
-"bLs" = (
-/obj/structure/ore_box,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"bLt" = (
-/obj/structure/shuttle/engine/heater,
-/turf/open/floor/plating,
-/area/shuttle/labor)
-"bLu" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bLv" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bLw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bLx" = (
-/obj/structure/table,
-/obj/item/weapon/stock_parts/subspace/transmitter,
-/obj/item/weapon/stock_parts/subspace/transmitter,
-/obj/item/weapon/stock_parts/subspace/treatment,
-/obj/item/weapon/stock_parts/subspace/treatment,
-/obj/item/weapon/stock_parts/subspace/treatment,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bLy" = (
-/obj/structure/table,
-/obj/item/weapon/stock_parts/subspace/ansible,
-/obj/item/weapon/stock_parts/subspace/ansible,
-/obj/item/weapon/stock_parts/subspace/ansible,
-/obj/item/weapon/stock_parts/subspace/crystal,
-/obj/item/weapon/stock_parts/subspace/crystal,
-/obj/item/weapon/stock_parts/subspace/crystal,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bLz" = (
-/obj/structure/table,
-/obj/item/weapon/stock_parts/subspace/filter,
-/obj/item/weapon/stock_parts/subspace/filter,
-/obj/item/weapon/stock_parts/subspace/filter,
-/obj/item/weapon/stock_parts/subspace/filter,
-/obj/item/weapon/stock_parts/subspace/filter,
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bLA" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/storage/toolbox/electrical{
- pixel_x = 1;
- pixel_y = -1
- },
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/device/t_scanner,
-/obj/item/device/multitool,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bLB" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bLC" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/construction)
-"bLD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/storage/tech)
-"bLE" = (
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"bLF" = (
-/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bLG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"bLH" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel/caution{
- dir = 5
- },
-/area/hallway/primary/aft)
-"bLI" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bLJ" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bLK" = (
-/turf/closed/wall/r_wall,
-/area/atmos)
-"bLL" = (
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bLM" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bLN" = (
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bLO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/maintenance{
- name = "Atmospherics Maintenance";
- req_access_txt = "24"
- },
-/turf/open/floor/plating,
-/area/atmos)
-"bLP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/atmos)
-"bLQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/closed/wall/r_wall,
-/area/atmos)
-"bLR" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/turf/closed/wall/r_wall,
-/area/atmos)
-"bLS" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bLT" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bLU" = (
-/obj/structure/table,
-/obj/item/weapon/folder/white,
-/obj/item/clothing/neck/stethoscope,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bLV" = (
-/obj/structure/closet/secure_closet/personal/patient,
-/obj/machinery/button/door{
- id = "medpriv1";
- name = "Privacy Shutters";
- pixel_y = -25
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bLW" = (
-/obj/structure/chair/office/light{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bLX" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bLY" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bLZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bMa" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bMb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bMc" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Medbay Maintenance";
- req_access_txt = "5"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/medical/medbay)
-"bMd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bMe" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/junction,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bMf" = (
-/obj/structure/table,
-/obj/machinery/cell_charger{
- pixel_y = 5
- },
-/obj/item/stack/cable_coil,
-/obj/item/device/multitool,
-/obj/item/weapon/stock_parts/cell/high/plus,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bMg" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Xenobiology APC";
- pixel_x = -25
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bMh" = (
-/obj/structure/chair/stool,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bMi" = (
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bMj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/closed/wall,
-/area/maintenance/aft)
-"bMk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bMl" = (
-/obj/machinery/processor{
- desc = "A machine used to process slimes and retrieve their extract.";
- name = "Slime Processor"
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bMm" = (
-/obj/machinery/monkey_recycler,
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bMn" = (
-/obj/structure/table,
-/obj/machinery/reagentgrinder,
-/obj/machinery/airalarm{
- frequency = 1439;
- pixel_y = 23
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bMo" = (
-/obj/machinery/smartfridge/extract/preloaded,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bMp" = (
-/obj/structure/closet/l3closet/scientist,
-/obj/machinery/light_switch{
- pixel_x = 0;
- pixel_y = 28
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bMq" = (
-/obj/structure/closet/l3closet/scientist,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bMr" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/toxins/xenobiology)
-"bMs" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
-"bMt" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/open/floor/engine/vacuum,
-/area/toxins/mixing)
-"bMu" = (
-/obj/machinery/door/poddoor{
- id = "mixvent";
- name = "Mixer Room Vent"
- },
-/turf/open/floor/engine/vacuum,
-/area/toxins/mixing)
-"bMv" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/toxins/mixing)
-"bMw" = (
-/obj/machinery/sparker{
- dir = 2;
- id = "mixingsparker";
- pixel_x = 25
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 0;
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
- },
-/turf/open/floor/engine/vacuum,
-/area/toxins/mixing)
-"bMx" = (
-/obj/machinery/airlock_sensor{
- id_tag = "tox_airlock_sensor";
- master_tag = "tox_airlock_control";
- pixel_y = 24
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/engine,
-/area/toxins/mixing)
-"bMy" = (
-/obj/machinery/atmospherics/components/binary/valve{
- dir = 4;
- name = "mix to port"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bMz" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/machinery/meter,
-/obj/machinery/embedded_controller/radio/airlock_controller{
- airpump_tag = "tox_airlock_pump";
- exterior_door_tag = "tox_airlock_exterior";
- id_tag = "tox_airlock_control";
- interior_door_tag = "tox_airlock_interior";
- pixel_x = -24;
- pixel_y = 0;
- sanitize_external = 1;
- sensor_tag = "tox_airlock_sensor"
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bMA" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/toxins/mixing)
-"bMB" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bMC" = (
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bMD" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plating/airless,
-/area/toxins/test_area)
-"bME" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plating/airless,
-/area/toxins/test_area)
-"bMF" = (
-/obj/structure/shuttle/engine/propulsion/burst,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/labor)
-"bMG" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bMH" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bMI" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bMJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bMK" = (
-/turf/closed/wall,
-/area/atmos)
-"bML" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bMM" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bMN" = (
-/obj/machinery/atmospherics/components/trinary/filter{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bMO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bMP" = (
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bMQ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"bMR" = (
-/obj/machinery/pipedispenser,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bMS" = (
-/obj/machinery/camera{
- c_tag = "Atmospherics North East"
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Distro to Waste";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bMT" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 8
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/meter{
- frequency = 1441;
- id_tag = "waste_meter";
- name = "Waste Loop"
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bMU" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/visible{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bMV" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/visible{
- dir = 2
- },
-/obj/machinery/meter{
- frequency = 1441;
- id_tag = "distro_meter";
- name = "Distribution Loop"
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bMW" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 10;
- initialize_directions = 10
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bMX" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Air to Distro";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bMY" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/atmos)
-"bMZ" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bNa" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/turf/open/space,
-/area/space)
-"bNb" = (
-/obj/item/weapon/airlock_painter,
-/obj/structure/lattice,
-/obj/structure/closet,
-/turf/open/space,
-/area/space/nearstation)
-"bNc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/medical/virology)
-"bNd" = (
-/turf/closed/wall/r_wall,
-/area/medical/virology)
-"bNe" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/table,
-/obj/item/weapon/hand_labeler,
-/obj/item/clothing/glasses/science,
-/obj/item/clothing/glasses/science,
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bNf" = (
-/obj/structure/sign/biohazard,
-/turf/closed/wall,
-/area/medical/virology)
-"bNg" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bNh" = (
-/obj/machinery/computer/pandemic,
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 4
- },
-/area/medical/virology)
-"bNi" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bNj" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_virology{
- name = "Isolation A";
- req_access_txt = "39"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bNk" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/medical/virology)
-"bNl" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_virology{
- name = "Isolation B";
- req_access_txt = "39"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bNm" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bNn" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bNo" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bNp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bNq" = (
-/obj/structure/table,
-/obj/item/stack/sheet/glass{
- amount = 50;
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bNr" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- name = "Xenobiology Lab";
- req_access_txt = "55"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bNs" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bNt" = (
-/turf/open/floor/engine/vacuum,
-/area/toxins/mixing)
-"bNu" = (
-/obj/machinery/door/airlock/glass_research{
- autoclose = 0;
- frequency = 1449;
- glass = 1;
- heat_proof = 1;
- icon_state = "door_locked";
- id_tag = "tox_airlock_exterior";
- locked = 1;
- name = "Mixing Room Exterior Airlock";
- req_access_txt = "8"
- },
-/turf/open/floor/engine,
-/area/toxins/mixing)
-"bNv" = (
-/obj/machinery/door/airlock/glass_research{
- autoclose = 0;
- frequency = 1449;
- glass = 1;
- heat_proof = 1;
- icon_state = "door_locked";
- id_tag = "tox_airlock_interior";
- locked = 1;
- name = "Mixing Room Interior Airlock";
- req_access_txt = "8"
- },
-/turf/open/floor/engine,
-/area/toxins/mixing)
-"bNw" = (
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{
- dir = 2;
- frequency = 1449;
- id = "tox_airlock_pump"
- },
-/turf/open/floor/engine,
-/area/toxins/mixing)
-"bNx" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bNy" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bNz" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
- },
-/obj/machinery/camera{
- c_tag = "Toxins Lab East";
- dir = 8;
- network = list("SS13","RD");
- pixel_y = -22
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/toxins/mixing)
-"bNA" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bNB" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bNC" = (
-/obj/structure/closet/wardrobe/grey,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bND" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plating/airless,
-/area/toxins/test_area)
-"bNE" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plating/airless,
-/area/toxins/test_area)
-"bNF" = (
-/obj/item/device/flashlight/lamp,
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plating/airless,
-/area/toxins/test_area)
-"bNG" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/toxins/test_area)
-"bNH" = (
-/obj/structure/table/reinforced,
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -26
- },
-/obj/item/weapon/paper_bin{
- pixel_x = -3
- },
-/obj/item/weapon/pen{
- pixel_x = -3
- },
-/obj/item/weapon/folder/yellow{
- pixel_x = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bNI" = (
-/turf/closed/wall,
-/area/construction)
-"bNJ" = (
-/turf/open/floor/plating,
-/area/construction)
-"bNK" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_mining{
- name = "Cargo Office";
- req_access_txt = "50"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bNL" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- pixel_y = 23
- },
-/turf/open/floor/plating,
-/area/construction)
-"bNM" = (
-/turf/open/floor/plasteel/loadingarea{
- dir = 4
- },
-/area/quartermaster/office)
-"bNN" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bNO" = (
-/turf/open/floor/plasteel/caution{
- dir = 6
- },
-/area/hallway/primary/aft)
-"bNP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/item/device/radio/intercom{
- freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = -30
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bNQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bNR" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/machinery/camera{
- c_tag = "Atmospherics Monitoring";
- dir = 2;
- network = list("SS13")
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/open/floor/plasteel/caution{
- dir = 5
- },
-/area/atmos)
-"bNS" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bNT" = (
-/obj/machinery/camera{
- c_tag = "Atmospherics North West";
- dir = 4;
- network = list("SS13")
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bNU" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/medical/virology)
-"bNV" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bNW" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bNX" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/misc_lab)
-"bNY" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"bNZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bOa" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bOb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bOc" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "Mix to Distro";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bOd" = (
-/turf/open/floor/plasteel,
-/area/atmos)
-"bOe" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
- dir = 8;
- initialize_directions = 11
- },
-/obj/machinery/meter,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bOf" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 10;
- initialize_directions = 10
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"bOg" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "Mix to Incinerator";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bOh" = (
-/obj/structure/grille,
-/turf/closed/wall/r_wall,
-/area/atmos)
-"bOi" = (
-/turf/open/floor/plasteel/airless{
- icon_state = "damaged5"
- },
-/area/space/nearstation)
-"bOj" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/closed/wall/r_wall,
-/area/medical/virology)
-"bOk" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bOl" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/announcement_system,
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bOm" = (
-/obj/item/weapon/bedsheet,
-/obj/structure/bed,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bOn" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/airalarm{
- frequency = 1439;
- pixel_y = 23
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bOo" = (
-/obj/item/device/radio/intercom{
- dir = 8;
- freerange = 1;
- name = "Station Intercom (Telecoms)";
- pixel_x = 0;
- pixel_y = 26
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bOp" = (
-/obj/structure/closet/emcloset,
-/obj/machinery/camera{
- c_tag = "Virology Airlock";
- dir = 2;
- network = list("SS13")
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bOq" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bOr" = (
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bOs" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bOt" = (
-/mob/living/carbon/monkey,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bOu" = (
-/obj/structure/rack,
-/obj/item/clothing/mask/gas{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/machinery/airalarm{
- dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bOv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bOw" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/droneDispenser,
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bOx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bOy" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/misc_lab)
-"bOz" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bOA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white/side{
- dir = 1
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bOB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bOC" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bOD" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bOE" = (
-/obj/machinery/sparker{
- dir = 2;
- id = "mixingsparker";
- pixel_x = 25
- },
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 4;
- frequency = 1441;
- id = "air_in"
- },
-/turf/open/floor/engine/vacuum,
-/area/toxins/mixing)
-"bOF" = (
-/obj/structure/sign/fire{
- pixel_y = -32
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/engine,
-/area/toxins/mixing)
-"bOG" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/components/binary/valve{
- dir = 4;
- name = "port to mix"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bOH" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/machinery/meter,
-/obj/machinery/button/door{
- id = "mixvent";
- name = "Mixing Room Vent Control";
- pixel_x = -25;
- pixel_y = 5;
- req_access_txt = "7"
- },
-/obj/machinery/button/ignition{
- id = "mixingsparker";
- pixel_x = -25;
- pixel_y = -5
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bOI" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/toxins/mixing)
-"bOJ" = (
-/obj/item/target,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating,
-/area/toxins/test_area)
-"bOK" = (
-/obj/structure/barricade/wooden,
-/obj/structure/girder,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bOL" = (
-/obj/structure/closet/crate,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bOM" = (
-/obj/structure/table,
-/obj/item/weapon/paper_bin,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bON" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "kanyewest";
- layer = 2.9;
- name = "privacy shutters"
- },
-/turf/open/floor/plating,
-/area/security/detectives_office)
-"bOO" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Engineering Security APC";
- pixel_x = -24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/plasteel/red/side{
- dir = 9
- },
-/area/security/checkpoint/engineering)
-"bOP" = (
-/obj/structure/table/glass,
-/obj/structure/reagent_dispensers/virusfood{
- density = 0;
- pixel_x = -30
- },
-/obj/item/weapon/book/manual/wiki/infections{
- pixel_y = 7
- },
-/obj/item/weapon/reagent_containers/syringe/antiviral,
-/obj/item/weapon/reagent_containers/dropper,
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 8
- },
-/area/medical/virology)
-"bOQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/loadingarea{
- dir = 8
- },
-/area/hallway/primary/aft)
-"bOR" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bOS" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/loadingarea{
- dir = 4
- },
-/area/atmos)
-"bOT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/plasticflaps{
- opacity = 1
- },
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=4";
- dir = 4;
- freq = 1400;
- location = "Atmospherics"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
- },
-/area/atmos)
-"bOU" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bOV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bOW" = (
-/obj/machinery/computer/atmos_control,
-/obj/machinery/requests_console{
- department = "Atmospherics";
- departmentType = 4;
- name = "Atmos RC";
- pixel_x = 30;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/caution{
- dir = 4
- },
-/area/atmos)
-"bOX" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bOY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/atmos)
-"bOZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bPa" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"bPb" = (
-/obj/machinery/door/airlock/glass_research{
- name = "Firing Range";
- req_access_txt = "47"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bPc" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bPd" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 0;
- name = "Waste In";
- on = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bPe" = (
-/obj/machinery/atmospherics/pipe/manifold/yellow/visible,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bPf" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 0;
- name = "Air to Mix";
- on = 0
- },
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bPg" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Mix Outlet Pump";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bPh" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"bPi" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/machinery/atmospherics/pipe/manifold/yellow/visible,
-/turf/open/floor/plasteel/green/side{
- dir = 5
- },
-/area/atmos)
-"bPj" = (
-/obj/machinery/atmospherics/pipe/simple{
- dir = 4
- },
-/obj/structure/grille,
-/obj/machinery/meter,
-/turf/closed/wall/r_wall,
-/area/atmos)
-"bPk" = (
-/obj/machinery/camera{
- c_tag = "Atmospherics Waste Tank"
- },
-/turf/open/floor/engine/vacuum,
-/area/atmos)
-"bPl" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 0;
- frequency = 1441;
- id_tag = "mix_out";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
- },
-/turf/open/floor/engine/vacuum,
-/area/atmos)
-"bPm" = (
-/turf/open/floor/engine/vacuum,
-/area/atmos)
-"bPn" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bPo" = (
-/obj/structure/table,
-/obj/machinery/microwave{
- pixel_x = -3;
- pixel_y = 6
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bPp" = (
-/obj/machinery/iv_drip,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bPq" = (
-/obj/machinery/shower{
- dir = 4
- },
-/obj/structure/sign/securearea{
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bPr" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/structure/closet/l3closet,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bPs" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bPt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/mob/living/carbon/monkey,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bPu" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bPv" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bPw" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/medical/virology)
-"bPx" = (
-/obj/machinery/disposal/bin,
-/obj/structure/sign/deathsposal{
- pixel_x = 0;
- pixel_y = -32
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bPy" = (
-/obj/effect/landmark/start/scientist,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/chair/comfy/black,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bPz" = (
-/obj/machinery/light,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/table/glass,
-/obj/item/weapon/storage/box/monkeycubes,
-/obj/item/weapon/storage/box/monkeycubes,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bPA" = (
-/obj/machinery/computer/camera_advanced/xenobio,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bPB" = (
-/obj/structure/table/glass,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/item/weapon/folder/white,
-/obj/item/weapon/pen,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bPC" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bPD" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bPE" = (
-/obj/structure/table,
-/obj/item/weapon/extinguisher{
- pixel_x = 4;
- pixel_y = 3
- },
-/obj/item/weapon/extinguisher,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bPF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bPG" = (
-/obj/structure/table,
-/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9
- },
-/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9
- },
-/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9
- },
-/obj/machinery/light,
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -29
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bPH" = (
-/obj/structure/table,
-/obj/machinery/requests_console{
- department = "Science";
- departmentType = 2;
- name = "Science Requests Console";
- pixel_x = 0;
- pixel_y = -30;
- receive_ore_updates = 1
- },
-/obj/item/weapon/paper_bin{
- pixel_x = 1;
- pixel_y = 9
- },
-/obj/item/weapon/pen,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bPI" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bPJ" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/beakers{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/weapon/storage/box/syringes,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bPK" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/toxins/misc_lab)
-"bPL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bPM" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bPN" = (
-/turf/closed/wall,
-/area/toxins/misc_lab)
-"bPO" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bPP" = (
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bPQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bPR" = (
-/obj/effect/decal/cleanable/robot_debris/old,
-/turf/open/floor/wood,
-/area/maintenance/aft)
-"bPS" = (
-/turf/open/floor/wood,
-/area/maintenance/aft)
-"bPT" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/maintenance/aft)
-"bPU" = (
-/obj/item/weapon/shard,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bPW" = (
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bPX" = (
-/obj/structure/closet/emcloset,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bPZ" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bQa" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bQb" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bQc" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plating,
-/area/construction)
-"bQd" = (
-/obj/structure/table,
-/obj/item/weapon/folder/blue,
-/obj/item/weapon/pen/blue,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bQe" = (
-/obj/item/weapon/screwdriver{
- pixel_y = 10
- },
-/obj/machinery/button/door{
- desc = "A remote control-switch for the engineering security doors.";
- id = "Engineering";
- name = "Engineering Lockdown";
- pixel_x = -24;
- pixel_y = -6;
- req_access_txt = "10"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/item/device/radio/off,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/light_switch{
- pixel_x = -27;
- pixel_y = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/checkpoint/engineering)
-"bQf" = (
-/turf/open/floor/plasteel/caution{
- dir = 5
- },
-/area/hallway/primary/aft)
-"bQg" = (
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bQh" = (
-/obj/structure/tank_dispenser{
- pixel_x = -1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bQi" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/preopen{
- id = "atmos";
- layer = 2.9;
- name = "atmos blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"bQj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bQk" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bQl" = (
-/obj/machinery/computer/atmos_control,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/caution{
- dir = 4
- },
-/area/atmos)
-"bQm" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bQn" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"bQo" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bQp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bQq" = (
-/obj/machinery/camera{
- c_tag = "Security Post - Engineering";
- dir = 8;
- network = list("SS13")
- },
-/obj/item/device/radio/intercom{
- dir = 4;
- name = "Station Intercom (General)";
- pixel_x = 27
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/checkpoint/engineering)
-"bQr" = (
-/obj/structure/closet/crate,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bQs" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Mix to Filter";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bQt" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bQu" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bQv" = (
-/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bQw" = (
-/obj/machinery/atmospherics/pipe/manifold/green/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bQx" = (
-/obj/machinery/atmospherics/pipe/manifold/green/visible{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bQy" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"bQz" = (
-/obj/machinery/computer/atmos_control/tank{
- frequency = 1441;
- input_tag = "mix_in";
- name = "Gas Mix Tank Control";
- output_tag = "mix_out";
- sensors = list("mix_sensor" = "Tank")
- },
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/atmos)
-"bQA" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating/airless,
-/area/atmos)
-"bQB" = (
-/obj/machinery/air_sensor{
- frequency = 1441;
- id_tag = "mix_sensor"
- },
-/turf/open/floor/engine/vacuum,
-/area/atmos)
-"bQC" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/engine/vacuum,
-/area/atmos)
-"bQD" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bQE" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/donkpockets{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/machinery/newscaster{
- pixel_x = -30
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bQF" = (
-/obj/structure/closet/wardrobe/virology_white,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bQG" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/toxins/misc_lab)
-"bQH" = (
-/obj/structure/closet/l3closet,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bQI" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bQJ" = (
-/obj/effect/landmark/blobstart,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bQK" = (
-/obj/machinery/door/airlock/glass_command{
- name = "Control Room";
- req_access_txt = "19; 61"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bQL" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bQM" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bQN" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Xenobiology North";
- dir = 8;
- network = list("SS13","RD")
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bQO" = (
-/obj/structure/closet/bombcloset,
-/obj/machinery/light_switch{
- pixel_x = -20;
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bQP" = (
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"bQQ" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bQR" = (
-/obj/structure/table,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/weapon/storage/toolbox/mechanical,
-/obj/item/clothing/ears/earmuffs,
-/obj/machinery/camera{
- c_tag = "Testing Lab North";
- dir = 2;
- network = list("SS13","RD")
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bQS" = (
-/obj/machinery/requests_console{
- department = "Science";
- departmentType = 2;
- dir = 2;
- name = "Science Requests Console";
- pixel_x = 0;
- pixel_y = 30;
- receive_ore_updates = 1
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bQT" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bQU" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bQV" = (
-/obj/machinery/atmospherics/components/trinary/filter{
- dir = 4;
- req_access = null
- },
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bQW" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/heater{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bQX" = (
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/misc_lab)
-"bQY" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bQZ" = (
-/turf/closed/wall/r_wall,
-/area/toxins/misc_lab)
-"bRa" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bRb" = (
-/obj/structure/rack,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bRg" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bRh" = (
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bRi" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bRj" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bRk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/checkpoint/engineering)
-"bRl" = (
-/obj/structure/light_construct{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/construction)
-"bRm" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Security Office";
- req_access_txt = "63"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint/engineering)
-"bRn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/construction)
-"bRo" = (
-/obj/machinery/computer/secure_data,
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching the Engine.";
- dir = 8;
- layer = 4;
- name = "Engine Monitor";
- network = list("Engine");
- pixel_x = 30;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/checkpoint/engineering)
-"bRp" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/caution/corner{
- dir = 8
- },
-/area/hallway/primary/aft)
-"bRq" = (
-/turf/open/floor/plasteel/caution{
- dir = 4
- },
-/area/hallway/primary/aft)
-"bRr" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/landmark/start/atmospheric_technician,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bRs" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/window/northleft{
- dir = 4;
- icon_state = "left";
- name = "Atmospherics Desk";
- req_access_txt = "24"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "atmos";
- layer = 2.9;
- name = "atmos blast door"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
- },
-/area/atmos)
-"bRt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bRu" = (
-/obj/machinery/computer/atmos_alert,
-/turf/open/floor/plasteel/caution{
- dir = 4
- },
-/area/atmos)
-"bRv" = (
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/obj/effect/landmark/start/atmospheric_technician,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bRw" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bRx" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"bRy" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bRz" = (
-/obj/machinery/atmospherics/components/trinary/mixer{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bRA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bRB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 6
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bRC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_atmos{
- name = "Distribution Loop";
- req_access_txt = "24"
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bRD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bRE" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "Pure to Mix";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bRF" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bRG" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "Unfiltered to Mix";
- on = 1
- },
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4;
- initialize_directions = 12
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bRH" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 5;
- initialize_directions = 12
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bRI" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"bRJ" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/green/side{
- dir = 6
- },
-/area/atmos)
-"bRK" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/turf/open/space,
-/area/space/nearstation)
-"bRL" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 8;
- frequency = 1441;
- id = "mix_in";
- pixel_y = 1
- },
-/turf/open/floor/engine/vacuum,
-/area/atmos)
-"bRM" = (
-/obj/structure/table,
-/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
- },
-/obj/machinery/reagentgrinder,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bRN" = (
-/turf/closed/wall,
-/area/medical/virology)
-"bRO" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bRP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/virology{
- autoclose = 0;
- frequency = 1449;
- icon_state = "door_locked";
- id_tag = "virology_airlock_interior";
- locked = 1;
- name = "Virology Interior Airlock";
- req_access_txt = "39"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bRQ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/medical/virology)
-"bRR" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_virology{
- name = "Monkey Pen";
- req_access_txt = "39"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bRS" = (
-/obj/structure/chair/office/dark,
-/obj/effect/landmark/start/depsec/engineering,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint/engineering)
-"bRT" = (
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/structure/disposaloutlet,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"bRU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"bRV" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"bRW" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio3";
- name = "containment blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"bRX" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bRY" = (
-/obj/structure/window/reinforced,
-/obj/structure/table/reinforced,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/button/door{
- id = "xenobio8";
- name = "Containment Blast Doors";
- pixel_x = 0;
- pixel_y = 4;
- req_access_txt = "55"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"bRZ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bSa" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio8";
- name = "containment blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"bSb" = (
-/obj/structure/closet/l3closet/scientist{
- pixel_x = -2
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bSc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bSd" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bSe" = (
-/obj/structure/table,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/device/electropack,
-/obj/item/device/healthanalyzer,
-/obj/item/device/assembly/signaler,
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bSf" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/misc_lab)
-"bSg" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 4;
- initialize_directions = 11
- },
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bSh" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bSi" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bSj" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bSk" = (
-/obj/machinery/magnetic_module,
-/obj/effect/landmark/blobstart,
-/obj/structure/target_stake,
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/turf/open/floor/plasteel{
- dir = 2
- },
-/area/toxins/misc_lab)
-"bSl" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bSm" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/asmaint2)
-"bSn" = (
-/obj/machinery/space_heater,
-/turf/open/floor/wood,
-/area/maintenance/aft)
-"bSp" = (
-/obj/structure/grille/broken,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bSq" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/tank/internals/emergency_oxygen,
-/obj/item/weapon/tank/internals/emergency_oxygen,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bSr" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bSs" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bSt" = (
-/obj/structure/closet/emcloset,
-/obj/machinery/camera{
- c_tag = "Telecoms Monitoring";
- dir = 8;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bSv" = (
-/obj/machinery/camera{
- c_tag = "Construction Area";
- dir = 1
- },
-/turf/open/floor/plating,
-/area/construction)
-"bSw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bSx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/construction)
-"bSy" = (
-/obj/machinery/light/small,
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"bSz" = (
-/obj/structure/table,
-/turf/open/floor/plating,
-/area/construction)
-"bSA" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/caution/corner{
- dir = 8
- },
-/area/hallway/primary/aft)
-"bSB" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/obj/structure/table,
-/obj/item/weapon/tank/internals/emergency_oxygen{
- pixel_x = -8;
- pixel_y = 0
- },
-/obj/item/weapon/tank/internals/emergency_oxygen{
- pixel_x = -8;
- pixel_y = 0
- },
-/obj/item/clothing/mask/breath{
- pixel_x = 4;
- pixel_y = 0
- },
-/obj/item/clothing/mask/breath{
- pixel_x = 4;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bSC" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/poddoor/preopen{
- id = "atmos";
- layer = 2.9;
- name = "atmos blast door"
- },
-/turf/open/floor/plating,
-/area/atmos)
-"bSD" = (
-/obj/structure/sign/atmosplaque{
- pixel_x = 0;
- pixel_y = -32
- },
-/obj/structure/table,
-/obj/item/weapon/storage/box,
-/obj/item/weapon/storage/box,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bSE" = (
-/obj/machinery/computer/station_alert,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/machinery/button/door{
- id = "atmos";
- name = "Atmospherics Lockdown";
- pixel_x = 24;
- pixel_y = 4;
- req_access_txt = "24"
- },
-/turf/open/floor/plasteel/caution{
- dir = 6
- },
-/area/atmos)
-"bSF" = (
-/obj/structure/table,
-/obj/item/clothing/head/welding{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/clothing/head/welding{
- pixel_x = -5;
- pixel_y = 3
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/item/device/multitool,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bSG" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/metal{
- amount = 50;
- pixel_x = 2;
- pixel_y = 2
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bSH" = (
-/obj/structure/table,
-/obj/item/stack/sheet/glass{
- amount = 50
- },
-/obj/item/weapon/storage/belt/utility,
-/obj/item/device/t_scanner,
-/obj/item/device/t_scanner,
-/obj/item/device/t_scanner,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bSI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bSJ" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"bSK" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 6;
- initialize_directions = 6
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"bSL" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"bSM" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"bSN" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"bSO" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"bSP" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
- dir = 4;
- initialize_directions = 11
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"bSQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bSR" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/caution/corner{
- dir = 8
- },
-/area/hallway/primary/aft)
-"bSS" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/virology{
- name = "Break Room";
- req_access_txt = "39"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bST" = (
-/obj/machinery/doorButtons/airlock_controller{
- idExterior = "virology_airlock_exterior";
- idInterior = "virology_airlock_interior";
- idSelf = "virology_airlock_control";
- name = "Virology Access Console";
- pixel_x = 8;
- pixel_y = 22;
- req_access_txt = "39"
- },
-/obj/machinery/light_switch{
- pixel_x = -4;
- pixel_y = 24
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bSU" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -5;
- pixel_y = 30
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bSV" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/firealarm{
- pixel_y = 25
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bSW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bSX" = (
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 1;
- name = "Virology APC";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/camera{
- c_tag = "Virology Module"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bSY" = (
-/obj/machinery/vending/medical,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bSZ" = (
-/obj/effect/landmark/revenantspawn,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"bTa" = (
-/obj/machinery/door/window/northleft{
- dir = 4;
- name = "Containment Pen";
- req_access_txt = "55"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"bTb" = (
-/obj/machinery/door/window/northleft{
- base_state = "right";
- dir = 8;
- icon_state = "right";
- name = "Containment Pen";
- req_access_txt = "55"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio3";
- name = "containment blast door"
- },
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"bTc" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bTd" = (
-/obj/machinery/door/window/northleft{
- base_state = "right";
- dir = 8;
- icon_state = "right";
- name = "Containment Pen";
- req_access_txt = "55"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"bTe" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/door/window/northleft{
- dir = 4;
- name = "Containment Pen";
- req_access_txt = "55"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio8";
- name = "containment blast door"
- },
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"bTf" = (
-/obj/structure/rack,
-/obj/item/weapon/wrench,
-/obj/item/weapon/crowbar,
-/obj/machinery/computer/security/telescreen{
- name = "Test Chamber Moniter";
- network = list("Test");
- pixel_x = 0;
- pixel_y = -30
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/misc_lab)
-"bTg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bTh" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bTi" = (
-/obj/structure/table,
-/obj/machinery/recharger{
- pixel_y = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 10
- },
-/area/security/checkpoint/engineering)
-"bTj" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/security/checkpoint/engineering)
-"bTk" = (
-/obj/machinery/atmospherics/components/binary/valve,
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bTl" = (
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bTm" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bTn" = (
-/obj/structure/table,
-/obj/item/device/assembly/igniter{
- pixel_x = -5;
- pixel_y = 3
- },
-/obj/item/device/assembly/igniter{
- pixel_x = 5;
- pixel_y = -4
- },
-/obj/item/device/assembly/igniter{
- pixel_x = 2;
- pixel_y = 6
- },
-/obj/item/device/assembly/igniter{
- pixel_x = 2;
- pixel_y = -1
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/item/device/assembly/timer{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/device/assembly/timer{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/device/assembly/timer{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/device/assembly/timer{
- pixel_x = -3;
- pixel_y = 3
- },
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bTo" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bTp" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bTq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/toxins/misc_lab)
-"bTr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bTs" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/maintenance/aft)
-"bTt" = (
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
-/area/maintenance/aft)
-"bTu" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/wood,
-/area/maintenance/aft)
-"bTv" = (
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bTx" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- icon_state = "connector_map";
- dir = 8
- },
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bTz" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bTA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/aft)
-"bTB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/closed/wall,
-/area/maintenance/aft)
-"bTC" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/closed/wall,
-/area/maintenance/aft)
-"bTD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bTE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bTF" = (
-/obj/structure/closet/emcloset,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bTG" = (
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- pixel_x = 1;
- pixel_y = 9
- },
-/obj/item/weapon/pen,
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 30;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 6
- },
-/area/security/checkpoint/engineering)
-"bTH" = (
-/obj/structure/table,
-/obj/item/weapon/book/manual/wiki/security_space_law,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint/engineering)
-"bTI" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bTJ" = (
-/obj/machinery/power/apc{
- name = "Aft Hall APC";
- dir = 8;
- pixel_x = -25;
- pixel_y = 1
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/caution/corner{
- dir = 8
- },
-/area/hallway/primary/aft)
-"bTK" = (
-/obj/item/weapon/crowbar,
-/obj/item/weapon/wrench,
-/obj/structure/window/reinforced,
-/turf/open/floor/plasteel/caution{
- dir = 6
- },
-/area/hallway/primary/aft)
-"bTL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/atmos)
-"bTM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/atmos)
-"bTN" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/glass_atmos{
- name = "Atmospherics Monitoring";
- req_access_txt = "24"
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bTO" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 6;
- initialize_directions = 6
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bTP" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bTQ" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/obj/machinery/meter,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bTR" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
- dir = 4;
- initialize_directions = 11
- },
-/obj/machinery/meter,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bTS" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 6
- },
-/obj/machinery/meter,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bTT" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bTU" = (
-/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bTV" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "N2O Outlet Pump";
- on = 0
- },
-/turf/open/floor/plasteel/escape{
- dir = 5
- },
-/area/atmos)
-"bTW" = (
-/turf/open/floor/engine/n2o,
-/area/atmos)
-"bTX" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 0;
- frequency = 1441;
- id_tag = "n2o_out";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
- },
-/turf/open/floor/engine/n2o,
-/area/atmos)
-"bTY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/closed/wall/r_wall,
-/area/medical/virology)
-"bTZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/medical/virology)
-"bUa" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/closed/wall,
-/area/medical/virology)
-"bUb" = (
-/obj/machinery/airalarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bUc" = (
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Telecoms Admin";
- departmentType = 5;
- name = "Telecoms RC";
- pixel_x = 30;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bUd" = (
-/obj/structure/table/reinforced,
-/obj/machinery/button/door{
- id = "xenobio3";
- name = "Containment Blast Doors";
- pixel_x = 0;
- pixel_y = 4;
- req_access_txt = "55"
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"bUe" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable,
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio3";
- name = "containment blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"bUf" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bUg" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"bUh" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable,
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio8";
- name = "containment blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"bUi" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/structure/disposaloutlet{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"bUj" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/misc_lab)
-"bUk" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 10;
- pixel_x = 0;
- initialize_directions = 10
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bUl" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 2;
- icon_state = "pipe-j2s";
- sortType = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/caution/corner{
- dir = 8
- },
-/area/hallway/primary/aft)
-"bUm" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bUn" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 9
- },
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bUo" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/beakers{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/weapon/grenade/chem_grenade,
-/obj/item/weapon/grenade/chem_grenade,
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bUp" = (
-/turf/open/floor/plating,
-/area/toxins/misc_lab)
-"bUq" = (
-/obj/structure/target_stake,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plating,
-/area/toxins/misc_lab)
-"bUr" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- icon_state = "intact";
- dir = 10
- },
-/turf/open/space,
-/area/space/nearstation)
-"bUs" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bUt" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bUu" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bUv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bUw" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bUx" = (
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-y";
- dir = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bUy" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bUz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bUA" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "Construction Area APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/construction)
-"bUB" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Telecoms Monitoring APC";
- pixel_y = -24
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"bUC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/tcommsat/computer)
-"bUD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bUE" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/pump,
-/turf/open/floor/plasteel/arrival{
- dir = 8
- },
-/area/atmos)
-"bUF" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/caution{
- dir = 8
- },
-/area/atmos)
-"bUG" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
- dir = 1
- },
-/obj/machinery/meter,
-/turf/closed/wall/r_wall,
-/area/atmos)
-"bUH" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bUI" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/caution{
- dir = 4
- },
-/area/atmos)
-"bUJ" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/atmos{
- name = "Atmospherics";
- req_access_txt = "24"
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bUK" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Air to External";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bUL" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bUM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bUN" = (
-/obj/item/device/radio/beacon,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bUO" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 0;
- name = "Mix to Port";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bUP" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 0;
- name = "Air to Port";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bUQ" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 0;
- name = "Pure to Port";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bUR" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bUS" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bUT" = (
-/obj/machinery/computer/atmos_control/tank{
- frequency = 1441;
- input_tag = "n2o_in";
- name = "Nitrous Oxide Supply Control";
- output_tag = "n2o_out";
- sensors = list("n2o_sensor" = "Tank")
- },
-/turf/open/floor/plasteel/escape{
- dir = 4
- },
-/area/atmos)
-"bUU" = (
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/turf/open/floor/engine/n2o,
-/area/atmos)
-"bUV" = (
-/obj/machinery/air_sensor{
- frequency = 1441;
- id_tag = "n2o_sensor"
- },
-/turf/open/floor/engine/n2o,
-/area/atmos)
-"bUW" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/engine/n2o,
-/area/atmos)
-"bUX" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bUY" = (
-/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/supply/hidden{
- dir = 5
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bUZ" = (
-/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/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bVa" = (
-/obj/machinery/smartfridge/chemistry/virology/preloaded,
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 8
- },
-/area/medical/virology)
-"bVb" = (
-/obj/machinery/light_switch{
- pixel_x = 27
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bVc" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/hallway/primary/aft)
-"bVd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 9
- },
-/area/hallway/primary/aft)
-"bVe" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bVf" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 1
- },
-/area/hallway/primary/aft)
-"bVg" = (
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- name = "Station Intercom (General)";
- pixel_y = 20
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 5
- },
-/area/hallway/primary/aft)
-"bVh" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/corner{
- dir = 4
- },
-/area/hallway/primary/aft)
-"bVi" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
-/turf/closed/wall,
-/area/toxins/xenobiology)
-"bVj" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bVk" = (
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bVl" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/misc_lab)
-"bVm" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bVn" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 4;
- initialize_directions = 11
- },
-/obj/machinery/meter,
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/misc_lab)
-"bVo" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/break_room)
-"bVp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bVq" = (
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bVr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bVs" = (
-/obj/machinery/camera{
- c_tag = "Testing Firing Range";
- dir = 8;
- network = list("SS13","RD");
- pixel_y = -22
- },
-/turf/open/floor/plating,
-/area/toxins/misc_lab)
-"bVt" = (
-/obj/structure/target_stake,
-/turf/open/floor/plating,
-/area/toxins/misc_lab)
-"bVu" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/turf/open/space,
-/area/space/nearstation)
-"bVv" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/turf/open/space,
-/area/space/nearstation)
-"bVw" = (
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/space/nearstation)
-"bVx" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 2
- },
-/turf/open/floor/plating/airless,
-/area/maintenance/aft)
-"bVy" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bVz" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"bVA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- icon_state = "intact";
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bVB" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/closet/emcloset,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bVC" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bVD" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/structure/sign/deathsposal{
- pixel_y = 32
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bVE" = (
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bVF" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bVG" = (
-/obj/structure/sign/nosmoking_2{
- pixel_x = -28
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bVH" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bVI" = (
-/turf/closed/wall/r_wall,
-/area/tcommsat/server)
-"bVJ" = (
-/turf/closed/wall/r_wall,
-/area/tcommsat/computer)
-"bVK" = (
-/obj/machinery/vending/snack/random,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bVL" = (
-/obj/structure/rack{
- dir = 1
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bVM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bVN" = (
-/obj/machinery/camera{
- c_tag = "Atmospherics Access";
- dir = 4;
- network = list("SS13")
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/caution{
- dir = 8
- },
-/area/atmos)
-"bVO" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 9
- },
-/turf/closed/wall/r_wall,
-/area/atmos)
-"bVP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bVQ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bVR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/caution{
- dir = 4
- },
-/area/atmos)
-"bVS" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/obj/structure/sign/securearea,
-/turf/closed/wall,
-/area/atmos)
-"bVT" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- name = "External to Filter";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bVU" = (
-/obj/structure/reagent_dispensers/watertank/high,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bVV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bVW" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/clothing/suit/hazardvest,
-/obj/item/clothing/suit/hazardvest,
-/obj/item/clothing/suit/hazardvest,
-/obj/item/clothing/suit/hazardvest,
-/obj/item/clothing/gloves/color/black,
-/obj/item/clothing/gloves/color/black,
-/obj/item/clothing/gloves/color/black,
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bVX" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bVY" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/obj/machinery/meter,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bVZ" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bWa" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 4;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bWb" = (
-/obj/machinery/atmospherics/components/trinary/filter{
- dir = 1;
- filter_type = "n2o";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bWc" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/escape{
- dir = 6
- },
-/area/atmos)
-"bWd" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 8;
- frequency = 1441;
- id = "n2o_in";
- pixel_y = 1
- },
-/turf/open/floor/engine/n2o,
-/area/atmos)
-"bWe" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bWf" = (
-/obj/structure/table/glass,
-/obj/item/clothing/gloves/color/latex,
-/obj/machinery/requests_console{
- department = "Virology";
- name = "Virology Requests Console";
- pixel_x = -32
- },
-/obj/item/device/healthanalyzer,
-/obj/item/clothing/glasses/hud/health,
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 8
- },
-/area/medical/virology)
-"bWg" = (
-/obj/structure/table,
-/obj/item/weapon/hand_labeler,
-/obj/item/device/radio/headset/headset_med,
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 4
- },
-/area/medical/virology)
-"bWh" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bWi" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/medical/virology)
-"bWj" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/medical/virology)
-"bWk" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet,
-/obj/effect/landmark/revenantspawn,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bWl" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio2";
- name = "containment blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"bWm" = (
-/obj/structure/window/reinforced,
-/obj/structure/table/reinforced,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/button/door{
- id = "xenobio7";
- name = "Containment Blast Doors";
- pixel_x = 0;
- pixel_y = 4;
- req_access_txt = "55"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"bWn" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio7";
- name = "containment blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"bWo" = (
-/obj/item/device/radio/intercom{
- pixel_x = -25
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/misc_lab)
-"bWp" = (
-/obj/structure/chair/office/light,
-/obj/effect/landmark/start/scientist,
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/misc_lab)
-"bWq" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 2
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/misc_lab)
-"bWr" = (
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bWs" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bWt" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bWu" = (
-/obj/machinery/door/airlock/engineering{
- name = "Telecommunications";
- req_access_txt = "61"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bWv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bWw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bWx" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bWy" = (
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/aft)
-"bWz" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bWA" = (
-/obj/machinery/atmospherics/pipe/manifold4w/general,
-/obj/machinery/meter,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bWB" = (
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bWC" = (
-/obj/machinery/telecomms/bus/preset_four,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bWD" = (
-/obj/machinery/telecomms/server/presets/engineering,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bWE" = (
-/obj/machinery/telecomms/processor/preset_three,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bWF" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 1;
- name = "Telecoms Server APC";
- pixel_x = 0;
- pixel_y = 25
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bWG" = (
-/obj/machinery/telecomms/server/presets/security,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bWH" = (
-/obj/structure/table,
-/turf/open/floor/plasteel/yellow/side{
- dir = 9
- },
-/area/tcommsat/computer)
-"bWI" = (
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"bWJ" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bWK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/hallway/primary/aft)
-"bWL" = (
-/obj/machinery/airalarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/caution/corner{
- dir = 8
- },
-/area/hallway/primary/aft)
-"bWM" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/open/floor/plasteel/escape{
- dir = 8
- },
-/area/atmos)
-"bWN" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/obj/machinery/door/poddoor/preopen{
- id = "atmos";
- name = "atmos blast door"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
- },
-/area/atmos)
-"bWO" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 1
- },
-/obj/machinery/meter,
-/turf/closed/wall/r_wall,
-/area/atmos)
-"bWP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 9
- },
-/obj/machinery/door/poddoor/preopen{
- id = "atmos";
- name = "atmos blast door"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
- },
-/area/atmos)
-"bWQ" = (
-/turf/closed/wall/r_wall,
-/area/security/checkpoint/engineering)
-"bWR" = (
-/obj/item/device/radio/intercom{
- freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = -30
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bWS" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
- },
-/obj/machinery/camera{
- c_tag = "Atmospherics West";
- dir = 8;
- network = list("SS13")
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bWT" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 0;
- name = "Air to Port";
- on = 0
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bWU" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bWV" = (
-/obj/structure/door_assembly/door_assembly_mai,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bWW" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bWX" = (
-/obj/structure/table/glass,
-/obj/item/device/radio/intercom{
- pixel_x = -25
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/item/weapon/storage/box/beakers{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/weapon/storage/box/syringes,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 8
- },
-/area/medical/virology)
-"bWY" = (
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- pixel_x = -2;
- pixel_y = 5
- },
-/obj/item/weapon/pen/red,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 4
- },
-/area/medical/virology)
-"bWZ" = (
-/obj/structure/chair/office/light{
- dir = 4
- },
-/obj/effect/landmark/start/virologist,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bXa" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bXb" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/medical/virology)
-"bXc" = (
-/obj/structure/table,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bXd" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bXe" = (
-/obj/effect/landmark/revenantspawn,
-/mob/living/simple_animal/slime,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"bXf" = (
-/obj/machinery/door/window/northleft{
- base_state = "right";
- dir = 8;
- icon_state = "right";
- name = "Containment Pen";
- req_access_txt = "55"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio2";
- name = "containment blast door"
- },
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"bXg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/door/window/northleft{
- dir = 4;
- name = "Containment Pen";
- req_access_txt = "55"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio7";
- name = "containment blast door"
- },
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"bXh" = (
-/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/misc_lab)
-"bXi" = (
-/obj/structure/table,
-/obj/item/weapon/folder/white,
-/obj/item/weapon/folder/white,
-/obj/item/weapon/pen,
-/obj/item/device/taperecorder{
- pixel_y = 0
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/misc_lab)
-"bXj" = (
-/obj/structure/table,
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/machinery/button/ignition{
- id = "testigniter";
- pixel_x = -6;
- pixel_y = 2
- },
-/obj/machinery/button/door{
- id = "testlab";
- name = "Test Chamber Blast Doors";
- pixel_x = 4;
- pixel_y = 2;
- req_access_txt = "55"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/misc_lab)
-"bXk" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=AIE";
- location = "AftH"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bXl" = (
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- pixel_x = 0;
- pixel_y = 6
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/misc_lab)
-"bXm" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bXn" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/hallway/primary/aft)
-"bXo" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bXp" = (
-/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
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bXq" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_engineering{
- name = "Engineering";
- req_access_txt = "32"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bXr" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bXs" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/recharger{
- pixel_y = 4
- },
-/obj/item/weapon/paper/range,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/toxins/misc_lab)
-"bXt" = (
-/obj/structure/table/reinforced,
-/obj/machinery/magnetic_controller{
- autolink = 1
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/item/device/radio/intercom{
- freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = 29
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/toxins/misc_lab)
-"bXu" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/window/reinforced/tinted/fulltile,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bXv" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- name = "External Access";
- req_access = null;
- req_access_txt = "13"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bXw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/aft)
-"bXx" = (
-/obj/effect/landmark/blobstart,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/aft)
-"bXy" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/aft)
-"bXz" = (
-/obj/machinery/telecomms/processor/preset_four,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bXA" = (
-/obj/machinery/telecomms/server/presets/common,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bXB" = (
-/obj/machinery/telecomms/bus/preset_three,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bXC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bXD" = (
-/obj/machinery/telecomms/server/presets/command,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bXE" = (
-/obj/machinery/computer/message_monitor,
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/tcommsat/computer)
-"bXF" = (
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"bXG" = (
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bXH" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bXI" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bXJ" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/scrubber,
-/obj/machinery/light/small,
-/turf/open/floor/plasteel/escape{
- dir = 8
- },
-/area/atmos)
-"bXK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 9
- },
-/turf/closed/wall/r_wall,
-/area/atmos)
-"bXL" = (
-/obj/structure/sign/securearea,
-/turf/closed/wall/r_wall,
-/area/atmos)
-"bXM" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/atmos{
- name = "Atmospherics";
- req_access_txt = "24"
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bXN" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bXO" = (
-/obj/structure/filingcabinet,
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/checkpoint/engineering)
-"bXP" = (
-/obj/machinery/requests_console{
- department = "Security";
- departmentType = 5;
- pixel_y = 30
- },
-/obj/structure/closet,
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/checkpoint/engineering)
-"bXQ" = (
-/obj/structure/fireaxecabinet{
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bXR" = (
-/obj/structure/closet/secure_closet/atmospherics,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bXS" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/canister,
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/turf/open/floor/plasteel{
- dir = 2
- },
-/area/atmos)
-"bXT" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/turf/open/floor/plasteel{
- dir = 2
- },
-/area/atmos)
-"bXU" = (
-/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bXV" = (
-/obj/machinery/camera{
- c_tag = "Atmospherics East";
- dir = 8;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Plasma Outlet Pump";
- on = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bXW" = (
-/turf/open/floor/engine/plasma,
-/area/atmos)
-"bXX" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 0;
- frequency = 1441;
- id_tag = "tox_out";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
- },
-/turf/open/floor/engine/plasma,
-/area/atmos)
-"bXY" = (
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/engine/plasma,
-/area/atmos)
-"bXZ" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bYa" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bYb" = (
-/obj/machinery/vending/cigarette{
- pixel_x = 0;
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bYc" = (
-/obj/machinery/disposal/bin,
-/obj/structure/sign/deathsposal{
- pixel_x = 0;
- pixel_y = -32
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 4
- },
-/area/medical/virology)
-"bYd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bYe" = (
-/obj/structure/closet/secure_closet/personal/patient,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bYf" = (
-/obj/structure/table/reinforced,
-/obj/machinery/button/door{
- id = "xenobio2";
- name = "Containment Blast Doors";
- pixel_x = 0;
- pixel_y = 4;
- req_access_txt = "55"
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"bYg" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio2";
- name = "containment blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"bYh" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable,
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio7";
- name = "containment blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"bYi" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/preopen{
- id = "testlab";
- name = "test chamber blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bYj" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/preopen{
- id = "testlab";
- name = "test chamber blast door"
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bYk" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/turf/open/floor/plasteel{
- dir = 2
- },
-/area/toxins/misc_lab)
-"bYl" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bYm" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/turf/open/floor/plasteel{
- dir = 2
- },
-/area/toxins/misc_lab)
-"bYn" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/hallway/primary/aft)
-"bYo" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bYp" = (
-/obj/structure/sign/securearea{
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 10
- },
-/area/hallway/primary/aft)
-"bYq" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/yellow/side,
-/area/hallway/primary/aft)
-"bYr" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bYs" = (
-/obj/structure/closet/crate,
-/obj/item/clothing/under/color/lightpurple,
-/obj/item/stack/spacecash/c200,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bYt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bYu" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bYv" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Mix to Space";
- on = 0
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/aft)
-"bYw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/aft)
-"bYx" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 4;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/aft)
-"bYy" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Incinerator Access";
- req_access_txt = "12"
- },
-/obj/structure/barricade/wooden{
- name = "wooden barricade (CLOSED)"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bYz" = (
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bYA" = (
-/obj/machinery/telecomms/broadcaster/preset_right,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bYB" = (
-/obj/machinery/blackbox_recorder,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bYC" = (
-/obj/machinery/telecomms/receiver/preset_right,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bYD" = (
-/obj/machinery/computer/telecomms/server{
- network = "tcommsat"
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 10
- },
-/area/tcommsat/computer)
-"bYE" = (
-/turf/open/floor/plasteel/yellow/side,
-/area/hallway/primary/aft)
-"bYF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bYG" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 6
- },
-/area/hallway/primary/aft)
-"bYH" = (
-/turf/closed/wall,
-/area/engine/break_room)
-"bYI" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/open/floor/plasteel/yellow/corner{
- dir = 2
- },
-/area/hallway/primary/aft)
-"bYJ" = (
-/turf/open/floor/plasteel/caution{
- dir = 9
- },
-/area/engine/break_room)
-"bYK" = (
-/turf/open/floor/plasteel/caution{
- dir = 5
- },
-/area/engine/break_room)
-"bYL" = (
-/turf/open/floor/plasteel/caution{
- dir = 1
- },
-/area/engine/break_room)
-"bYM" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/hallway/primary/aft)
-"bYN" = (
-/turf/closed/wall,
-/area/security/checkpoint/engineering)
-"bYO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bYP" = (
-/obj/effect/landmark/event_spawn,
-/turf/closed/wall,
-/area/crew_quarters/bar)
-"bYQ" = (
-/obj/machinery/suit_storage_unit/atmos,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bYR" = (
-/obj/structure/sign/nosmoking_2,
-/turf/closed/wall,
-/area/atmos)
-"bYS" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 4;
- initialize_directions = 11
- },
-/obj/machinery/meter,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bYT" = (
-/obj/machinery/computer/atmos_control/tank{
- frequency = 1441;
- input_tag = "tox_in";
- name = "Plasma Supply Control";
- output_tag = "tox_out";
- sensors = list("tox_sensor" = "Tank")
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bYU" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/turf/open/floor/engine/plasma,
-/area/atmos)
-"bYV" = (
-/obj/machinery/air_sensor{
- frequency = 1441;
- id_tag = "tox_sensor"
- },
-/turf/open/floor/engine/plasma,
-/area/atmos)
-"bYW" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/engine/plasma,
-/area/atmos)
-"bYX" = (
-/obj/structure/closet/l3closet/virology,
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 2
- },
-/area/medical/virology)
-"bYY" = (
-/obj/structure/closet/secure_closet/medical1,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 2
- },
-/area/medical/virology)
-"bYZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/medical/virology)
-"bZa" = (
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/machinery/camera{
- c_tag = "Xenobiology South";
- dir = 4;
- network = list("SS13","RD")
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bZb" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bZc" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bZd" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bZe" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/break_room)
-"bZf" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bZg" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bZh" = (
-/obj/structure/rack,
-/obj/item/weapon/gun/energy/laser/practice,
-/obj/item/clothing/ears/earmuffs,
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bZi" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bZj" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bZk" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/canister,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bZl" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Mix to Port";
- on = 0
- },
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bZm" = (
-/obj/structure/disposaloutlet{
- dir = 8
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"bZn" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bZo" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bZp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bZq" = (
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"bZr" = (
-/obj/machinery/status_display,
-/turf/closed/wall,
-/area/tcommsat/computer)
-"bZs" = (
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"bZt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bZu" = (
-/obj/machinery/camera{
- c_tag = "Engineering Foyer";
- dir = 1
- },
-/obj/structure/noticeboard{
- dir = 1;
- pixel_y = -27
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bZv" = (
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"bZw" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/closet/firecloset,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bZx" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/caution/corner{
- dir = 8
- },
-/area/hallway/primary/aft)
-"bZy" = (
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bZz" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bZA" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bZB" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bZC" = (
-/obj/machinery/door/poddoor/preopen{
- id = "Engineering";
- name = "engineering security door"
- },
-/obj/machinery/door/airlock/glass_command{
- name = "Chief Engineer";
- req_access_txt = "56"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
- },
-/area/engine/chiefs_office)
-"bZD" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/poddoor/preopen{
- id = "Engineering";
- name = "engineering security door"
- },
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/engine/chiefs_office)
-"bZE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/yellow/side{
- dir = 10
- },
-/area/engine/break_room)
-"bZF" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Atmospherics APC";
- pixel_x = -24
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bZG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bZH" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 4;
- initialize_directions = 11
- },
-/obj/item/weapon/wrench,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bZI" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 8
- },
-/obj/machinery/meter,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bZJ" = (
-/obj/machinery/atmospherics/components/trinary/filter{
- dir = 1;
- filter_type = "plasma";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bZK" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bZL" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 8;
- frequency = 1441;
- id = "tox_in";
- pixel_y = 1
- },
-/turf/open/floor/engine/plasma,
-/area/atmos)
-"bZM" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/asmaint)
-"bZN" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bZO" = (
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bZP" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/closed/wall/r_wall,
-/area/medical/virology)
-"bZQ" = (
-/obj/machinery/atmospherics/components/binary/valve/open{
- icon_state = "mvalve_map";
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bZR" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- pixel_y = 23
- },
-/obj/item/weapon/wrench,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bZS" = (
-/obj/machinery/atmospherics/components/unary/tank/air{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bZT" = (
-/obj/structure/rack{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bZU" = (
-/obj/structure/closet/emcloset,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bZV" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio1";
- name = "containment blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"bZW" = (
-/obj/structure/window/reinforced,
-/obj/structure/table/reinforced,
-/obj/machinery/button/door{
- id = "xenobio6";
- name = "Containment Blast Doors";
- pixel_x = 0;
- pixel_y = 4;
- req_access_txt = "55"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"bZX" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio6";
- name = "containment blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"bZY" = (
-/obj/item/device/radio/intercom{
- pixel_x = -25
- },
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bZZ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/toxins/misc_lab)
-"caa" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"cab" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"cac" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cad" = (
-/obj/structure/table,
-/obj/item/device/flashlight/lamp,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cae" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/asmaint2)
-"caf" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 5
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/maintenance/aft)
-"cag" = (
-/obj/machinery/power/terminal{
- dir = 4
- },
-/obj/machinery/ntnet_relay,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"cah" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"cai" = (
-/obj/machinery/power/smes{
- charge = 5e+006
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"caj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"cak" = (
-/obj/machinery/telecomms/hub/preset,
-/turf/open/floor/plasteel/vault{
- dir = 8;
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"cal" = (
-/obj/machinery/door/airlock/glass_engineering{
- cyclelinkeddir = 4;
- name = "Server Room";
- req_access_txt = "61"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/tcommsat/computer)
-"cam" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"can" = (
-/obj/machinery/door/airlock/glass_engineering{
- cyclelinkeddir = 8;
- name = "Server Room";
- req_access_txt = "61"
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/tcommsat/computer)
-"cao" = (
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/tcommsat/computer)
-"cap" = (
-/obj/machinery/light,
-/obj/structure/closet/firecloset,
-/turf/open/floor/plasteel/yellow/side{
- dir = 6
- },
-/area/engine/break_room)
-"caq" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cas" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cat" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cau" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cav" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/caution/corner{
- dir = 8
- },
-/area/hallway/primary/aft)
-"caw" = (
-/obj/structure/table,
-/obj/item/clothing/glasses/meson,
-/obj/machinery/airalarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cax" = (
-/obj/structure/closet/wardrobe/black,
-/obj/effect/decal/cleanable/cobweb,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cay" = (
-/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/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"caz" = (
-/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/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"caA" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/checkpoint/engineering)
-"caB" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"caC" = (
-/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/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"caD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/security/checkpoint/engineering)
-"caE" = (
-/obj/machinery/requests_console{
- department = "Atmospherics";
- departmentType = 4;
- name = "Atmos RC";
- pixel_x = 30;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"caF" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Atmospherics Central";
- dir = 4;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 0;
- name = "Port to Filter";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"caG" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/heater{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"caH" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 8
- },
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel,
-/area/atmos)
-"caI" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"caJ" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- icon_state = "intact";
- dir = 5
- },
-/turf/open/space,
-/area/space/nearstation)
-"caK" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"caL" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"caM" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"caN" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"caO" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"caP" = (
-/obj/machinery/atmospherics/components/binary/valve{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"caQ" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"caR" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"caS" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"caT" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"caU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"caV" = (
-/obj/machinery/door/window/northleft{
- base_state = "right";
- dir = 8;
- icon_state = "right";
- name = "Containment Pen";
- req_access_txt = "55"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio1";
- name = "containment blast door"
- },
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"caW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/door/window/northleft{
- dir = 4;
- name = "Containment Pen";
- req_access_txt = "55"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio6";
- name = "containment blast door"
- },
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"caX" = (
-/obj/machinery/sparker{
- id = "testigniter";
- pixel_x = -25
- },
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"caY" = (
-/obj/item/device/radio/beacon,
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"caZ" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/preopen{
- id = "testlab";
- name = "test chamber blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"cba" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"cbb" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"cbc" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"cbd" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Testing Lab APC";
- pixel_x = 26;
- pixel_y = 0
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/misc_lab)
-"cbe" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"cbf" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cbg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/asmaint2)
-"cbh" = (
-/obj/structure/table,
-/obj/item/weapon/folder/white,
-/obj/item/weapon/folder/white,
-/obj/item/weapon/pen,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cbi" = (
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- pixel_x = -2;
- pixel_y = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cbj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/maintenance/aft)
-"cbk" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Mix to Space";
- on = 1
- },
-/turf/open/floor/plating/airless,
-/area/maintenance/aft)
-"cbl" = (
-/obj/machinery/camera{
- c_tag = "Telecoms Server Room";
- dir = 4;
- network = list("SS13")
- },
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"cbm" = (
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"cbn" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'SERVER ROOM'.";
- name = "SERVER ROOM";
- pixel_y = 0
- },
-/turf/closed/wall,
-/area/tcommsat/computer)
-"cbo" = (
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"cbp" = (
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 4;
- name = "CE Office APC";
- pixel_x = 24;
- pixel_y = 0
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/engine/chiefs_office)
-"cbq" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/engine/chiefs_office)
-"cbr" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cbs" = (
-/obj/structure/sign/securearea,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/engine/engineering)
-"cbu" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Engineering Foyer APC";
- pixel_x = -24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cbv" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Research Delivery access";
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cbw" = (
-/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/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cbx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cby" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cbz" = (
-/obj/structure/closet/wardrobe/atmospherics_yellow,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cbA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cbB" = (
-/obj/machinery/space_heater,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cbC" = (
-/obj/machinery/space_heater,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cbD" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Port to Filter";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cbE" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cbF" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/obj/item/weapon/cigbutt,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cbG" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "CO2 Outlet Pump";
- on = 0
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 5
- },
-/area/atmos)
-"cbH" = (
-/turf/open/floor/engine/co2,
-/area/atmos)
-"cbI" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 0;
- frequency = 1441;
- id_tag = "co2_out";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
- },
-/turf/open/floor/engine/co2,
-/area/atmos)
-"cbJ" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- icon_state = "intact";
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cbK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/maintenance/asmaint)
-"cbL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cbM" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cbN" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cbO" = (
-/obj/machinery/door/airlock/atmos{
- name = "Atmospherics Maintenance";
- req_access_txt = "12;24"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cbP" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cbQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cbR" = (
-/obj/structure/table/reinforced,
-/obj/machinery/button/door{
- id = "xenobio1";
- name = "Containment Blast Doors";
- pixel_x = 0;
- pixel_y = 4;
- req_access_txt = "55"
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/light,
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"cbS" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio1";
- name = "containment blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"cbT" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"cbU" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable,
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio6";
- name = "containment blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"cbV" = (
-/obj/machinery/camera{
- c_tag = "Testing Chamber";
- dir = 1;
- network = list("Test","RD");
- pixel_x = 0
- },
-/obj/machinery/light,
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"cbW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"cbX" = (
-/obj/machinery/camera{
- c_tag = "Testing Lab South";
- dir = 8;
- network = list("SS13","RD");
- pixel_y = -22
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"cbY" = (
-/obj/structure/closet/crate,
-/obj/item/target/syndicate,
-/obj/item/target/alien,
-/obj/item/target/clown,
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"cbZ" = (
-/obj/structure/closet/crate,
-/obj/item/target,
-/obj/item/target,
-/obj/item/target,
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"cca" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/power/solar{
- id = "portsolar";
- name = "Port Solar Array"
- },
-/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/port)
-"ccb" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/solar{
- id = "portsolar";
- name = "Port Solar Array"
- },
-/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/port)
-"ccc" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/port)
-"ccd" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cce" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Construction Area Maintenance";
- req_access_txt = "32"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/construction)
-"ccf" = (
-/obj/machinery/telecomms/broadcaster/preset_left,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"ccg" = (
-/obj/machinery/message_server,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"cch" = (
-/obj/machinery/telecomms/receiver/preset_left,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"cci" = (
-/obj/structure/table,
-/obj/item/device/multitool,
-/turf/open/floor/plasteel/yellow/side{
- dir = 9
- },
-/area/tcommsat/computer)
-"ccj" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/clipboard,
-/obj/item/weapon/lighter,
-/obj/item/clothing/glasses/meson{
- pixel_y = 4
- },
-/obj/item/weapon/stamp/ce,
-/obj/item/weapon/stock_parts/cell/high/plus,
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/engine/chiefs_office)
-"cck" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/engine/chiefs_office)
-"ccl" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/engine/chiefs_office)
-"ccm" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"ccn" = (
-/obj/machinery/camera{
- c_tag = "Engineering Access"
- },
-/obj/structure/closet/radiation,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cco" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"ccp" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"ccq" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"ccr" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"ccs" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cct" = (
-/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/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"ccu" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"ccv" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"ccw" = (
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"ccx" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 1
- },
-/obj/machinery/meter,
-/turf/open/floor/plasteel,
-/area/atmos)
-"ccy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"ccz" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- name = "N2 to Pure";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"ccA" = (
-/obj/machinery/computer/atmos_control/tank{
- frequency = 1441;
- input_tag = "co2_in";
- name = "Carbon Dioxide Supply Control";
- output_tag = "co2_out";
- sensors = list("co2_sensor" = "Tank")
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/atmos)
-"ccB" = (
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/turf/open/floor/engine/co2,
-/area/atmos)
-"ccC" = (
-/obj/machinery/air_sensor{
- frequency = 1441;
- id_tag = "co2_sensor"
- },
-/turf/open/floor/engine/co2,
-/area/atmos)
-"ccD" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/engine/co2,
-/area/atmos)
-"ccE" = (
-/obj/structure/sign/nosmoking_2{
- pixel_x = 0;
- pixel_y = 28
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"ccF" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"ccG" = (
-/obj/structure/chair/stool,
-/obj/effect/decal/cleanable/cobweb{
- icon_state = "cobweb2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"ccH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"ccI" = (
-/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/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"ccJ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"ccK" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"ccL" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"ccM" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"ccN" = (
-/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/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"ccO" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"ccP" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"ccQ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/toxins/xenobiology)
-"ccR" = (
-/obj/machinery/portable_atmospherics/pump,
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/turf/open/floor/plasteel{
- dir = 2
- },
-/area/toxins/misc_lab)
-"ccS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/misc_lab)
-"ccT" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/misc_lab)
-"ccU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/maintenance/asmaint2)
-"ccV" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"ccW" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/cobweb,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"ccX" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/port)
-"ccY" = (
-/obj/structure/table,
-/obj/item/weapon/kitchen/rollingpin,
-/obj/item/weapon/reagent_containers/food/condiment/enzyme,
-/obj/item/weapon/reagent_containers/food/condiment/sugar,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"ccZ" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cda" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cdb" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cdc" = (
-/obj/machinery/telecomms/bus/preset_two,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"cdd" = (
-/obj/machinery/telecomms/server/presets/supply,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"cde" = (
-/obj/machinery/telecomms/processor/preset_one,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"cdf" = (
-/obj/machinery/telecomms/server/presets/medical,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"cdg" = (
-/obj/machinery/computer/telecomms/monitor{
- network = "tcommsat"
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/tcommsat/computer)
-"cdh" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 8;
- icon_state = "pipe-j2s";
- sortType = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cdi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cdj" = (
-/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/supply/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cdk" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/modular_computer/console/preset/engineering,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cdl" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/carpet,
-/area/chapel/main)
-"cdm" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/engine/chiefs_office)
-"cdn" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/obj/structure/closet/firecloset,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cdo" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/structure/closet/radiation,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cdp" = (
-/obj/effect/landmark/lightsout,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cdq" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/tinted/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cdr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cds" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Science Maintenance APC";
- pixel_x = -25
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/camera{
- c_tag = "Aft Starboard Solar Access";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cdt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cdu" = (
-/obj/structure/closet/emcloset,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cdv" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cdw" = (
-/obj/machinery/airalarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cdx" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cdy" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/machinery/meter,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cdz" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "O2 to Pure";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cdA" = (
-/obj/machinery/atmospherics/components/trinary/mixer{
- dir = 4;
- node1_concentration = 0.8;
- node2_concentration = 0.2;
- on = 1;
- pixel_x = 0;
- pixel_y = 0;
- target_pressure = 4500
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cdB" = (
-/obj/machinery/atmospherics/components/trinary/filter{
- dir = 1;
- filter_type = "co2";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cdC" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 6
- },
-/area/atmos)
-"cdD" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 8;
- frequency = 1441;
- id = "co2_in";
- pixel_y = 1
- },
-/turf/open/floor/engine/co2,
-/area/atmos)
-"cdE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cdF" = (
-/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/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cdG" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cdH" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cdI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cdJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cdK" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cdL" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cdM" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/mob/living/simple_animal/mouse,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cdN" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cdO" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cdQ" = (
-/obj/structure/closet/emcloset,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cdR" = (
-/obj/machinery/atmospherics/components/unary/tank/air,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cdS" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/turf/open/floor/plasteel{
- dir = 2
- },
-/area/toxins/misc_lab)
-"cdT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cdU" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen,
-/obj/item/weapon/storage/fancy/cigarettes,
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/engine/chiefs_office)
-"cdV" = (
-/obj/structure/table,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cdW" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Engineering Maintenance APC";
- pixel_x = -25;
- pixel_y = 1
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cdX" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"cdY" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cdZ" = (
-/obj/machinery/telecomms/processor/preset_two,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"cea" = (
-/obj/machinery/telecomms/server/presets/service,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"ceb" = (
-/obj/machinery/telecomms/bus/preset_one,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"cec" = (
-/obj/structure/sign/nosmoking_2{
- pixel_y = -32
- },
-/obj/machinery/light,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"ced" = (
-/obj/machinery/telecomms/server/presets/science,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"cee" = (
-/obj/structure/table,
-/obj/item/device/radio/off,
-/turf/open/floor/plasteel/yellow/side{
- dir = 10
- },
-/area/tcommsat/computer)
-"cef" = (
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/grille,
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"ceg" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/machinery/light,
-/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"ceh" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/bridge)
-"cei" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -1
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"cej" = (
-/obj/machinery/door/poddoor/preopen{
- id = "Engineering";
- name = "engineering security door"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
- },
-/area/engine/engineering)
-"cek" = (
-/obj/machinery/door/poddoor/preopen{
- id = "Engineering";
- name = "engineering security door"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
- },
-/area/engine/engineering)
-"cel" = (
-/obj/machinery/door/poddoor/preopen{
- id = "Engineering";
- name = "engineering security door"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
- },
-/area/engine/engineering)
-"cem" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cen" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"ceo" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/engine/chiefs_office)
-"cep" = (
-/obj/structure/sign/securearea,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"ceq" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/chiefs_office)
-"cer" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"ces" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/yellow/side{
- dir = 9
- },
-/area/engine/engineering)
-"cet" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/yellow/side{
- dir = 5
- },
-/area/engine/engineering)
-"ceu" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cev" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cew" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cex" = (
-/obj/machinery/camera{
- c_tag = "Atmospherics South West";
- dir = 4;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cey" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"cez" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/turf/open/floor/plasteel,
-/area/atmos)
-"ceA" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/atmos)
-"ceB" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"ceC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"ceD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"ceE" = (
-/obj/structure/sign/fire{
- pixel_x = 0;
- pixel_y = -32
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"ceF" = (
-/obj/structure/closet/emcloset,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"ceG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"ceH" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/maintenance/asmaint)
-"ceI" = (
-/obj/structure/sign/biohazard,
-/turf/closed/wall,
-/area/maintenance/asmaint)
-"ceJ" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/maintenance/asmaint)
-"ceK" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/closet/l3closet,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"ceL" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"ceM" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"ceN" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- icon_state = "intact";
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"ceO" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"ceP" = (
-/obj/machinery/portable_atmospherics/canister,
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/turf/open/floor/plasteel{
- dir = 2
- },
-/area/toxins/misc_lab)
-"ceQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"ceR" = (
-/obj/effect/landmark/blobstart,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"ceS" = (
-/obj/item/stack/sheet/cardboard,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"ceT" = (
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"ceU" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = -32
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"ceV" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"ceW" = (
-/obj/machinery/space_heater,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"ceX" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"ceY" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"ceZ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_engineering{
- name = "Power Storage";
- req_access_txt = "11";
- req_one_access_txt = "0"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cfa" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/storage/belt/utility,
-/obj/item/weapon/wrench,
-/obj/item/weapon/weldingtool,
-/obj/item/clothing/head/welding{
- pixel_x = -3;
- pixel_y = 5
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/engineering)
-"cfb" = (
-/turf/closed/wall/r_wall,
-/area/engine/chiefs_office)
-"cfc" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/door/poddoor/preopen{
- id = "Engineering";
- name = "engineering security door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/chiefs_office)
-"cfd" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/obj/structure/closet/radiation,
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/engine/engineering)
-"cfe" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/sign/securearea{
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cfg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 4
- },
-/area/engine/engineering)
-"cfh" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/break_room)
-"cfi" = (
-/obj/machinery/atmospherics/components/trinary/filter{
- dir = 2;
- filter_type = "n2";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cfj" = (
-/turf/closed/wall,
-/area/maintenance/incinerator)
-"cfk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/airlock/atmos{
- name = "Turbine Access";
- req_access_txt = "32"
- },
-/turf/open/floor/plating,
-/area/maintenance/incinerator)
-"cfl" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/maintenance/incinerator)
-"cfm" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/obj/item/toy/minimeteor,
-/obj/item/weapon/poster/random_contraband,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cfn" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/rack{
- dir = 1
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/weapon/reagent_containers/food/snacks/donkpocket,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cfo" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/roller,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cfp" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/item/weapon/c_tube,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cfq" = (
-/obj/structure/mopbucket,
-/obj/item/weapon/caution,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cfr" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 2;
- external_pressure_bound = 140;
- on = 1;
- pressure_checks = 0
- },
-/obj/machinery/camera{
- c_tag = "Xenobiology Kill Room";
- dir = 4;
- network = list("SS13","RD")
- },
-/turf/open/floor/circuit{
- name = "Killroom Floor";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/xenobiology)
-"cfs" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Air Supply Maintenance";
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cft" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Testing Lab Maintenance";
- req_access_txt = "47"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/toxins/misc_lab)
-"cfu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/toxins/misc_lab)
-"cfv" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Firefighting equipment";
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cfw" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/portsolar)
-"cfx" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating/airless,
-/area/maintenance/portsolar)
-"cfy" = (
-/obj/structure/rack,
-/obj/item/clothing/shoes/winterboots,
-/obj/item/clothing/suit/hooded/wintercoat,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"cfz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel/yellow/corner{
- dir = 1
- },
-/area/engine/engineering)
-"cfB" = (
-/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/engine/engineering)
-"cfD" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/maintenance{
- name = "Engineering Maintenance";
- req_access_txt = "10"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cfE" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/engine/chiefs_office)
-"cfF" = (
-/obj/machinery/suit_storage_unit/ce,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/engine/chiefs_office)
-"cfG" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cfH" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/keycard_auth{
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/engine/chiefs_office)
-"cfI" = (
-/obj/structure/closet/secure_closet/engineering_personal,
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/engine/engineering)
-"cfJ" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cfK" = (
-/obj/structure/sign/securearea,
-/turf/closed/wall,
-/area/engine/engineering)
-"cfL" = (
-/obj/machinery/firealarm{
- pixel_y = 24
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cfM" = (
-/obj/machinery/door/airlock/engineering{
- cyclelinkeddir = 2;
- name = "Engine Room";
- req_access_txt = "10"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cfN" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cfO" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/obj/machinery/portable_atmospherics/pump,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cfP" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cfQ" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cfR" = (
-/obj/machinery/atmospherics/components/trinary/filter{
- dir = 4;
- filter_type = "o2";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cfS" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4;
- initialize_directions = 12
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cfT" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cfU" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/incinerator)
-"cfV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cfW" = (
-/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/yellow/visible,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cfX" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Incinerator APC";
- pixel_x = 0;
- pixel_y = -24
- },
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/turf/open/floor/plating,
-/area/maintenance/incinerator)
-"cfY" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/incinerator)
-"cfZ" = (
-/obj/machinery/light_switch{
- pixel_x = 0;
- pixel_y = 26
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"cga" = (
-/obj/machinery/power/smes{
- capacity = 9e+006;
- charge = 10000
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/effect/decal/cleanable/cobweb{
- icon_state = "cobweb2"
- },
-/turf/open/floor/plating,
-/area/maintenance/incinerator)
-"cgb" = (
-/obj/machinery/disposal/bin,
-/obj/structure/sign/deathsposal{
- pixel_x = 0;
- pixel_y = 32
- },
-/obj/structure/disposalpipe/trunk,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/incinerator)
-"cgc" = (
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/asmaint)
-"cgd" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cge" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cgf" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/grille/broken,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cgg" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cgh" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cgi" = (
-/turf/open/floor/circuit{
- name = "Killroom Floor";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/xenobiology)
-"cgj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/barricade/wooden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cgk" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/sign/biohazard,
-/turf/open/floor/plating,
-/area/toxins/xenobiology)
-"cgl" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 2;
- external_pressure_bound = 120;
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
- },
-/turf/open/floor/circuit{
- name = "Killroom Floor";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/xenobiology)
-"cgm" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cgn" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
- target_temperature = 80;
- dir = 2;
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"cgo" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cgp" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cgq" = (
-/obj/machinery/space_heater,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cgr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/asmaint2)
-"cgs" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cgt" = (
-/obj/structure/sign/securearea{
- pixel_y = 32
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cgu" = (
-/obj/structure/rack{
- dir = 1
- },
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cgv" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cgw" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cgx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"cgy" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/chair/stool,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cgz" = (
-/obj/structure/cable,
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/port)
-"cgA" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/portsolar)
-"cgB" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/power/smes,
-/turf/open/floor/plating,
-/area/maintenance/portsolar)
-"cgC" = (
-/obj/machinery/power/terminal{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/portsolar)
-"cgD" = (
-/obj/machinery/camera{
- c_tag = "Aft Port Solar Access";
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cgE" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 0
- },
-/turf/closed/wall/r_wall,
-/area/maintenance/portsolar)
-"cgF" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cgG" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cgH" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cgI" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/highpressure/fulltile,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cgJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/grille,
-/obj/structure/window/reinforced/highpressure/fulltile,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cgK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/highpressure/fulltile,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cgL" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_engineering{
- name = "Supermatter Engine Room";
- req_access_txt = "10"
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cgM" = (
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Chief Engineer's Desk";
- departmentType = 3;
- name = "Chief Engineer RC";
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/machinery/computer/apc_control,
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/engine/chiefs_office)
-"cgO" = (
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/engine/chiefs_office)
-"cgQ" = (
-/obj/machinery/camera{
- c_tag = "Engineering East";
- dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/structure/closet/wardrobe/engineering_yellow,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 4
- },
-/area/engine/engineering)
-"cgR" = (
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cgS" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/chiefs_office)
-"cgT" = (
-/obj/machinery/door/airlock/engineering{
- cyclelinkeddir = 8;
- name = "SMES Room";
- req_access_txt = "32"
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
- },
-/area/engine/engine_smes)
-"cgU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cgV" = (
-/obj/machinery/computer/atmos_control/tank{
- frequency = 1441;
- input_tag = "n2_in";
- name = "Nitrogen Supply Control";
- output_tag = "n2_out";
- sensors = list("n2_sensor" = "Tank")
- },
-/turf/open/floor/plasteel/red/side,
-/area/atmos)
-"cgW" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/obj/machinery/portable_atmospherics/pump,
-/turf/open/floor/plasteel/red/side{
- dir = 10
- },
-/area/atmos)
-"cgX" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cgY" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "N2 Outlet Pump";
- on = 1
- },
-/turf/open/floor/plasteel/red/side{
- dir = 6
- },
-/area/atmos)
-"cgZ" = (
-/obj/machinery/computer/atmos_control/tank{
- frequency = 1441;
- input_tag = "o2_in";
- name = "Oxygen Supply Control";
- output_tag = "o2_out";
- sensors = list("o2_sensor" = "Tank")
- },
-/turf/open/floor/plasteel/blue/side{
- dir = 0
- },
-/area/atmos)
-"cha" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/turf/open/floor/plasteel/blue/side{
- dir = 10
- },
-/area/atmos)
-"chb" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "O2 Outlet Pump";
- on = 1
- },
-/turf/open/floor/plasteel/blue/side{
- dir = 6
- },
-/area/atmos)
-"chc" = (
-/obj/machinery/computer/atmos_control/tank{
- frequency = 1441;
- input_tag = "air_in";
- name = "Mixed Air Supply Control";
- output_tag = "air_out";
- sensors = list("air_sensor" = "Tank")
- },
-/turf/open/floor/plasteel/arrival,
-/area/atmos)
-"chd" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/turf/open/floor/plasteel/arrival{
- dir = 10
- },
-/area/atmos)
-"che" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- name = "Atmospherics External Airlock";
- req_access_txt = "24"
- },
-/turf/open/floor/plating,
-/area/atmos)
-"chf" = (
-/obj/machinery/camera{
- c_tag = "Atmospherics South East";
- dir = 1
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "Air Outlet Pump";
- on = 1
- },
-/turf/open/floor/plasteel/arrival{
- dir = 6
- },
-/area/atmos)
-"chg" = (
-/turf/open/floor/plating,
-/area/atmos)
-"chh" = (
-/obj/machinery/atmospherics/components/unary/tank/toxins{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"chi" = (
-/obj/machinery/atmospherics/pipe/manifold4w/general{
- level = 2
- },
-/obj/machinery/meter,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"chj" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- name = "plasma tank pump"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"chk" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/turf/closed/wall,
-/area/maintenance/incinerator)
-"chl" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 2;
- name = "atmospherics mix pump"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"chm" = (
-/obj/machinery/power/terminal{
- icon_state = "term";
- dir = 1
- },
-/obj/machinery/airalarm{
- desc = "This particular atmos control unit appears to have no access restrictions.";
- dir = 8;
- icon_state = "alarm0";
- locked = 0;
- name = "all-access air alarm";
- pixel_x = 24;
- req_access = "0";
- req_one_access = "0"
- },
-/obj/structure/cable/yellow{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"chn" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"cho" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
-/turf/open/floor/circuit{
- name = "Killroom Floor";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/xenobiology)
-"chp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/closed/wall,
-/area/maintenance/asmaint)
-"chq" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/open/floor/circuit{
- name = "Killroom Floor";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/xenobiology)
-"chr" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- name = "Kill Chamber";
- req_access_txt = "55"
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/toxins/xenobiology)
-"chs" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/turf/open/floor/circuit{
- name = "Killroom Floor";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/xenobiology)
-"cht" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"chu" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"chv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"chw" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"chx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"chy" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"chz" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"chA" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"chB" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"chC" = (
-/obj/structure/rack{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"chD" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"chE" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"chF" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/grille,
-/obj/structure/window/reinforced/highpressure/fulltile,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"chG" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"chH" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"chI" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/port)
-"chJ" = (
-/obj/machinery/power/tracker,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/port)
-"chK" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/port)
-"chL" = (
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/port)
-"chM" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/port)
-"chN" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/portsolar)
-"chO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- name = "Solar Maintenance";
- req_access = null;
- req_access_txt = "10; 13"
- },
-/turf/open/floor/plating,
-/area/maintenance/portsolar)
-"chP" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/portsolar)
-"chQ" = (
-/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"
- },
-/turf/open/floor/plating,
-/area/maintenance/portsolar)
-"chR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/portsolar)
-"chS" = (
-/obj/machinery/door/airlock/engineering{
- name = "Aft Port Solar Access";
- req_access_txt = "10"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/portsolar)
-"chT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"chV" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/item/weapon/tank/internals/emergency_oxygen/engi{
- pixel_x = 5;
- pixel_y = 0
- },
-/obj/item/clothing/gloves/color/black,
-/obj/item/clothing/glasses/meson/engine,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"chX" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"chY" = (
-/obj/machinery/shieldgen,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cia" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/engineering)
-"cib" = (
-/obj/machinery/power/apc{
- cell_type = 15000;
- dir = 1;
- name = "Engineering APC";
- pixel_x = 0;
- pixel_y = 25
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/engineering)
-"cic" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/table,
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/clothing/gloves/color/yellow,
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/engineering)
-"cid" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/portable_atmospherics/pump,
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/engineering)
-"cie" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -5;
- pixel_y = 30
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/engineering)
-"cif" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/table,
-/obj/item/weapon/tank/internals/emergency_oxygen/engi,
-/obj/item/clothing/mask/breath,
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/engineering)
-"cig" = (
-/turf/closed/wall,
-/area/engine/engineering)
-"cih" = (
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/engineering)
-"cii" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/item/clothing/suit/radiation,
-/obj/item/clothing/head/radiation,
-/obj/item/clothing/glasses/meson,
-/obj/item/device/geiger_counter,
-/obj/item/device/geiger_counter,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cij" = (
-/obj/machinery/computer/station_alert,
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- name = "Station Intercom (General)";
- pixel_y = 20
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cik" = (
-/obj/machinery/computer/station_alert,
-/obj/machinery/button/door{
- desc = "A remote control-switch for the engineering security doors.";
- id = "Engineering";
- name = "Engineering Lockdown";
- pixel_x = -24;
- pixel_y = -10;
- req_access_txt = "10"
- },
-/obj/machinery/button/door{
- desc = "A remote control-switch for secure storage.";
- id = "Secure Storage";
- name = "Engineering Secure Storage";
- pixel_x = -24;
- pixel_y = 0;
- req_access_txt = "11"
- },
-/obj/machinery/button/door{
- id = "atmos";
- name = "Atmospherics Lockdown";
- pixel_x = -24;
- pixel_y = 10;
- req_access_txt = "24"
- },
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/engine/chiefs_office)
-"cim" = (
-/obj/structure/chair/office/light{
- dir = 4
- },
-/obj/effect/landmark/start/chief_engineer,
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/engine/chiefs_office)
-"cin" = (
-/obj/structure/closet/secure_closet/engineering_chief{
- req_access_txt = "0"
- },
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/engine/chiefs_office)
-"cio" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/engine/chiefs_office)
-"cip" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"ciq" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/chiefs_office)
-"cir" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/highpressure/fulltile,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cis" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cit" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/turf/closed/wall/r_wall,
-/area/atmos)
-"ciu" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"civ" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"ciw" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"cix" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/turf/closed/wall/r_wall,
-/area/atmos)
-"ciy" = (
-/obj/structure/sign/nosmoking_2{
- pixel_x = -28
- },
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4;
- name = "input gas connector port"
- },
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"ciz" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 4;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"ciA" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- name = "input port pump"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"ciB" = (
-/obj/effect/decal/cleanable/cobweb,
-/obj/structure/reagent_dispensers/watertank,
-/obj/item/weapon/extinguisher,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"ciC" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 6
- },
-/turf/open/space,
-/area/space/nearstation)
-"ciD" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- name = "output gas connector port"
- },
-/obj/machinery/portable_atmospherics/canister,
-/obj/structure/sign/nosmoking_2{
- pixel_x = 28
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"ciE" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"ciF" = (
-/obj/structure/table,
-/obj/item/weapon/cartridge/medical,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"ciG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/closet/firecloset/full,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"ciH" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/obj/item/latexballon,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"ciI" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"ciJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/asmaint2)
-"ciK" = (
-/obj/structure/rack,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"ciL" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/tinted/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"ciM" = (
-/obj/machinery/power/compressor{
- comp_id = "incineratorturbine";
- dir = 1;
- luminosity = 2
- },
-/obj/structure/cable/yellow,
-/obj/structure/cable/yellow{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/camera{
- c_tag = "Turbine Chamber";
- dir = 4;
- network = list("Turbine")
- },
-/turf/open/floor/engine/vacuum,
-/area/maintenance/incinerator)
-"ciN" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"ciO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"ciP" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/port)
-"ciQ" = (
-/obj/machinery/power/solar_control{
- id = "portsolar";
- name = "Aft Port Solar Control";
- track = 0
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/maintenance/portsolar)
-"ciR" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Aft Port Solar APC";
- pixel_x = 23;
- pixel_y = 2
- },
-/obj/machinery/camera{
- c_tag = "Aft Port Solar Control";
- dir = 1
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/maintenance/portsolar)
-"ciS" = (
-/turf/open/floor/plating,
-/area/maintenance/portsolar)
-"ciT" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"ciU" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"ciW" = (
-/obj/effect/landmark/blobstart,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"ciX" = (
-/obj/structure/closet/crate,
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/rods{
- amount = 50
- },
-/obj/item/stack/sheet/glass{
- amount = 50
- },
-/obj/item/weapon/electronics/airlock,
-/obj/item/weapon/electronics/airlock,
-/obj/item/weapon/stock_parts/cell/high/plus,
-/obj/item/stack/sheet/mineral/plasma{
- amount = 30
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"ciY" = (
-/obj/machinery/door/poddoor{
- id = "Secure Storage";
- name = "secure storage"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"ciZ" = (
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cja" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cjb" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cjc" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cjd" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/sign/nosmoking_2{
- pixel_y = 32
- },
-/obj/machinery/camera{
- c_tag = "Engineering Power Storage"
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cje" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cjf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/obj/effect/landmark/start/station_engineer,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cjg" = (
-/obj/machinery/camera{
- c_tag = "Chief Engineer's Office";
- dir = 4;
- network = list("SS13")
- },
-/obj/machinery/airalarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/obj/machinery/computer/card/minor/ce,
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/engine/chiefs_office)
-"cjh" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cji" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cjj" = (
-/obj/item/device/radio/intercom{
- dir = 4;
- name = "Station Intercom (General)";
- pixel_x = 27
- },
-/obj/structure/filingcabinet/chestdrawer,
-/mob/living/simple_animal/parrot/Poly,
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/engine/chiefs_office)
-"cjk" = (
-/obj/structure/sign/securearea,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"cjl" = (
-/obj/machinery/camera{
- c_tag = "Engineering MiniSat Access";
- dir = 4;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cjm" = (
-/obj/machinery/door/airlock/command{
- name = "MiniSat Access";
- req_access_txt = "65"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cjo" = (
-/obj/structure/closet/toolcloset,
-/turf/open/floor/plasteel,
-/area/construction)
-"cjp" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/obj/structure/reagent_dispensers/fueltank,
-/obj/item/weapon/storage/toolbox/emergency,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"cjq" = (
-/obj/machinery/atmospherics/components/binary/valve{
- name = "Mix to Space"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"cjr" = (
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"cjs" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"cjt" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"cju" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "Incinerator to Output";
- on = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"cjv" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"cjw" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/asmaint)
-"cjx" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/incinerator)
-"cjy" = (
-/obj/structure/disposalpipe/segment,
-/obj/item/weapon/shard,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cjz" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/closed/wall,
-/area/maintenance/asmaint)
-"cjA" = (
-/obj/structure/disposalpipe/segment,
-/obj/item/weapon/cigbutt/roach,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cjB" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 9
- },
-/obj/structure/table,
-/obj/item/weapon/folder/white,
-/obj/item/weapon/pen,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"cjC" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cjD" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/starboardsolar)
-"cjE" = (
-/obj/structure/rack,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cjF" = (
-/obj/machinery/door/airlock/engineering{
- name = "Aft Starboard Solar Access";
- req_access_txt = "10"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
-"cjG" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 0
- },
-/turf/closed/wall/r_wall,
-/area/maintenance/starboardsolar)
-"cjH" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/port)
-"cjI" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cjJ" = (
-/turf/closed/wall/r_wall,
-/area/engine/engine_smes)
-"cjK" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cjL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/construction)
-"cjM" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Engineering Secure Storage";
- dir = 4;
- network = list("SS13")
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cjN" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cjO" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cjP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cjQ" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cjR" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 2;
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cjS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cjT" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cjU" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/engine/chiefs_office)
-"cjV" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cjW" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
- },
-/area/toxins/misc_lab)
-"cjX" = (
-/obj/item/weapon/cartridge/engineering{
- pixel_x = 4;
- pixel_y = 5
- },
-/obj/item/weapon/cartridge/engineering{
- pixel_x = -3;
- pixel_y = 2
- },
-/obj/item/weapon/cartridge/engineering{
- pixel_x = 3
- },
-/obj/structure/table/reinforced,
-/obj/machinery/light_switch{
- pixel_x = 27
- },
-/obj/item/weapon/cartridge/atmos,
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/engine/chiefs_office)
-"cjY" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/engine/chiefs_office)
-"cka" = (
-/obj/machinery/door/poddoor/preopen{
- id = "testlab";
- name = "test chamber blast door"
- },
-/obj/machinery/door/airlock/glass_research{
- cyclelinkeddir = 4;
- name = "Test Chamber";
- req_access_txt = "47"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"ckb" = (
-/obj/machinery/atmospherics/pipe/simple,
-/obj/structure/grille,
-/obj/machinery/meter,
-/turf/closed/wall/r_wall,
-/area/atmos)
-"ckc" = (
-/obj/machinery/atmospherics/pipe/simple,
-/obj/structure/grille,
-/obj/machinery/meter{
- name = "Mixed Air Tank In"
- },
-/turf/closed/wall/r_wall,
-/area/atmos)
-"ckd" = (
-/obj/machinery/atmospherics/pipe/simple,
-/obj/structure/grille,
-/obj/machinery/meter{
- name = "Mixed Air Tank Out"
- },
-/turf/closed/wall/r_wall,
-/area/atmos)
-"cke" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"ckf" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/incinerator)
-"ckg" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 8
- },
-/obj/machinery/meter,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"ckh" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Mix to MiniSat"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"cki" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"ckj" = (
-/obj/item/weapon/cigbutt,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 10
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"ckk" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/binary/valve{
- dir = 4;
- name = "Incinerator to Space"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"ckl" = (
-/obj/machinery/portable_atmospherics/canister,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"ckm" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Biohazard Disposals";
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"ckn" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/toxins/xenobiology)
-"cko" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/maintenance/asmaint2)
-"ckp" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"ckq" = (
-/obj/structure/shuttle/engine/propulsion/burst{
- dir = 4;
- icon_state = "propulsion"
- },
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/pod_2)
-"ckr" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cks" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
-"ckt" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Aft Starboard Solar APC";
- pixel_x = -26;
- pixel_y = 3
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
-"cku" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/smes,
-/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
-"ckv" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"ckw" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/black,
-/area/engine/engine_smes)
-"ckx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/engine/engine_smes)
-"cky" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/black,
-/area/engine/engine_smes)
-"ckz" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/black,
-/area/engine/engine_smes)
-"ckA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"ckB" = (
-/obj/machinery/field/generator,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"ckC" = (
-/obj/machinery/power/emitter,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"ckD" = (
-/obj/structure/table,
-/obj/item/weapon/electronics/airlock,
-/obj/item/weapon/electronics/airlock,
-/obj/item/weapon/electronics/apc,
-/obj/item/weapon/stock_parts/cell/high/plus,
-/obj/item/weapon/stock_parts/cell/high/plus,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"ckE" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"ckF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"ckG" = (
-/obj/structure/table,
-/obj/item/weapon/book/manual/engineering_singularity_safety,
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/clothing/gloves/color/yellow,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"ckH" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"ckI" = (
-/obj/structure/tank_dispenser,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"ckJ" = (
-/obj/structure/closet/crate{
- name = "solar pack crate"
- },
-/obj/item/solar_assembly,
-/obj/item/solar_assembly,
-/obj/item/solar_assembly,
-/obj/item/solar_assembly,
-/obj/item/solar_assembly,
-/obj/item/solar_assembly,
-/obj/item/solar_assembly,
-/obj/item/solar_assembly,
-/obj/item/solar_assembly,
-/obj/item/solar_assembly,
-/obj/item/solar_assembly,
-/obj/item/solar_assembly,
-/obj/item/solar_assembly,
-/obj/item/weapon/circuitboard/computer/solar_control,
-/obj/item/weapon/electronics/tracker,
-/obj/item/weapon/paper/solar,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"ckK" = (
-/obj/machinery/suit_storage_unit/engine,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"ckL" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/chiefs_office)
-"ckM" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"ckN" = (
-/obj/machinery/door/airlock/glass_research{
- cyclelinkeddir = 8;
- name = "Test Chamber";
- req_access_txt = "47"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
- },
-/area/toxins/misc_lab)
-"ckO" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/chiefs_office)
-"ckP" = (
-/obj/machinery/door/airlock/glass_command{
- name = "Chief Engineer";
- req_access_txt = "56"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/engine/chiefs_office)
-"ckQ" = (
-/obj/structure/closet/cardboard,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"ckR" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
-/turf/closed/wall/r_wall,
-/area/engine/chiefs_office)
-"ckS" = (
-/obj/structure/closet/cardboard,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"ckT" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/engineering)
-"ckU" = (
-/obj/machinery/air_sensor{
- frequency = 1441;
- id_tag = "n2_sensor"
- },
-/turf/open/floor/engine/n2,
-/area/atmos)
-"ckV" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 1;
- frequency = 1441;
- id = "n2_in"
- },
-/turf/open/floor/engine/n2,
-/area/atmos)
-"ckW" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 0;
- frequency = 1441;
- id_tag = "n2_out";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
- },
-/turf/open/floor/engine/n2,
-/area/atmos)
-"ckX" = (
-/obj/machinery/air_sensor{
- frequency = 1441;
- id_tag = "o2_sensor"
- },
-/turf/open/floor/engine/o2,
-/area/atmos)
-"ckY" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 1;
- frequency = 1441;
- id = "o2_in"
- },
-/turf/open/floor/engine/o2,
-/area/atmos)
-"ckZ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 0;
- frequency = 1441;
- id_tag = "o2_out";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
- },
-/turf/open/floor/engine/o2,
-/area/atmos)
-"cla" = (
-/obj/machinery/air_sensor{
- frequency = 1441;
- id_tag = "air_sensor"
- },
-/turf/open/floor/engine/air,
-/area/atmos)
-"clb" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 1;
- frequency = 1441;
- id = "air_in"
- },
-/turf/open/floor/engine/air,
-/area/atmos)
-"clc" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{
- dir = 1;
- external_pressure_bound = 0;
- frequency = 1441;
- icon_state = "vent_map";
- id_tag = "air_out";
- internal_pressure_bound = 2000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
- },
-/turf/open/floor/engine/air,
-/area/atmos)
-"cld" = (
-/obj/effect/landmark/blobstart,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- name = "Mix to Incinerator";
- on = 0
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"cle" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 2
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"clf" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"clg" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -29
- },
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen,
-/turf/open/floor/plating,
-/area/maintenance/incinerator)
-"clh" = (
-/obj/machinery/light/small,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
- pixel_y = -31
- },
-/obj/machinery/computer/turbine_computer{
- id = "incineratorturbine"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"cli" = (
-/obj/machinery/button/door{
- id = "auxincineratorvent";
- name = "Auxiliary Vent Control";
- pixel_x = 6;
- pixel_y = -24;
- req_access_txt = "32"
- },
-/obj/machinery/button/door{
- id = "turbinevent";
- name = "Turbine Vent Control";
- pixel_x = -6;
- pixel_y = -24;
- req_access_txt = "32"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"clj" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"clk" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cll" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"clm" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/manifold/general/hidden{
- icon_state = "manifold";
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cln" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"clo" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/obj/machinery/meter,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"clp" = (
-/obj/machinery/door/airlock/external{
- name = "Solar Maintenance";
- req_access = null;
- req_access_txt = "10; 13"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"clq" = (
-/obj/structure/rack,
-/obj/structure/disposalpipe/segment,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"clr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cls" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"clt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"clu" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"clv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/asmaint2)
-"clw" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"clx" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
-"cly" = (
-/obj/structure/chair/stool,
-/obj/machinery/camera{
- c_tag = "Aft Starboard Solar Control";
- dir = 4;
- network = list("SS13")
- },
-/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
-"clz" = (
-/obj/machinery/power/terminal{
- icon_state = "term";
- dir = 1
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
-"clA" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"clB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/corner{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"clC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/black,
-/area/engine/engine_smes)
-"clD" = (
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/engine/engine_smes)
-"clE" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/smes/engineering,
-/turf/open/floor/plasteel/vault{
- dir = 1
- },
-/area/engine/engine_smes)
-"clF" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/black,
-/area/engine/engine_smes)
-"clG" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/power/smes/engineering,
-/turf/open/floor/plasteel/vault{
- dir = 4
- },
-/area/engine/engine_smes)
-"clH" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/closed/wall,
-/area/engine/engineering)
-"clI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/main)
-"clJ" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"clM" = (
-/obj/structure/table,
-/obj/item/weapon/crowbar/large,
-/obj/item/weapon/storage/box/lights/mixed,
-/obj/item/clothing/glasses/meson,
-/obj/item/clothing/glasses/meson,
-/turf/open/floor/plasteel/yellow/side{
- dir = 9
- },
-/area/engine/engineering)
-"clN" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 1
- },
-/area/engine/engineering)
-"clO" = (
-/turf/open/space,
-/turf/closed/wall/mineral/plastitanium{
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
-"clP" = (
-/turf/open/floor/plasteel/yellow/corner{
- dir = 4
- },
-/area/engine/engineering)
-"clQ" = (
-/turf/open/floor/plasteel/yellow/corner{
- dir = 1
- },
-/area/engine/engineering)
-"clR" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/table,
-/obj/item/weapon/book/manual/wiki/engineering_hacking{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/book/manual/wiki/engineering_construction,
-/obj/item/clothing/glasses/meson,
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/engineering)
-"clS" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/red/side,
-/area/security/main)
-"clT" = (
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/turf/open/floor/engine/n2,
-/area/atmos)
-"clU" = (
-/turf/open/floor/engine/n2,
-/area/atmos)
-"clV" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/engine/o2,
-/area/atmos)
-"clW" = (
-/turf/open/floor/engine/o2,
-/area/atmos)
-"clX" = (
-/obj/effect/landmark/event_spawn,
-/obj/effect/landmark/xmastree,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"clY" = (
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/engine/air,
-/area/atmos)
-"clZ" = (
-/turf/open/floor/engine/air,
-/area/atmos)
-"cmb" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/incinerator)
-"cmc" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 2
- },
-/turf/closed/wall/r_wall,
-/area/maintenance/incinerator)
-"cmd" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/incinerator)
-"cme" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/closed/wall/r_wall,
-/area/maintenance/incinerator)
-"cmf" = (
-/obj/machinery/door/airlock/glass{
- autoclose = 0;
- frequency = 1449;
- heat_proof = 1;
- icon_state = "door_locked";
- id_tag = "incinerator_airlock_interior";
- locked = 1;
- name = "Turbine Interior Airlock";
- req_access_txt = "32"
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/engine,
-/area/maintenance/incinerator)
-"cmg" = (
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 9
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cmh" = (
-/obj/structure/disposalpipe/junction{
- dir = 2;
- icon_state = "pipe-y"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cmi" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cmj" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cmk" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cml" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"cmn" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cmo" = (
-/obj/structure/rack{
- dir = 1
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cmp" = (
-/obj/machinery/porta_turret/syndicate{
- dir = 4
- },
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate)
-"cmq" = (
-/obj/effect/landmark/xeno_spawn,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/asmaint2)
-"cmr" = (
-/obj/structure/closet/toolcloset,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cms" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cmt" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cmu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/closed/wall,
-/area/maintenance/asmaint2)
-"cmv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
-"cmw" = (
-/obj/machinery/power/solar_control{
- id = "starboardsolar";
- name = "Aft Starboard Solar Control";
- track = 0
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
-"cmx" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = -32
- },
-/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
-"cmy" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/black,
-/area/engine/engine_smes)
-"cmz" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/black,
-/area/engine/engine_smes)
-"cmA" = (
-/obj/machinery/power/terminal{
- icon_state = "term";
- dir = 1
- },
-/obj/structure/cable/yellow{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/engine/engine_smes)
-"cmB" = (
-/obj/machinery/power/terminal{
- icon_state = "term";
- dir = 1
- },
-/obj/structure/cable/yellow{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/engine/engine_smes)
-"cmC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"cmD" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=2";
- freq = 1400;
- location = "Engineering"
- },
-/obj/structure/plasticflaps{
- opacity = 1
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cmE" = (
-/turf/open/space,
-/turf/closed/wall/mineral/plastitanium{
- dir = 4;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
-"cmF" = (
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/engineering)
-"cmG" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 9
- },
-/area/engine/engineering)
-"cmK" = (
-/obj/machinery/requests_console{
- announcementConsole = 0;
- department = "Engineering";
- departmentType = 4;
- name = "Engineering RC";
- pixel_y = 30
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/engineering)
-"cmL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/engineering)
-"cmN" = (
-/obj/structure/sign/nosmoking_2{
- pixel_y = 32
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/engineering)
-"cmQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cmU" = (
-/obj/machinery/light/small,
-/turf/open/floor/engine/n2,
-/area/atmos)
-"cmV" = (
-/obj/machinery/light/small,
-/turf/open/floor/engine/o2,
-/area/atmos)
-"cmW" = (
-/obj/machinery/light/small,
-/turf/open/floor/engine/air,
-/area/atmos)
-"cmX" = (
-/obj/machinery/light_switch{
- pixel_x = 27
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/construction)
-"cmY" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 2;
- on = 1
- },
-/obj/machinery/doorButtons/access_button{
- idDoor = "incinerator_airlock_exterior";
- idSelf = "incinerator_access_control";
- layer = 3.1;
- name = "Incinerator airlock control";
- pixel_x = 8;
- pixel_y = -24
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/sign/fire{
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/open/floor/engine,
-/area/maintenance/incinerator)
-"cmZ" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- on = 1
- },
-/obj/structure/sign/fire{
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/machinery/doorButtons/access_button{
- idSelf = "incinerator_access_control";
- idDoor = "incinerator_airlock_interior";
- name = "Incinerator airlock control";
- pixel_x = -8;
- pixel_y = 24
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/maintenance/incinerator)
-"cna" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/engine,
-/area/maintenance/incinerator)
-"cnb" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cnc" = (
-/obj/machinery/light/small,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cnd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cne" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cnf" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cng" = (
-/obj/machinery/light/small,
-/obj/structure/table,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/weapon/clipboard,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cni" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0
- },
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate)
-"cnj" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
-"cnk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 2;
- name = "Solar Maintenance";
- req_access = null;
- req_access_txt = "10; 13"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
-"cnl" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/port)
-"cnm" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 2;
- on = 1
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/black,
-/area/engine/engine_smes)
-"cnn" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/engine/engine_smes)
-"cno" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/smes/engineering,
-/turf/open/floor/plasteel/vault{
- dir = 4
- },
-/area/engine/engine_smes)
-"cnp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/camera{
- c_tag = "SMES Room";
- dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/black,
-/area/engine/engine_smes)
-"cnq" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/power/smes/engineering,
-/turf/open/floor/plasteel/vault{
- dir = 1
- },
-/area/engine/engine_smes)
-"cnr" = (
-/obj/machinery/door/window/southleft{
- base_state = "left";
- dir = 2;
- icon_state = "left";
- name = "Engineering Delivery";
- req_access_txt = "10"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cnt" = (
-/obj/machinery/camera{
- c_tag = "Engineering West";
- dir = 4;
- network = list("SS13")
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/landmark/start/station_engineer,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 1
- },
-/area/engine/engineering)
-"cnv" = (
-/obj/machinery/holopad,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cnx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cny" = (
-/obj/effect/landmark/start/station_engineer,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cnA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cnB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/construction)
-"cnC" = (
-/obj/machinery/door/airlock/glass{
- autoclose = 0;
- frequency = 1449;
- heat_proof = 1;
- icon_state = "door_locked";
- id_tag = "incinerator_airlock_exterior";
- locked = 1;
- name = "Turbine Exterior Airlock";
- req_access_txt = "32"
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/engine,
-/area/maintenance/incinerator)
-"cnD" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/closed/wall,
-/area/maintenance/asmaint)
-"cnE" = (
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j2"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cnF" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 2;
- name = "Waste Out";
- on = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cnG" = (
-/obj/structure/closet/emcloset,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cnH" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cnJ" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cnK" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
-"cnL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/engine/engine_smes)
-"cnM" = (
-/obj/machinery/door/window{
- name = "SMES Chamber";
- req_access_txt = "32"
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/black,
-/area/engine/engine_smes)
-"cnN" = (
-/obj/structure/window/reinforced,
-/obj/structure/cable/yellow{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/power/terminal{
- icon_state = "term";
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/engine/engine_smes)
-"cnO" = (
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/black,
-/area/engine/engine_smes)
-"cnP" = (
-/obj/machinery/power/terminal{
- icon_state = "term";
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/cable/yellow{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/black,
-/area/engine/engine_smes)
-"cnQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/engine_smes)
-"cnR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/engine/engine_smes)
-"cnS" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/camera{
- c_tag = "SMES Access";
- dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engine_smes)
-"cnU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/loadingarea,
-/area/engine/engineering)
-"cnW" = (
-/turf/open/space,
-/turf/closed/wall/mineral/plastitanium{
- dir = 1;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
-"cnX" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -5;
- pixel_y = 30
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cnY" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/sign/nosmoking_2{
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cnZ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"coa" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cob" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"coc" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_engineering{
- name = "Supermatter Engine Room";
- req_access_txt = "10"
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cof" = (
-/obj/machinery/door/airlock/external{
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"coh" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/shuttle/syndicate)
-"cop" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 1;
- frequency = 1441;
- id = "inc_in"
- },
-/turf/open/floor/engine/vacuum,
-/area/maintenance/incinerator)
-"coq" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 0;
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 0;
- pressure_checks = 2;
- pump_direction = 0
- },
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = -32
- },
-/turf/open/floor/engine/vacuum,
-/area/maintenance/incinerator)
-"cor" = (
-/obj/machinery/igniter{
- icon_state = "igniter0";
- id = "Incinerator";
- luminosity = 2;
- on = 0
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/engine/vacuum,
-/area/maintenance/incinerator)
-"cos" = (
-/obj/machinery/door/poddoor{
- id = "auxincineratorvent";
- name = "Auxiliary Incinerator Vent"
- },
-/turf/open/floor/engine/vacuum,
-/area/maintenance/incinerator)
-"cot" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cou" = (
-/obj/machinery/space_heater,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cov" = (
-/obj/machinery/power/port_gen/pacman,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/engine/engine_smes)
-"cow" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engine_smes)
-"cox" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engine_smes)
-"coy" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/engine/engine_smes)
-"coz" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engine_smes)
-"coA" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/engine_smes)
-"coB" = (
-/obj/machinery/door/airlock/engineering{
- cyclelinkeddir = 4;
- name = "SMES Room";
- req_access_txt = "32"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
- },
-/area/engine/engine_smes)
-"coC" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engine_smes)
-"coH" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"coJ" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"coK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/highpressure/fulltile,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"coL" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"coM" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"coS" = (
-/obj/structure/rack,
-/obj/item/weapon/gun/energy/laser{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/weapon/gun/energy/laser,
-/obj/item/weapon/gun/energy/laser{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plasteel{
- dir = 2
- },
-/area/ai_monitored/security/armory)
-"coT" = (
-/obj/item/pipe{
- dir = 4;
- icon_state = "mixer";
- name = "gas mixer fitting";
- pipe_type = 14
- },
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"coZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/structure/closet/secure_closet/engineering_electrical,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cpa" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/obj/structure/closet/secure_closet/engineering_welding,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cpb" = (
-/obj/structure/closet/emcloset,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cpc" = (
-/obj/structure/shuttle/engine/propulsion/burst{
- dir = 8
- },
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/pod_4)
-"cpd" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/pod_4)
-"cpe" = (
-/obj/docking_port/stationary/random{
- dir = 8;
- id = "pod_lavaland2";
- name = "lavaland"
- },
-/turf/open/space,
-/area/space)
-"cpg" = (
-/obj/item/weapon/grenade/barrier{
- pixel_x = 4
- },
-/obj/item/weapon/grenade/barrier,
-/obj/item/weapon/grenade/barrier{
- pixel_x = -4
- },
-/obj/structure/table,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/security/armory)
-"cph" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/turf/open/space,
-/area/space/nearstation)
-"cpi" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/starboard)
-"cpj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/engine_smes)
-"cpk" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/engine/engine_smes)
-"cpl" = (
-/turf/open/floor/plasteel,
-/area/engine/engine_smes)
-"cpm" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/engine/engine_smes)
-"cpn" = (
-/obj/machinery/light,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/engine/engine_smes)
-"cpo" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/engine_smes)
-"cpp" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engine_smes)
-"cpq" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cps" = (
-/obj/structure/table,
-/obj/item/stack/sheet/glass{
- amount = 50
- },
-/obj/item/stack/sheet/glass{
- amount = 50
- },
-/obj/item/stack/sheet/glass{
- amount = 50
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cpt" = (
-/obj/structure/table,
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/weapon/storage/toolbox/electrical{
- pixel_y = 5
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cpu" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_engineering{
- name = "Supermatter Engine Room";
- req_access_txt = "10"
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cpv" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cpx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cpy" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cpA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"cpC" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/bridge)
-"cpD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cpE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cpG" = (
-/obj/structure/table/optable,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"cpI" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- name = "Escape Pod Four";
- req_access = null;
- req_access_txt = "0"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cpJ" = (
-/obj/machinery/door/airlock/titanium{
- name = "Escape Pod Airlock"
- },
-/obj/docking_port/mobile/pod{
- dir = 4;
- id = "pod4";
- name = "escape pod 4";
- port_angle = 180;
- preferred_direction = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_4)
-"cpK" = (
-/obj/machinery/computer/shuttle/pod{
- pixel_x = 0;
- pixel_y = -32;
- possible_destinations = "pod_lavaland2";
- shuttleId = "pod2"
- },
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/status_display{
- density = 0;
- layer = 3;
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_2)
-"cpL" = (
-/obj/item/weapon/storage/pod{
- pixel_x = 6;
- pixel_y = -28
- },
-/obj/item/device/radio/intercom{
- pixel_x = 0;
- pixel_y = 25
- },
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/light/small,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_2)
-"cpM" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/pod_4)
-"cpN" = (
-/obj/machinery/power/turbine{
- luminosity = 2
- },
-/obj/structure/cable/yellow,
-/turf/open/floor/engine/vacuum,
-/area/maintenance/incinerator)
-"cpO" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 2;
- name = "Incinerator Output Pump";
- on = 1
- },
-/turf/open/space,
-/area/maintenance/incinerator)
-"cpP" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/turf/open/space,
-/area/space/nearstation)
-"cpQ" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/space,
-/area/maintenance/incinerator)
-"cpR" = (
-/obj/machinery/door/airlock{
- name = "Observatory Access"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cpS" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- dir = 2;
- name = "SMES room APC";
- pixel_y = -24
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/engine/engine_smes)
-"cpT" = (
-/obj/structure/table,
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -35
- },
-/obj/item/weapon/stock_parts/cell/high/plus,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/engine/engine_smes)
-"cpU" = (
-/obj/structure/chair/office/light{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/engine/engine_smes)
-"cpV" = (
-/obj/structure/table,
-/obj/machinery/camera{
- c_tag = "Engineering Storage";
- dir = 4;
- network = list("SS13")
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cpW" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cpX" = (
-/obj/structure/table,
-/obj/item/stack/rods{
- amount = 50
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cpY" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cpZ" = (
-/obj/structure/table,
-/obj/item/weapon/storage/toolbox/mechanical{
- pixel_y = 5
- },
-/obj/item/device/flashlight{
- pixel_x = 1;
- pixel_y = 5
- },
-/obj/item/device/flashlight{
- pixel_x = 1;
- pixel_y = 5
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cqa" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/highpressure/fulltile,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cqb" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cqc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cqd" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/machinery/meter,
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cqe" = (
-/obj/effect/turf_decal/stripes/corner,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- icon_state = "intact";
- dir = 6
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cqf" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/machinery/light,
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cqg" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Gas to Filter";
- on = 1
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cqi" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/machinery/light,
-/obj/machinery/meter,
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cqj" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 1
- },
-/obj/machinery/button/door{
- id = "engsm";
- name = "Radiation Shutters Control";
- pixel_x = 0;
- pixel_y = -24;
- req_access_txt = "10"
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cqk" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cql" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cqm" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/obj/machinery/meter,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cqn" = (
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cqo" = (
-/obj/structure/sign/pods{
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cqp" = (
-/obj/machinery/camera{
- c_tag = "Engineering Escape Pod";
- dir = 4;
- network = list("SS13")
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cqq" = (
-/obj/machinery/door/airlock/titanium{
- name = "Escape Pod Airlock"
- },
-/obj/docking_port/mobile/pod{
- dir = 8;
- id = "pod2";
- name = "escape pod 2";
- port_angle = 180
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_2)
-"cqr" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"cqs" = (
-/obj/structure/sign/fire{
- pixel_x = 0;
- pixel_y = 0
- },
-/turf/closed/wall/r_wall,
-/area/maintenance/incinerator)
-"cqt" = (
-/obj/machinery/door/poddoor{
- id = "turbinevent";
- name = "Turbine Vent"
- },
-/turf/open/floor/engine/vacuum,
-/area/maintenance/incinerator)
-"cqu" = (
-/obj/machinery/door/airlock/external{
- name = "External Access";
- req_access = null;
- req_access_txt = "13"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cqv" = (
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cqw" = (
-/obj/structure/table,
-/obj/item/stack/sheet/plasteel{
- amount = 10
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cqx" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cqy" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cqz" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cqA" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 2;
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cqB" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cqC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cqD" = (
-/obj/structure/sign/radiation,
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cqE" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/glass_engineering{
- heat_proof = 1;
- name = "Supermatter Chamber";
- req_access_txt = "10"
- },
-/turf/open/floor/engine,
-/area/engine/supermatter)
-"cqF" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cqG" = (
-/obj/structure/rack,
-/obj/item/weapon/storage/box/rubbershot{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/item/weapon/storage/box/rubbershot{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/box/rubbershot,
-/obj/item/weapon/storage/box/rubbershot,
-/obj/item/weapon/storage/box/rubbershot{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/weapon/storage/box/rubbershot{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/security/armory)
-"cqJ" = (
-/obj/structure/cable,
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/starboard)
-"cqK" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cqL" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cqM" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"cqN" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cqO" = (
-/obj/structure/table,
-/obj/item/stack/cable_coil{
- pixel_x = 3;
- pixel_y = -7
- },
-/obj/item/stack/cable_coil,
-/obj/item/weapon/electronics/airlock,
-/obj/item/weapon/electronics/airlock,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cqP" = (
-/obj/structure/table,
-/obj/item/weapon/folder/yellow,
-/obj/item/clothing/ears/earmuffs{
- pixel_x = -3;
- pixel_y = -2
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cqQ" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cqR" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cqS" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cqT" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 32
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cqU" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1
- },
-/obj/effect/turf_decal/bot,
-/obj/machinery/portable_atmospherics/canister,
-/turf/open/floor/plasteel/black,
-/area/engine/engineering)
-"cqY" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cqZ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/engine,
-/area/engine/supermatter)
-"cra" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "Gas to Filter"
- },
-/obj/machinery/airalarm{
- dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0;
- req_access = null;
- req_one_access_txt = "24;10"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/engine,
-/area/engine/supermatter)
-"crb" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 2;
- icon_state = "pump_map";
- name = "Gas to Chamber"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/engine,
-/area/engine/supermatter)
-"crc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"crd" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_engineering{
- name = "Supermatter Engine Room";
- req_access_txt = "10"
- },
-/turf/open/floor/plasteel/black,
-/area/engine/engineering)
-"crh" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cri" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"crj" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/power/solar{
- id = "starboardsolar";
- name = "Starboard Solar Array"
- },
-/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/starboard)
-"crk" = (
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/starboard)
-"crl" = (
-/obj/structure/table,
-/obj/item/device/taperecorder{
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"crm" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/matches,
-/obj/item/weapon/storage/fancy/cigarettes,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"crn" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"cro" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"crp" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"crq" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"crr" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"crs" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- icon_state = "intact";
- dir = 6
- },
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"crt" = (
-/obj/machinery/door/airlock/glass_engineering{
- heat_proof = 1;
- name = "Supermatter Chamber";
- req_access_txt = "10"
- },
-/turf/open/floor/engine,
-/area/engine/supermatter)
-"cru" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"crv" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 10
- },
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"crw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"crx" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/escape)
-"cry" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"crz" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"crA" = (
-/obj/structure/transit_tube_pod,
-/obj/structure/transit_tube/station/reverse/flipped{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"crB" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/starboard)
-"crC" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/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
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/starboard)
-"crD" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/starboard)
-"crE" = (
-/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";
- pixel_x = 0
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/starboard)
-"crF" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/starboard)
-"crG" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/starboard)
-"crH" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 4
- },
-/turf/open/space,
-/area/space)
-"crI" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 9
- },
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"crJ" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 4
- },
-/turf/open/space,
-/area/space)
-"crK" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
- dir = 8
- },
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"crL" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- icon_state = "connector_map";
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/engine/engineering)
-"crM" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/engine/engineering)
-"crN" = (
-/obj/structure/table,
-/obj/machinery/recharger,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"crO" = (
-/turf/open/floor/mineral/titanium,
-/turf/closed/wall/mineral/titanium/interior,
-/area/shuttle/escape)
-"crP" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"crQ" = (
-/obj/machinery/computer/emergency_shuttle,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"crR" = (
-/obj/structure/transit_tube,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"crS" = (
-/obj/structure/cable,
-/obj/machinery/power/solar{
- id = "starboardsolar";
- name = "Starboard Solar Array"
- },
-/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/starboard)
-"crT" = (
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 4
- },
-/turf/open/space,
-/area/space)
-"crU" = (
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 10
- },
-/turf/open/space,
-/area/space)
-"crV" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/engine/engineering)
-"crW" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"crX" = (
-/obj/structure/closet/emcloset,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 32
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"crY" = (
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/transit_tube,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"crZ" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 4
- },
-/obj/structure/lattice,
-/turf/open/space,
-/area/space)
-"csa" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/highpressure/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"csb" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 9
- },
-/turf/open/space,
-/area/space)
-"csc" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/space,
-/area/maintenance/asmaint)
-"csd" = (
-/turf/open/floor/plasteel/black,
-/area/engine/engineering)
-"cse" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/engine/engineering)
-"csg" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 1;
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"csi" = (
-/obj/structure/transit_tube/curved/flipped{
- dir = 1
- },
-/turf/open/space,
-/area/space)
-"csj" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"csk" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"csl" = (
-/obj/structure/transit_tube/curved{
- dir = 4
- },
-/turf/open/space,
-/area/space)
-"csm" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/maintenance/asmaint)
-"csn" = (
-/obj/structure/transit_tube/horizontal,
-/turf/open/space,
-/area/space)
-"cso" = (
-/obj/structure/lattice,
-/obj/structure/transit_tube/crossing/horizontal,
-/turf/open/space,
-/area/space)
-"csq" = (
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching the turbine vent.";
- dir = 1;
- name = "turbine vent monitor";
- network = list("Turbine");
- pixel_x = 0;
- pixel_y = -29
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"csr" = (
-/obj/machinery/doorButtons/airlock_controller{
- idExterior = "incinerator_airlock_exterior";
- idSelf = "incinerator_access_control";
- idInterior = "incinerator_airlock_interior";
- name = "Incinerator Access Console";
- pixel_x = 6;
- pixel_y = -26;
- req_access_txt = "12"
- },
-/obj/machinery/button/ignition{
- id = "Incinerator";
- pixel_x = -6;
- pixel_y = -24
- },
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 4;
- initialize_directions = 11
- },
-/obj/machinery/meter,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"css" = (
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
-/turf/open/space,
-/area/space)
-"csu" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/plasteel/black,
-/area/engine/engineering)
-"csv" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 5
- },
-/obj/structure/lattice,
-/turf/open/space,
-/area/space)
-"csw" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/turf/open/space,
-/area/space)
-"csx" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
-/turf/open/space,
-/area/space)
-"csy" = (
-/obj/structure/table,
-/obj/item/weapon/weldingtool,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"csz" = (
-/obj/effect/landmark/carpspawn,
-/turf/open/space,
-/area/space/nearstation)
-"csA" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "engsm";
- name = "Radiation Chamber Shutters"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/engine/supermatter)
-"csC" = (
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel/black,
-/area/engine/engineering)
-"csD" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat_interior)
-"csE" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/starboard)
-"csH" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"csI" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"csJ" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/open/floor/engine,
-/area/engine/engineering)
-"csM" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/obj/structure/transit_tube/crossing/horizontal,
-/turf/open/space,
-/area/space)
-"csN" = (
-/obj/structure/transit_tube/horizontal,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat_interior)
-"csO" = (
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/transit_tube/horizontal,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat_interior)
-"csP" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4";
- d1 = 1;
- d2 = 4
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 4;
- initialize_directions = 11
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"csQ" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel/black,
-/area/engine/engineering)
-"csR" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"csT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/landmark/xmastree,
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"csU" = (
-/obj/structure/transit_tube/station/reverse,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat_interior)
-"csV" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat_interior)
-"csW" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat_interior)
-"csX" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat_interior)
-"csY" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable,
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/starboard)
-"csZ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/starboard)
-"cta" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- name = "MiniSat External Access";
- req_access = null;
- req_access_txt = "65;13"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctb" = (
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctd" = (
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/turf/open/space,
-/area/space)
-"ctg" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cth" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_x = 0;
- pixel_y = -29
- },
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cti" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/sign/securearea{
- pixel_y = -32
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctj" = (
-/obj/machinery/camera{
- c_tag = "MiniSat Pod Access";
- dir = 1;
- network = list("MiniSat");
- pixel_x = 0;
- pixel_y = 0;
- start_active = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 2;
- on = 1
- },
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctk" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/closed/wall,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cto" = (
-/obj/machinery/door/airlock/hatch{
- name = "MiniSat Foyer";
- req_one_access_txt = "65"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctp" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctr" = (
-/obj/structure/table,
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/item/weapon/folder{
- pixel_x = 3
- },
-/obj/item/weapon/phone{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/weapon/pen,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/turret_protected/aisat_interior)
-"cts" = (
-/obj/structure/rack{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/item/device/radio/off{
- pixel_y = 4
- },
-/obj/item/weapon/screwdriver{
- pixel_y = 10
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctu" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/grimy,
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctv" = (
-/turf/closed/wall/r_wall,
-/area/space)
-"ctw" = (
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/obj/machinery/computer/station_alert,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctx" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
-/turf/open/floor/plasteel/grimy,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cty" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctz" = (
-/obj/machinery/door/poddoor/shutters{
- id = "teledoor";
- name = "MiniSat Teleport Access"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -5;
- pixel_y = 30
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctB" = (
-/obj/structure/cable,
-/obj/machinery/power/tracker,
-/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/starboard)
-"ctE" = (
-/obj/machinery/teleport/hub,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctF" = (
-/obj/machinery/button/door{
- id = "teledoor";
- name = "MiniSat Teleport Shutters Control";
- pixel_x = 0;
- pixel_y = 25;
- req_access_txt = "17;65"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctG" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/grimy,
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctH" = (
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = -31
- },
-/obj/machinery/computer/monitor,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/grimy,
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctJ" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/effect/landmark/start/cyborg,
-/turf/open/floor/plasteel/grimy,
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctK" = (
-/obj/machinery/door/airlock/hatch{
- name = "MiniSat Teleporter";
- req_access_txt = "17;65"
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctL" = (
-/obj/machinery/teleport/station,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctM" = (
-/obj/machinery/bluespace_beacon,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctN" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- icon_state = "intact";
- dir = 10
- },
-/obj/structure/lattice,
-/turf/open/space,
-/area/space)
-"ctO" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- icon_state = "intact";
- dir = 5
- },
-/turf/open/space,
-/area/space)
-"ctP" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/grimy,
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctQ" = (
-/obj/structure/table,
-/obj/machinery/microwave{
- pixel_x = 0;
- pixel_y = 4
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctR" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = 0;
- pixel_y = 0
- },
-/turf/closed/wall,
-/area/engine/engineering)
-"ctS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/grimy,
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctT" = (
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/grimy,
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "MiniSat Foyer APC";
- pixel_x = 27;
- pixel_y = 0
- },
-/obj/structure/chair,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctW" = (
-/obj/machinery/computer/teleporter,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctX" = (
-/obj/machinery/camera{
- c_tag = "MiniSat Teleporter";
- dir = 1;
- network = list("MiniSat");
- pixel_x = 0;
- pixel_y = 0;
- start_active = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat_interior)
-"ctY" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/obj/machinery/meter,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/AIsatextAS{
- name = "AI Satellite Atmospherics"
- })
-"ctZ" = (
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/AIsatextAS{
- name = "AI Satellite Atmospherics"
- })
-"cua" = (
-/turf/closed/wall,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cub" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_x = 0;
- pixel_y = -29
- },
-/obj/machinery/light/small,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cuc" = (
-/obj/structure/rack{
- dir = 1
- },
-/obj/machinery/status_display{
- pixel_y = -32
- },
-/obj/item/weapon/storage/box/donkpockets,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/turret_protected/aisat_interior)
-"cud" = (
-/obj/machinery/turretid{
- control_area = null;
- enabled = 1;
- icon_state = "control_standby";
- name = "Antechamber Turret Control";
- pixel_x = 0;
- pixel_y = -24;
- req_access_txt = "65"
- },
-/obj/machinery/light/small,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/camera/motion{
- c_tag = "MiniSat Foyer";
- dir = 1;
- network = list("MiniSat")
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cue" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cuf" = (
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
-"cug" = (
-/obj/machinery/ai_status_display{
- pixel_y = -32
- },
-/obj/structure/table,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/turret_protected/aisat_interior)
-"cuh" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/obj/structure/rack,
-/obj/item/weapon/wrench,
-/obj/item/weapon/crowbar/red,
-/obj/item/clothing/head/welding,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextAS{
- name = "AI Satellite Atmospherics"
- })
-"cui" = (
-/obj/machinery/atmospherics/components/unary/tank/air,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextAS{
- name = "AI Satellite Atmospherics"
- })
-"cuj" = (
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cuk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cul" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/hatch{
- name = "MiniSat Antechamber";
- req_one_access_txt = "65"
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cum" = (
-/obj/machinery/recharge_station,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
-"cun" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 2;
- name = "Mix to MiniSat"
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating{
- icon_plating = "warnplate"
- },
-/area/ai_monitored/turret_protected/AIsatextAS{
- name = "AI Satellite Atmospherics"
- })
-"cuo" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 2
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextAS{
- name = "AI Satellite Atmospherics"
- })
-"cup" = (
-/obj/structure/showcase{
- density = 0;
- desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
- dir = 8;
- icon = 'icons/mob/robots.dmi';
- icon_state = "robot_old";
- name = "Cyborg Statue";
- pixel_x = 9;
- pixel_y = 2
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -5;
- pixel_y = 30
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating{
- icon_plating = "warnplate"
- },
-/area/ai_monitored/turret_protected/AIsatextAS{
- name = "AI Satellite Atmospherics"
- })
-"cuq" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 0;
- name = "Air Out";
- on = 0
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating{
- icon_plating = "warnplate"
- },
-/area/ai_monitored/turret_protected/AIsatextAS{
- name = "AI Satellite Atmospherics"
- })
-"cur" = (
-/obj/structure/showcase{
- density = 0;
- desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
- dir = 4;
- icon = 'icons/mob/robots.dmi';
- icon_state = "robot_old";
- name = "Cyborg Statue";
- pixel_x = -9;
- pixel_y = 2
- },
-/turf/open/floor/plasteel/darkblue/corner{
- dir = 1
- },
-/area/ai_monitored/turret_protected/aisat_interior)
-"cus" = (
-/obj/structure/showcase{
- density = 0;
- desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
- dir = 8;
- icon = 'icons/mob/robots.dmi';
- icon_state = "robot_old";
- name = "Cyborg Statue";
- pixel_x = 9;
- pixel_y = 2
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel/darkblue/corner{
- dir = 4
- },
-/area/ai_monitored/turret_protected/aisat_interior)
-"cuu" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cuv" = (
-/obj/structure/showcase{
- density = 0;
- desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
- dir = 4;
- icon = 'icons/mob/robots.dmi';
- icon_state = "robot_old";
- name = "Cyborg Statue";
- pixel_x = -9;
- pixel_y = 2
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 5;
- pixel_y = 30
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating{
- icon_plating = "warnplate"
- },
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
-"cuw" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating{
- icon_plating = "warnplate"
- },
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
-"cux" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/glass{
- amount = 50
- },
-/obj/item/clothing/head/welding,
-/obj/item/stack/sheet/mineral/plasma{
- amount = 35;
- layer = 3.1
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
-"cuy" = (
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cuz" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/AIsatextAS{
- name = "AI Satellite Atmospherics"
- })
-"cuA" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "MiniSat Atmospherics";
- dir = 4;
- network = list("MiniSat");
- pixel_x = 0;
- pixel_y = 0;
- start_active = 1
- },
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/obj/machinery/space_heater,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextAS{
- name = "AI Satellite Atmospherics"
- })
-"cuB" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_x = 28;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/darkblue/corner{
- dir = 4
- },
-/area/ai_monitored/turret_protected/AIsatextAS{
- name = "AI Satellite Atmospherics"
- })
-"cuC" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/AIsatextAS{
- name = "AI Satellite Atmospherics"
- })
-"cuD" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "MiniSat Antechamber";
- dir = 4;
- network = list("MiniSat");
- pixel_x = 0;
- pixel_y = 0;
- start_active = 1
- },
-/obj/machinery/turretid{
- control_area = "AI Satellite Atmospherics";
- enabled = 1;
- icon_state = "control_standby";
- name = "Atmospherics Turret Control";
- pixel_x = -27;
- pixel_y = 0;
- req_access_txt = "65"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/darkblue/corner{
- dir = 1
- },
-/area/ai_monitored/turret_protected/aisat_interior)
-"cuE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cuF" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/turretid{
- control_area = "AI Satellite Service";
- enabled = 1;
- icon_state = "control_standby";
- name = "Service Bay Turret Control";
- pixel_x = 27;
- pixel_y = 0;
- req_access_txt = "65"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
-/turf/open/floor/plasteel/darkblue/corner{
- dir = 4
- },
-/area/ai_monitored/turret_protected/aisat_interior)
-"cuG" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cuH" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_x = -28;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/darkblue/corner{
- dir = 1
- },
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
-"cuI" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
-"cuJ" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
-"cuK" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "MiniSat Service Bay";
- dir = 8;
- network = list("MiniSat");
- pixel_x = 0;
- pixel_y = 0;
- start_active = 1
- },
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/structure/rack,
-/obj/item/weapon/storage/toolbox/electrical{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/toolbox/mechanical,
-/obj/item/device/multitool,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
-"cuL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/AIsatextAS{
- name = "AI Satellite Atmospherics"
- })
-"cuM" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "MiniSat Atmospherics APC";
- pixel_x = -27;
- pixel_y = 0
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/portable_atmospherics/scrubber,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextAS{
- name = "AI Satellite Atmospherics"
- })
-"cuN" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/AIsatextAS{
- name = "AI Satellite Atmospherics"
- })
-"cuO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/ai_slipper{
- uses = 10
- },
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/AIsatextAS{
- name = "AI Satellite Atmospherics"
- })
-"cuP" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cuQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/hatch{
- name = "MiniSat Atmospherics";
- req_one_access_txt = "65"
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cuR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cuS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/ai_slipper{
- uses = 10
- },
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/mob/living/simple_animal/bot/secbot/pingsky,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cuT" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
-"cuU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/hatch{
- name = "MiniSat Service Bay";
- req_one_access_txt = "65"
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cuV" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
-"cuW" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/ai_slipper{
- uses = 10
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
-"cuX" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "MiniSat Service Bay APC";
- pixel_x = 27;
- pixel_y = 0
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/port_gen/pacman,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
-"cuY" = (
-/obj/machinery/porta_turret/ai{
- dir = 4
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/turret_protected/AIsatextAS{
- name = "AI Satellite Atmospherics"
- })
-"cuZ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/mob/living/simple_animal/bot/floorbot,
-/turf/open/floor/plasteel/darkblue/corner,
-/area/ai_monitored/turret_protected/AIsatextAS{
- name = "AI Satellite Atmospherics"
- })
-"cva" = (
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai)
-"cvb" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai)
-"cvc" = (
-/obj/structure/sign/securearea{
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/machinery/porta_turret/ai{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- broadcasting = 1;
- frequency = 1447;
- listening = 0;
- name = "Station Intercom (AI Private)";
- pixel_y = -29
- },
-/turf/open/floor/plasteel/darkblue/corner{
- dir = 8
- },
-/area/ai_monitored/turret_protected/aisat_interior)
-"cvd" = (
-/obj/machinery/porta_turret/ai{
- dir = 4
- },
-/obj/structure/sign/securearea{
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/darkblue/corner,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cve" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/machinery/turretid{
- control_area = "AI Satellite Hallway";
- enabled = 1;
- icon_state = "control_standby";
- name = "Chamber Hallway Turret Control";
- pixel_x = 32;
- pixel_y = -24;
- req_access_txt = "65"
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cvf" = (
-/obj/machinery/status_display,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai)
-"cvg" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/mob/living/simple_animal/bot/cleanbot,
-/turf/open/floor/plasteel/darkblue/corner{
- dir = 8
- },
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
-"cvh" = (
-/obj/machinery/porta_turret/ai{
- dir = 4
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
-"cvi" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
-"cvj" = (
-/turf/closed/wall,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvk" = (
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvl" = (
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cvm" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "MiniSat Maintenance";
- req_access_txt = "65"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvo" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/hatch{
- name = "MiniSat Chamber Hallway";
- req_one_access_txt = "65"
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvp" = (
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"cvq" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "MiniSat Maintenance";
- req_access_txt = "65"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvr" = (
-/obj/machinery/porta_turret/ai{
- dir = 4
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"cvs" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvu" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvv" = (
-/turf/closed/wall,
-/area/ai_monitored/turret_protected/ai)
-"cvw" = (
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvx" = (
-/obj/effect/landmark/tripai,
-/obj/item/device/radio/intercom{
- anyai = 1;
- freerange = 1;
- listening = 0;
- name = "Custom Channel";
- pixel_x = 0;
- pixel_y = 28
- },
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- freerange = 1;
- listening = 1;
- name = "Common Channel";
- pixel_x = -27;
- pixel_y = 5
- },
-/obj/item/device/radio/intercom{
- anyai = 1;
- broadcasting = 0;
- freerange = 1;
- frequency = 1447;
- name = "Private Channel";
- pixel_x = 0;
- pixel_y = -25
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"cvy" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvA" = (
-/obj/effect/landmark/tripai,
-/obj/item/device/radio/intercom{
- anyai = 1;
- freerange = 1;
- listening = 0;
- name = "Custom Channel";
- pixel_x = 0;
- pixel_y = 28
- },
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- freerange = 1;
- listening = 1;
- name = "Common Channel";
- pixel_x = 27;
- pixel_y = 5
- },
-/obj/item/device/radio/intercom{
- anyai = 1;
- broadcasting = 0;
- freerange = 1;
- frequency = 1447;
- name = "Private Channel";
- pixel_x = 0;
- pixel_y = -25
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"cvB" = (
-/obj/structure/rack,
-/obj/item/weapon/crowbar/red,
-/obj/item/weapon/wrench,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvD" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvE" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvF" = (
-/obj/structure/lattice,
-/obj/machinery/camera{
- c_tag = "MiniSat External NorthWest";
- dir = 8;
- network = list("MiniSat");
- pixel_x = 0;
- pixel_y = 0;
- start_active = 1
- },
-/turf/open/space,
-/area/space)
-"cvG" = (
-/obj/machinery/porta_turret/ai{
- dir = 4;
- installation = /obj/item/weapon/gun/energy/e_gun
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvH" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvJ" = (
-/obj/machinery/porta_turret/ai{
- dir = 4;
- installation = /obj/item/weapon/gun/energy/e_gun
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvK" = (
-/obj/structure/lattice,
-/obj/machinery/camera{
- c_tag = "MiniSat External NorthEast";
- dir = 4;
- network = list("MiniSat");
- pixel_x = 0;
- pixel_y = 0;
- start_active = 1
- },
-/turf/open/space,
-/area/space)
-"cvL" = (
-/obj/structure/sign/securearea{
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvM" = (
-/obj/machinery/camera/motion{
- c_tag = "MiniSat Core Hallway";
- dir = 4;
- network = list("MiniSat")
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvN" = (
-/obj/structure/sign/securearea{
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cvP" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "MiniSat Maintenance";
- req_access_txt = "65"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvR" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvU" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "MiniSat Maintenance";
- req_access_txt = "65"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvV" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvX" = (
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvY" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cvZ" = (
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cwa" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- dir = 4;
- name = "MiniSat Chamber Hallway APC";
- pixel_x = 27;
- pixel_y = 0
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cwb" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cwc" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cwd" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/item/device/radio/intercom{
- broadcasting = 1;
- frequency = 1447;
- listening = 0;
- name = "Station Intercom (AI Private)";
- pixel_x = -28;
- pixel_y = -29
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cwe" = (
-/obj/structure/sign/securearea,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai)
-"cwf" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/hatch{
- name = "MiniSat Chamber Observation";
- req_one_access_txt = "65"
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cwg" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- pixel_y = 23
- },
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cwh" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/table/reinforced,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen{
- pixel_x = 4;
- pixel_y = 4
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cwi" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cwj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cwk" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cwl" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cwm" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/folder/white,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cwn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cwo" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cwp" = (
-/obj/structure/chair/office/dark,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cwq" = (
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cwr" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/ai)
-"cws" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/ai)
-"cwt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_command{
- name = "AI Core";
- req_access_txt = "65"
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cwu" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/ai_slipper{
- uses = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cwv" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/machinery/status_display{
- pixel_x = -32
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"cww" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cwx" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cwy" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table_frame,
-/obj/item/weapon/wirerod,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cwz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cwA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cwB" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/obj/machinery/ai_status_display{
- pixel_x = 32
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"cwC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cwD" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/turretid{
- name = "AI Chamber turret control";
- pixel_x = 5;
- pixel_y = -24
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"cwE" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 2;
- name = "AI Chamber APC";
- pixel_y = -24
- },
-/obj/machinery/flasher{
- id = "AI";
- pixel_x = -11;
- pixel_y = -24
- },
-/obj/machinery/camera/motion{
- c_tag = "MiniSat AI Chamber North";
- dir = 1;
- network = list("MiniSat")
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"cwF" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cwG" = (
-/obj/structure/table,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = 2;
- pixel_y = 3
- },
-/obj/item/weapon/crowbar,
-/obj/item/weapon/storage/firstaid/fire,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cwH" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"cwI" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
-"cwJ" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cwK" = (
-/obj/machinery/computer/atmos_alert,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cwL" = (
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cwM" = (
-/obj/structure/rack,
-/obj/item/weapon/storage/box/teargas{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/box/handcuffs,
-/obj/item/weapon/storage/box/flashbangs{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/security/armory)
-"cwN" = (
-/obj/machinery/computer/security,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cwO" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
- pixel_y = -30
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cwP" = (
-/obj/machinery/computer/crew,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cwQ" = (
-/obj/machinery/button/flasher{
- id = "cockpit_flasher";
- pixel_x = 6;
- pixel_y = -24
- },
-/obj/machinery/light,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cwR" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_x = 0;
- pixel_y = -29
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cwS" = (
-/obj/machinery/computer/communications,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cwT" = (
-/obj/machinery/camera{
- c_tag = "Arrivals Escape Pod 2";
- dir = 8
- },
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"cwU" = (
-/obj/structure/shuttle/engine/propulsion/burst{
- dir = 4;
- icon_state = "propulsion"
- },
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/pod_1)
-"cwV" = (
-/obj/docking_port/stationary/random{
- dir = 8;
- id = "pod_lavaland1";
- name = "lavaland"
- },
-/turf/open/space,
-/area/space)
-"cwW" = (
-/obj/machinery/status_display,
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
-"cwX" = (
-/obj/machinery/door/airlock/glass{
- name = "Emergency Shuttle Cockpit";
- req_access_txt = "19"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cwY" = (
-/obj/structure/chair,
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"cwZ" = (
-/obj/machinery/flasher{
- id = "cockpit_flasher";
- pixel_x = 6;
- pixel_y = 24
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cxa" = (
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cxb" = (
-/obj/structure/table,
-/obj/item/weapon/storage/firstaid/fire,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = 2;
- pixel_y = 3
- },
-/obj/item/weapon/crowbar,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cxc" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cxd" = (
-/obj/machinery/flasher{
- id = "shuttle_flasher";
- pixel_x = -24;
- pixel_y = 6
- },
-/obj/machinery/button/flasher{
- id = "shuttle_flasher";
- pixel_x = -24;
- pixel_y = -6
- },
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"cxe" = (
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"cxf" = (
-/obj/machinery/door/airlock/glass{
- name = "Emergency Shuttle Brig";
- req_access_txt = "2"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cxg" = (
-/obj/machinery/door/airlock/titanium{
- name = "Emergency Shuttle Airlock";
- req_access_txt = "2"
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"cxh" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"cxi" = (
-/obj/structure/chair,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cxj" = (
-/obj/structure/table,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cxk" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"cxl" = (
-/obj/machinery/computer/shuttle/pod{
- pixel_x = 0;
- pixel_y = -32;
- possible_destinations = "pod_lavaland1";
- shuttleId = "pod1"
- },
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/status_display{
- density = 0;
- layer = 3;
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_1)
-"cxm" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/shuttle/escape)
-"cxn" = (
-/obj/structure/lattice,
-/obj/effect/landmark/carpspawn,
-/turf/open/space,
-/area/space)
-"cxo" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -5;
- pixel_y = 30
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cxp" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cxq" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cxr" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cxs" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cxt" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "propulsion_l"
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/transport)
-"cxu" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/transport)
-"cxw" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/transport)
-"cxx" = (
-/obj/item/weapon/storage/pod{
- pixel_x = 6;
- pixel_y = -28
- },
-/obj/item/device/radio/intercom{
- pixel_x = 0;
- pixel_y = 25
- },
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/light/small,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_1)
-"cxy" = (
-/obj/structure/shuttle/engine/heater{
- icon_state = "heater";
- dir = 8
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/shuttle/transport)
-"cxA" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"cxB" = (
-/obj/structure/chair,
-/turf/open/floor/pod/dark,
-/area/shuttle/transport)
-"cxC" = (
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
-"cxD" = (
-/obj/structure/shuttle/engine/heater{
- icon_state = "heater";
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/transport)
-"cxE" = (
-/obj/machinery/door/airlock/titanium,
-/obj/docking_port/mobile{
- dir = 8;
- dwidth = 2;
- height = 13;
- id = "ferry";
- name = "ferry shuttle";
- port_angle = 0;
- preferred_direction = 4;
- roundstart_move = "ferry_away";
- width = 5
- },
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 2;
- height = 13;
- id = "ferry_home";
- name = "port bay 2";
- turf_type = /turf/open/space;
- width = 5
- },
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
-"cxF" = (
-/obj/machinery/door/airlock/titanium{
- name = "Escape Pod Airlock"
- },
-/obj/docking_port/mobile/pod{
- dir = 8;
- id = "pod1";
- name = "escape pod 1";
- port_angle = 180
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_1)
-"cxG" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- name = "Escape Pod Three";
- req_access_txt = "0"
- },
-/turf/open/floor/plating,
-/area/security/main)
-"cxI" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/pod/dark,
-/area/shuttle/transport)
-"cxJ" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- name = "Labor Camp Shuttle Airlock";
- req_access_txt = "2"
- },
-/turf/open/floor/plating,
-/area/security/processing)
-"cxK" = (
-/obj/machinery/door/airlock/titanium{
- name = "Emergency Shuttle Airlock"
- },
-/turf/open/floor/plating,
-/area/shuttle/escape)
-"cxL" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
- pixel_y = -30
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cxM" = (
-/obj/machinery/door/airlock/titanium{
- name = "Emergency Shuttle Cargo"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cxN" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 1;
- name = "Solar Maintenance";
- req_access = null;
- req_access_txt = "10; 13"
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"cxO" = (
-/obj/machinery/door/airlock/glass{
- name = "Emergency Shuttle Infirmary"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cxP" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- name = "Labor Camp Shuttle Airlock"
- },
-/turf/open/floor/plating,
-/area/security/processing)
-"cxQ" = (
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/escape)
-"cxR" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
- },
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/escape)
-"cxS" = (
-/obj/machinery/sleeper{
- icon_state = "sleeper-open";
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cxT" = (
-/obj/structure/table,
-/obj/item/weapon/storage/firstaid/fire,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = 2;
- pixel_y = 3
- },
-/obj/item/weapon/crowbar,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cxU" = (
-/obj/structure/closet,
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/escape)
-"cxV" = (
-/obj/structure/closet/crate,
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/escape)
-"cxW" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 2;
- name = "External Access";
- req_access = null;
- req_access_txt = "13"
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"cxX" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/shuttle/engine/heater,
-/turf/open/floor/plating/airless,
-/area/shuttle/escape)
-"cxY" = (
-/obj/machinery/camera{
- c_tag = "Arrivals Escape Pod 1";
- dir = 8
- },
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"cxZ" = (
-/obj/structure/shuttle/engine/propulsion,
-/turf/open/floor/plating/airless,
-/area/shuttle/escape)
-"cya" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- req_access_txt = "13"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"cyb" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 1;
- name = "Escape Pod One"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"cyc" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"cyd" = (
-/obj/machinery/door/airlock/titanium,
-/obj/docking_port/mobile{
- dheight = 0;
- dir = 2;
- dwidth = 11;
- height = 22;
- id = "whiteship";
- launch_status = 0;
- name = "NT Medical Ship";
- port_angle = -90;
- preferred_direction = 4;
- roundstart_move = "whiteship_away";
- timid = null;
- width = 35
- },
-/obj/docking_port/stationary{
- dir = 2;
- dwidth = 11;
- height = 22;
- id = "whiteship_home";
- name = "SS13 Arrival Docking";
- turf_type = /turf/open/space;
- width = 35
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cye" = (
-/obj/machinery/door/airlock/titanium,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cyf" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "propulsion_l"
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/abandoned)
-"cyg" = (
-/obj/machinery/door/airlock/command{
- cyclelinkeddir = 1;
- name = "Command Tool Storage";
- req_access = null;
- req_access_txt = "19"
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/storage/eva)
-"cyh" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- name = "Security Escape Airlock";
- req_access_txt = "2"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"cyi" = (
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cyj" = (
-/obj/structure/table,
-/obj/item/weapon/screwdriver,
-/obj/structure/light_construct{
- dir = 1
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cyk" = (
-/obj/structure/table,
-/obj/item/device/radio/off,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cyl" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- id_tag = null;
- name = "Port Docking Bay 2";
- req_access_txt = "0"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"cym" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "propulsion"
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/abandoned)
-"cyn" = (
-/turf/open/floor/plating,
-/turf/closed/wall/mineral/titanium/interior,
-/area/shuttle/abandoned)
-"cyo" = (
-/obj/structure/shuttle/engine/heater{
- icon_state = "heater";
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/abandoned)
-"cyp" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- name = "Escape Airlock"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"cyq" = (
-/obj/machinery/computer/pod{
- id = "oldship_gun"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cyr" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- name = "Cargo Escape Airlock"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"cys" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/supply)
-"cyt" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 1;
- name = "Port Docking Bay 4";
- req_access_txt = "0"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"cyu" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 1;
- name = "Port Docking Bay 3";
- req_access_txt = "0"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"cyv" = (
-/turf/open/floor/plating,
-/area/shuttle/abandoned)
-"cyw" = (
-/turf/open/floor/mineral/titanium,
-/turf/closed/wall/mineral/titanium/interior,
-/area/shuttle/abandoned)
-"cyx" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/space/hardsuit/medical,
-/obj/item/clothing/mask/breath,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cyy" = (
-/obj/machinery/mass_driver{
- dir = 4;
- icon_state = "mass_driver";
- id = "oldship_gun"
- },
-/turf/open/floor/plating,
-/area/shuttle/abandoned)
-"cyz" = (
-/obj/machinery/door/airlock/glass,
-/turf/open/floor/plating,
-/area/shuttle/abandoned)
-"cyA" = (
-/obj/machinery/door/poddoor{
- id = "oldship_gun";
- name = "pod bay door"
- },
-/turf/open/floor/plating,
-/area/shuttle/abandoned)
-"cyB" = (
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/supply)
-"cyC" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- req_access_txt = "13"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cyD" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- name = "Supply Dock Airlock";
- req_access_txt = "31"
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"cyE" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- name = "External Access";
- req_access = null;
- req_access_txt = "13"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cyF" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "propulsion_r"
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/abandoned)
-"cyG" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- name = "Atmospherics External Airlock";
- req_access_txt = "24"
- },
-/turf/open/floor/plating,
-/area/atmos)
-"cyH" = (
-/obj/machinery/door/airlock/titanium,
-/turf/open/floor/plating,
-/area/shuttle/abandoned)
-"cyI" = (
-/obj/item/weapon/stock_parts/cell{
- charge = 100;
- maxcharge = 15000
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cyJ" = (
-/obj/structure/rack,
-/obj/item/weapon/tank/internals/emergency_oxygen,
-/obj/item/weapon/tank/internals/emergency_oxygen,
-/obj/item/weapon/tank/internals/emergency_oxygen,
-/obj/item/weapon/tank/internals/emergency_oxygen,
-/obj/item/weapon/storage/toolbox/mechanical,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cyK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- name = "Solar Maintenance";
- req_access = null;
- req_access_txt = "10; 13"
- },
-/turf/open/floor/plating,
-/area/maintenance/portsolar)
-"cyL" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cyM" = (
-/obj/machinery/door/airlock/engineering{
- cyclelinkeddir = 1;
- name = "Engine Room";
- req_access_txt = "10"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cyN" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad2"
- },
-/obj/machinery/door/poddoor{
- id = "QMLoaddoor2";
- name = "supply dock loading door"
- },
-/turf/open/floor/plating,
-/area/shuttle/supply)
-"cyO" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cyP" = (
-/obj/item/weapon/shard{
- icon_state = "medium"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cyQ" = (
-/obj/machinery/door/airlock/titanium{
- name = "Supply Shuttle Airlock";
- req_access_txt = "31"
- },
-/turf/open/floor/plating,
-/area/shuttle/supply)
-"cyR" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/abandoned)
-"cyS" = (
-/obj/machinery/button/door{
- dir = 2;
- id = "QMLoaddoor2";
- name = "Loading Doors";
- pixel_x = 24;
- pixel_y = 8
- },
-/obj/machinery/button/door{
- id = "QMLoaddoor";
- name = "Loading Doors";
- pixel_x = 24;
- pixel_y = -8
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/supply)
-"cyT" = (
-/obj/machinery/door/airlock/titanium{
- name = "Supply Shuttle Airlock";
- req_access_txt = "31"
- },
-/obj/docking_port/mobile/supply{
- dwidth = 5;
- width = 12
- },
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 5;
- height = 7;
- id = "supply_home";
- name = "Cargo Bay";
- width = 12
- },
-/turf/open/floor/plating,
-/area/shuttle/supply)
-"cyU" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 1;
- name = "Solar Maintenance";
- req_access = null;
- req_access_txt = "10; 13"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
-"cyV" = (
-/obj/machinery/door/window,
-/turf/open/floor/mineral/titanium/purple,
-/area/shuttle/abandoned)
-"cyW" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/purple,
-/area/shuttle/abandoned)
-"cyX" = (
-/obj/structure/table,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cyY" = (
-/obj/structure/table,
-/obj/item/weapon/gun/energy/laser/retro,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cyZ" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad"
- },
-/obj/machinery/door/poddoor{
- id = "QMLoaddoor";
- name = "supply dock loading door"
- },
-/turf/open/floor/plating,
-/area/shuttle/supply)
-"cza" = (
-/obj/machinery/door/airlock/glass,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"czb" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/decal/remains/human,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"czc" = (
-/obj/machinery/computer/shuttle/white_ship,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"czd" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cze" = (
-/obj/structure/table,
-/obj/item/weapon/tank/internals/oxygen,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"czf" = (
-/turf/open/floor/mineral/titanium/blue,
-/turf/closed/wall/mineral/titanium/interior,
-/area/shuttle/supply)
-"czg" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- name = "Escape Pod Four";
- req_access = null;
- req_access_txt = "0";
- shuttledocked = 1
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"czh" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 1;
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
- },
-/obj/structure/fans/tiny,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"czk" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- name = "MiniSat External Access";
- req_access = null;
- req_access_txt = "65;13"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat_interior)
-"czl" = (
-/obj/machinery/door/window/northright,
-/obj/effect/decal/remains/human,
-/turf/open/floor/mineral/titanium/purple,
-/area/shuttle/abandoned)
-"czm" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/purple,
-/area/shuttle/abandoned)
-"czn" = (
-/obj/structure/frame/computer{
- anchored = 1
- },
-/obj/structure/light_construct,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"czp" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/shuttle/engine/heater,
-/turf/open/floor/plating/airless,
-/area/shuttle/supply)
-"czr" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"czs" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "burst_l"
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/supply)
-"czt" = (
-/obj/structure/shuttle/engine/propulsion,
-/turf/open/floor/plating/airless,
-/area/shuttle/supply)
-"czu" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "burst_r"
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/supply)
-"czv" = (
-/turf/open/space,
-/obj/machinery/porta_turret/syndicate{
- dir = 6
- },
-/turf/closed/wall/mineral/plastitanium{
- dir = 4;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
-"czw" = (
-/obj/item/device/multitool,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"czx" = (
-/obj/structure/chair,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"czy" = (
-/obj/structure/frame/computer{
- anchored = 1
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"czz" = (
-/turf/open/space,
-/obj/machinery/porta_turret/syndicate{
- dir = 10
- },
-/turf/closed/wall/mineral/plastitanium{
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
-"czA" = (
-/obj/item/weapon/scalpel,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"czB" = (
-/obj/structure/table,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = 6;
- pixel_y = -5
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"czC" = (
-/obj/machinery/sleeper{
- icon_state = "sleeper-open";
- dir = 8
- },
-/obj/effect/decal/remains/human,
-/obj/structure/light_construct,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"czE" = (
-/turf/open/floor/engine,
-/area/engine/engineering)
-"czF" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/machinery/meter,
-/turf/open/floor/plasteel/black,
-/area/engine/engineering)
-"czG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"czH" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"czI" = (
-/obj/item/weapon/wrench,
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/space/nearstation)
-"czJ" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/maintenance/incinerator)
-"czK" = (
-/turf/closed/wall,
-/area/security/vacantoffice)
-"czL" = (
-/obj/machinery/computer/shuttle/pod{
- pixel_y = -32;
- possible_destinations = "pod_lavaland4";
- shuttleId = "pod4"
- },
-/obj/structure/chair{
- dir = 4
- },
-/obj/machinery/status_display{
- density = 0;
- layer = 3;
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_4)
-"czM" = (
-/obj/item/device/radio/intercom{
- pixel_y = 25
- },
-/obj/item/weapon/storage/pod{
- pixel_x = 6;
- pixel_y = -32
- },
-/obj/structure/chair{
- dir = 4
- },
-/obj/machinery/light/small,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_4)
-"czN" = (
-/obj/docking_port/stationary/random{
- dir = 4;
- id = "pod_lavaland4";
- name = "lavaland"
- },
-/turf/open/space,
-/area/space)
-"czO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"czP" = (
-/obj/structure/chair/stool/bar,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"czQ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"czR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"czS" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/asmaint2)
-"czT" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"czU" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"czV" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"czW" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"czX" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"czY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"czZ" = (
-/obj/structure/chair,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cAa" = (
-/obj/structure/chair,
-/obj/item/weapon/storage/fancy/cigarettes,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cAb" = (
-/obj/structure/closet,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cAc" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/aft)
-"cAd" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cAe" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cAf" = (
-/obj/structure/disposaloutlet,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/space)
-"cAg" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"cAh" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cAi" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cAj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/closed/wall/r_wall,
-/area/engine/engine_smes)
-"cAl" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/structure/cable/yellow{
- icon_state = "1-4";
- d1 = 1;
- d2 = 4
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cAm" = (
-/obj/machinery/power/supermatter_shard/crystal,
-/turf/open/floor/engine,
-/area/engine/supermatter)
-"cAo" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cAp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- name = "Cooling Loop to Gas";
- on = 1
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cAq" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 4;
- initialize_directions = 11
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cAr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- name = "Gas to Mix";
- on = 0
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cAs" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 8
- },
-/obj/machinery/meter,
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cAt" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cAu" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/emitter{
- anchored = 1;
- dir = 4;
- icon_state = "emitter";
- state = 2
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cAy" = (
-/obj/structure/closet/secure_closet/freezer/kitchen/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cAz" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"cAA" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cAB" = (
-/obj/structure/table,
-/obj/machinery/microwave,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cAC" = (
-/obj/structure/sink/kitchen{
- dir = 8;
- pixel_x = 11
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cAD" = (
-/obj/structure/table,
-/obj/item/weapon/kitchen/knife,
-/obj/item/weapon/storage/box/donkpockets,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cAE" = (
-/obj/structure/table/glass,
-/obj/item/weapon/reagent_containers/food/condiment/saltshaker{
- pixel_y = 2
- },
-/obj/item/weapon/reagent_containers/food/condiment/peppermill{
- pixel_x = 2
- },
-/obj/item/weapon/reagent_containers/food/snacks/mint{
- pixel_y = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cAF" = (
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"cAG" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/power/apc{
- dir = 2;
- name = "Head of Personnel APC";
- pixel_y = -24
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads)
-"cAH" = (
-/obj/machinery/processor,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cAI" = (
-/obj/machinery/conveyor_switch/oneway{
- convdir = -1;
- id = "garbage";
- name = "disposal coveyor"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"cAJ" = (
-/obj/structure/closet,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"cAK" = (
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cAL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/mob/living/simple_animal/hostile/lizard{
- name = "Wags-His-Tail";
- real_name = "Wags-His-Tail"
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"cAM" = (
-/obj/structure/table/wood,
-/obj/structure/disposalpipe/segment,
-/obj/item/toy/cards/deck/cas,
-/obj/item/toy/cards/deck/cas/black{
- pixel_x = -2;
- pixel_y = 6
- },
-/turf/open/floor/wood,
-/area/library)
-"cAN" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Security Maintenance";
- req_access_txt = "1"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/security/main)
-"cAP" = (
-/obj/structure/sign/fire,
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cAQ" = (
-/obj/structure/chair,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cAR" = (
-/obj/machinery/door/window{
- dir = 1;
- name = "AI Core Door";
- req_access_txt = "16"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"cAS" = (
-/obj/effect/landmark/start/ai,
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- freerange = 1;
- listening = 1;
- name = "Common Channel";
- pixel_x = -27;
- pixel_y = -9
- },
-/obj/item/device/radio/intercom{
- anyai = 1;
- freerange = 1;
- listening = 0;
- name = "Custom Channel";
- pixel_x = 0;
- pixel_y = -31
- },
-/obj/item/device/radio/intercom{
- anyai = 1;
- broadcasting = 0;
- freerange = 1;
- frequency = 1447;
- name = "Private Channel";
- pixel_x = 27;
- pixel_y = -9
- },
-/obj/machinery/newscaster/security_unit{
- pixel_x = -28;
- pixel_y = -28
- },
-/obj/machinery/requests_console{
- department = "AI";
- departmentType = 5;
- pixel_x = 28;
- pixel_y = -28
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"cAT" = (
-/obj/machinery/ai_slipper{
- uses = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cAU" = (
-/obj/structure/lattice,
-/obj/machinery/camera{
- c_tag = "MiniSat External SouthWest";
- dir = 8;
- network = list("MiniSat");
- pixel_x = 0;
- pixel_y = 0;
- start_active = 1
- },
-/turf/open/space,
-/area/space)
-"cAV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/showcase{
- density = 0;
- desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
- dir = 8;
- icon = 'icons/mob/robots.dmi';
- icon_state = "robot_old";
- name = "Cyborg Statue";
- pixel_x = 9;
- pixel_y = 2
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cAW" = (
-/obj/structure/showcase{
- density = 0;
- desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
- dir = 4;
- icon = 'icons/mob/robots.dmi';
- icon_state = "robot_old";
- name = "Cyborg Statue";
- pixel_x = -9;
- pixel_y = 2
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cAX" = (
-/obj/structure/lattice,
-/obj/machinery/camera{
- c_tag = "MiniSat External SouthEast";
- dir = 4;
- network = list("MiniSat");
- pixel_x = 0;
- pixel_y = 0;
- start_active = 1
- },
-/turf/open/space,
-/area/space)
-"cAY" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/closed/wall,
-/area/ai_monitored/turret_protected/ai)
-"cAZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cBa" = (
-/obj/machinery/power/smes{
- charge = 5e+006
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"cBb" = (
-/obj/machinery/camera/motion{
- c_tag = "MiniSat AI Chamber South";
- dir = 2;
- network = list("MiniSat")
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"cBc" = (
-/obj/machinery/power/terminal{
- icon_state = "term";
- dir = 1
- },
-/obj/machinery/ai_slipper{
- uses = 10
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"cBd" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cBe" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cBf" = (
-/obj/machinery/camera{
- c_tag = "MiniSat External South";
- dir = 2;
- network = list("MiniSat");
- pixel_x = 0;
- pixel_y = 0;
- start_active = 1
- },
-/turf/open/space,
-/area/space)
-"cBg" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/hydroponics)
-"cBh" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/barber,
-/area/crew_quarters/locker)
-"cBi" = (
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"cBj" = (
-/obj/structure/table,
-/obj/item/weapon/folder/blue,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai_upload)
-"cBk" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"cBl" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cBm" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"cBn" = (
-/obj/machinery/camera{
- c_tag = "Locker Room Toilets";
- dir = 8;
- network = list("SS13")
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"cBo" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"cBp" = (
-/obj/effect/landmark/event_spawn,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"cBq" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"cBr" = (
-/obj/effect/landmark/event_spawn,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"cBt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/white,
-/area/toxins/explab)
-"cBu" = (
-/obj/machinery/ai_status_display{
- pixel_y = 32
- },
-/obj/effect/landmark/event_spawn,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
-"cBv" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/security/checkpoint/supply)
-"cBw" = (
-/obj/machinery/door/firedoor,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"cBx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"cBy" = (
-/obj/machinery/door/airlock{
- name = "Custodial Closet";
- req_access_txt = "26"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/janitor)
-"cBz" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"cBA" = (
-/obj/machinery/button/massdriver{
- dir = 2;
- id = "toxinsdriver";
- pixel_y = 24
- },
-/obj/effect/landmark/event_spawn,
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/toxins/mixing)
-"cBB" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"cBC" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/storage/tech)
-"cBD" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cBE" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/engine/vacuum,
-/area/toxins/mixing)
-"cBF" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 8
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cBG" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"cBH" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cBI" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/security/checkpoint/engineering)
-"cBJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 9
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cBK" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -35
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"cBL" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cBM" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/folder/yellow,
-/obj/item/weapon/paper/monitorkey,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/engine/chiefs_office)
-"cBN" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cBO" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cBP" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/engine/air,
-/area/atmos)
-"cBR" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cBS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cBT" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cBU" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cBV" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security{
- name = "Security Office";
- req_access = null;
- req_access_txt = "1"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/security/main)
-"cBW" = (
-/obj/docking_port/stationary{
- dheight = 9;
- dir = 2;
- dwidth = 5;
- height = 24;
- id = "syndicate_southmaint";
- name = "south maintenance airlock";
- turf_type = /turf/open/space;
- width = 18
- },
-/turf/open/space,
-/area/space)
-"cBX" = (
-/obj/docking_port/stationary{
- dheight = 9;
- dir = 2;
- dwidth = 5;
- height = 24;
- id = "syndicate_se";
- name = "southeast of station";
- turf_type = /turf/open/space;
- width = 18
- },
-/turf/open/space,
-/area/space)
-"cBY" = (
-/obj/docking_port/stationary{
- dheight = 9;
- dir = 2;
- dwidth = 5;
- height = 24;
- id = "syndicate_s";
- name = "south of station";
- turf_type = /turf/open/space;
- width = 18
- },
-/turf/open/space,
-/area/space)
-"cBZ" = (
-/obj/structure/table/wood,
-/obj/item/clothing/under/burial,
-/obj/item/clothing/under/burial,
-/obj/item/clothing/under/burial,
-/obj/item/clothing/under/burial,
-/obj/item/clothing/under/burial,
-/obj/item/clothing/under/burial,
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"cCb" = (
-/obj/structure/table,
-/obj/item/stack/cable_coil{
- amount = 5
- },
-/obj/item/device/flashlight,
-/turf/open/floor/plating,
-/area/construction)
-"cCc" = (
-/obj/structure/rack{
- dir = 1
- },
-/obj/item/clothing/suit/hazardvest,
-/turf/open/floor/plating,
-/area/construction)
-"cCd" = (
-/turf/open/floor/plasteel,
-/area/construction)
-"cCe" = (
-/obj/structure/closet/crate,
-/turf/open/floor/plating,
-/area/construction)
-"cCf" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/construction)
-"cCg" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cCh" = (
-/obj/item/weapon/bedsheet/red,
-/mob/living/simple_animal/bot/secbot/beepsky{
- name = "Officer Beepsky"
- },
-/turf/open/floor/plating,
-/area/security/processing)
-"cCi" = (
-/turf/closed/wall,
-/area/security/vacantoffice2)
-"cCj" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/security/detectives_office)
-"cCk" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/security/detectives_office)
-"cCl" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"cCm" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"cCn" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "Detective's Office APC";
- pixel_x = 24;
- pixel_y = 0
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/security/detectives_office)
-"cCo" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"cCp" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/weapon/reagent_containers/blood/empty,
-/obj/item/weapon/reagent_containers/blood/empty,
-/obj/item/weapon/reagent_containers/blood/AMinus,
-/obj/item/weapon/reagent_containers/blood/BMinus{
- pixel_x = -4;
- pixel_y = 4
- },
-/obj/item/weapon/reagent_containers/blood/BPlus{
- pixel_x = 1;
- pixel_y = 2
- },
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/obj/item/weapon/reagent_containers/blood/OPlus{
- pixel_x = -2;
- pixel_y = -1
- },
-/obj/item/weapon/reagent_containers/blood/random,
-/obj/item/weapon/reagent_containers/blood/random,
-/obj/item/weapon/reagent_containers/blood/APlus,
-/obj/item/weapon/reagent_containers/blood/random,
-/turf/open/floor/plasteel,
-/area/medical/sleeper)
-"cCq" = (
-/obj/machinery/deepfryer,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"cCs" = (
-/obj/structure/mining_shuttle_beacon{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"cCt" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/docking_port/stationary/public_mining_dock{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"cCu" = (
-/obj/machinery/door/airlock/external,
-/turf/open/floor/pod/dark,
-/area/shuttle/transport)
-"cCw" = (
-/obj/machinery/door/airlock/titanium,
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
-"cCx" = (
-/obj/machinery/computer/shuttle/ferry/request,
-/turf/open/floor/pod/dark,
-/area/shuttle/transport)
-"cCy" = (
-/obj/structure/shuttle/engine/heater{
- icon_state = "heater";
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/transport)
-"cCz" = (
-/obj/machinery/door/airlock/external,
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
-"cCB" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 10;
- pixel_x = 0;
- initialize_directions = 10
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cCC" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cCD" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- name = "Mix to Engine";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cCE" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cCF" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/atmos)
-"cCG" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 10
- },
-/turf/open/space,
-/area/space/nearstation)
-"cCH" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/turf/open/space,
-/area/space/nearstation)
-"cCI" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/turf/open/space,
-/area/space/nearstation)
-"cCJ" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/turf/open/space,
-/area/space/nearstation)
-"cCP" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 5
- },
-/turf/open/space,
-/area/space/nearstation)
-"cCQ" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/open/space,
-/area/space/nearstation)
-"cCS" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/obj/structure/lattice,
-/turf/open/space,
-/area/space/nearstation)
-"cCT" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/closet/firecloset,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cCW" = (
-/obj/machinery/portable_atmospherics/canister/freon,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cCY" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/landmark/start/station_engineer,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cDe" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/closet/radiation,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cDg" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cDh" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/table/reinforced,
-/obj/item/weapon/storage/toolbox/mechanical,
-/obj/item/device/flashlight,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/item/weapon/pipe_dispenser,
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cDi" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/item/clothing/suit/radiation,
-/obj/item/clothing/head/radiation,
-/obj/item/clothing/glasses/meson,
-/obj/item/clothing/glasses/meson,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cDj" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cDk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- icon_state = "intact";
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/highpressure/fulltile,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cDl" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/vending/tool,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cDm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/vending/engivend,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cDo" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cDp" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cDr" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cDs" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cDt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cDv" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/components/trinary/filter/flipped{
- icon_state = "filter_off_f";
- dir = 4
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cDx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Atmos to Loop";
- on = 0
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cDy" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cDz" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cDB" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/landmark/start/station_engineer,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cDC" = (
-/obj/item/weapon/wrench,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 6
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel/black,
-/area/engine/engineering)
-"cDD" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- name = "scrubbers pipe";
- icon_state = "manifold";
- dir = 4
- },
-/obj/machinery/meter,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel/black,
-/area/engine/engineering)
-"cDE" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "External Gas to Loop"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel/black,
-/area/engine/engineering)
-"cDF" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "External Gas to Loop"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel/black,
-/area/engine/engineering)
-"cDG" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cDH" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/clothing/mask/gas{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas{
- pixel_x = -3;
- pixel_y = -3
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cDI" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cDJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cDK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cDL" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"cDN" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/closed/wall,
-/area/engine/engineering)
-"cDS" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/open/space,
-/area/space)
-"cDY" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 9
- },
-/turf/open/space,
-/area/space/nearstation)
-"cDZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/closet/radiation,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cEa" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel/black,
-/area/engine/engineering)
-"cEd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Engineering Supermatter Port";
- dir = 4;
- network = list("SS13","Engine")
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cEe" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cEf" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cEg" = (
-/obj/machinery/status_display,
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cEh" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cEi" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Engineering Supermatter Starboard";
- dir = 8;
- network = list("SS13","Engine");
- pixel_x = 0;
- pixel_y = 0
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cEk" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/open/floor/plasteel/black,
-/area/engine/engineering)
-"cEl" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 6
- },
-/obj/structure/lattice,
-/turf/open/space,
-/area/space)
-"cEr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cEs" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Gas to Cooling Loop";
- on = 1
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cEt" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "engsm";
- name = "Radiation Chamber Shutters"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/engine/supermatter)
-"cEu" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
-/obj/structure/cable/yellow{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/camera{
- c_tag = "Supermatter Chamber";
- dir = 2;
- network = list("Engine");
- pixel_x = 23
- },
-/turf/open/floor/engine,
-/area/engine/supermatter)
-"cEv" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/highpressure/fulltile,
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/engine/supermatter)
-"cEw" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/engine,
-/area/engine/supermatter)
-"cEx" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/engine,
-/area/engine/supermatter)
-"cEy" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/highpressure/fulltile,
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- icon_state = "manifold";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/supermatter)
-"cEz" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
-/obj/structure/cable/yellow{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/open/floor/engine,
-/area/engine/supermatter)
-"cEA" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "engsm";
- name = "Radiation Chamber Shutters"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/engine/supermatter)
-"cEB" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 8
- },
-/obj/machinery/meter,
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cEC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Mix to Gas";
- on = 0
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cED" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cEE" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 5
- },
-/turf/open/space,
-/area/space)
-"cEK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"cEL" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/airalarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cEM" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "engsm";
- name = "Radiation Chamber Shutters"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/item/weapon/tank/internals/plasma,
-/turf/open/floor/plating,
-/area/engine/supermatter)
-"cET" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "engsm";
- name = "Radiation Chamber Shutters"
- },
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/engine/supermatter)
-"cEU" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cEW" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- icon_state = "connector_map";
- dir = 8
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/open/floor/plasteel/black,
-/area/engine/engineering)
-"cFb" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cFc" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4";
- d1 = 1;
- d2 = 4
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 2;
- icon_state = "pump_map";
- name = "Cooling Loop Bypass"
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cFe" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/highpressure/fulltile,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/engine/supermatter)
-"cFh" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/highpressure/fulltile,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/engine/supermatter)
-"cFj" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "engsm";
- name = "Radiation Chamber Shutters"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/engine/supermatter)
-"cFk" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "Mix Bypass"
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cFm" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
-/obj/structure/lattice,
-/turf/open/space,
-/area/space)
-"cFn" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 6
- },
-/turf/open/space,
-/area/space)
-"cFo" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 10
- },
-/obj/structure/lattice,
-/turf/open/space,
-/area/space)
-"cFu" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/machinery/meter,
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cFw" = (
-/obj/structure/sign/electricshock,
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cFy" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cFz" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/engine/engineering)
-"cFA" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/turf/open/floor/plasteel/black,
-/area/engine/engineering)
-"cFI" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cFJ" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cFK" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cFL" = (
-/obj/machinery/atmospherics/components/trinary/filter{
- dir = 4;
- filter_type = "co2";
- on = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cFM" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cFN" = (
-/obj/machinery/atmospherics/components/trinary/filter{
- dir = 4;
- filter_type = "o2";
- on = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cFO" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Engineering Supermatter Aft";
- dir = 2;
- network = list("SS13","Engine");
- pixel_x = 23
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel/black,
-/area/engine/engineering)
-"cFP" = (
-/obj/machinery/atmospherics/components/trinary/filter{
- dir = 4;
- filter_type = "plasma";
- on = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cFQ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cFR" = (
-/obj/machinery/atmospherics/components/trinary/filter{
- dir = 4;
- filter_type = "";
- on = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cFS" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cFT" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 9
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cFU" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel/black,
-/area/engine/engineering)
-"cGd" = (
-/obj/structure/closet/crate/bin,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cGe" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cGg" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cGh" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/effect/turf_decal/stripes/corner,
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cGi" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cGj" = (
-/obj/structure/table,
-/obj/item/weapon/pipe_dispenser,
-/turf/open/floor/plasteel/black,
-/area/engine/engineering)
-"cGk" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/black,
-/area/engine/engineering)
-"cGl" = (
-/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/plasteel/black,
-/area/engine/engineering)
-"cGr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"cGs" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"cGt" = (
-/obj/structure/closet/wardrobe/engineering_yellow,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cGu" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cGv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cGw" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cGx" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cGz" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cGA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cGC" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/obj/machinery/meter,
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cGD" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/highpressure/fulltile,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cGE" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/highpressure/fulltile,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cGH" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/highpressure/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cGI" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_engineering{
- name = "Laser Room";
- req_access_txt = "10"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"cGK" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/highpressure/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cGL" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/highpressure/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cGM" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"cGR" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/black,
-/area/engine/engineering)
-"cGS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cGT" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/engine/engineering)
-"cGU" = (
-/obj/structure/reflector/double{
- anchored = 1
- },
-/turf/open/floor/plasteel/black,
-/area/engine/engineering)
-"cGV" = (
-/obj/structure/reflector/box{
- anchored = 1;
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/engine/engineering)
-"cGY" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel/black,
-/area/engine/engineering)
-"cGZ" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"cHa" = (
-/obj/machinery/airalarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/turf/open/floor/plasteel/black,
-/area/engine/engineering)
-"cHb" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cHc" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cHd" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cHe" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cHg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cHj" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/power/emitter{
- anchored = 1;
- dir = 8;
- icon_state = "emitter";
- state = 2
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cHl" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"cHn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/light,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cHo" = (
-/obj/structure/reflector/single{
- anchored = 1;
- dir = 1;
- icon_state = "reflector"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cHp" = (
-/obj/structure/reflector/single{
- anchored = 1;
- dir = 4;
- icon_state = "reflector"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cHr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/light,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cHs" = (
-/obj/item/weapon/crowbar/large,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cHD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/sortjunction{
- dir = 2;
- icon_state = "pipe-j2s";
- sortType = 14
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cHE" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Mech Bay Maintenance";
- req_access_txt = "29"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/assembly/chargebay)
-"cHF" = (
-/obj/machinery/button/door{
- dir = 2;
- id = "Skynet_launch";
- name = "Mech Bay Door Control";
- pixel_x = 6;
- pixel_y = 24
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"cHG" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"cHH" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"cHI" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"cHJ" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"cHK" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_research{
- name = "Robotics Lab";
- req_access_txt = "29"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"cHL" = (
-/obj/machinery/mech_bay_recharge_port{
- icon_state = "recharge_port";
- dir = 2
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/assembly/chargebay)
-"cHM" = (
-/obj/structure/chair/office/light{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"cHN" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/circuit,
-/area/assembly/chargebay)
-"cHO" = (
-/obj/machinery/conveyor_switch/oneway{
- id = "robo1"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"cHP" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/table,
-/obj/item/weapon/storage/belt/utility,
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/glass{
- amount = 20;
- pixel_x = -3;
- pixel_y = 6
- },
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"cHQ" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"cHR" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "robo1"
- },
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"cHS" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"cHT" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"cHU" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 8
- },
-/area/assembly/robotics)
-"cHV" = (
-/obj/machinery/conveyor_switch/oneway{
- id = "robo2"
- },
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"cHW" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/mecha_part_fabricator,
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"cHX" = (
-/obj/structure/table,
-/obj/item/weapon/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -1
- },
-/obj/item/clothing/head/welding{
- pixel_x = -3;
- pixel_y = 5
- },
-/obj/item/clothing/glasses/welding,
-/obj/item/device/multitool{
- pixel_x = 3
- },
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"cHZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 8
- },
-/area/assembly/robotics)
-"cIa" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"cIb" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/obj/machinery/conveyor{
- dir = 4;
- id = "robo2"
- },
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"cIc" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/bot,
-/obj/effect/landmark/start/roboticist,
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"cId" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"cIe" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/assembly/robotics)
-"cIf" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 1
- },
-/area/assembly/robotics)
-"cIg" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 4;
- icon_state = "propulsion"
- },
-/obj/docking_port/mobile/arrivals,
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 3;
- height = 15;
- id = "arrivals_stationary";
- name = "arrivals";
- width = 7
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/arrival)
-"cIh" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 1;
- name = "Port Docking Bay 1"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"cIl" = (
-/obj/machinery/computer/med_data{
- icon_keyboard = "syndi_key"
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cIm" = (
-/obj/machinery/computer/crew{
- icon_keyboard = "syndi_key"
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cIn" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/folder/red,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cIo" = (
-/obj/machinery/computer/shuttle/syndicate,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cIp" = (
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cIq" = (
-/obj/machinery/computer/camera_advanced{
- icon_keyboard = "syndi_key"
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cIr" = (
-/obj/machinery/computer/secure_data{
- icon_keyboard = "syndi_key"
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cIs" = (
-/obj/structure/table/reinforced,
-/obj/machinery/status_display{
- pixel_x = -32
- },
-/obj/item/weapon/clipboard,
-/obj/item/toy/figure/syndie,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cIt" = (
-/obj/structure/chair/office/dark{
- dir = 8;
- name = "tactical swivel chair"
- },
-/turf/open/floor/plasteel/black,
-/area/shuttle/syndicate)
-"cIu" = (
-/turf/open/floor/plasteel/black,
-/area/shuttle/syndicate)
-"cIv" = (
-/obj/structure/chair/office/dark{
- dir = 1;
- name = "tactical swivel chair"
- },
-/obj/machinery/button/door{
- id = "syndieshutters";
- name = "Cockpit View Control";
- pixel_x = 32;
- pixel_y = 32;
- req_access_txt = "150"
- },
-/turf/open/floor/plasteel/black,
-/area/shuttle/syndicate)
-"cIx" = (
-/obj/structure/chair/office/dark{
- dir = 4;
- name = "tactical swivel chair"
- },
-/turf/open/floor/plasteel/black,
-/area/shuttle/syndicate)
-"cIy" = (
-/obj/structure/table/reinforced,
-/obj/machinery/ai_status_display{
- pixel_x = 32
- },
-/obj/item/weapon/storage/fancy/donut_box,
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cIz" = (
-/turf/open/floor/plasteel/vault,
-/area/shuttle/syndicate)
-"cIG" = (
-/obj/machinery/status_display,
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate)
-"cIH" = (
-/obj/machinery/door/airlock/hatch{
- name = "Cockpit";
- req_access_txt = "150"
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cII" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/cable_coil/white,
-/obj/item/stack/cable_coil/white,
-/obj/item/weapon/crowbar/red,
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate)
-"cIJ" = (
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate)
-"cIK" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/storage/box/handcuffs{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/box/zipties,
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate)
-"cIL" = (
-/obj/structure/chair{
- dir = 4;
- name = "tactical chair"
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate)
-"cIN" = (
-/obj/structure/chair{
- dir = 8;
- name = "tactical chair"
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate)
-"cIO" = (
-/obj/structure/chair{
- dir = 4;
- name = "tactical chair"
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate)
-"cIQ" = (
-/obj/structure/chair{
- dir = 8;
- name = "tactical chair"
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate)
-"cIR" = (
-/obj/machinery/suit_storage_unit/syndicate,
-/turf/open/floor/plasteel/podhatch{
- dir = 5
- },
-/area/shuttle/syndicate)
-"cIU" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cIY" = (
-/obj/machinery/suit_storage_unit/syndicate,
-/turf/open/floor/plasteel/podhatch{
- tag = "icon-podhatch (EAST)";
- icon_state = "podhatch";
- dir = 4
- },
-/area/shuttle/syndicate)
-"cJb" = (
-/obj/structure/tank_dispenser/oxygen,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cJf" = (
-/obj/machinery/door/poddoor{
- id = "smindicate";
- name = "outer blast door"
- },
-/obj/machinery/button/door{
- id = "smindicate";
- name = "external door control";
- pixel_x = -26;
- pixel_y = 0;
- req_access_txt = "150"
- },
-/obj/docking_port/mobile{
- dheight = 9;
- dir = 2;
- dwidth = 5;
- height = 24;
- id = "syndicate";
- name = "syndicate infiltrator";
- port_angle = 0;
- roundstart_move = "syndicate_away";
- width = 18
- },
-/obj/docking_port/stationary{
- dheight = 9;
- dir = 2;
- dwidth = 5;
- height = 24;
- id = "syndicate_nw";
- name = "northwest of station";
- turf_type = /turf/open/space;
- width = 18
- },
-/obj/structure/fans/tiny,
-/turf/open/floor/plasteel/podhatch{
- tag = "icon-podhatch (NORTH)";
- icon_state = "podhatch";
- dir = 1
- },
-/area/shuttle/syndicate)
-"cJj" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cJk" = (
-/obj/machinery/door/airlock/external{
- name = "Ready Room";
- req_access_txt = "150"
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cJl" = (
-/obj/item/weapon/storage/toolbox/syndicate,
-/obj/item/weapon/crowbar/red,
-/obj/structure/table/reinforced,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/podhatch{
- dir = 10
- },
-/area/shuttle/syndicate)
-"cJm" = (
-/turf/open/floor/plasteel/podhatch,
-/area/shuttle/syndicate)
-"cJn" = (
-/obj/structure/chair{
- name = "tactical chair"
- },
-/turf/open/floor/plasteel/podhatch{
- tag = "icon-podhatch (SOUTHEAST)";
- icon_state = "podhatch";
- dir = 6
- },
-/area/shuttle/syndicate)
-"cJr" = (
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cJs" = (
-/obj/machinery/door/airlock/external{
- name = "E.V.A. Gear Storage";
- req_access_txt = "150"
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cJz" = (
-/obj/machinery/suit_storage_unit/syndicate,
-/turf/open/floor/plasteel/podhatch{
- tag = "icon-podhatch (SOUTHEAST)";
- icon_state = "podhatch";
- dir = 6
- },
-/area/shuttle/syndicate)
-"cJC" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cJG" = (
-/obj/structure/chair{
- dir = 1;
- name = "tactical chair"
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cJI" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/space/syndicate/black/red,
-/obj/item/clothing/head/helmet/space/syndicate/black/red,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cJJ" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate)
-"cJL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cJO" = (
-/obj/machinery/sleeper/syndie{
- dir = 4
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cJQ" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cJR" = (
-/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{
- pixel_x = 6;
- pixel_y = 0
- },
-/obj/item/weapon/reagent_containers/glass/bottle/charcoal{
- pixel_x = -3
- },
-/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{
- pixel_x = -3;
- pixel_y = 8
- },
-/obj/item/weapon/reagent_containers/glass/bottle/charcoal{
- pixel_x = 6;
- pixel_y = 8
- },
-/obj/item/weapon/reagent_containers/syringe/epinephrine{
- pixel_x = 3;
- pixel_y = -2
- },
-/obj/item/weapon/reagent_containers/syringe/epinephrine{
- pixel_x = 4;
- pixel_y = 1
- },
-/obj/item/weapon/reagent_containers/syringe/epinephrine{
- pixel_x = -2;
- pixel_y = 5
- },
-/obj/item/weapon/reagent_containers/syringe/epinephrine{
- pixel_x = 2;
- pixel_y = 8
- },
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cJS" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/medical/gauze,
-/obj/item/stack/medical/bruise_pack,
-/obj/item/stack/medical/ointment,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cJW" = (
-/obj/item/weapon/stock_parts/cell/high{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/weapon/stock_parts/cell/high,
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cJX" = (
-/obj/item/weapon/screwdriver{
- pixel_y = 9
- },
-/obj/item/device/assembly/voice{
- pixel_y = 3
- },
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cJY" = (
-/obj/item/weapon/wrench,
-/obj/item/device/assembly/infra,
-/obj/structure/table/reinforced,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cJZ" = (
-/obj/item/device/assembly/signaler,
-/obj/item/device/assembly/signaler,
-/obj/item/device/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
- },
-/obj/item/device/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
- },
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cKa" = (
-/obj/item/weapon/weldingtool/largetank{
- pixel_y = 3
- },
-/obj/item/device/multitool,
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cKb" = (
-/obj/structure/bed/roller,
-/obj/machinery/iv_drip,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cKg" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate)
-"cKi" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate)
-"cKq" = (
-/turf/open/floor/plasteel/podhatch{
- dir = 9
- },
-/area/shuttle/syndicate)
-"cKr" = (
-/turf/open/floor/plasteel/podhatch{
- tag = "icon-podhatch (NORTH)";
- icon_state = "podhatch";
- dir = 1
- },
-/area/shuttle/syndicate)
-"cKt" = (
-/obj/machinery/door/airlock/hatch{
- req_access_txt = "150"
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cKA" = (
-/turf/open/floor/plasteel/podhatch{
- dir = 5
- },
-/area/shuttle/syndicate)
-"cKC" = (
-/obj/structure/closet/syndicate/personal,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cKD" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/reagent_containers/glass/beaker/large,
-/obj/item/weapon/reagent_containers/glass/beaker,
-/obj/item/weapon/reagent_containers/dropper,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cKF" = (
-/turf/open/floor/plasteel/podhatch{
- dir = 10
- },
-/area/shuttle/syndicate)
-"cKN" = (
-/turf/open/floor/plasteel/podhatch{
- tag = "icon-podhatch (SOUTHEAST)";
- icon_state = "podhatch";
- dir = 6
- },
-/area/shuttle/syndicate)
-"cKP" = (
-/obj/structure/closet/syndicate/nuclear,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cKQ" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/item/bodypart/r_arm/robot,
-/obj/item/bodypart/l_arm/robot,
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/vault,
-/area/shuttle/syndicate)
-"cKR" = (
-/obj/machinery/door/window{
- dir = 1;
- name = "Surgery";
- req_access_txt = "150"
- },
-/turf/open/floor/plasteel/vault,
-/area/shuttle/syndicate)
-"cKS" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/plasteel/vault,
-/area/shuttle/syndicate)
-"cKT" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/firstaid/brute,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/vault,
-/area/shuttle/syndicate)
-"cKU" = (
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/firstaid/fire,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/vault,
-/area/shuttle/syndicate)
-"cKY" = (
-/obj/item/device/sbeacondrop/bomb{
- pixel_y = 5
- },
-/obj/item/device/sbeacondrop/bomb,
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cKZ" = (
-/obj/item/weapon/grenade/syndieminibomb{
- pixel_x = 4;
- pixel_y = 2
- },
-/obj/item/weapon/grenade/syndieminibomb{
- pixel_x = -1
- },
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/weapon/grenade/plastic/c4{
- pixel_x = 2;
- pixel_y = -5
- },
-/obj/item/weapon/grenade/plastic/c4{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/weapon/grenade/plastic/c4{
- pixel_x = 2;
- pixel_y = -3
- },
-/obj/item/weapon/grenade/plastic/c4{
- pixel_x = -2;
- pixel_y = -1
- },
-/obj/item/weapon/grenade/plastic/c4{
- pixel_x = 3;
- pixel_y = 3
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cLb" = (
-/obj/machinery/door/window{
- dir = 1;
- name = "Technological Storage";
- req_access_txt = "150"
- },
-/turf/open/floor/plasteel/vault,
-/area/shuttle/syndicate)
-"cLc" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/table/reinforced,
-/obj/item/device/aicard,
-/turf/open/floor/plasteel/vault,
-/area/shuttle/syndicate)
-"cLd" = (
-/obj/item/weapon/surgicaldrill,
-/obj/item/weapon/circular_saw,
-/obj/structure/table/reinforced,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cLf" = (
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
- },
-/obj/structure/mirror{
- pixel_x = 30
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate)
-"cLg" = (
-/obj/machinery/nuclearbomb/syndicate,
-/obj/machinery/door/window{
- dir = 1;
- name = "Theatre Stage";
- req_access_txt = "0"
- },
-/turf/open/floor/circuit/red,
-/area/shuttle/syndicate)
-"cLk" = (
-/obj/item/weapon/cautery,
-/obj/item/weapon/scalpel,
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cLl" = (
-/obj/structure/table/optable,
-/obj/item/weapon/surgical_drapes,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cLm" = (
-/obj/item/weapon/retractor,
-/obj/item/weapon/hemostat,
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cLn" = (
-/obj/structure/shuttle/engine/heater,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating/airless,
-/area/shuttle/syndicate)
-"cLq" = (
-/obj/machinery/recharge_station,
-/turf/open/floor/circuit/red,
-/area/shuttle/syndicate)
-"cLr" = (
-/obj/machinery/telecomms/allinone{
- intercept = 1
- },
-/turf/open/floor/circuit/red,
-/area/shuttle/syndicate)
-"cLw" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_l"
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating/airless,
-/area/shuttle/syndicate)
-"cLx" = (
-/obj/structure/shuttle/engine/propulsion,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating/airless,
-/area/shuttle/syndicate)
-"cLy" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_r"
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating/airless,
-/area/shuttle/syndicate)
-"cLI" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"cLJ" = (
-/obj/structure/chair,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"cLK" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"cLL" = (
-/obj/machinery/light,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"cLM" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cLN" = (
-/obj/structure/table,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cLO" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cLP" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
-"cLQ" = (
-/obj/machinery/light/small,
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
-"cLR" = (
-/obj/machinery/light,
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
-"cLS" = (
-/obj/machinery/light/small,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cLT" = (
-/obj/machinery/light,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cLU" = (
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/escape)
-"cLV" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/escape)
-"cLW" = (
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cLX" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/supply)
-"cLY" = (
-/obj/structure/light_construct/small,
-/turf/open/floor/plating,
-/area/shuttle/abandoned)
-"cLZ" = (
-/obj/structure/frame/computer{
- anchored = 1
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cMa" = (
-/obj/structure/light_construct,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cMb" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/supply)
-"cMc" = (
-/obj/structure/light_construct{
- dir = 1
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cMd" = (
-/obj/structure/light_construct{
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cMe" = (
-/obj/structure/light_construct/small{
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cMf" = (
-/obj/structure/light_construct{
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cMh" = (
-/obj/structure/light_construct/small{
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cMk" = (
-/obj/structure/light_construct/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/shuttle/abandoned)
-"cMl" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"cMm" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/highpressure/fulltile,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cMB" = (
-/obj/structure/window/shuttle,
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/shuttle/arrival)
-"cMC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching the Engine.";
- dir = 8;
- layer = 4;
- name = "Engine Monitor";
- network = list("Engine");
- pixel_x = 30;
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cMD" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cMH" = (
-/turf/open/floor/engine,
-/area/engine/supermatter)
-"cMI" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
-/obj/structure/cable/yellow{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/engine,
-/area/engine/supermatter)
-"cMN" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/highpressure/fulltile,
-/turf/open/floor/plating,
-/area/engine/supermatter)
-"dtj" = (
-/obj/structure/rack,
-/turf/open/floor/wood,
-/area/maintenance/aft)
-"eng" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/maintenance/bar)
-"enI" = (
-/obj/structure/barricade/wooden{
- name = "wooden barricade (CLOSED)"
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Incinerator Access";
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"eYF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/closed/wall,
-/area/maintenance/bar)
-"fzg" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/maintenance/bar)
-"fXi" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/maintenance/bar)
-"gQG" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/maintenance/bar)
-"hps" = (
-/obj/structure/window/reinforced,
-/obj/machinery/computer/slot_machine,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"hGz" = (
-/obj/structure/window/reinforced,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"iUC" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 4;
- name = "4maintenance loot spawner"
- },
-/turf/open/floor/wood,
-/area/maintenance/aft)
-"jGq" = (
-/obj/machinery/vending/kink,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"kak" = (
-/obj/structure/lattice/catwalk,
-/turf/open/space/basic,
-/area/space)
-"kwI" = (
-/obj/structure/barricade/wooden{
- name = "wooden barricade (CLOSED)"
- },
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"kER" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Maintenance Bar APC";
- pixel_x = 24;
- pixel_y = 0
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/maintenance/bar)
-"nuA" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/camera{
- c_tag = "Aft Primary Hallway 1";
- dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/yellow/corner{
- dir = 2
- },
-/area/hallway/primary/aft)
-"oYy" = (
-/obj/machinery/camera{
- c_tag = "Research and Development";
- dir = 2;
- network = list("SS13","RD");
- pixel_x = 0
- },
-/obj/machinery/button/door{
- dir = 2;
- id = "rnd";
- name = "Shutters Control Button";
- pixel_x = -6;
- pixel_y = 24;
- req_access_txt = "47"
- },
-/turf/open/floor/plasteel/whitepurple/corner{
- dir = 1
- },
-/area/toxins/lab)
-"qpP" = (
-/obj/machinery/chem_dispenser/drinks/beer,
-/obj/structure/table/wood,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"sSM" = (
-/obj/structure/closet{
- name = "Glasware Storage"
- },
-/obj/item/weapon/storage/box/beakers,
-/obj/item/weapon/storage/box/drinkingglasses,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"tHL" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- icon_state = "intact";
- dir = 4
- },
-/obj/structure/barricade/wooden{
- name = "wooden barricade (CLOSED)"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"tRx" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/tinted/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/bar)
-"uOA" = (
-/obj/structure/chair/stool,
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/maintenance/bar)
-"uPQ" = (
-/obj/structure/table/wood,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"vad" = (
-/obj/structure/window/reinforced,
-/obj/machinery/computer/arcade,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"vat" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/closed/wall,
-/area/maintenance/bar)
-"xAh" = (
-/obj/effect/decal/cleanable/robot_debris/old,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"xRv" = (
-/obj/structure/girder,
-/obj/structure/grille/broken,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"yCP" = (
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"zeE" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp/green,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"BDm" = (
-/obj/structure/table/wood/poker,
-/obj/item/weapon/storage/pill_bottle/dice,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"CcB" = (
-/obj/structure/table/wood/poker,
-/obj/item/device/flashlight/lamp/green,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"CSn" = (
-/obj/structure/table/wood,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"CTI" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"DUC" = (
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space)
-"DZr" = (
-/obj/structure/table/wood/poker,
-/obj/item/toy/cards/deck,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"EKk" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 1
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -26
- },
-/obj/machinery/camera{
- c_tag = "Engineering Supermatter Fore";
- dir = 1;
- network = list("SS13","Engine");
- pixel_x = 0
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"Foj" = (
-/obj/structure/table/wood,
-/obj/machinery/chem_dispenser/drinks,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"FHC" = (
-/obj/machinery/vending/cola/random,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"Glh" = (
-/obj/machinery/vending/cigarette,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"HeC" = (
-/turf/closed/wall,
-/area/maintenance/bar)
-"IUF" = (
-/obj/structure/chair/stool,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"Jts" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Maintenance Bar";
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/bar)
-"MvW" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
-/area/maintenance/bar)
-"OnH" = (
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"PdK" = (
-/obj/structure/chair/stool,
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/maintenance/bar)
-"RZu" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"TtA" = (
-/obj/machinery/vending/snack/random,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"UNz" = (
-/obj/structure/chair/stool,
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
-/area/maintenance/bar)
-"VtB" = (
-/obj/structure/chair/stool,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"WaY" = (
-/obj/structure/rack,
-/obj/item/weapon/soap/nanotrasen,
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
- },
-/area/maintenance/aft)
-"XVz" = (
-/obj/structure/window/reinforced/tinted/fulltile,
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/maintenance/bar)
-"YsZ" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"Ywa" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/window/reinforced/tinted/fulltile,
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/maintenance/bar)
+"aaa" = (/turf/open/space/basic,/area/space)
+"aab" = (/turf/open/space,/obj/machinery/porta_turret/syndicate{dir = 9},/turf/closed/wall/mineral/plastitanium{dir = 8; icon_state = "diagonalWall3"},/area/shuttle/syndicate)
+"aac" = (/turf/closed/wall/mineral/plastitanium,/area/shuttle/syndicate)
+"aad" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters{id = "syndieshutters"; name = "blast shutters"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/shuttle/syndicate)
+"aae" = (/turf/open/space,/obj/machinery/porta_turret/syndicate{dir = 5},/turf/closed/wall/mineral/plastitanium{dir = 1; icon_state = "diagonalWall3"},/area/shuttle/syndicate)
+"aaf" = (/obj/machinery/computer/med_data{icon_keyboard = "syndi_key"},/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"aag" = (/obj/machinery/computer/crew{icon_keyboard = "syndi_key"},/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"aah" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/red,/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"aai" = (/obj/machinery/computer/shuttle/syndicate,/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"aaj" = (/obj/structure/table/reinforced,/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"aak" = (/obj/machinery/computer/camera_advanced{icon_keyboard = "syndi_key"},/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"aal" = (/obj/machinery/computer/secure_data{icon_keyboard = "syndi_key"},/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"aam" = (/obj/structure/table/reinforced,/obj/machinery/status_display{pixel_x = -32},/obj/item/weapon/clipboard,/obj/item/toy/figure/syndie,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"aan" = (/obj/structure/chair/office/dark{dir = 8; name = "tactical swivel chair"},/turf/open/floor/plasteel/black,/area/shuttle/syndicate)
+"aao" = (/turf/open/floor/plasteel/black,/area/shuttle/syndicate)
+"aap" = (/obj/structure/chair/office/dark{dir = 1; name = "tactical swivel chair"},/obj/machinery/button/door{id = "syndieshutters"; name = "Cockpit View Control"; pixel_x = 32; pixel_y = 32; req_access_txt = "150"},/turf/open/floor/plasteel/black,/area/shuttle/syndicate)
+"aaq" = (/obj/structure/chair/office/dark{dir = 4; name = "tactical swivel chair"},/turf/open/floor/plasteel/black,/area/shuttle/syndicate)
+"aar" = (/obj/structure/table/reinforced,/obj/machinery/ai_status_display{pixel_x = 32},/obj/item/weapon/storage/fancy/donut_box,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"aas" = (/turf/open/floor/plasteel/vault,/area/shuttle/syndicate)
+"aat" = (/turf/open/space,/turf/closed/wall/mineral/plastitanium{icon_state = "diagonalWall3"},/area/shuttle/syndicate)
+"aau" = (/obj/machinery/status_display,/turf/closed/wall/mineral/plastitanium,/area/shuttle/syndicate)
+"aav" = (/obj/machinery/door/airlock/hatch{name = "Cockpit"; req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"aaw" = (/turf/open/space,/turf/closed/wall/mineral/plastitanium{dir = 4; icon_state = "diagonalWall3"},/area/shuttle/syndicate)
+"aax" = (/turf/open/space,/obj/machinery/porta_turret/syndicate{dir = 10},/turf/closed/wall/mineral/plastitanium{icon_state = "diagonalWall3"},/area/shuttle/syndicate)
+"aay" = (/obj/structure/table/reinforced,/obj/item/stack/cable_coil/white,/obj/item/stack/cable_coil/white,/obj/item/weapon/crowbar/red,/turf/open/floor/plasteel/vault{dir = 5},/area/shuttle/syndicate)
+"aaz" = (/turf/open/floor/plasteel/vault{dir = 5},/area/shuttle/syndicate)
+"aaA" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/handcuffs{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box/zipties,/turf/open/floor/plasteel/vault{dir = 5},/area/shuttle/syndicate)
+"aaB" = (/turf/open/space,/obj/machinery/porta_turret/syndicate{dir = 6},/turf/closed/wall/mineral/plastitanium{dir = 4; icon_state = "diagonalWall3"},/area/shuttle/syndicate)
+"aaC" = (/obj/structure/chair{dir = 4; name = "tactical chair"},/turf/open/floor/plasteel/vault{dir = 5},/area/shuttle/syndicate)
+"aaD" = (/obj/structure/chair{dir = 8; name = "tactical chair"},/turf/open/floor/plasteel/vault{dir = 5},/area/shuttle/syndicate)
+"aaE" = (/obj/structure/chair{dir = 4; name = "tactical chair"},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel/vault{dir = 5},/area/shuttle/syndicate)
+"aaF" = (/obj/structure/chair{dir = 8; name = "tactical chair"},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/vault{dir = 5},/area/shuttle/syndicate)
+"aaG" = (/obj/machinery/porta_turret/syndicate{dir = 4},/turf/closed/wall/mineral/plastitanium,/area/shuttle/syndicate)
+"aaH" = (/obj/machinery/suit_storage_unit/syndicate,/turf/open/floor/plasteel/podhatch{dir = 5},/area/shuttle/syndicate)
+"aaI" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"aaJ" = (/obj/machinery/suit_storage_unit/syndicate,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (EAST)"; icon_state = "podhatch"; dir = 4},/area/shuttle/syndicate)
+"aaK" = (/obj/structure/tank_dispenser/oxygen,/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"aaL" = (/obj/machinery/door/poddoor{id = "smindicate"; name = "outer blast door"},/obj/machinery/button/door{id = "smindicate"; name = "external door control"; pixel_x = -26; pixel_y = 0; req_access_txt = "150"},/obj/docking_port/mobile{dheight = 9; dir = 2; dwidth = 5; height = 24; id = "syndicate"; name = "syndicate infiltrator"; port_angle = 0; roundstart_move = "syndicate_away"; width = 18},/obj/docking_port/stationary{dheight = 9; dir = 2; dwidth = 5; height = 24; id = "syndicate_nw"; name = "northwest of station"; turf_type = /turf/open/space; width = 18},/obj/structure/fans/tiny,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (NORTH)"; icon_state = "podhatch"; dir = 1},/area/shuttle/syndicate)
+"aaM" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/turf/closed/wall/mineral/plastitanium,/area/shuttle/syndicate)
+"aaN" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"aaO" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/shuttle/syndicate)
+"aaP" = (/obj/machinery/door/airlock/external{name = "Ready Room"; req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"aaQ" = (/obj/item/weapon/storage/toolbox/syndicate,/obj/item/weapon/crowbar/red,/obj/structure/table/reinforced,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel/podhatch{dir = 10},/area/shuttle/syndicate)
+"aaR" = (/turf/open/floor/plasteel/podhatch,/area/shuttle/syndicate)
+"aaS" = (/obj/structure/chair{name = "tactical chair"},/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (SOUTHEAST)"; icon_state = "podhatch"; dir = 6},/area/shuttle/syndicate)
+"aaT" = (/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"aaU" = (/obj/machinery/door/airlock/external{name = "E.V.A. Gear Storage"; req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"aaV" = (/obj/machinery/door/airlock/external{req_access_txt = "150"},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
+"aaW" = (/obj/machinery/suit_storage_unit/syndicate,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (SOUTHEAST)"; icon_state = "podhatch"; dir = 6},/area/shuttle/syndicate)
+"aaX" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"aaY" = (/obj/structure/chair{dir = 1; name = "tactical chair"},/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"aaZ" = (/obj/structure/rack,/obj/item/clothing/suit/space/syndicate/black/red,/obj/item/clothing/head/helmet/space/syndicate/black/red,/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"aba" = (/turf/open/space,/turf/closed/wall/mineral/plastitanium{dir = 1; icon_state = "diagonalWall3"},/area/shuttle/syndicate)
+"abb" = (/obj/docking_port/stationary{dheight = 9; dir = 2; dwidth = 5; height = 24; id = "syndicate_n"; name = "north of station"; turf_type = /turf/open/space; width = 18},/turf/open/space,/area/space)
+"abc" = (/obj/machinery/ai_status_display,/turf/closed/wall/mineral/plastitanium,/area/shuttle/syndicate)
+"abd" = (/obj/machinery/sleeper/syndie{dir = 4},/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"abe" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"abf" = (/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{pixel_x = 6; pixel_y = 0},/obj/item/weapon/reagent_containers/glass/bottle/charcoal{pixel_x = -3},/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{pixel_x = -3; pixel_y = 8},/obj/item/weapon/reagent_containers/glass/bottle/charcoal{pixel_x = 6; pixel_y = 8},/obj/item/weapon/reagent_containers/syringe/epinephrine{pixel_x = 3; pixel_y = -2},/obj/item/weapon/reagent_containers/syringe/epinephrine{pixel_x = 4; pixel_y = 1},/obj/item/weapon/reagent_containers/syringe/epinephrine{pixel_x = -2; pixel_y = 5},/obj/item/weapon/reagent_containers/syringe/epinephrine{pixel_x = 2; pixel_y = 8},/obj/structure/table/reinforced,/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"abg" = (/obj/structure/table/reinforced,/obj/item/stack/medical/gauze,/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/ointment,/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"abh" = (/obj/item/weapon/stock_parts/cell/high{pixel_x = -3; pixel_y = 3},/obj/item/weapon/stock_parts/cell/high,/obj/structure/table/reinforced,/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"abi" = (/obj/item/weapon/screwdriver{pixel_y = 9},/obj/item/device/assembly/voice{pixel_y = 3},/obj/structure/table/reinforced,/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"abj" = (/obj/item/weapon/wrench,/obj/item/device/assembly/infra,/obj/structure/table/reinforced,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"abk" = (/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/structure/table/reinforced,/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"abl" = (/obj/item/weapon/weldingtool/largetank{pixel_y = 3},/obj/item/device/multitool,/obj/structure/table/reinforced,/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"abm" = (/obj/structure/bed/roller,/obj/machinery/iv_drip,/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"abn" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel/vault{dir = 5},/area/shuttle/syndicate)
+"abo" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/vault{dir = 5},/area/shuttle/syndicate)
+"abp" = (/turf/open/floor/plasteel/podhatch{dir = 9},/area/shuttle/syndicate)
+"abq" = (/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (NORTH)"; icon_state = "podhatch"; dir = 1},/area/shuttle/syndicate)
+"abr" = (/obj/machinery/door/airlock/hatch{req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"abs" = (/turf/open/floor/plasteel/podhatch{dir = 5},/area/shuttle/syndicate)
+"abt" = (/obj/structure/closet/syndicate/personal,/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"abu" = (/obj/docking_port/stationary{dheight = 9; dir = 2; dwidth = 5; height = 24; id = "syndicate_ne"; name = "northeast of station"; turf_type = /turf/open/space; width = 18},/turf/open/space,/area/space)
+"abv" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/reagent_containers/dropper,/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"abw" = (/turf/open/floor/plasteel/podhatch{dir = 10},/area/shuttle/syndicate)
+"abx" = (/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (SOUTHEAST)"; icon_state = "podhatch"; dir = 6},/area/shuttle/syndicate)
+"aby" = (/obj/structure/closet/syndicate/nuclear,/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"abz" = (/obj/structure/window/reinforced{dir = 1},/obj/item/bodypart/r_arm/robot,/obj/item/bodypart/l_arm/robot,/obj/structure/table/reinforced,/turf/open/floor/plasteel/vault,/area/shuttle/syndicate)
+"abA" = (/obj/machinery/door/window{dir = 1; name = "Surgery"; req_access_txt = "150"},/turf/open/floor/plasteel/vault,/area/shuttle/syndicate)
+"abB" = (/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plasteel/vault,/area/shuttle/syndicate)
+"abC" = (/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/storage/firstaid/regular{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/firstaid/brute,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/obj/structure/table/reinforced,/turf/open/floor/plasteel/vault,/area/shuttle/syndicate)
+"abD" = (/obj/item/weapon/storage/firstaid/regular{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/obj/structure/table/reinforced,/turf/open/floor/plasteel/vault,/area/shuttle/syndicate)
+"abE" = (/obj/item/device/sbeacondrop/bomb{pixel_y = 5},/obj/item/device/sbeacondrop/bomb,/obj/structure/table/reinforced,/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"abF" = (/obj/item/weapon/grenade/syndieminibomb{pixel_x = 4; pixel_y = 2},/obj/item/weapon/grenade/syndieminibomb{pixel_x = -1},/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/grenade/plastic/c4,/obj/item/weapon/grenade/plastic/c4,/obj/item/weapon/grenade/plastic/c4,/obj/item/weapon/grenade/plastic/c4,/obj/item/weapon/grenade/plastic/c4,/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"abG" = (/obj/machinery/door/window{dir = 1; name = "Technological Storage"; req_access_txt = "150"},/turf/open/floor/plasteel/vault,/area/shuttle/syndicate)
+"abH" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/table/reinforced,/obj/item/device/aicard,/turf/open/floor/plasteel/vault,/area/shuttle/syndicate)
+"abI" = (/obj/item/weapon/surgicaldrill,/obj/item/weapon/circular_saw,/obj/structure/table/reinforced,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"abJ" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{pixel_x = 30},/turf/open/floor/plasteel/vault{dir = 5},/area/shuttle/syndicate)
+"abK" = (/obj/machinery/nuclearbomb/syndicate,/obj/machinery/door/window{dir = 1; name = "Theatre Stage"; req_access_txt = "0"},/turf/open/floor/circuit/red,/area/shuttle/syndicate)
+"abL" = (/obj/item/weapon/cautery,/obj/item/weapon/scalpel,/obj/structure/table/reinforced,/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"abM" = (/obj/structure/table/optable,/obj/item/weapon/surgical_drapes,/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"abN" = (/obj/item/weapon/retractor,/obj/item/weapon/hemostat,/obj/structure/table/reinforced,/turf/open/floor/plasteel/vault{dir = 8},/area/shuttle/syndicate)
+"abO" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating/airless,/area/shuttle/syndicate)
+"abP" = (/obj/machinery/recharge_station,/turf/open/floor/circuit/red,/area/shuttle/syndicate)
+"abQ" = (/obj/machinery/telecomms/allinone{intercept = 1},/turf/open/floor/circuit/red,/area/shuttle/syndicate)
+"abR" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating/airless,/area/shuttle/syndicate)
+"abS" = (/obj/structure/shuttle/engine/propulsion,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating/airless,/area/shuttle/syndicate)
+"abT" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating/airless,/area/shuttle/syndicate)
+"abU" = (/obj/effect/landmark/carpspawn,/turf/open/space,/area/space)
+"abV" = (/obj/structure/lattice,/turf/open/space,/area/space)
+"abW" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/space)
+"abX" = (/obj/structure/sign/securearea{pixel_y = -32},/turf/open/space,/area/space)
+"abY" = (/turf/closed/wall/r_wall,/area/security/prison)
+"abZ" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/prison)
+"aca" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/closed/wall/r_wall,/area/security/prison)
+"acb" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/prison)
+"acc" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/prison)
+"acd" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/ambrosia,/turf/open/floor/plasteel/green/side{dir = 9},/area/security/prison)
+"ace" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/carrot,/turf/open/floor/plasteel/green/side{dir = 1},/area/security/prison)
+"acf" = (/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plating,/area/security/prison)
+"acg" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/glowshroom,/turf/open/floor/plasteel/green/side{dir = 1},/area/security/prison)
+"ach" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 32},/obj/machinery/hydroponics/soil,/obj/item/device/plant_analyzer,/obj/machinery/camera{c_tag = "Prison Common Room"; network = list("SS13","Prison")},/turf/open/floor/plasteel/green/side{dir = 5},/area/security/prison)
+"aci" = (/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"acj" = (/obj/structure/sink{pixel_y = 20},/turf/open/floor/plating,/area/security/prison)
+"ack" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"acl" = (/obj/machinery/biogenerator,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"acm" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plating,/area/security/prison)
+"acn" = (/turf/open/floor/plating,/area/security/prison)
+"aco" = (/mob/living/simple_animal/mouse/brown/Tom,/turf/open/floor/plating,/area/security/prison)
+"acp" = (/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/plating,/area/security/prison)
+"acq" = (/obj/machinery/seed_extractor,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"acr" = (/obj/structure/window/reinforced,/obj/machinery/hydroponics/soil,/obj/item/seeds/potato,/turf/open/floor/plasteel/green/side{dir = 10},/area/security/prison)
+"acs" = (/obj/structure/window/reinforced,/obj/machinery/hydroponics/soil,/obj/item/seeds/grass,/turf/open/floor/plasteel/green/side{dir = 2},/area/security/prison)
+"act" = (/obj/structure/window/reinforced,/turf/open/floor/plating,/area/security/prison)
+"acu" = (/obj/structure/window/reinforced,/obj/machinery/hydroponics/soil,/obj/item/weapon/cultivator,/turf/open/floor/plasteel/green/side{dir = 2},/area/security/prison)
+"acv" = (/obj/structure/window/reinforced,/obj/machinery/hydroponics/soil,/obj/item/weapon/cultivator,/turf/open/floor/plasteel/green/side{dir = 6},/area/security/prison)
+"acw" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"acx" = (/turf/open/floor/plating/airless,/area/space/nearstation)
+"acy" = (/obj/structure/bookcase,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"acz" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"acA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plasteel/barber,/area/security/prison)
+"acB" = (/obj/machinery/washing_machine,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plasteel/barber,/area/security/prison)
+"acC" = (/obj/machinery/computer/libraryconsole/bookmanagement{pixel_y = 0},/obj/structure/table,/obj/machinery/newscaster{pixel_x = -32; pixel_y = 0},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"acD" = (/obj/structure/table,/obj/item/weapon/storage/pill_bottle/dice,/turf/open/floor/plasteel,/area/security/prison)
+"acE" = (/obj/structure/table,/obj/item/weapon/pen,/turf/open/floor/plasteel,/area/security/prison)
+"acF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/barber,/area/security/prison)
+"acG" = (/obj/structure/table,/obj/structure/bedsheetbin,/turf/open/floor/plasteel/barber,/area/security/prison)
+"acH" = (/obj/structure/lattice,/obj/structure/sign/securearea{pixel_y = -32},/turf/open/space,/area/space)
+"acI" = (/obj/structure/grille,/obj/structure/lattice,/turf/open/space,/area/space)
+"acJ" = (/obj/machinery/computer/arcade,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"acK" = (/obj/structure/chair/stool,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"acL" = (/obj/structure/table,/obj/item/toy/cards/deck,/turf/open/floor/plasteel,/area/security/prison)
+"acM" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/turf/open/floor/plasteel,/area/security/prison)
+"acN" = (/obj/structure/window/reinforced,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/barber,/area/security/prison)
+"acO" = (/obj/machinery/washing_machine,/obj/structure/window/reinforced,/turf/open/floor/plasteel/barber,/area/security/prison)
+"acP" = (/turf/closed/wall/r_wall,/area/ai_monitored/security/armory)
+"acQ" = (/obj/structure/lattice,/obj/structure/grille/broken,/turf/open/space,/area/space)
+"acR" = (/turf/closed/wall,/area/security/transfer)
+"acS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall,/area/security/transfer)
+"acT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/security/transfer)
+"acU" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/closed/wall,/area/security/transfer)
+"acV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall/r_wall,/area/security/transfer)
+"acW" = (/obj/machinery/vending/sustenance,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"acX" = (/obj/machinery/holopad,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"acY" = (/obj/machinery/light/small{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/freezer,/area/security/prison)
+"acZ" = (/obj/machinery/shower{dir = 8},/obj/item/weapon/soap/nanotrasen,/turf/open/floor/plasteel/freezer,/area/security/prison)
+"ada" = (/obj/structure/lattice,/obj/structure/grille,/turf/open/space,/area/space)
+"adb" = (/obj/structure/grille,/turf/open/space,/area/space)
+"adc" = (/turf/closed/wall/r_wall,/area/security/main)
+"add" = (/turf/closed/wall,/area/security/main)
+"ade" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/main)
+"adf" = (/turf/closed/wall,/area/crew_quarters/heads/hos)
+"adg" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/heads/hos)
+"adh" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/tracker,/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port/fore)
+"adi" = (/obj/machinery/door/poddoor{id = "executionspaceblast"; name = "blast door"},/turf/open/floor/plating,/area/security/transfer)
+"adj" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel/black,/area/security/transfer)
+"adk" = (/obj/machinery/light/small{dir = 1},/obj/machinery/flasher{id = "executionflash"; pixel_x = 0; pixel_y = 25},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/black,/area/security/transfer)
+"adl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel/black,/area/security/transfer)
+"adm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/security/transfer)
+"adn" = (/obj/machinery/vending/cola/random,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"ado" = (/obj/machinery/light,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"adp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"adq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"adr" = (/obj/machinery/light,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"ads" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"adt" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"adu" = (/obj/machinery/door/window/westleft{base_state = "right"; dir = 8; icon_state = "right"; name = "Unisex Showers"; req_access_txt = "0"},/turf/open/floor/plasteel/freezer,/area/security/prison)
+"adv" = (/turf/open/floor/plasteel/freezer,/area/security/prison)
+"adw" = (/obj/structure/closet/secure_closet/security/sec,/turf/open/floor/plasteel/showroomfloor,/area/security/main)
+"adx" = (/turf/open/floor/plasteel/showroomfloor,/area/security/main)
+"ady" = (/obj/structure/closet/secure_closet/security/sec,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/plasteel/showroomfloor,/area/security/main)
+"adz" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Security's Desk"; departmentType = 5; name = "Head of Security RC"; pixel_x = 0; pixel_y = 30},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = -31},/obj/structure/table/wood,/obj/item/weapon/storage/box/seccarts{pixel_x = 3; pixel_y = 2},/obj/item/weapon/storage/box/deputy,/turf/open/floor/carpet,/area/crew_quarters/heads/hos)
+"adA" = (/obj/machinery/computer/secure_data,/turf/open/floor/carpet,/area/crew_quarters/heads/hos)
+"adB" = (/obj/machinery/computer/security,/turf/open/floor/carpet,/area/crew_quarters/heads/hos)
+"adC" = (/obj/machinery/computer/card/minor/hos,/turf/open/floor/carpet,/area/crew_quarters/heads/hos)
+"adD" = (/obj/machinery/airalarm{pixel_y = 23},/obj/structure/reagent_dispensers/peppertank{pixel_x = 30; pixel_y = 0},/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/turf/open/floor/carpet,/area/crew_quarters/heads/hos)
+"adE" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/tracker,/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard/fore)
+"adF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/fore)
+"adG" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/black,/area/security/transfer)
+"adH" = (/obj/structure/bed,/obj/effect/landmark/revenantspawn,/turf/open/floor/plasteel/black,/area/security/transfer)
+"adI" = (/obj/machinery/sparker{dir = 2; id = "executionburn"; pixel_x = 25},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/black,/area/security/transfer)
+"adJ" = (/turf/closed/wall,/area/security/prison)
+"adK" = (/obj/machinery/door/poddoor/preopen{id = "permacell3"; name = "cell blast door"},/obj/machinery/door/airlock/glass{id_tag = "permabolt3"; name = "Cell 3"},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"adL" = (/obj/machinery/door/poddoor/preopen{id = "permacell2"; name = "cell blast door"},/obj/machinery/door/airlock/glass{id_tag = "permabolt2"; name = "Cell 2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"adM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "permacell1"; name = "cell blast door"},/obj/machinery/door/airlock/glass{id_tag = "permabolt1"; name = "Cell 1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"adN" = (/obj/machinery/door/airlock{name = "Unisex Restroom"; req_access_txt = "0"},/turf/open/floor/plasteel/freezer,/area/security/prison)
+"adO" = (/obj/structure/closet/bombcloset,/turf/open/floor/plasteel/showroomfloor,/area/security/main)
+"adP" = (/obj/effect/landmark/secequipment,/turf/open/floor/plasteel/showroomfloor,/area/security/main)
+"adQ" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/showroomfloor,/area/security/main)
+"adR" = (/obj/machinery/newscaster/security_unit{pixel_x = -30; pixel_y = 0},/obj/machinery/camera{c_tag = "Head of Security's Office"; dir = 4; network = list("SS13")},/obj/machinery/recharger{pixel_y = 4},/obj/structure/table/wood,/turf/open/floor/carpet,/area/crew_quarters/heads/hos)
+"adS" = (/obj/structure/chair/comfy/black,/turf/open/floor/carpet,/area/crew_quarters/heads/hos)
+"adT" = (/turf/open/floor/carpet,/area/crew_quarters/heads/hos)
+"adU" = (/obj/machinery/holopad,/turf/open/floor/carpet,/area/crew_quarters/heads/hos)
+"adV" = (/obj/machinery/keycard_auth{pixel_x = 24; pixel_y = 10},/obj/structure/table/wood,/obj/item/device/radio/off,/obj/item/device/taperecorder{pixel_y = 0},/turf/open/floor/carpet,/area/crew_quarters/heads/hos)
+"adW" = (/obj/structure/sign/securearea{pixel_y = -32},/obj/structure/lattice/catwalk,/turf/open/space,/area/space)
+"adX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard/fore)
+"adY" = (/obj/structure/lattice,/obj/item/stack/cable_coil/random,/turf/open/space,/area/space)
+"adZ" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel/black,/area/security/transfer)
+"aea" = (/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel/black,/area/security/transfer)
+"aeb" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 2},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel/black,/area/security/transfer)
+"aec" = (/obj/structure/bed,/obj/machinery/camera{c_tag = "Prison Cell 3"; network = list("SS13","Prison")},/obj/item/device/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; dir = 2; name = "Prison Intercom (General)"; pixel_x = 0; pixel_y = 24; prison_radio = 1},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"aed" = (/obj/structure/chair/stool,/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{id = "permabolt3"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = 25; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"aee" = (/obj/structure/bed,/obj/machinery/camera{c_tag = "Prison Cell 2"; network = list("SS13","Prison")},/obj/item/device/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; dir = 2; name = "Prison Intercom (General)"; pixel_x = 0; pixel_y = 24; prison_radio = 1},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"aef" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"aeg" = (/obj/structure/chair/stool,/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{id = "permabolt2"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = 25; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"aeh" = (/obj/structure/bed,/obj/machinery/camera{c_tag = "Prison Cell 1"; network = list("SS13","Prison")},/obj/item/device/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; dir = 2; name = "Prison Intercom (General)"; pixel_x = 0; pixel_y = 24; prison_radio = 1},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"aei" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"aej" = (/obj/structure/chair/stool,/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{id = "permabolt1"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = 25; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"aek" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/freezer,/area/security/prison)
+"ael" = (/obj/structure/table,/obj/item/weapon/storage/box/firingpins,/obj/item/weapon/storage/box/firingpins,/obj/item/key/security,/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/security/armory)
+"aem" = (/obj/structure/table,/obj/item/weapon/storage/box/chemimp{pixel_x = 6},/obj/item/weapon/storage/box/trackimp{pixel_x = -3},/obj/item/weapon/storage/lockbox/loyalty,/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/security/armory)
+"aen" = (/obj/structure/rack,/obj/machinery/firealarm{pixel_y = 24},/obj/item/weapon/gun/energy/e_gun/dragnet,/obj/item/weapon/gun/energy/e_gun/dragnet,/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/security/armory)
+"aeo" = (/obj/structure/rack,/obj/item/clothing/suit/armor/bulletproof{pixel_x = -3; pixel_y = 3},/obj/item/clothing/suit/armor/bulletproof{pixel_y = 0},/obj/item/clothing/suit/armor/bulletproof{pixel_x = 3; pixel_y = -3},/obj/item/clothing/head/helmet/alt{layer = 3.00001; pixel_x = -3; pixel_y = 3},/obj/item/clothing/head/helmet/alt{layer = 3.00001},/obj/item/clothing/head/helmet/alt{layer = 3.00001; pixel_x = 3; pixel_y = -3},/obj/machinery/camera/motion{c_tag = "Armory Motion Sensor"; dir = 2; name = "motion-sensitive security camera"},/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/security/armory)
+"aep" = (/obj/structure/rack,/obj/item/clothing/suit/armor/riot{pixel_x = -3; pixel_y = 3},/obj/item/clothing/suit/armor/riot,/obj/item/clothing/suit/armor/riot{pixel_x = 3; pixel_y = -3},/obj/machinery/light{dir = 1},/obj/item/clothing/head/helmet/riot{pixel_x = -3; pixel_y = 3},/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot{pixel_x = 3; pixel_y = -3},/obj/item/weapon/shield/riot{pixel_x = -3; pixel_y = 3},/obj/item/weapon/shield/riot,/obj/item/weapon/shield/riot{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/security/armory)
+"aeq" = (/obj/structure/rack,/obj/machinery/airalarm{pixel_y = 23},/obj/item/weapon/gun/energy/ionrifle,/obj/item/weapon/gun/energy/temperature/security,/obj/item/clothing/suit/armor/laserproof,/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/security/armory)
+"aer" = (/obj/structure/closet/secure_closet/lethalshots,/turf/open/floor/plasteel/black,/area/ai_monitored/security/armory)
+"aes" = (/obj/vehicle/secway,/turf/open/floor/plasteel/black,/area/ai_monitored/security/armory)
+"aet" = (/obj/structure/closet/l3closet/security,/obj/machinery/camera{c_tag = "Brig Equipment Room"; dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/main)
+"aeu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/main)
+"aev" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{on = 0; pixel_x = -3; pixel_y = 8},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/turf/open/floor/carpet,/area/crew_quarters/heads/hos)
+"aew" = (/obj/structure/table/wood,/obj/item/weapon/folder/red,/obj/item/weapon/stamp/hos,/turf/open/floor/carpet,/area/crew_quarters/heads/hos)
+"aex" = (/obj/item/weapon/book/manual/wiki/security_space_law,/obj/structure/table/wood,/turf/open/floor/carpet,/area/crew_quarters/heads/hos)
+"aey" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/suit_storage_unit/hos,/turf/open/floor/carpet,/area/crew_quarters/heads/hos)
+"aez" = (/obj/machinery/door/airlock/external{name = "Security External Airlock"; req_access_txt = "63"},/turf/open/floor/plating,/area/security/main)
+"aeA" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar{id = "auxsolareast"; name = "Port Auxiliary Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port/fore)
+"aeB" = (/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/fore)
+"aeC" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/preopen{id = "executionfireblast"; layer = 2.9; name = "blast door"},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/transfer)
+"aeD" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "executionfireblast"; layer = 2.9; name = "blast door"},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/transfer)
+"aeE" = (/obj/machinery/door/poddoor/preopen{id = "executionfireblast"; layer = 2.9; name = "blast door"},/obj/machinery/atmospherics/pipe/simple/general/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/window/westright{dir = 1; name = "Transfer Room"; req_access_txt = "2"},/turf/open/floor/plasteel/vault{dir = 8},/area/security/transfer)
+"aeF" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/machinery/flasher{id = "PCell 3"; pixel_x = -28},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"aeG" = (/obj/structure/table,/obj/item/weapon/paper,/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"aeH" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/machinery/flasher{id = "PCell 2"; pixel_x = -28},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"aeI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"aeJ" = (/obj/structure/table,/obj/item/weapon/paper,/obj/item/weapon/pen,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"aeK" = (/obj/machinery/flasher{id = "PCell 1"; pixel_x = -28},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"aeL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"aeM" = (/obj/structure/toilet{dir = 1},/turf/open/floor/plasteel/freezer,/area/security/prison)
+"aeN" = (/obj/item/weapon/grenade/barrier{pixel_x = 4},/obj/item/weapon/grenade/barrier,/obj/item/weapon/grenade/barrier{pixel_x = -4},/obj/structure/table,/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/security/armory)
+"aeO" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
+"aeP" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
+"aeQ" = (/obj/machinery/power/apc{cell_type = 5000; dir = 4; name = "Armory APC"; pixel_x = 24; pixel_y = 0},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
+"aeR" = (/obj/machinery/vending/security,/turf/open/floor/plasteel/showroomfloor,/area/security/main)
+"aeS" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/carpet,/area/crew_quarters/heads/hos)
+"aeT" = (/obj/structure/chair{dir = 1},/turf/open/floor/carpet,/area/crew_quarters/heads/hos)
+"aeU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/carpet,/area/crew_quarters/heads/hos)
+"aeV" = (/obj/item/weapon/storage/secure/safe/HoS{pixel_x = 35},/obj/structure/closet/secure_closet/hos,/turf/open/floor/carpet,/area/crew_quarters/heads/hos)
+"aeW" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = -32; pixel_y = 0},/turf/open/floor/plating,/area/security/main)
+"aeX" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar{id = "auxsolareast"; name = "Port Auxiliary Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard/fore)
+"aeY" = (/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard/fore)
+"aeZ" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/fore)
+"afa" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/fore)
+"afb" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/fore)
+"afc" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/fore)
+"afd" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/fore)
+"afe" = (/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/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/fore)
+"aff" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/fore)
+"afg" = (/obj/structure/sign/securearea{pixel_x = 32; pixel_y = 0},/turf/open/space,/area/space)
+"afh" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/scalpel{pixel_y = 12},/obj/item/weapon/circular_saw,/obj/item/weapon/hemostat,/obj/item/weapon/retractor,/obj/item/weapon/surgical_drapes,/obj/item/weapon/razor,/turf/open/floor/plasteel/black,/area/security/transfer)
+"afi" = (/obj/structure/table,/obj/item/weapon/folder/red{pixel_x = 3},/obj/item/device/taperecorder{pixel_x = -3; pixel_y = 0},/obj/item/device/assembly/flash/handheld,/obj/item/weapon/reagent_containers/spray/pepper,/turf/open/floor/plasteel/black,/area/security/transfer)
+"afj" = (/obj/machinery/button/flasher{id = "executionflash"; pixel_x = 24; pixel_y = 5},/obj/machinery/button/door{id = "executionspaceblast"; name = "Vent to Space"; pixel_x = 25; pixel_y = -5; req_access_txt = "7"},/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/open/floor/plasteel/black,/area/security/transfer)
+"afk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/security/prison)
+"afl" = (/obj/machinery/door/airlock/glass_security{name = "Long-Term Cell 3"; req_access_txt = "2"},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"afm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/security/prison)
+"afn" = (/obj/machinery/door/airlock/glass_security{name = "Long-Term Cell 2"; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"afo" = (/obj/machinery/door/airlock/glass_security{name = "Long-Term Cell 1"; req_access_txt = "2"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
+"afp" = (/obj/structure/closet/secure_closet{anchored = 1; name = "Contraband Locker"; req_access_txt = "3"},/turf/open/floor/plasteel/black,/area/ai_monitored/security/armory)
+"afq" = (/obj/item/weapon/storage/toolbox/drone,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
+"afr" = (/obj/structure/rack,/obj/item/weapon/gun/ballistic/shotgun/riot{pixel_x = -3; pixel_y = 3},/obj/item/weapon/gun/ballistic/shotgun/riot,/obj/item/weapon/gun/ballistic/shotgun/riot{pixel_x = 3; pixel_y = -3},/obj/effect/turf_decal/bot{dir = 2},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel{dir = 2},/area/ai_monitored/security/armory)
+"afs" = (/obj/structure/rack,/obj/item/weapon/gun/energy/e_gun{pixel_x = -3; pixel_y = 3},/obj/item/weapon/gun/energy/e_gun,/obj/item/weapon/gun/energy/e_gun{pixel_x = 3; pixel_y = -3},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/effect/turf_decal/bot{dir = 2},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/open/floor/plasteel{dir = 2},/area/ai_monitored/security/armory)
+"aft" = (/obj/structure/rack,/obj/item/weapon/gun/energy/laser{pixel_x = -3; pixel_y = 3},/obj/item/weapon/gun/energy/laser,/obj/item/weapon/gun/energy/laser{pixel_x = 3; pixel_y = -3},/obj/effect/turf_decal/bot{dir = 2},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/open/floor/plasteel{dir = 2},/area/ai_monitored/security/armory)
+"afu" = (/obj/structure/rack,/obj/item/weapon/gun/energy/e_gun/advtaser{pixel_x = -3; pixel_y = 3},/obj/item/weapon/gun/energy/e_gun/advtaser,/obj/item/weapon/gun/energy/e_gun/advtaser{pixel_x = 3; pixel_y = -3},/obj/effect/turf_decal/bot{dir = 2},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel{dir = 2},/area/ai_monitored/security/armory)
+"afv" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
+"afw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
+"afx" = (/obj/machinery/door/window/eastleft{name = "armoury desk"; req_access_txt = "1"},/obj/machinery/door/window/westleft{name = "armoury desk"; req_access_txt = "3"},/obj/structure/table/reinforced,/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
+"afy" = (/obj/machinery/power/apc{dir = 8; name = "Head of Security's Office APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/crew_quarters/heads/hos)
+"afz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/carpet,/area/crew_quarters/heads/hos)
+"afA" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/crew_quarters/heads/hos)
+"afB" = (/obj/machinery/light_switch{pixel_y = -23},/obj/effect/landmark/event_spawn,/turf/open/floor/carpet,/area/crew_quarters/heads/hos)
+"afC" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/carpet,/area/crew_quarters/heads/hos)
+"afD" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard/fore)
+"afE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard/fore)
+"afF" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard/fore)
+"afG" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard/fore)
+"afH" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard/fore)
+"afI" = (/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"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard/fore)
+"afJ" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard/fore)
+"afK" = (/obj/structure/cable,/obj/machinery/power/solar{id = "auxsolareast"; name = "Port Auxiliary Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port/fore)
+"afL" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plating,/area/security/transfer)
+"afM" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/security/transfer)
+"afN" = (/obj/structure/table,/obj/item/device/flashlight/lamp,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/security/transfer)
+"afO" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/black,/area/security/transfer)
+"afP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/button/ignition{id = "executionburn"; pixel_x = 24; pixel_y = 5},/obj/machinery/button/door{id = "executionfireblast"; name = "Transfer Area Lockdown"; pixel_x = 25; pixel_y = -5; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/open/floor/plasteel/black,/area/security/transfer)
+"afQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/closed/wall/r_wall,/area/security/transfer)
+"afR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red/side{dir = 8},/area/security/prison)
+"afS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison)
+"afT" = (/obj/machinery/button/door{id = "permacell3"; name = "Cell 3 Lockdown"; pixel_x = -4; pixel_y = 25; req_access_txt = "2"},/obj/machinery/button/flasher{id = "PCell 3"; pixel_x = 6; pixel_y = 24},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/red/corner{dir = 4},/area/security/prison)
+"afU" = (/obj/machinery/light{dir = 1},/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas."; name = "Prison Monitor"; network = list("Prison"); pixel_x = 0; pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/prison)
+"afV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/prison)
+"afW" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/prison)
+"afX" = (/obj/machinery/button/door{id = "permacell2"; name = "Cell 2 Lockdown"; pixel_x = -4; pixel_y = 25; req_access_txt = "2"},/obj/machinery/button/flasher{id = "PCell 2"; pixel_x = 6; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/corner{dir = 4},/area/security/prison)
+"afY" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas."; name = "Prison Monitor"; network = list("Prison"); pixel_x = 0; pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Prison Hallway"; network = list("SS13","Prison")},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/prison)
+"afZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/prison)
+"aga" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/prison)
+"agb" = (/obj/machinery/button/door{id = "permacell1"; name = "Cell 1 Lockdown"; pixel_x = -4; pixel_y = 25; req_access_txt = "2"},/obj/machinery/button/flasher{id = "PCell 1"; pixel_x = 6; pixel_y = 24},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel/red/corner{dir = 4},/area/security/prison)
+"agc" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/light{dir = 1},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/prison)
+"agd" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/power/apc{dir = 4; name = "Prison Wing APC"; pixel_x = 24; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/prison)
+"age" = (/obj/machinery/flasher/portable,/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/security/armory)
+"agf" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
+"agg" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
+"agh" = (/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
+"agi" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
+"agj" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1},/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
+"agk" = (/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
+"agl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
+"agm" = (/obj/machinery/door/poddoor/shutters{id = "armory"; name = "Armoury Shutter"},/obj/machinery/button/door{id = "armory"; name = "Armory Shutters"; pixel_x = 0; pixel_y = -26; req_access_txt = "3"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/ai_monitored/security/armory)
+"agn" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/showroomfloor,/area/security/main)
+"ago" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/reagent_dispensers/peppertank{pixel_x = 30; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/main)
+"agp" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/heads/hos)
+"agq" = (/obj/machinery/door/airlock/glass_command{name = "Head of Security"; req_access_txt = "58"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/crew_quarters/heads/hos)
+"agr" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/heads/hos)
+"ags" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/weapon/pen,/turf/open/floor/plasteel,/area/security/main)
+"agt" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/security/main)
+"agu" = (/obj/machinery/camera{c_tag = "Security Escape Pod"; dir = 4; network = list("SS13")},/turf/open/floor/plating,/area/security/main)
+"agv" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 8},/turf/closed/wall/mineral/titanium,/area/shuttle/pod_3)
+"agw" = (/turf/closed/wall/mineral/titanium,/area/shuttle/pod_3)
+"agx" = (/obj/structure/cable,/obj/machinery/power/solar{id = "auxsolareast"; name = "Port Auxiliary Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard/fore)
+"agy" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/machinery/light/small{dir = 8},/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/security/transfer)
+"agz" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plating,/area/security/transfer)
+"agA" = (/obj/structure/rack,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/item/weapon/tank/internals/anesthetic{pixel_x = -3; pixel_y = 1},/obj/item/weapon/tank/internals/oxygen/red{pixel_x = 3},/turf/open/floor/plasteel/vault{dir = 8},/area/security/transfer)
+"agB" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/black,/area/security/transfer)
+"agC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/general/hidden,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel/black,/area/security/transfer)
+"agD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{aiControlDisabled = 0; icon_state = "door_closed"; id_tag = null; locked = 0; name = "Prisoner Transfer Centre"; req_access = null; req_access_txt = "2"},/turf/open/floor/plasteel/black,/area/security/transfer)
+"agE" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/prison)
+"agF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/prison)
+"agG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/security/prison)
+"agH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/prison)
+"agI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison)
+"agJ" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/prison)
+"agK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/security/prison)
+"agL" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/prison)
+"agM" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/prison)
+"agN" = (/obj/structure/rack,/obj/item/weapon/storage/box/rubbershot{pixel_x = -3; pixel_y = 3},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/storage/box/rubbershot{pixel_x = -3; pixel_y = 3},/obj/item/weapon/storage/box/rubbershot,/obj/item/weapon/storage/box/rubbershot,/obj/item/weapon/storage/box/rubbershot{pixel_x = 3; pixel_y = -3},/obj/item/weapon/storage/box/rubbershot{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/security/armory)
+"agO" = (/obj/structure/rack,/obj/item/weapon/storage/box/teargas{pixel_x = -3; pixel_y = 3},/obj/item/weapon/storage/box/handcuffs,/obj/item/weapon/storage/box/flashbangs{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/security/armory)
+"agP" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
+"agQ" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
+"agR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/suit_storage_unit/security,/turf/open/floor/plasteel/red/side,/area/ai_monitored/security/armory)
+"agS" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/suit_storage_unit/security,/turf/open/floor/plasteel/red/side,/area/ai_monitored/security/armory)
+"agT" = (/obj/structure/table,/obj/machinery/recharger,/turf/open/floor/plasteel/showroomfloor,/area/security/main)
+"agU" = (/obj/machinery/recharger,/obj/structure/table,/turf/open/floor/plasteel/showroomfloor,/area/security/main)
+"agV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/main)
+"agW" = (/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/closet/wardrobe/red,/turf/open/floor/plasteel/showroomfloor,/area/security/main)
+"agX" = (/obj/effect/landmark/start/security_officer,/turf/open/floor/plasteel/red/side{dir = 9},/area/security/main)
+"agY" = (/obj/effect/landmark/start/security_officer,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red/side{dir = 1},/area/security/main)
+"agZ" = (/obj/effect/landmark/start/security_officer,/turf/open/floor/plasteel/red/side{dir = 1},/area/security/main)
+"aha" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/side{dir = 1},/area/security/main)
+"ahb" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/landmark/start/security_officer,/turf/open/floor/plasteel/red/side{dir = 1},/area/security/main)
+"ahc" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/effect/landmark/start/security_officer,/turf/open/floor/plasteel/red/side{dir = 1},/area/security/main)
+"ahd" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/main)
+"ahe" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/security/main)
+"ahf" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 4; name = "Escape Pod Three"; req_access_txt = "0"},/turf/open/floor/plating,/area/security/main)
+"ahg" = (/turf/open/floor/plating,/area/security/main)
+"ahh" = (/obj/machinery/door/airlock/external{name = "Escape Pod Three"; req_access_txt = "0"},/turf/open/floor/plating,/area/security/main)
+"ahi" = (/obj/machinery/door/airlock/titanium{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{dir = 4; id = "pod3"; name = "escape pod 3"; port_angle = 180; preferred_direction = 4},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_3)
+"ahj" = (/obj/item/device/radio/intercom{pixel_y = 25},/obj/item/weapon/storage/pod{pixel_x = 6; pixel_y = -32},/obj/structure/chair{dir = 4},/obj/machinery/light/small,/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_3)
+"ahk" = (/obj/machinery/computer/shuttle/pod{pixel_y = -32; possible_destinations = "pod_lavaland3"; shuttleId = "pod3"},/obj/structure/chair{dir = 4},/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 0; pixel_y = 32},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_3)
+"ahl" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/pod_3)
+"ahm" = (/obj/docking_port/stationary/random{dir = 4; id = "pod_lavaland3"; name = "lavaland"},/turf/open/space,/area/space)
+"ahn" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/transfer)
+"aho" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plating,/area/security/transfer)
+"ahp" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; layer = 2.4},/obj/machinery/door/window/southleft{base_state = "right"; dir = 4; icon_state = "right"; name = "Armory"; req_access_txt = "2"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/security/transfer)
+"ahq" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{icon_state = "intact"; dir = 4},/turf/open/floor/plasteel/black,/area/security/transfer)
+"ahr" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/obj/machinery/atmospherics/pipe/simple/general/hidden{icon_state = "intact"; dir = 4},/turf/open/floor/plasteel/black,/area/security/transfer)
+"ahs" = (/obj/machinery/light_switch{pixel_x = 25; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 9},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/black,/area/security/transfer)
+"aht" = (/turf/closed/wall/r_wall,/area/security/transfer)
+"ahu" = (/obj/structure/table,/obj/item/weapon/restraints/handcuffs,/turf/open/floor/plasteel/red/side{dir = 10},/area/security/prison)
+"ahv" = (/obj/structure/extinguisher_cabinet{pixel_x = 1; pixel_y = -27},/turf/open/floor/plasteel/red/side,/area/security/prison)
+"ahw" = (/turf/open/floor/plasteel/red/side,/area/security/prison)
+"ahx" = (/obj/structure/table,/obj/item/device/electropack,/turf/open/floor/plasteel/red/side,/area/security/prison)
+"ahy" = (/obj/structure/table,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/item/weapon/storage/box/hug,/obj/item/weapon/razor{pixel_x = -6},/turf/open/floor/plasteel/red/side,/area/security/prison)
+"ahz" = (/obj/structure/table,/obj/item/device/assembly/signaler,/obj/item/clothing/suit/straight_jacket,/turf/open/floor/plasteel/red/side,/area/security/prison)
+"ahA" = (/obj/structure/closet/secure_closet/brig{anchored = 1},/turf/open/floor/plasteel/red/side,/area/security/prison)
+"ahB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Prison Wing"; req_access_txt = "2"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/side{dir = 9},/area/security/prison)
+"ahC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Prison Wing"; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red/side{dir = 5},/area/security/prison)
+"ahD" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/ai_monitored/security/armory)
+"ahE" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/ai_monitored/security/armory)
+"ahF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/door/window/southleft{name = "Armory"; req_access_txt = "3"},/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
+"ahG" = (/obj/machinery/door/firedoor,/obj/machinery/door/window/southleft{base_state = "right"; icon_state = "right"; name = "Armory"; req_access_txt = "3"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
+"ahH" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/plating,/area/ai_monitored/security/armory)
+"ahI" = (/obj/structure/reagent_dispensers/peppertank,/turf/closed/wall/r_wall,/area/ai_monitored/security/armory)
+"ahJ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/sign/securearea{pixel_x = -32},/turf/open/floor/plating,/area/security/main)
+"ahK" = (/obj/machinery/door/airlock/glass_security{name = "Equipment Room"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/main)
+"ahL" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/main)
+"ahM" = (/obj/effect/landmark/start/security_officer,/turf/open/floor/plasteel/red/side{dir = 8},/area/security/main)
+"ahN" = (/obj/structure/table,/obj/item/weapon/restraints/handcuffs,/obj/item/device/assembly/timer,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/main)
+"ahO" = (/turf/open/floor/plasteel,/area/security/main)
+"ahP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/landmark/start/head_of_security,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/main)
+"ahQ" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/main)
+"ahR" = (/obj/structure/table,/obj/item/device/radio/off,/obj/item/weapon/screwdriver{pixel_y = 10},/turf/open/floor/plasteel,/area/security/main)
+"ahS" = (/obj/effect/landmark/start/security_officer,/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/security/main)
+"ahT" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/red/side{dir = 4},/area/security/main)
+"ahU" = (/obj/structure/sign/pods{pixel_x = 32; pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/security/main)
+"ahV" = (/obj/structure/closet/emcloset,/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/security/main)
+"ahW" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 1},/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/pen,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/open/floor/plasteel/black,/area/security/transfer)
+"ahX" = (/obj/structure/table,/obj/item/device/electropack,/obj/item/weapon/screwdriver,/obj/item/weapon/wrench,/obj/item/clothing/head/helmet,/obj/item/device/assembly/signaler,/obj/machinery/light/small,/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/open/floor/plasteel/black,/area/security/transfer)
+"ahY" = (/obj/structure/closet/secure_closet/injection,/obj/structure/cable,/obj/machinery/power/apc{dir = 2; name = "Prisoner Transfer Centre"; pixel_x = 0; pixel_y = -27},/turf/open/floor/plasteel/black,/area/security/transfer)
+"ahZ" = (/obj/machinery/door/airlock/security{name = "Interrogation"; req_access = null; req_access_txt = "63"},/turf/open/floor/plasteel/black,/area/security/prison)
+"aia" = (/turf/closed/wall,/area/security/brig)
+"aib" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/securearea{pixel_x = -32; pixel_y = 0},/obj/machinery/door/poddoor/preopen{id = "Prison Gate"; name = "prison blast door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/security/brig)
+"aic" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "Prison Gate"; name = "prison blast door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/security/brig)
+"aid" = (/turf/closed/wall/r_wall,/area/security/warden)
+"aie" = (/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_x = -30; pixel_y = 0},/obj/machinery/camera{c_tag = "Brig Control Room"; dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/rack,/obj/item/clothing/mask/gas/sechailer{pixel_x = -3; pixel_y = 3},/obj/item/clothing/mask/gas/sechailer,/obj/item/clothing/mask/gas/sechailer{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"aif" = (/obj/machinery/computer/prisoner,/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"aig" = (/obj/machinery/computer/security,/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"aih" = (/obj/machinery/computer/secure_data,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"aii" = (/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"aij" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"aik" = (/obj/structure/table,/obj/item/clothing/glasses/sunglasses{pixel_x = 3; pixel_y = 3},/obj/item/clothing/glasses/sunglasses{pixel_x = 3; pixel_y = 3},/obj/item/clothing/ears/earmuffs{pixel_x = -3; pixel_y = -2},/obj/item/clothing/ears/earmuffs{pixel_x = -3; pixel_y = -2},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"ail" = (/obj/structure/table,/obj/machinery/recharger,/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"aim" = (/obj/structure/table,/obj/machinery/syndicatebomb/training,/obj/item/weapon/gun/energy/laser/practice,/turf/open/floor/plasteel/red/side{dir = 9},/area/security/main)
+"ain" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/side{dir = 1},/area/security/main)
+"aio" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/main)
+"aip" = (/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_y = 30},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/main)
+"aiq" = (/obj/effect/landmark/start/security_officer,/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/main)
+"air" = (/obj/structure/table,/obj/item/device/assembly/flash/handheld,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/main)
+"ais" = (/obj/machinery/holopad,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/main)
+"ait" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/pen,/turf/open/floor/plasteel,/area/security/main)
+"aiu" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/main)
+"aiv" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/black,/area/security/prison)
+"aiw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/security/prison)
+"aix" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/security/prison)
+"aiy" = (/obj/item/weapon/cigbutt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/black,/area/security/prison)
+"aiz" = (/turf/open/floor/plasteel/black,/area/security/prison)
+"aiA" = (/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/table/glass,/turf/open/floor/plasteel/whitered/side{dir = 9},/area/security/brig)
+"aiB" = (/obj/item/weapon/storage/firstaid/regular{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/firstaid/regular,/obj/structure/table/glass,/turf/open/floor/plasteel/whitered/side{dir = 1},/area/security/brig)
+"aiC" = (/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 24},/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop,/turf/open/floor/plasteel/whitered/side{dir = 1},/area/security/brig)
+"aiD" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/iv_drip{density = 0},/obj/item/weapon/reagent_containers/blood/empty,/turf/open/floor/plasteel/whitered/side{dir = 5},/area/security/brig)
+"aiE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/side{dir = 9},/area/security/brig)
+"aiF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red/side{dir = 5},/area/security/brig)
+"aiG" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/warden)
+"aiH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"aiI" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"aiJ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"aiK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"aiL" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"aiM" = (/obj/structure/table,/obj/machinery/recharger,/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"aiN" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/warden)
+"aiO" = (/obj/structure/table,/obj/item/weapon/storage/fancy/donut_box,/turf/open/floor/plasteel/red/side{dir = 8},/area/security/main)
+"aiP" = (/obj/effect/landmark/start/security_officer,/turf/open/floor/plasteel,/area/security/main)
+"aiQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/main)
+"aiR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/main)
+"aiS" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/main)
+"aiT" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/security/main)
+"aiU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/main)
+"aiV" = (/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j2s"; sortType = 8},/turf/open/floor/plasteel,/area/security/main)
+"aiW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/turf/open/floor/plasteel,/area/security/main)
+"aiX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/start/security_officer,/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/security/main)
+"aiY" = (/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j2s"; sortType = 7},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/main)
+"aiZ" = (/obj/machinery/door/window/eastright{base_state = "left"; dir = 8; icon_state = "left"; name = "Security Delivery"; req_access_txt = "1"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/main)
+"aja" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; dir = 8; freq = 1400; location = "Security"},/obj/structure/plasticflaps{opacity = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/security/main)
+"ajb" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"ajc" = (/turf/closed/wall,/area/maintenance/fore/secondary)
+"ajd" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel/black,/area/security/prison)
+"aje" = (/obj/structure/table,/obj/item/device/flashlight/lamp,/turf/open/floor/plasteel/black,/area/security/prison)
+"ajf" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/security/prison)
+"ajg" = (/obj/item/weapon/storage/box/bodybags,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/obj/item/weapon/reagent_containers/syringe{name = "steel point"},/obj/item/weapon/reagent_containers/glass/bottle/charcoal,/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/table/glass,/turf/open/floor/plasteel/whitered/side{dir = 10},/area/security/brig)
+"ajh" = (/turf/open/floor/plasteel/whitered/corner{dir = 8},/area/security/brig)
+"aji" = (/turf/open/floor/plasteel/white,/area/security/brig)
+"ajj" = (/obj/machinery/door/window/westleft{base_state = "left"; dir = 4; icon_state = "left"; name = "Brig Infirmary"; req_access_txt = "0"},/turf/open/floor/plasteel/whitered/side{dir = 4},/area/security/brig)
+"ajk" = (/obj/machinery/power/apc{dir = 8; name = "Brig Control APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"ajl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"ajm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"ajn" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"ajo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"ajp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"ajq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"ajr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"ajs" = (/obj/machinery/door/airlock/glass_security{name = "Brig Control"; req_access_txt = "3"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"ajt" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/main)
+"aju" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main)
+"ajv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/main)
+"ajw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main)
+"ajx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main)
+"ajy" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-y"; dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main)
+"ajz" = (/obj/structure/disposalpipe/segment{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/chair,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/landmark/start/security_officer,/turf/open/floor/plasteel,/area/security/main)
+"ajA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main)
+"ajB" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main)
+"ajC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main)
+"ajD" = (/obj/machinery/power/apc{dir = 4; name = "Security Office APC"; pixel_x = 24; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/main)
+"ajE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/security/main)
+"ajF" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"ajG" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/device/taperecorder{pixel_y = 0},/turf/open/floor/plasteel/black,/area/security/prison)
+"ajH" = (/obj/machinery/camera{c_tag = "Brig Interrogation"; dir = 8},/turf/open/floor/plasteel/black,/area/security/prison)
+"ajI" = (/obj/structure/bodycontainer/morgue,/obj/machinery/camera{c_tag = "Brig Infirmary"; dir = 4},/turf/open/floor/plasteel/black,/area/security/brig)
+"ajJ" = (/turf/open/floor/plasteel/whitered/side{dir = 8},/area/security/brig)
+"ajK" = (/obj/machinery/door/window/westleft{base_state = "right"; dir = 4; icon_state = "right"; name = "Brig Infirmary"; req_access_txt = "0"},/turf/open/floor/plasteel/whitered/side{dir = 4},/area/security/brig)
+"ajL" = (/obj/structure/closet/secure_closet/warden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"ajM" = (/obj/structure/table,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"ajN" = (/obj/structure/chair/office/dark,/obj/effect/landmark/start/warden,/obj/machinery/button/door{id = "Prison Gate"; name = "Prison Wing Lockdown"; pixel_x = -27; pixel_y = 8; req_access_txt = "2"},/obj/machinery/button/door{id = "Secure Gate"; name = "Cell Shutters"; pixel_x = -27; pixel_y = -2; req_access_txt = "0"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"ajO" = (/obj/structure/table,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"ajP" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/pen,/obj/item/weapon/hand_labeler,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/book/manual/wiki/security_space_law,/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"ajQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"ajR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"ajS" = (/obj/machinery/light_switch{pixel_y = -23},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"ajT" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/warden)
+"ajU" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/side{dir = 10},/area/security/main)
+"ajV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/red/side,/area/security/main)
+"ajW" = (/obj/structure/noticeboard{dir = 1; pixel_y = -27},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/side,/area/security/main)
+"ajX" = (/obj/machinery/light_switch{pixel_y = -23},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/red/side,/area/security/main)
+"ajY" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/side,/area/security/main)
+"ajZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/side,/area/security/main)
+"aka" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/red/side,/area/security/main)
+"akb" = (/obj/machinery/camera{c_tag = "Security Office"; dir = 1; network = list("SS13")},/obj/machinery/computer/secure_data,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/side,/area/security/main)
+"akc" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/obj/machinery/computer/security,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/side,/area/security/main)
+"akd" = (/obj/structure/filingcabinet,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = -32},/turf/open/floor/plasteel/red/side,/area/security/main)
+"ake" = (/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/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/side,/area/security/main)
+"akf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/open/floor/plasteel/red/side,/area/security/main)
+"akg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/side{dir = 6},/area/security/main)
+"akh" = (/obj/machinery/door/airlock/maintenance{name = "Security Maintenance"; req_access_txt = "1"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/security/main)
+"aki" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"akj" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"akk" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"akl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/security/prison)
+"akm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/security/prison)
+"akn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/security/prison)
+"ako" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/black,/area/security/prison)
+"akp" = (/obj/structure/bodycontainer/morgue,/turf/open/floor/plasteel/black,/area/security/brig)
+"akq" = (/turf/open/floor/plasteel/whitered/side{dir = 10},/area/security/brig)
+"akr" = (/obj/structure/bed,/obj/item/clothing/suit/straight_jacket,/turf/open/floor/plasteel/whitered/side,/area/security/brig)
+"aks" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/bed,/obj/item/clothing/suit/straight_jacket,/turf/open/floor/plasteel/whitered/side{dir = 6},/area/security/brig)
+"akt" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_x = -32},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/warden)
+"aku" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/warden)
+"akv" = (/obj/structure/table/reinforced,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/door/window/brigdoor{dir = 1; name = "Armory Desk"; req_access_txt = "3"},/obj/machinery/door/window/southleft{name = "Reception Desk"; req_access_txt = "63"},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen{pixel_x = 4; pixel_y = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"akw" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/warden)
+"akx" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/warden)
+"aky" = (/obj/machinery/door/airlock/glass_security{name = "Brig Control"; req_access_txt = "3"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
+"akz" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable,/turf/open/floor/plating,/area/security/warden)
+"akA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Security Office"; req_access = null; req_access_txt = "1"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/main)
+"akB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/security/main)
+"akC" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"akD" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"akE" = (/obj/item/stack/rods,/turf/open/space,/area/space)
+"akF" = (/turf/closed/wall,/area/security/processing)
+"akG" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/processing)
+"akH" = (/obj/machinery/door/airlock/security{name = "Interrogation"; req_access = null; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/security/prison)
+"akI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/brig)
+"akJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red/corner{dir = 4},/area/security/brig)
+"akK" = (/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig)
+"akL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig)
+"akM" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig)
+"akN" = (/obj/structure/sign/goldenplaque{pixel_y = 32},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig)
+"akO" = (/obj/machinery/camera{c_tag = "Brig East"},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig)
+"akP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig)
+"akQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig)
+"akR" = (/turf/open/floor/plasteel/red/side{dir = 5},/area/security/brig)
+"akS" = (/turf/closed/wall/r_wall,/area/security/brig)
+"akT" = (/obj/machinery/light_switch{pixel_y = 28},/obj/structure/closet/secure_closet/courtroom,/obj/effect/decal/cleanable/cobweb,/obj/structure/sign/securearea{pixel_x = -32},/obj/item/weapon/gavelhammer,/turf/open/floor/plasteel,/area/security/courtroom)
+"akU" = (/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20},/obj/machinery/camera{c_tag = "Courtroom North"},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/security/courtroom)
+"akV" = (/obj/structure/chair{name = "Judge"},/turf/open/floor/plasteel/blue/side{dir = 9},/area/security/courtroom)
+"akW" = (/obj/structure/chair{name = "Judge"},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/blue/side{dir = 1},/area/security/courtroom)
+"akX" = (/obj/structure/chair{name = "Judge"},/turf/open/floor/plasteel/blue/side{dir = 5},/area/security/courtroom)
+"akY" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/open/floor/plasteel,/area/security/courtroom)
+"akZ" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/black,/area/security/courtroom)
+"ala" = (/turf/open/floor/plasteel/black,/area/security/courtroom)
+"alb" = (/turf/closed/wall,/area/security/courtroom)
+"alc" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/fore)
+"ald" = (/obj/machinery/gulag_teleporter,/turf/open/floor/plasteel,/area/security/processing)
+"ale" = (/obj/machinery/computer/gulag_teleporter_computer,/turf/open/floor/plasteel,/area/security/processing)
+"alf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/machinery/computer/security{name = "Labor Camp Monitoring"; network = list("Labor")},/turf/open/floor/plasteel,/area/security/processing)
+"alg" = (/obj/structure/sign/securearea{pixel_x = 32; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/table,/obj/item/weapon/storage/box/prisoner,/obj/machinery/camera{c_tag = "Labor Shuttle Dock North"},/turf/open/floor/plasteel,/area/security/processing)
+"alh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/brig)
+"ali" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/side{dir = 9},/area/security/brig)
+"alj" = (/obj/machinery/power/apc{dir = 1; name = "Brig APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig)
+"alk" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig)
+"all" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig)
+"alm" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig)
+"aln" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig)
+"alo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/brig)
+"alp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"alq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
+"alr" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"als" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"alt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"alu" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"alv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"alw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"alx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/brig)
+"aly" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Brig"; req_access = null; req_access_txt = "63; 42"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"alz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom)
+"alA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 9},/area/security/courtroom)
+"alB" = (/obj/structure/table/wood,/obj/item/device/radio/intercom{broadcasting = 0; dir = 8; listening = 1; name = "Station Intercom (Court)"; pixel_x = 0},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/security/courtroom)
+"alC" = (/obj/structure/table/wood,/obj/item/weapon/gavelblock,/turf/open/floor/plasteel/neutral/side{dir = 1},/area/security/courtroom)
+"alD" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/open/floor/plasteel/neutral/side{dir = 1},/area/security/courtroom)
+"alE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral/side{dir = 5},/area/security/courtroom)
+"alF" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/vault{dir = 8},/area/security/courtroom)
+"alG" = (/obj/machinery/door/window/southleft{name = "Court Cell"; req_access_txt = "2"},/turf/open/floor/plasteel/black,/area/security/courtroom)
+"alH" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/solars/port/fore)
+"alI" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/port/fore)
+"alJ" = (/turf/closed/wall/mineral/titanium,/area/shuttle/labor)
+"alK" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/labor)
+"alL" = (/turf/closed/wall/r_wall,/area/security/processing)
+"alM" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/security/processing)
+"alN" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel,/area/security/processing)
+"alO" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/processing)
+"alP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/security/processing)
+"alQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Labor Shuttle"; req_access = null; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"alR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/brig)
+"alS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"alT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera{c_tag = "Brig West"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/brig)
+"alU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/side,/area/security/brig)
+"alV" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/corner{dir = 8},/area/security/brig)
+"alW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"alX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/brig)
+"alY" = (/obj/machinery/light,/obj/machinery/door_timer{id = "Cell 1"; name = "Cell 1"; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/side,/area/security/brig)
+"alZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/corner{dir = 8},/area/security/brig)
+"ama" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/brig)
+"amb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door_timer{id = "Cell 2"; name = "Cell 2"; pixel_y = -32},/turf/open/floor/plasteel/red/side,/area/security/brig)
+"amc" = (/obj/machinery/camera{c_tag = "Brig Central"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door_timer{id = "Cell 3"; name = "Cell 3"; pixel_y = -32},/turf/open/floor/plasteel/red/side,/area/security/brig)
+"amd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/side,/area/security/brig)
+"ame" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/red/side{dir = 9},/area/security/brig)
+"amf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/brig)
+"amg" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door_timer{id = "Cell 4"; name = "Cell 4"; pixel_y = -32},/turf/open/floor/plasteel/red/side,/area/security/brig)
+"amh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/red/corner{dir = 8},/area/security/brig)
+"ami" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"amj" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/brig)
+"amk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/brig)
+"aml" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom)
+"amm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/side{dir = 8},/area/security/courtroom)
+"amn" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 4},/area/security/courtroom)
+"amo" = (/turf/open/floor/plasteel,/area/security/courtroom)
+"amp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/port/fore)
+"amq" = (/obj/machinery/computer/shuttle/labor,/obj/structure/reagent_dispensers/peppertank{pixel_x = -31; pixel_y = 0},/turf/open/floor/mineral/plastitanium,/area/shuttle/labor)
+"amr" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/mineral/plastitanium,/area/shuttle/labor)
+"ams" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/restraints/handcuffs,/turf/open/floor/mineral/plastitanium,/area/shuttle/labor)
+"amt" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/processing)
+"amu" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/security/processing)
+"amv" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel,/area/security/processing)
+"amw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/processing)
+"amx" = (/obj/machinery/light_switch{pixel_x = 27},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/processing)
+"amy" = (/obj/machinery/door/airlock/glass_security{id_tag = null; name = "Evidence Storage"; req_access_txt = "63"},/turf/open/floor/plasteel/red/side,/area/security/brig)
+"amz" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/brig)
+"amA" = (/obj/machinery/door/window/brigdoor{id = "Cell 1"; name = "Cell 1"; req_access_txt = "1"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/red/side,/area/security/brig)
+"amB" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/brig)
+"amC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/closed/wall,/area/security/brig)
+"amD" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/brig)
+"amE" = (/obj/machinery/door/window/brigdoor{id = "Cell 2"; name = "Cell 2"; req_access_txt = "1"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/red/side,/area/security/brig)
+"amF" = (/obj/machinery/door/window/brigdoor{id = "Cell 3"; name = "Cell 3"; req_access_txt = "1"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/red/side,/area/security/brig)
+"amG" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/brig)
+"amH" = (/obj/machinery/door/airlock/glass_security{name = "Brig Desk"; req_access_txt = "1"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plasteel/black,/area/security/brig)
+"amI" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/brig)
+"amJ" = (/obj/machinery/door/airlock/glass_security{cyclelinkeddir = 2; id_tag = "innerbrig"; name = "Brig"; req_access_txt = "63"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/red/side{dir = 9},/area/security/brig)
+"amK" = (/obj/machinery/door/airlock/glass_security{cyclelinkeddir = 2; id_tag = "innerbrig"; name = "Brig"; req_access_txt = "63"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/brig)
+"amL" = (/obj/structure/grille,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/brig)
+"amM" = (/obj/machinery/door/window/brigdoor{id = "Cell 4"; name = "Cell 4"; req_access_txt = "1"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/side,/area/security/brig)
+"amN" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/brig)
+"amO" = (/obj/structure/chair{dir = 4; name = "Prosecution"},/turf/open/floor/plasteel/red/side{dir = 9},/area/security/courtroom)
+"amP" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/side{dir = 8},/area/security/courtroom)
+"amQ" = (/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/security/courtroom)
+"amR" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral/side{dir = 4},/area/security/courtroom)
+"amS" = (/obj/structure/chair{dir = 8; name = "Defense"},/turf/open/floor/plasteel/green/side{dir = 5},/area/security/courtroom)
+"amT" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard/fore)
+"amU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/solars/port/fore)
+"amV" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/port/fore)
+"amW" = (/turf/open/floor/mineral/plastitanium,/area/shuttle/labor)
+"amX" = (/obj/machinery/button/flasher{id = "gulagshuttleflasher"; name = "Flash Control"; pixel_x = 0; pixel_y = -26; req_access_txt = "1"},/obj/machinery/light,/turf/open/floor/mineral/plastitanium,/area/shuttle/labor)
+"amY" = (/obj/machinery/mineral/labor_claim_console{machinedir = 2; pixel_x = 30; pixel_y = 30},/turf/open/floor/mineral/plastitanium,/area/shuttle/labor)
+"amZ" = (/obj/machinery/door/airlock/titanium{name = "Labor Shuttle Airlock"; req_access_txt = "2"},/turf/open/floor/mineral/plastitanium,/area/shuttle/labor)
+"ana" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 4; name = "Labor Camp Shuttle Airlock"; req_access_txt = "2"; shuttledocked = 1},/turf/open/floor/plating,/area/security/processing)
+"anb" = (/turf/open/floor/plating,/area/security/processing)
+"anc" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 8; name = "Labor Camp Shuttle Airlock"; req_access_txt = "2"},/turf/open/floor/plating,/area/security/processing)
+"and" = (/turf/open/floor/plasteel,/area/security/processing)
+"ane" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/processing)
+"anf" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/processing)
+"ang" = (/obj/structure/closet{name = "Evidence Closet"},/turf/open/floor/plasteel/red/side{dir = 9},/area/security/brig)
+"anh" = (/obj/structure/closet{name = "Evidence Closet"},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/brig)
+"ani" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/item/device/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; dir = 2; name = "Prison Intercom (General)"; pixel_x = -25; pixel_y = -2; prison_radio = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig)
+"anj" = (/turf/open/floor/plasteel/floorgrime,/area/security/brig)
+"ank" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/security/brig)
+"anl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/item/device/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; dir = 2; name = "Prison Intercom (General)"; pixel_x = -25; pixel_y = -2; prison_radio = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig)
+"anm" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/floorgrime,/area/security/brig)
+"ann" = (/obj/machinery/button/door{id = "briggate"; name = "Desk Shutters"; pixel_x = -26; pixel_y = 6; req_access_txt = "0"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/button/flasher{id = "brigentry"; pixel_x = -28; pixel_y = -8},/turf/open/floor/plasteel/black,/area/security/brig)
+"ano" = (/obj/machinery/computer/secure_data,/turf/open/floor/plasteel/black,/area/security/brig)
+"anp" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "briggate"; name = "security shutters"},/obj/machinery/door/window/eastleft{name = "Brig Desk"; req_access_txt = "1"},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/turf/open/floor/plasteel/black,/area/security/brig)
+"anq" = (/turf/open/floor/plasteel/red/side{dir = 9},/area/security/brig)
+"anr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/floorgrime,/area/security/brig)
+"ans" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/obj/machinery/flasher{id = "Cell 4"; pixel_x = 28},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/security/brig)
+"ant" = (/obj/structure/chair{dir = 4; name = "Prosecution"},/turf/open/floor/plasteel/red/side{dir = 10},/area/security/courtroom)
+"anu" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/side{dir = 10},/area/security/courtroom)
+"anv" = (/turf/open/floor/plasteel/neutral/side,/area/security/courtroom)
+"anw" = (/obj/item/device/radio/beacon,/turf/open/floor/plasteel/neutral/side,/area/security/courtroom)
+"anx" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral/side{dir = 6},/area/security/courtroom)
+"any" = (/obj/structure/chair{dir = 8; name = "Defense"},/turf/open/floor/plasteel/green/side{dir = 6},/area/security/courtroom)
+"anz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard/fore)
+"anA" = (/turf/closed/wall,/area/maintenance/starboard/fore)
+"anB" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"anC" = (/turf/closed/wall/r_wall,/area/maintenance/solars/port/fore)
+"anD" = (/obj/machinery/power/solar_control{id = "auxsolareast"; name = "Port Bow Solar Control"; track = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plating,/area/maintenance/solars/port/fore)
+"anE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/solars/port/fore)
+"anF" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 32; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/solars/port/fore)
+"anG" = (/turf/closed/wall,/area/maintenance/port/fore)
+"anH" = (/obj/effect/decal/cleanable/vomit,/turf/open/floor/plating,/area/maintenance/port/fore)
+"anI" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/port/fore)
+"anJ" = (/obj/item/weapon/cigbutt/cigarbutt,/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plating,/area/maintenance/port/fore)
+"anK" = (/obj/machinery/door/airlock/titanium{name = "Labor Shuttle Airlock"; req_access_txt = "2"},/turf/open/floor/plasteel/black,/area/shuttle/labor)
+"anL" = (/obj/machinery/mineral/stacking_machine/laborstacker{input_dir = 2; output_dir = 1},/turf/open/floor/plasteel/black,/area/shuttle/labor)
+"anM" = (/obj/machinery/computer/shuttle/labor,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/security/processing)
+"anN" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/security/processing)
+"anO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/processing)
+"anP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/processing)
+"anQ" = (/obj/structure/closet{name = "Evidence Closet"},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/brig)
+"anR" = (/turf/open/floor/plasteel,/area/security/brig)
+"anS" = (/obj/structure/closet{name = "Evidence Closet"},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/brig)
+"anT" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/flasher{id = "Cell 1"; pixel_x = -28},/turf/open/floor/plasteel/floorgrime,/area/security/brig)
+"anU" = (/obj/structure/closet/secure_closet/brig{id = "Cell 1"; name = "Cell 1 Locker"},/turf/open/floor/plasteel/floorgrime,/area/security/brig)
+"anV" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/flasher{id = "Cell 2"; pixel_x = -28},/turf/open/floor/plasteel/floorgrime,/area/security/brig)
+"anW" = (/obj/structure/closet/secure_closet/brig{id = "Cell 2"; name = "Cell 2 Locker"},/turf/open/floor/plasteel/floorgrime,/area/security/brig)
+"anX" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/flasher{id = "Cell 3"; pixel_x = -28},/turf/open/floor/plasteel/floorgrime,/area/security/brig)
+"anY" = (/obj/structure/closet/secure_closet/brig{id = "Cell 3"; name = "Cell 3 Locker"},/turf/open/floor/plasteel/floorgrime,/area/security/brig)
+"anZ" = (/obj/machinery/light/small{dir = 8},/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer."; id = "outerbrig"; name = "Brig Exterior Doors Control"; normaldoorcontrol = 1; pixel_x = -26; pixel_y = -5; req_access_txt = "63"},/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer."; id = "innerbrig"; name = "Brig Interior Doors Control"; normaldoorcontrol = 1; pixel_x = -26; pixel_y = 5; req_access_txt = "63"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/black,/area/security/brig)
+"aoa" = (/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plasteel/black,/area/security/brig)
+"aob" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "briggate"; name = "security shutters"},/obj/machinery/door/window/eastright{name = "Brig Desk"; req_access_txt = "2"},/obj/item/weapon/restraints/handcuffs,/obj/item/device/radio/off,/turf/open/floor/plasteel/black,/area/security/brig)
+"aoc" = (/obj/machinery/flasher{id = "brigentry"; pixel_x = 28},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/brig)
+"aod" = (/obj/structure/closet/secure_closet/brig{id = "Cell 4"; name = "Cell 4 Locker"},/turf/open/floor/plasteel/floorgrime,/area/security/brig)
+"aoe" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/floorgrime,/area/security/brig)
+"aof" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/item/device/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; dir = 2; name = "Prison Intercom (General)"; pixel_x = 25; pixel_y = -2; prison_radio = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig)
+"aog" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/courtroom)
+"aoh" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/courtroom)
+"aoi" = (/obj/machinery/door/airlock/glass{name = "Courtroom"; req_access_txt = "42"},/turf/open/floor/plasteel/black,/area/security/courtroom)
+"aoj" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/security/courtroom)
+"aok" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"aol" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/external{cyclelinkeddir = 2; name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"aom" = (/obj/structure/chair{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aon" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plating,/area/maintenance/solars/port/fore)
+"aoo" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/solars/port/fore)
+"aop" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/terminal,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port/fore)
+"aoq" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 2},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aor" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aos" = (/turf/open/floor/plating,/area/maintenance/port/fore)
+"aot" = (/obj/structure/bed,/obj/effect/landmark/xeno_spawn,/obj/item/weapon/bedsheet,/turf/open/floor/plating,/area/maintenance/port/fore)
+"aou" = (/obj/machinery/computer/slot_machine{balance = 15; money = 500},/obj/item/weapon/coin/iron,/obj/item/weapon/coin/diamond,/obj/item/weapon/coin/diamond,/obj/item/weapon/coin/diamond,/turf/open/floor/plating,/area/maintenance/port/fore)
+"aov" = (/obj/structure/chair{dir = 1},/obj/item/toy/sword,/turf/open/floor/plating,/area/maintenance/port/fore)
+"aow" = (/obj/structure/chair{dir = 1},/obj/structure/noticeboard{dir = 8; pixel_x = 27; pixel_y = 0},/obj/item/trash/plate,/turf/open/floor/plating,/area/maintenance/port/fore)
+"aox" = (/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor)
+"aoy" = (/obj/machinery/light{dir = 1},/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor)
+"aoz" = (/obj/machinery/mineral/labor_claim_console{machinedir = 1; pixel_x = 30; pixel_y = 0},/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor)
+"aoA" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; pixel_y = 0},/turf/closed/wall,/area/security/processing)
+"aoB" = (/obj/machinery/door/airlock/glass_security{name = "Prisoner Processing"; req_access_txt = "2"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/processing)
+"aoC" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/processing)
+"aoD" = (/obj/structure/closet{name = "Evidence Closet"},/turf/open/floor/plasteel/red/side{dir = 10},/area/security/brig)
+"aoE" = (/obj/machinery/light,/turf/open/floor/plasteel/red/side,/area/security/brig)
+"aoF" = (/obj/structure/closet{name = "Evidence Closet"},/turf/open/floor/plasteel/red/side{dir = 6},/area/security/brig)
+"aoG" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/grille,/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/brig)
+"aoH" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/brig)
+"aoI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/closed/wall/r_wall,/area/security/brig)
+"aoJ" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "briggate"; name = "security shutters"},/obj/machinery/door/window/southleft{name = "Brig Desk"; req_access_txt = "1"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel/black,/area/security/brig)
+"aoK" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "briggate"; name = "security shutters"},/obj/machinery/door/window/southleft{base_state = "right"; icon_state = "right"; name = "Brig Desk"; req_access_txt = "1"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/black,/area/security/brig)
+"aoL" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "briggate"; name = "security blast door"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/brig)
+"aoM" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{cyclelinkeddir = 1; id_tag = "outerbrig"; name = "Brig"; req_access_txt = "63"},/turf/open/floor/plasteel/red/side{dir = 9},/area/security/brig)
+"aoN" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{cyclelinkeddir = 1; id_tag = "outerbrig"; name = "Brig"; req_access_txt = "63"},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/brig)
+"aoO" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/black,/area/security/courtroom)
+"aoP" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/security/courtroom)
+"aoQ" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/security/courtroom)
+"aoR" = (/obj/structure/disposalpipe/segment,/obj/machinery/power/apc{dir = 8; name = "Courtroom APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/security/courtroom)
+"aoS" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"aoT" = (/obj/machinery/light/small{dir = 4},/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"aoU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"aoV" = (/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aoW" = (/turf/closed/wall,/area/construction/mining/aux_base)
+"aoX" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "Port Bow Solar APC"; pixel_x = -25; pixel_y = 3},/obj/machinery/camera{c_tag = "Fore Port Solar Control"; dir = 1},/turf/open/floor/plating,/area/maintenance/solars/port/fore)
+"aoY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/solars/port/fore)
+"aoZ" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/smes,/turf/open/floor/plating,/area/maintenance/solars/port/fore)
+"apa" = (/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{icon_state = "manifold"; dir = 8},/turf/open/floor/plating,/area/maintenance/port/fore)
+"apb" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{icon_state = "intact"; dir = 9},/turf/open/floor/plating,/area/maintenance/port/fore)
+"apc" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/port/fore)
+"apd" = (/obj/item/trash/sosjerky,/turf/open/floor/plating,/area/maintenance/port/fore)
+"ape" = (/obj/item/weapon/electronics/airalarm,/obj/item/weapon/circuitboard/machine/seed_extractor,/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 4; name = "4maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/port/fore)
+"apf" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/port/fore)
+"apg" = (/obj/item/weapon/cigbutt,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aph" = (/obj/structure/chair{dir = 8},/obj/machinery/flasher{id = "gulagshuttleflasher"; pixel_x = 25},/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor)
+"api" = (/obj/machinery/gulag_item_reclaimer{pixel_y = 24},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/security/processing)
+"apj" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/processing)
+"apk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/side{dir = 5},/area/security/processing)
+"apl" = (/obj/machinery/button/door{desc = "A remote control switch for the exit."; id = "laborexit"; name = "exit button"; normaldoorcontrol = 1; pixel_x = 26; pixel_y = -6; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/processing)
+"apm" = (/turf/open/floor/plasteel/red/corner{dir = 1},/area/hallway/primary/fore)
+"apn" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 32},/turf/open/floor/plasteel/red/corner{dir = 1},/area/hallway/primary/fore)
+"apo" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 32},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/red/corner{dir = 1},/area/hallway/primary/fore)
+"app" = (/turf/open/floor/plasteel,/area/hallway/primary/fore)
+"apq" = (/obj/machinery/light{dir = 1},/obj/structure/sign/securearea{pixel_y = 32},/turf/open/floor/plasteel/red/corner{dir = 4},/area/hallway/primary/fore)
+"apr" = (/turf/open/floor/plasteel/red/corner{dir = 4},/area/hallway/primary/fore)
+"aps" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/security/courtroom)
+"apt" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"apu" = (/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"apv" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 4; req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"apw" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"apx" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/external{cyclelinkeddir = 1; name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"apy" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plating,/area/shuttle/auxillary_base)
+"apz" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/shuttle/auxillary_base)
+"apA" = (/obj/structure/closet/secure_closet/miner{locked = 0},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plating,/area/shuttle/auxillary_base)
+"apB" = (/obj/machinery/door/airlock/engineering{icon_state = "door_closed"; locked = 0; name = "Port Bow Solar Access"; req_access_txt = "10"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/port/fore)
+"apC" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/closed/wall/r_wall,/area/maintenance/solars/port/fore)
+"apD" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{icon_state = "intact"; dir = 1},/turf/open/floor/plating,/area/maintenance/port/fore)
+"apE" = (/obj/effect/decal/cleanable/egg_smudge,/turf/open/floor/plating,/area/maintenance/port/fore)
+"apF" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/port/fore)
+"apG" = (/obj/structure/closet/crate,/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor)
+"apH" = (/obj/machinery/door/airlock/titanium{id_tag = "prisonshuttle"; name = "Labor Shuttle Airlock"},/obj/docking_port/mobile{dir = 8; dwidth = 2; height = 5; id = "laborcamp"; name = "labor camp shuttle"; port_angle = 90; width = 9},/obj/docking_port/stationary{dir = 8; dwidth = 2; height = 5; id = "laborcamp_home"; name = "fore bay 1"; width = 9},/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor)
+"apI" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 4; name = "Labor Camp Shuttle Airlock"; shuttledocked = 1},/turf/open/floor/plating,/area/security/processing)
+"apJ" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 8; name = "Labor Camp Shuttle Airlock"},/turf/open/floor/plating,/area/security/processing)
+"apK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{id_tag = "laborexit"; name = "Labor Shuttle"; req_access = null; req_access_txt = "63"},/turf/open/floor/plasteel,/area/security/processing)
+"apL" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 32},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/fore)
+"apM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/fore)
+"apN" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hallway/primary/fore)
+"apO" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/open/floor/plasteel,/area/hallway/primary/fore)
+"apP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Courtroom"},/turf/open/floor/plasteel/black,/area/security/courtroom)
+"apQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/security/courtroom)
+"apR" = (/obj/machinery/light/small,/turf/open/floor/plasteel/black,/area/security/courtroom)
+"apS" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/open/floor/plasteel/black,/area/security/courtroom)
+"apT" = (/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = -32},/obj/machinery/camera{c_tag = "Courtroom South"; dir = 1},/turf/open/floor/plasteel/black,/area/security/courtroom)
+"apU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/plasteel/black,/area/security/courtroom)
+"apV" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"apW" = (/obj/structure/disposalpipe/segment,/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"apX" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"apY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/maintenance/fore/secondary)
+"apZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall,/area/maintenance/fore/secondary)
+"aqa" = (/turf/closed/wall/r_wall,/area/maintenance/solars/starboard/fore)
+"aqb" = (/obj/machinery/power/solar_control{id = "auxsolareast"; name = "Starboard Bow Solar Control"; track = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"aqc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"aqd" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/obj/item/device/multitool,/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"aqe" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/shuttle/auxillary_base)
+"aqf" = (/turf/open/floor/plating,/area/shuttle/auxillary_base)
+"aqg" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/shuttle/auxillary_base)
+"aqh" = (/obj/machinery/camera{c_tag = "Fore Port Solar Access"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aqi" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aqj" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{icon_state = "intact"; dir = 6},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aqk" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aql" = (/obj/structure/chair,/turf/open/floor/plating,/area/maintenance/port/fore)
+"aqm" = (/obj/structure/rack,/obj/item/weapon/circuitboard/machine/monkey_recycler,/turf/open/floor/plating,/area/maintenance/port/fore)
+"aqn" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/open/floor/plating/airless,/area/shuttle/labor)
+"aqo" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = -32},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/processing)
+"aqp" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/security/processing)
+"aqq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/red/side{dir = 6},/area/security/processing)
+"aqr" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/camera{c_tag = "Labor Shuttle Dock South"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/red/side{dir = 6},/area/security/processing)
+"aqs" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plasteel/red/side{dir = 6},/area/security/processing)
+"aqt" = (/turf/open/floor/plasteel/red/corner{dir = 8},/area/hallway/primary/fore)
+"aqu" = (/obj/machinery/camera{c_tag = "Fore Primary Hallway West"; dir = 1},/turf/open/floor/plasteel/red/corner{dir = 8},/area/hallway/primary/fore)
+"aqv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/corner{dir = 8},/area/hallway/primary/fore)
+"aqw" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=EVA"; location = "Security"},/turf/open/floor/plasteel,/area/hallway/primary/fore)
+"aqx" = (/turf/open/floor/plasteel/red/corner{dir = 2},/area/hallway/primary/fore)
+"aqy" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red/corner{dir = 2},/area/hallway/primary/fore)
+"aqz" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/open/floor/plasteel/red/corner{dir = 2},/area/hallway/primary/fore)
+"aqA" = (/obj/machinery/camera{c_tag = "Fore Primary Hallway East"; dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = -32},/turf/open/floor/plasteel/red/corner{dir = 2},/area/hallway/primary/fore)
+"aqB" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel/red/corner{dir = 2},/area/hallway/primary/fore)
+"aqC" = (/obj/machinery/vending/snack/random,/turf/open/floor/plasteel/red/corner{dir = 2},/area/hallway/primary/fore)
+"aqD" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel/red/corner{dir = 2},/area/hallway/primary/fore)
+"aqE" = (/obj/structure/table,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/open/floor/plasteel/black,/area/security/courtroom)
+"aqF" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law{pixel_x = -3; pixel_y = 5},/turf/open/floor/plasteel/black,/area/security/courtroom)
+"aqG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"aqH" = (/obj/machinery/light/small{dir = 8},/obj/structure/chair/stool{pixel_y = 8},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"aqI" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Air Out"; on = 1},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"aqJ" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"aqK" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"aqL" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/terminal,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"aqM" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aqN" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aqO" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/construction/mining/aux_base)
+"aqP" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/port/fore)
+"aqQ" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 4},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aqR" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aqS" = (/obj/structure/bed,/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/port/fore)
+"aqT" = (/turf/open/space,/area/space/nearstation)
+"aqU" = (/obj/structure/lattice,/turf/open/space,/area/space/nearstation)
+"aqV" = (/turf/open/floor/plasteel/airless,/area/space/nearstation)
+"aqW" = (/obj/structure/table,/obj/item/weapon/stamp,/obj/item/weapon/poster/random_official,/turf/open/floor/plating,/area/maintenance/port/fore)
+"aqX" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/port/fore)
+"aqY" = (/obj/structure/shuttle/engine/propulsion,/turf/open/floor/plating/airless,/area/shuttle/labor)
+"aqZ" = (/obj/structure/plasticflaps,/turf/open/floor/plating,/area/security/processing)
+"ara" = (/obj/machinery/door/airlock/maintenance{name = "Security Maintenance"; req_access_txt = "2"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/fore)
+"arb" = (/turf/closed/wall,/area/security/vacantoffice/b)
+"arc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Vacant Office B"; req_access_txt = "32"},/turf/open/floor/plating,/area/security/vacantoffice/b)
+"ard" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"are" = (/turf/closed/wall,/area/lawoffice)
+"arf" = (/obj/machinery/door/airlock{name = "Law Office"; req_access_txt = "38"},/turf/open/floor/plasteel,/area/lawoffice)
+"arg" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/red/corner{dir = 1},/area/hallway/primary/fore)
+"arh" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/fore)
+"ari" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/red/corner{dir = 4},/area/hallway/primary/fore)
+"arj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall,/area/maintenance/fore/secondary)
+"ark" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/closed/wall,/area/maintenance/fore/secondary)
+"arl" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/closed/wall,/area/maintenance/fore/secondary)
+"arm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/security/courtroom)
+"arn" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"aro" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"arp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"arq" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; name = "Fore Maintenance APC"; pixel_y = 24},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"arr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"ars" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"art" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"aru" = (/obj/machinery/door/airlock/atmos{name = "Atmospherics Maintenance"; req_access_txt = "12;24"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"arv" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Air In"; on = 1},/obj/effect/landmark/blobstart,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"arw" = (/obj/item/weapon/wrench,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"arx" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "Starboard Bow Solar APC"; pixel_x = -25; pixel_y = 3},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"ary" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"arz" = (/obj/machinery/camera{c_tag = "Fore Starboard Solars"; dir = 1},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/smes,/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"arA" = (/turf/closed/wall/r_wall,/area/maintenance/starboard/fore)
+"arB" = (/obj/structure/closet/wardrobe/mixed,/obj/item/clothing/shoes/jackboots,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"arC" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"arD" = (/obj/machinery/light,/turf/open/floor/plating,/area/shuttle/auxillary_base)
+"arE" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/turf/open/floor/plating,/area/construction/mining/aux_base)
+"arF" = (/obj/structure/closet/toolcloset,/turf/open/floor/plasteel/yellow/side{dir = 9},/area/construction/mining/aux_base)
+"arG" = (/obj/structure/closet/toolcloset,/turf/open/floor/plasteel/yellow/side{dir = 1},/area/construction/mining/aux_base)
+"arH" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel/yellow/side{dir = 5},/area/construction/mining/aux_base)
+"arI" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 2; name = "External Access"; req_access = null; req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/port/fore)
+"arJ" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plasteel/floorgrime,/area/maintenance/port/fore)
+"arK" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/floorgrime,/area/maintenance/port/fore)
+"arL" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/open/floor/plating,/area/maintenance/port/fore)
+"arM" = (/obj/structure/grille,/obj/structure/window/fulltile{obj_integrity = 35},/turf/open/floor/plating,/area/maintenance/port/fore)
+"arN" = (/obj/effect/landmark/carpspawn,/obj/structure/lattice,/turf/open/space,/area/space/nearstation)
+"arO" = (/obj/item/weapon/paper{info = "01001001 00100000 01101000 01101111 01110000 01100101 00100000 01111001 01101111 01110101 00100000 01110011 01110100 01100001 01111001 00100000 01110011 01100001 01100110 01100101 00101110 00100000 01001100 01101111 01110110 01100101 00101100 00100000 01101101 01101111 01101101 00101110"; name = "Note from Beepsky's Mom"},/turf/open/floor/plating,/area/security/processing)
+"arP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/fore)
+"arQ" = (/obj/structure/chair,/turf/open/floor/plating,/area/security/vacantoffice/b)
+"arR" = (/obj/machinery/airalarm{frequency = 1439; locked = 0; pixel_y = 23},/obj/structure/chair,/turf/open/floor/plating,/area/security/vacantoffice/b)
+"arS" = (/turf/open/floor/plasteel,/area/security/vacantoffice/b)
+"arT" = (/turf/open/floor/plating,/area/security/vacantoffice/b)
+"arU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"arV" = (/obj/machinery/light_switch{pixel_x = -20; pixel_y = 0},/obj/item/device/radio/intercom{pixel_y = 25},/turf/open/floor/wood,/area/lawoffice)
+"arW" = (/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/wood,/area/lawoffice)
+"arX" = (/turf/open/floor/wood,/area/lawoffice)
+"arY" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/briefcase,/obj/effect/decal/cleanable/cobweb/cobweb2,/turf/open/floor/wood,/area/lawoffice)
+"arZ" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/open/floor/plasteel/red/corner{dir = 4},/area/hallway/primary/fore)
+"asa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/fore/secondary)
+"asb" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"asc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"asd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"ase" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"asf" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"asg" = (/obj/machinery/power/apc{dir = 2; name = "Dormitory APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/dorms)
+"ash" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"asi" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"asj" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"ask" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"asl" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/light/small{dir = 4},/obj/machinery/power/apc{dir = 2; name = "Fitness Room APC"; pixel_x = 0; pixel_y = -24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/crew_quarters/fitness)
+"asm" = (/obj/structure/rack{dir = 1},/obj/item/clothing/suit/fire/firefighter,/obj/item/weapon/tank/internals/oxygen,/obj/item/clothing/mask/gas,/obj/item/weapon/extinguisher,/obj/item/clothing/head/hardhat/red,/obj/item/clothing/glasses/meson,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"asn" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"aso" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/fitness)
+"asp" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/fitness)
+"asq" = (/obj/structure/grille,/obj/effect/landmark/syndicate_breach_area,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/fitness)
+"asr" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/fitness)
+"ass" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 2; name = "External Access"; req_access = null; req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"ast" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/engineering{icon_state = "door_closed"; locked = 0; name = "Starboard Bow Solar Access"; req_access_txt = "10"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"asu" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/closed/wall/r_wall,/area/maintenance/solars/starboard/fore)
+"asv" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"asw" = (/obj/structure/table,/obj/machinery/light/small{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"asx" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"asy" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"asz" = (/obj/effect/decal/cleanable/cobweb/cobweb2,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"asA" = (/obj/effect/decal/cleanable/cobweb,/obj/item/weapon/coin/gold,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"asB" = (/obj/machinery/computer/slot_machine{balance = 15; money = 500},/obj/item/weapon/coin/iron,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"asC" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"asD" = (/obj/machinery/camera{c_tag = "Auxillary Mining Base"; dir = 8; network = list("SS13","AuxBase")},/turf/open/floor/plating,/area/shuttle/auxillary_base)
+"asE" = (/obj/docking_port/mobile/auxillary_base{dheight = 4; dir = 4; dwidth = 4; height = 9; width = 9},/obj/machinery/bluespace_beacon,/obj/machinery/computer/auxillary_base{pixel_y = 0},/turf/closed/wall,/area/shuttle/auxillary_base)
+"asF" = (/obj/structure/mining_shuttle_beacon{dir = 4},/turf/open/floor/plating,/area/shuttle/auxillary_base)
+"asG" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/docking_port/stationary/public_mining_dock{dir = 8},/turf/open/floor/plating,/area/shuttle/auxillary_base)
+"asH" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 1; name = "Construction Zone"; req_access = null; req_access_txt = "0"; req_one_access_txt = "0"},/turf/open/floor/plating,/area/construction/mining/aux_base)
+"asI" = (/turf/open/floor/plasteel/yellow/side{dir = 8},/area/construction/mining/aux_base)
+"asJ" = (/turf/open/floor/plasteel,/area/construction/mining/aux_base)
+"asK" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/camera{c_tag = "Auxillary Base Construction"; dir = 8},/obj/machinery/computer/camera_advanced/base_construction,/turf/open/floor/plasteel/yellow/side{dir = 4},/area/construction/mining/aux_base)
+"asL" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/floorgrime,/area/maintenance/port/fore)
+"asM" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{icon_state = "intact"; dir = 5},/turf/open/floor/plating,/area/maintenance/port/fore)
+"asN" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{icon_state = "intact"; dir = 10},/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/port/fore)
+"asO" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/port/fore)
+"asP" = (/obj/machinery/power/apc{dir = 1; name = "Port Bow Maintenance APC"; pixel_x = -1; pixel_y = 26},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plating,/area/maintenance/port/fore)
+"asQ" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{icon_state = "intact"; dir = 1},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/port/fore)
+"asR" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fore)
+"asS" = (/turf/open/floor/plating,/area/maintenance/fore)
+"asT" = (/obj/item/weapon/bedsheet/red,/mob/living/simple_animal/bot/secbot/beepsky{name = "Officer Beepsky"},/turf/open/floor/plating,/area/security/processing)
+"asU" = (/obj/machinery/light/small{dir = 4},/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/potato{name = "\improper Beepsky's emergency battery"},/turf/open/floor/plating,/area/security/processing)
+"asV" = (/obj/machinery/power/apc{dir = 8; name = "Labor Shuttle Dock APC"; pixel_x = -24},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plating,/area/security/processing)
+"asW" = (/obj/structure/table/wood,/obj/item/weapon/pen,/turf/open/floor/plating,/area/security/vacantoffice/b)
+"asX" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/structure/table/wood,/obj/item/device/flashlight/lamp,/turf/open/floor/plating,/area/security/vacantoffice/b)
+"asY" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/turf/open/floor/plating,/area/security/vacantoffice/b)
+"asZ" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/requests_console{department = "Law office"; pixel_x = -32; pixel_y = 0},/obj/structure/closet/lawcloset,/turf/open/floor/wood,/area/lawoffice)
+"ata" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/pen/red,/turf/open/floor/wood,/area/lawoffice)
+"atb" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/open/floor/wood,/area/lawoffice)
+"atc" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "lawyer_blast"; name = "privacy door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/lawoffice)
+"atd" = (/turf/closed/wall,/area/crew_quarters/dorms)
+"ate" = (/obj/machinery/door/airlock/maintenance{name = "Dormitories Maintenance"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"atf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/dorms)
+"atg" = (/turf/closed/wall,/area/crew_quarters/fitness)
+"ath" = (/obj/machinery/door/airlock/maintenance{name = "Fitness Maitenance"; req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"ati" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/crew_quarters/fitness)
+"atj" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/fitness)
+"atk" = (/turf/open/floor/engine{name = "Holodeck Projector Floor"},/area/holodeck/rec_center)
+"atl" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"atm" = (/obj/structure/table,/obj/effect/decal/cleanable/cobweb,/obj/effect/spawner/lootdrop/maintenance{lootcount = 8; name = "8maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"atn" = (/obj/machinery/power/apc{dir = 1; name = "Starboard Bow Maintenance APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"ato" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"atp" = (/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Fore Starboard Solar Access"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"atq" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"atr" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"ats" = (/obj/structure/table,/obj/item/weapon/pen,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"att" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"atu" = (/obj/item/weapon/coin/gold,/obj/item/weapon/coin/iron,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"atv" = (/obj/structure/closet,/obj/item/weapon/coin/iron,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"atw" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"atx" = (/obj/machinery/light{dir = 1},/turf/open/floor/plating,/area/shuttle/auxillary_base)
+"aty" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/yellow/side{dir = 8},/area/construction/mining/aux_base)
+"atz" = (/obj/structure/rack{dir = 4},/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/airlock,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/device/assault_pod/mining,/obj/machinery/computer/security/telescreen{desc = "Used for the Auxillary Mining Base."; dir = 8; name = "Auxillary Base Monitor"; network = list("AuxBase"); pixel_x = 28},/turf/open/floor/plasteel/yellow/side{dir = 4},/area/construction/mining/aux_base)
+"atA" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{icon_state = "intact"; dir = 5},/turf/closed/wall,/area/maintenance/port/fore)
+"atB" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{icon_state = "intact"; dir = 4},/turf/closed/wall,/area/maintenance/port/fore)
+"atC" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{icon_state = "intact"; dir = 4},/turf/open/floor/plating,/area/maintenance/port/fore)
+"atD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{icon_state = "intact"; dir = 4},/turf/open/floor/plating,/area/maintenance/port/fore)
+"atE" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{icon_state = "intact"; dir = 4},/turf/open/floor/plating,/area/maintenance/port/fore)
+"atF" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{icon_state = "intact"; dir = 4},/turf/open/floor/plating,/area/maintenance/port/fore)
+"atG" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{icon_state = "intact"; dir = 9},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/port/fore)
+"atH" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/port/fore)
+"atI" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/port/fore)
+"atJ" = (/obj/machinery/monkey_recycler,/obj/item/weapon/reagent_containers/food/snacks/monkeycube,/obj/item/weapon/reagent_containers/food/snacks/monkeycube,/turf/open/floor/plating,/area/maintenance/port/fore)
+"atK" = (/turf/closed/wall,/area/maintenance/fore)
+"atL" = (/obj/structure/rack,/turf/open/floor/plasteel,/area/security/vacantoffice/b)
+"atM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/chair{dir = 1},/turf/open/floor/plating,/area/security/vacantoffice/b)
+"atN" = (/obj/structure/table/wood,/turf/open/floor/plating,/area/security/vacantoffice/b)
+"atO" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/open/floor/plating,/area/security/vacantoffice/b)
+"atP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall,/area/lawoffice)
+"atQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/filingcabinet/employment,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/open/floor/wood,/area/lawoffice)
+"atR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/lawoffice)
+"atS" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/obj/item/weapon/folder/blue,/obj/item/weapon/folder/blue,/obj/item/weapon/folder/blue,/obj/item/weapon/stamp/law,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/lawoffice)
+"atT" = (/obj/structure/chair/office/dark{dir = 8},/obj/effect/landmark/start/lawyer,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/wood,/area/lawoffice)
+"atU" = (/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 32; pixel_y = 0},/turf/open/floor/plasteel/red/corner{dir = 4},/area/hallway/primary/fore)
+"atV" = (/obj/structure/table,/obj/machinery/light/small{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/dorms)
+"atW" = (/obj/structure/closet/secure_closet/personal,/turf/open/floor/carpet,/area/crew_quarters/dorms)
+"atX" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/button/door{id = "Dorm4"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; pixel_y = 0; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/carpet,/area/crew_quarters/dorms)
+"atY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/dorms)
+"atZ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 9},/area/crew_quarters/dorms)
+"aua" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/side{dir = 5},/area/crew_quarters/dorms)
+"aub" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/wood,/area/crew_quarters/dorms)
+"auc" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/wood,/area/crew_quarters/dorms)
+"aud" = (/obj/machinery/airalarm{pixel_y = 23},/obj/structure/closet/secure_closet/personal/cabinet,/obj/effect/decal/cleanable/cobweb/cobweb2,/turf/open/floor/wood,/area/crew_quarters/dorms)
+"aue" = (/obj/structure/dresser,/turf/open/floor/wood,/area/crew_quarters/dorms)
+"auf" = (/obj/machinery/airalarm{pixel_y = 23},/obj/structure/closet/secure_closet/personal/cabinet,/turf/open/floor/wood,/area/crew_quarters/dorms)
+"aug" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/neutral/side{dir = 9},/area/crew_quarters/fitness)
+"auh" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/bin,/turf/open/floor/plasteel/neutral/side{dir = 1},/area/crew_quarters/fitness)
+"aui" = (/obj/structure/closet/athletic_mixed,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/crew_quarters/fitness)
+"auj" = (/obj/structure/closet/boxinggloves,/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/clothing/shoes/jackboots,/turf/open/floor/plasteel/neutral/side{dir = 1},/area/crew_quarters/fitness)
+"auk" = (/obj/machinery/camera{c_tag = "Fitness Room"},/obj/structure/closet/masks,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/crew_quarters/fitness)
+"aul" = (/obj/structure/closet/lasertag/blue,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/crew_quarters/fitness)
+"aum" = (/obj/structure/closet/lasertag/red,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/neutral/side{dir = 5},/area/crew_quarters/fitness)
+"aun" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"auo" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aup" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"auq" = (/obj/structure/door_assembly/door_assembly_mai,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aur" = (/obj/machinery/door/airlock/maintenance{name = "Firefighting equipment"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aus" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aut" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/donut,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"auu" = (/turf/closed/wall,/area/maintenance/department/electrical)
+"auv" = (/turf/closed/wall,/area/space/nearstation)
+"auw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/yellow/side{dir = 8},/area/construction/mining/aux_base)
+"aux" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/turf/open/floor/plasteel/yellow/side{dir = 4},/area/construction/mining/aux_base)
+"auy" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/port/fore)
+"auz" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/port/fore)
+"auA" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/port/fore)
+"auB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port/fore)
+"auC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port/fore)
+"auD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port/fore)
+"auE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall,/area/maintenance/port/fore)
+"auF" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/port/fore)
+"auG" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/fore)
+"auH" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/fore)
+"auI" = (/obj/structure/chair/stool,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fore)
+"auJ" = (/obj/effect/decal/cleanable/cobweb,/obj/structure/closet/secure_closet/chemical,/turf/open/floor/plating,/area/maintenance/fore)
+"auK" = (/obj/structure/closet/secure_closet/chemical,/turf/open/floor/plating,/area/maintenance/fore)
+"auL" = (/obj/structure/closet/secure_closet/medical1,/turf/open/floor/plating,/area/maintenance/fore)
+"auM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/vacantoffice/b)
+"auN" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plating,/area/security/vacantoffice/b)
+"auO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/fore)
+"auP" = (/obj/machinery/door/airlock/maintenance{name = "Law Office Maintenance"; req_access_txt = "38"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/lawoffice)
+"auQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/wood,/area/lawoffice)
+"auR" = (/obj/structure/chair/office/dark,/obj/effect/landmark/start/lawyer,/turf/open/floor/wood,/area/lawoffice)
+"auS" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/plasteel/red/corner{dir = 4},/area/hallway/primary/fore)
+"auT" = (/obj/structure/chair/stool{pixel_y = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/carpet,/area/crew_quarters/dorms)
+"auU" = (/obj/effect/landmark/xeno_spawn,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms)
+"auV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms)
+"auW" = (/obj/machinery/door/airlock{id_tag = "Dorm4"; name = "Dorm 4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms)
+"auX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 8},/area/crew_quarters/dorms)
+"auY" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 4},/area/crew_quarters/dorms)
+"auZ" = (/obj/structure/table/wood,/turf/open/floor/wood,/area/crew_quarters/dorms)
+"ava" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/dorms)
+"avb" = (/obj/structure/bed,/obj/item/weapon/bedsheet/red,/obj/machinery/button/door{id = "Dorm5"; name = "Cabin Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = -25; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/wood,/area/crew_quarters/dorms)
+"avc" = (/turf/open/floor/wood,/area/crew_quarters/dorms)
+"avd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/wood,/area/crew_quarters/dorms)
+"ave" = (/obj/structure/bed,/obj/item/weapon/bedsheet/red,/obj/machinery/button/door{id = "Dorm6"; name = "Cabin Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = -25; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/wood,/area/crew_quarters/dorms)
+"avf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plasteel/neutral/side{dir = 8},/area/crew_quarters/fitness)
+"avg" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"avh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"avi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"avj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/side{dir = 4},/area/crew_quarters/fitness)
+"avk" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/crew_quarters/fitness)
+"avl" = (/obj/structure/table,/obj/item/weapon/shard,/obj/item/weapon/shard{icon_state = "medium"},/obj/item/weapon/shard{icon_state = "small"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"avm" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"avn" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/starboard/fore)
+"avo" = (/obj/machinery/button/door{id = "maint3"; name = "Blast Door Control C"; pixel_x = 0; pixel_y = 24; req_access_txt = "0"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"avp" = (/obj/structure/table,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"avq" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"avr" = (/obj/machinery/recharge_station,/turf/open/floor/plasteel/floorgrime,/area/maintenance/department/electrical)
+"avs" = (/obj/item/stack/rods{amount = 50},/obj/structure/rack,/obj/item/stack/cable_coil{pixel_x = -3; pixel_y = 3},/obj/item/stack/cable_coil{amount = 5},/obj/item/stack/sheet/mineral/plasma{amount = 10; layer = 2.9},/turf/open/floor/plasteel/floorgrime,/area/maintenance/department/electrical)
+"avt" = (/obj/machinery/power/port_gen/pacman,/turf/open/floor/plating,/area/maintenance/department/electrical)
+"avu" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plating,/area/maintenance/department/electrical)
+"avv" = (/turf/open/floor/mech_bay_recharge_floor,/area/maintenance/department/electrical)
+"avw" = (/obj/machinery/computer/mech_bay_power_console,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/circuit,/area/maintenance/department/electrical)
+"avx" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/construction/mining/aux_base)
+"avy" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/obj/item/stack/rods{amount = 50},/turf/open/floor/plasteel/yellow/side{dir = 4},/area/construction/mining/aux_base)
+"avz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port/fore)
+"avA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall,/area/maintenance/port/fore)
+"avB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/port/fore)
+"avC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/port/fore)
+"avD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/port/fore)
+"avE" = (/turf/open/floor/plasteel/airless{icon_state = "damaged3"},/area/space/nearstation)
+"avF" = (/obj/item/weapon/paper/crumpled,/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/space/nearstation)
+"avG" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/port/fore)
+"avH" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/port/fore)
+"avI" = (/obj/structure/rack{dir = 1},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/port/fore)
+"avJ" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/port/fore)
+"avK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore)
+"avL" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light,/turf/open/floor/plating,/area/security/vacantoffice/b)
+"avM" = (/obj/machinery/camera{c_tag = "Vacant Office B"; dir = 1},/obj/structure/table/wood,/turf/open/floor/plasteel,/area/security/vacantoffice/b)
+"avN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/security/vacantoffice/b)
+"avO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/lawoffice)
+"avP" = (/obj/structure/table/wood,/obj/item/device/taperecorder{pixel_y = 0},/obj/item/weapon/cartridge/lawyer,/turf/open/floor/wood,/area/lawoffice)
+"avQ" = (/obj/structure/table/wood,/obj/machinery/camera{c_tag = "Law Office"; dir = 1; network = list("SS13")},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas."; dir = 1; name = "Prison Monitor"; network = list("Prison"); pixel_x = 0; pixel_y = -27},/turf/open/floor/wood,/area/lawoffice)
+"avR" = (/obj/machinery/photocopier,/obj/machinery/button/door{id = "lawyer_blast"; name = "Privacy Shutters"; pixel_x = 25; pixel_y = 8},/turf/open/floor/wood,/area/lawoffice)
+"avS" = (/obj/machinery/power/apc{dir = 8; name = "Fore Primary Hallway APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/camera{c_tag = "Fore Primary Hallway"; dir = 4; network = list("SS13")},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/red/corner{dir = 1},/area/hallway/primary/fore)
+"avT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral/side{dir = 8},/area/crew_quarters/dorms)
+"avU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/side{dir = 4},/area/crew_quarters/dorms)
+"avV" = (/obj/machinery/door/airlock{id_tag = "Dorm5"; name = "Cabin 1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/dorms)
+"avW" = (/obj/machinery/door/airlock{id_tag = "Dorm6"; name = "Cabin 2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/dorms)
+"avX" = (/obj/machinery/airalarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/neutral/side{dir = 8},/area/crew_quarters/fitness)
+"avY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"avZ" = (/obj/machinery/door/window/eastright{base_state = "left"; dir = 8; icon_state = "left"; name = "Fitness Ring"},/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plasteel/black,/area/crew_quarters/fitness)
+"awa" = (/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plasteel/black,/area/crew_quarters/fitness)
+"awb" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/black,/area/crew_quarters/fitness)
+"awc" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"awd" = (/turf/open/floor/plasteel/red/side{dir = 4},/area/crew_quarters/fitness)
+"awe" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Holodeck Door"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"awf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Holodeck Door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"awg" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"awh" = (/obj/machinery/camera{c_tag = "Holodeck"},/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"awi" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/fitness)
+"awj" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"awk" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"awl" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"awm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"awn" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"awo" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"awp" = (/turf/open/floor/plasteel/floorgrime,/area/maintenance/department/electrical)
+"awq" = (/turf/open/floor/plating,/area/maintenance/department/electrical)
+"awr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plasteel/floorgrime,/area/maintenance/department/electrical)
+"aws" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/floorgrime,/area/maintenance/department/electrical)
+"awt" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel/floorgrime,/area/maintenance/department/electrical)
+"awu" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plating,/area/shuttle/auxillary_base)
+"awv" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/shuttle/auxillary_base)
+"aww" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plating,/area/shuttle/auxillary_base)
+"awx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/yellow/side{dir = 10},/area/construction/mining/aux_base)
+"awy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/yellow/side,/area/construction/mining/aux_base)
+"awz" = (/obj/structure/table,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/pipe_dispenser,/obj/machinery/button/door{id = "aux_base_shutters"; name = "Public Shutters Control"; pixel_x = 24; pixel_y = 0; req_access_txt = "0"; req_one_access_txt = "32;47;48"},/turf/open/floor/plasteel/yellow/side{dir = 6},/area/construction/mining/aux_base)
+"awA" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "Auxillary Base Construction APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/construction/mining/aux_base)
+"awB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port/fore)
+"awC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port/fore)
+"awD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/port/fore)
+"awE" = (/obj/structure/mirror{icon_state = "mirror_broke"; pixel_y = 28; broken = 1},/obj/machinery/iv_drip,/turf/open/floor/plating,/area/maintenance/port/fore)
+"awF" = (/obj/structure/frame/computer,/turf/open/floor/plating,/area/maintenance/port/fore)
+"awG" = (/obj/structure/mirror{icon_state = "mirror_broke"; pixel_y = 28; broken = 1},/obj/item/weapon/shard{icon_state = "medium"},/obj/item/weapon/circuitboard/computer/operating,/turf/open/floor/plating,/area/maintenance/port/fore)
+"awH" = (/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/structure/chair,/obj/item/weapon/reagent_containers/blood/random,/turf/open/floor/plating,/area/maintenance/port/fore)
+"awI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port/fore)
+"awJ" = (/obj/item/weapon/airlock_painter,/obj/structure/lattice,/obj/structure/closet,/turf/open/space,/area/space/nearstation)
+"awK" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 4; name = "4maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/port/fore)
+"awL" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 4; req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/fore)
+"awM" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fore)
+"awN" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 8; req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/fore)
+"awO" = (/obj/machinery/door/airlock/maintenance{name = "Chemical Storage"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fore)
+"awP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/security/vacantoffice/b)
+"awQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/security/vacantoffice/b)
+"awR" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/power/apc{dir = 8; name = "Vacant Office B APC"; pixel_x = -24; pixel_y = 0},/turf/open/floor/plating,/area/security/vacantoffice/b)
+"awS" = (/obj/machinery/power/apc{dir = 1; name = "Law Office APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/lawoffice)
+"awT" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/red/corner{dir = 1},/area/hallway/primary/fore)
+"awU" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/turf/open/floor/plasteel/red/corner{dir = 4},/area/hallway/primary/fore)
+"awV" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/button/door{id = "Dorm3"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; pixel_y = 0; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/carpet,/area/crew_quarters/dorms)
+"awW" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel/neutral/side{dir = 8},/area/crew_quarters/dorms)
+"awX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/crew_quarters/dorms)
+"awY" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/crew_quarters/dorms)
+"awZ" = (/obj/machinery/requests_console{department = "Crew Quarters"; pixel_y = 30},/obj/machinery/camera{c_tag = "Dormitory North"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/crew_quarters/dorms)
+"axa" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/neutral/side{dir = 1},/area/crew_quarters/dorms)
+"axb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/crew_quarters/dorms)
+"axc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/crew_quarters/dorms)
+"axd" = (/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/crew_quarters/dorms)
+"axe" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/crew_quarters/dorms)
+"axf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/side{dir = 5},/area/crew_quarters/dorms)
+"axg" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/crew_quarters/fitness)
+"axh" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/neutral/side{dir = 8},/area/crew_quarters/fitness)
+"axi" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/black,/area/crew_quarters/fitness)
+"axj" = (/turf/open/floor/plasteel/vault{dir = 5},/area/crew_quarters/fitness)
+"axk" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/black,/area/crew_quarters/fitness)
+"axl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"axm" = (/obj/machinery/computer/holodeck,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"axn" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"axo" = (/obj/machinery/door/poddoor/preopen{id = "maint3"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"axp" = (/obj/machinery/door/poddoor/preopen{id = "maint3"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"axq" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/closed/wall,/area/maintenance/department/electrical)
+"axr" = (/obj/machinery/power/apc{dir = 1; name = "Electrical Maintenance APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plating,/area/maintenance/department/electrical)
+"axs" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/electrical)
+"axt" = (/obj/structure/table,/obj/item/clothing/gloves/color/fyellow,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/device/multitool,/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/turf/open/floor/plasteel/floorgrime,/area/maintenance/department/electrical)
+"axu" = (/turf/closed/wall/r_wall,/area/hallway/secondary/entry)
+"axv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/shutters{id = "aux_base_shutters"; name = "Auxillary Base Shutters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/construction/mining/aux_base)
+"axw" = (/obj/machinery/door/airlock/engineering{cyclelinkeddir = 1; name = "Auxillary Base Construction"; req_access_txt = "0"; req_one_access_txt = "32;47;48"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/construction/mining/aux_base)
+"axx" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port/fore)
+"axy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/maintenance/port/fore)
+"axz" = (/obj/item/weapon/wrench,/turf/open/floor/plating,/area/maintenance/port/fore)
+"axA" = (/obj/structure/table/optable{name = "Robotics Operating Table"},/obj/item/weapon/surgical_drapes,/turf/open/floor/plating,/area/maintenance/port/fore)
+"axB" = (/turf/open/floor/plasteel/airless{icon_state = "damaged5"},/area/space/nearstation)
+"axC" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/open/floor/plating,/area/maintenance/port/fore)
+"axD" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/port/fore)
+"axE" = (/obj/machinery/light/small{dir = 4},/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/port/fore)
+"axF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall,/area/maintenance/port/fore)
+"axG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/maintenance/port/fore)
+"axH" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fore)
+"axI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/maintenance/fore)
+"axJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
+"axK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/closed/wall,/area/maintenance/fore)
+"axL" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
+"axM" = (/obj/machinery/power/apc{dir = 1; name = "Fore Maintenance APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
+"axN" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fore)
+"axO" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
+"axP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
+"axQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"axR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"axS" = (/obj/effect/landmark/blobstart,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"axT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"axU" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
+"axV" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/fore)
+"axW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore)
+"axX" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"axY" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"axZ" = (/obj/machinery/door/airlock{id_tag = "Dorm3"; name = "Dorm 3"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms)
+"aya" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms)
+"ayb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms)
+"ayc" = (/obj/structure/chair/stool{pixel_y = 8},/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms)
+"ayd" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/storage/pill_bottle/dice,/turf/open/floor/plasteel,/area/crew_quarters/dorms)
+"aye" = (/obj/structure/table/wood,/obj/item/weapon/storage/firstaid/regular,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms)
+"ayf" = (/obj/structure/table/wood,/obj/item/weapon/coin/silver,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms)
+"ayg" = (/obj/structure/chair/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms)
+"ayh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms)
+"ayi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/crew_quarters/dorms)
+"ayj" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Fitness"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"ayk" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"ayl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"aym" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/vault{dir = 5},/area/crew_quarters/fitness)
+"ayn" = (/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/green/side{dir = 4},/area/crew_quarters/fitness)
+"ayo" = (/obj/structure/table,/obj/item/weapon/paper{desc = ""; info = "Brusies sustained in the holodeck can be healed simply by sleeping."; name = "Holodeck Disclaimer"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"ayp" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"ayq" = (/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"ayr" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"ays" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"ayt" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"ayu" = (/obj/machinery/button/door{id = "maint2"; name = "Blast Door Control B"; pixel_x = -28; pixel_y = 4; req_access_txt = "0"},/obj/machinery/button/door{id = "maint1"; name = "Blast Door Control A"; pixel_x = -28; pixel_y = -6; req_access_txt = "0"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"ayv" = (/obj/structure/janitorialcart,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"ayw" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"ayx" = (/obj/structure/table/glass,/obj/item/weapon/pen,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"ayy" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"ayz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"ayA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "Electrical Maintenance"; req_access_txt = "11"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/electrical)
+"ayB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/electrical)
+"ayC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/electrical)
+"ayD" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/electrical)
+"ayE" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plating,/area/maintenance/department/electrical)
+"ayF" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plating,/area/maintenance/department/electrical)
+"ayG" = (/obj/structure/table,/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/turf/open/floor/plasteel/floorgrime,/area/maintenance/department/electrical)
+"ayH" = (/turf/closed/wall/mineral/titanium,/area/shuttle/pod_2)
+"ayI" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 4; icon_state = "propulsion"},/turf/closed/wall/mineral/titanium,/area/shuttle/pod_2)
+"ayJ" = (/turf/closed/wall,/area/hallway/secondary/entry)
+"ayK" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/hallway/secondary/entry)
+"ayL" = (/obj/structure/sign/pods,/turf/closed/wall,/area/hallway/secondary/entry)
+"ayM" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/arrival{dir = 1},/area/hallway/secondary/entry)
+"ayN" = (/turf/open/floor/plasteel/arrival{dir = 1},/area/hallway/secondary/entry)
+"ayO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/arrival{dir = 1},/area/hallway/secondary/entry)
+"ayP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/yellow/corner{dir = 4},/area/hallway/secondary/entry)
+"ayQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/yellow/side{dir = 1},/area/hallway/secondary/entry)
+"ayR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/yellow/corner{dir = 1},/area/hallway/secondary/entry)
+"ayS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/arrival{dir = 1},/area/hallway/secondary/entry)
+"ayT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/arrival{dir = 5},/area/hallway/secondary/entry)
+"ayU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port/fore)
+"ayV" = (/obj/machinery/sleeper{dir = 4; icon_state = "sleeper-open"},/turf/open/floor/plating,/area/maintenance/port/fore)
+"ayW" = (/obj/effect/landmark/blobstart,/turf/open/floor/plating,/area/maintenance/port/fore)
+"ayX" = (/obj/structure/table/glass,/obj/item/weapon/storage/bag/trash,/turf/open/floor/plating,/area/maintenance/port/fore)
+"ayY" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/closed/wall,/area/maintenance/port/fore)
+"ayZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aza" = (/obj/machinery/door/airlock/maintenance{name = "Firefighting equipment"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/port/fore)
+"azb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port/fore)
+"azc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/port/fore)
+"azd" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aze" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
+"azf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
+"azg" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fore)
+"azh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"azi" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
+"azj" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = -32},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
+"azk" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"azl" = (/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/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
+"azm" = (/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 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
+"azn" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"azo" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fore)
+"azp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva)
+"azq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva)
+"azr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/ai_monitored/storage/eva)
+"azs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/fore)
+"azt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore)
+"azu" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/blue/corner,/area/hallway/primary/fore)
+"azv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/fore/secondary)
+"azw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/fore/secondary)
+"azx" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms)
+"azy" = (/turf/open/floor/plasteel,/area/crew_quarters/dorms)
+"azz" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plasteel,/area/crew_quarters/dorms)
+"azA" = (/obj/structure/table/wood,/obj/item/weapon/storage/crayons,/turf/open/floor/plasteel,/area/crew_quarters/dorms)
+"azB" = (/obj/structure/table/wood,/obj/item/device/paicard,/turf/open/floor/plasteel,/area/crew_quarters/dorms)
+"azC" = (/obj/structure/table/wood,/obj/item/toy/cards/deck{pixel_x = 2},/obj/item/clothing/mask/balaclava{pixel_x = -8; pixel_y = 8},/turf/open/floor/plasteel,/area/crew_quarters/dorms)
+"azD" = (/obj/structure/chair/stool{pixel_y = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/crew_quarters/dorms)
+"azE" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/plasteel,/area/crew_quarters/dorms)
+"azF" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel,/area/crew_quarters/dorms)
+"azG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Fitness"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"azH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"azI" = (/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/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"azJ" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/crew_quarters/fitness)
+"azK" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel/black,/area/crew_quarters/fitness)
+"azL" = (/obj/machinery/door/window/eastright{base_state = "left"; icon_state = "left"; name = "Fitness Ring"},/obj/structure/window/reinforced,/turf/open/floor/plasteel/black,/area/crew_quarters/fitness)
+"azM" = (/turf/open/floor/plasteel/green/side{dir = 4},/area/crew_quarters/fitness)
+"azN" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Holodeck Door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"azO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"azP" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"azQ" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"azR" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"azS" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"azT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"azU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"azV" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/department/electrical)
+"azW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/department/electrical)
+"azX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/electrical)
+"azY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/plating,/area/maintenance/department/electrical)
+"azZ" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high/plus,/obj/item/weapon/stock_parts/cell/high/plus,/turf/open/floor/plating,/area/maintenance/department/electrical)
+"aAa" = (/obj/docking_port/stationary/random{dir = 8; id = "pod_lavaland2"; name = "lavaland"},/turf/open/space,/area/space)
+"aAb" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/pod_2)
+"aAc" = (/obj/machinery/computer/shuttle/pod{pixel_x = 0; pixel_y = -32; possible_destinations = "pod_lavaland2"; shuttleId = "pod2"},/obj/structure/chair{dir = 8},/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 0; pixel_y = 32},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_2)
+"aAd" = (/obj/item/weapon/storage/pod{pixel_x = 6; pixel_y = -28},/obj/item/device/radio/intercom{pixel_x = 0; pixel_y = 25},/obj/structure/chair{dir = 8},/obj/machinery/light/small,/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_2)
+"aAe" = (/obj/machinery/door/airlock/titanium{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{dir = 8; id = "pod2"; name = "escape pod 2"; port_angle = 180},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_2)
+"aAf" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 1; name = "Escape Pod One"},/turf/open/floor/plating,/area/hallway/secondary/entry)
+"aAg" = (/turf/open/floor/plating,/area/hallway/secondary/entry)
+"aAh" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aAi" = (/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aAj" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aAk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aAl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 2},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aAm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aAn" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aAo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aAp" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/arrival{dir = 4},/area/hallway/secondary/entry)
+"aAq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aAr" = (/obj/structure/closet/wardrobe/white,/obj/item/clothing/shoes/jackboots,/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,/turf/open/floor/plating,/area/maintenance/port/fore)
+"aAs" = (/obj/structure/table/glass,/obj/item/weapon/hemostat,/turf/open/floor/plating,/area/maintenance/port/fore)
+"aAt" = (/obj/structure/table/glass,/obj/item/weapon/restraints/handcuffs/cable/zipties,/obj/item/weapon/reagent_containers/blood/random,/turf/open/floor/plating,/area/maintenance/port/fore)
+"aAu" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aAv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port/fore)
+"aAw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aAx" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aAy" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/port/fore)
+"aAz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port/fore)
+"aAA" = (/turf/closed/wall/r_wall,/area/maintenance/port/fore)
+"aAB" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fore)
+"aAC" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fore)
+"aAD" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fore)
+"aAE" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fore)
+"aAF" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fore)
+"aAG" = (/turf/closed/wall/r_wall,/area/maintenance/fore)
+"aAH" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"aAI" = (/turf/closed/wall/r_wall,/area/gateway)
+"aAJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"aAK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/securearea{pixel_x = 32; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"aAL" = (/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva)
+"aAM" = (/obj/structure/closet/crate/rcd,/obj/machinery/camera/motion{c_tag = "EVA Motion Sensor"; name = "motion-sensitive security camera"},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/eva)
+"aAN" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/machinery/light{dir = 1},/obj/item/weapon/hand_labeler,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/turf/open/floor/plasteel/black,/area/ai_monitored/storage/eva)
+"aAO" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/item/clothing/head/welding,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aAP" = (/obj/machinery/power/apc{dir = 1; name = "EVA Storage APC"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aAQ" = (/obj/machinery/airalarm{pixel_y = 23},/obj/item/device/radio/off,/obj/item/device/assembly/timer,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aAR" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high/plus,/turf/open/floor/plasteel/black,/area/ai_monitored/storage/eva)
+"aAS" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/weapon/screwdriver{pixel_y = 16},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/eva)
+"aAT" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/sign/securearea{pixel_y = 32},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ai_monitored/storage/eva)
+"aAU" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/device/multitool,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aAV" = (/obj/machinery/light{dir = 1},/obj/structure/table,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/weapon/stock_parts/cell/high/plus,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aAW" = (/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aAX" = (/obj/structure/table,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/item/clothing/head/welding,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aAY" = (/turf/closed/wall,/area/ai_monitored/storage/eva)
+"aAZ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/fore)
+"aBa" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/blue/corner,/area/hallway/primary/fore)
+"aBb" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/button/door{id = "Dorm2"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; pixel_y = 0; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/carpet,/area/crew_quarters/dorms)
+"aBc" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 8},/area/crew_quarters/dorms)
+"aBd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/crew_quarters/dorms)
+"aBe" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/dorms)
+"aBf" = (/obj/machinery/light,/turf/open/floor/plasteel/neutral/side,/area/crew_quarters/dorms)
+"aBg" = (/turf/open/floor/plasteel/neutral/side,/area/crew_quarters/dorms)
+"aBh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/neutral/side{dir = 6},/area/crew_quarters/dorms)
+"aBi" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/open/floor/plasteel/neutral/side{dir = 10},/area/crew_quarters/fitness)
+"aBj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/crew_quarters/fitness)
+"aBk" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"aBl" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"aBm" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"aBn" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"aBo" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"aBp" = (/obj/machinery/camera{c_tag = "Fitness Room South"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/green/side{dir = 4},/area/crew_quarters/fitness)
+"aBq" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/crew_quarters/fitness)
+"aBr" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/fitness)
+"aBs" = (/obj/structure/grille/broken,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aBt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aBu" = (/obj/machinery/power/terminal,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plating,/area/maintenance/department/electrical)
+"aBv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/electrical)
+"aBw" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/department/electrical)
+"aBx" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plating,/area/maintenance/department/electrical)
+"aBy" = (/obj/machinery/light_switch{pixel_y = -25},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plating,/area/maintenance/department/electrical)
+"aBz" = (/obj/machinery/power/terminal,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/department/electrical)
+"aBA" = (/obj/machinery/camera{c_tag = "Arrivals Escape Pod 2"; dir = 8},/obj/machinery/light/small,/turf/open/floor/plating,/area/hallway/secondary/entry)
+"aBB" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/entry)
+"aBC" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 2; name = "Port Docking Bay 1"},/turf/open/floor/plating,/area/hallway/secondary/entry)
+"aBD" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aBE" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aBF" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aBG" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aBH" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aBI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/arrival{dir = 4},/area/hallway/secondary/entry)
+"aBJ" = (/turf/closed/wall,/area/hydroponics/garden)
+"aBK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/hydroponics/garden)
+"aBL" = (/obj/machinery/door/airlock/maintenance{name = "Garden Maintenace"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port/fore)
+"aBM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall,/area/maintenance/port/fore)
+"aBN" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space,/area/space)
+"aBO" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/space,/area/space)
+"aBP" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel/black,/area/gateway)
+"aBQ" = (/obj/machinery/gateway{dir = 9},/turf/open/floor/plasteel/vault{dir = 1},/area/gateway)
+"aBR" = (/obj/machinery/gateway{dir = 1},/turf/open/floor/plasteel/vault{dir = 8},/area/gateway)
+"aBS" = (/obj/machinery/gateway{dir = 5},/turf/open/floor/plasteel/vault{dir = 4},/area/gateway)
+"aBT" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/black,/area/gateway)
+"aBU" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/fore)
+"aBV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "EVA Maintenance"; req_access_txt = "18"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aBW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aBX" = (/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/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aBY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aBZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aCa" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "EVA Storage"; req_access_txt = "18"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aCb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aCc" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aCd" = (/obj/structure/table,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/assembly/prox_sensor,/obj/item/device/assembly/prox_sensor,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aCe" = (/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/fore)
+"aCf" = (/turf/open/floor/plasteel/blue/corner,/area/hallway/primary/fore)
+"aCg" = (/obj/machinery/door/airlock{id_tag = "Dorm2"; name = "Dorm 2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms)
+"aCh" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/dorms)
+"aCi" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/plasteel/neutral/side,/area/crew_quarters/dorms)
+"aCj" = (/obj/machinery/light_switch{pixel_y = -25},/turf/open/floor/plasteel/neutral/side,/area/crew_quarters/dorms)
+"aCk" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/open/floor/plasteel/neutral/side,/area/crew_quarters/dorms)
+"aCl" = (/obj/structure/closet/wardrobe/pjs,/turf/open/floor/plasteel/neutral/side,/area/crew_quarters/dorms)
+"aCm" = (/obj/structure/closet/wardrobe/pjs,/turf/open/floor/plasteel/neutral/side{dir = 6},/area/crew_quarters/dorms)
+"aCn" = (/turf/closed/wall,/area/crew_quarters/toilet)
+"aCo" = (/obj/machinery/door/airlock{name = "Unisex Showers"; req_access_txt = "0"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aCp" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/neutral/side{dir = 10},/area/crew_quarters/fitness)
+"aCq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side,/area/crew_quarters/fitness)
+"aCr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light_switch{pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side,/area/crew_quarters/fitness)
+"aCs" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side,/area/crew_quarters/fitness)
+"aCt" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/neutral/side,/area/crew_quarters/fitness)
+"aCu" = (/obj/structure/reagent_dispensers/water_cooler,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral/side{dir = 6},/area/crew_quarters/fitness)
+"aCv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aCw" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aCx" = (/obj/structure/closet,/obj/effect/decal/cleanable/cobweb,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aCy" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aCz" = (/obj/machinery/door/poddoor/preopen{id = "maint2"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aCA" = (/obj/machinery/door/poddoor/preopen{id = "maint2"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aCB" = (/obj/structure/closet,/obj/effect/landmark/blobstart,/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aCC" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aCD" = (/obj/machinery/power/smes{charge = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plating,/area/maintenance/department/electrical)
+"aCE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/closed/wall,/area/maintenance/department/electrical)
+"aCF" = (/obj/machinery/computer/monitor{name = "backup power monitoring console"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/department/electrical)
+"aCG" = (/obj/machinery/power/smes{charge = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/department/electrical)
+"aCH" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; pixel_y = 0},/turf/closed/wall/r_wall,/area/hallway/secondary/entry)
+"aCI" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/entry)
+"aCJ" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aCK" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aCL" = (/obj/machinery/camera{c_tag = "Arrivals Bay 1 North"; dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aCM" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aCN" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aCO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/arrival{dir = 4},/area/hallway/secondary/entry)
+"aCP" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/power/apc{dir = 2; name = "Security Checkpoint APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/security/checkpoint/checkpoint2)
+"aCQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port/fore)
+"aCR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aCS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aCT" = (/obj/machinery/power/apc{dir = 4; name = "Garden APC"; pixel_x = 27; pixel_y = 2},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/plating,/area/hydroponics/garden)
+"aCU" = (/obj/machinery/hydroponics/soil,/turf/open/floor/grass,/area/hydroponics/garden)
+"aCV" = (/obj/machinery/light{dir = 1},/obj/structure/sink{pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hydroponics/garden)
+"aCW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hydroponics/garden)
+"aCX" = (/obj/machinery/seed_extractor,/turf/open/floor/plasteel,/area/hydroponics/garden)
+"aCY" = (/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/turf/open/floor/plasteel,/area/hydroponics/garden)
+"aCZ" = (/obj/structure/sink{pixel_y = 30},/turf/open/floor/plasteel,/area/hydroponics/garden)
+"aDa" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aDb" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aDc" = (/obj/machinery/power/apc{dir = 2; name = "Primary Tool Storage APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/storage/primary)
+"aDd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aDe" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aDf" = (/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage)
+"aDg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage)
+"aDh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage)
+"aDi" = (/turf/open/floor/plasteel/black,/area/gateway)
+"aDj" = (/obj/machinery/gateway{dir = 8},/turf/open/floor/plasteel/vault{dir = 8},/area/gateway)
+"aDk" = (/obj/machinery/gateway/centerstation,/turf/open/floor/plasteel/black,/area/gateway)
+"aDl" = (/obj/machinery/gateway{dir = 4},/turf/open/floor/plasteel/vault{dir = 8},/area/gateway)
+"aDm" = (/obj/machinery/power/apc{dir = 8; name = "Gateway APC"; pixel_x = -24; pixel_y = -1},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/gateway)
+"aDn" = (/obj/machinery/camera{c_tag = "EVA Maintenance"; dir = 8; network = list("SS13")},/obj/machinery/light/small{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"aDo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva)
+"aDp" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/item/weapon/tank/jetpack/carbondioxide,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aDq" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/tank/jetpack/carbondioxide,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aDr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aDs" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aDt" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aDu" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/shoes/magboots,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aDv" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/shoes/magboots,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aDw" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ai_monitored/storage/eva)
+"aDx" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aDy" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ai_monitored/storage/eva)
+"aDz" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/plasteel/blue/corner,/area/hallway/primary/fore)
+"aDA" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral/side{dir = 8},/area/crew_quarters/dorms)
+"aDB" = (/obj/machinery/shower{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aDC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aDD" = (/obj/machinery/shower{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aDE" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aDF" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aDG" = (/obj/item/clothing/under/rank/mailman,/obj/item/clothing/head/mailman,/obj/structure/closet,/obj/effect/landmark/blobstart,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aDH" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aDI" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 1; name = "Port Docking Bay 1"},/turf/open/floor/plating,/area/hallway/secondary/entry)
+"aDJ" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aDK" = (/turf/closed/wall,/area/security/checkpoint/checkpoint2)
+"aDL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/security/checkpoint/checkpoint2)
+"aDM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/security/checkpoint/checkpoint2)
+"aDN" = (/obj/machinery/door/airlock/maintenance{name = "Security Maintenance"; req_access_txt = "1"},/turf/open/floor/plating,/area/security/checkpoint/checkpoint2)
+"aDO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hydroponics/garden)
+"aDP" = (/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/hydroponics/garden)
+"aDQ" = (/obj/item/seeds/apple,/obj/item/seeds/banana,/obj/item/seeds/cocoapod,/obj/item/seeds/grape,/obj/item/seeds/orange,/obj/item/seeds/sugarcane,/obj/item/seeds/wheat,/obj/item/seeds/watermelon,/obj/structure/table/glass,/obj/item/seeds/tower,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics/garden)
+"aDR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics/garden)
+"aDS" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel,/area/hydroponics/garden)
+"aDT" = (/turf/closed/wall,/area/storage/primary)
+"aDU" = (/obj/machinery/door/airlock/maintenance{name = "Tool Storage Maintenance"; req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port/fore)
+"aDV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/storage/primary)
+"aDW" = (/turf/closed/wall/r_wall,/area/storage/primary)
+"aDX" = (/obj/machinery/computer/bank_machine,/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/nuke_storage)
+"aDY" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/circuit,/area/ai_monitored/nuke_storage)
+"aDZ" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/light{dir = 1},/turf/open/floor/circuit,/area/ai_monitored/nuke_storage)
+"aEa" = (/obj/machinery/power/apc{dir = 1; name = "Vault APC"; pixel_x = 0; pixel_y = 25},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/circuit,/area/ai_monitored/nuke_storage)
+"aEb" = (/obj/structure/filingcabinet,/obj/item/weapon/folder/documents,/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/nuke_storage)
+"aEc" = (/obj/machinery/gateway{dir = 10},/turf/open/floor/plasteel/vault{dir = 4},/area/gateway)
+"aEd" = (/obj/machinery/gateway,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plasteel/vault{dir = 8},/area/gateway)
+"aEe" = (/obj/machinery/gateway{dir = 6},/turf/open/floor/plasteel/vault{dir = 1},/area/gateway)
+"aEf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/fore)
+"aEg" = (/obj/machinery/requests_console{department = "EVA"; pixel_x = -32; pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aEh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aEi" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aEj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aEk" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/item/weapon/pen{desc = "Writes upside down!"; name = "astronaut pen"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aEl" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aEm" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ai_monitored/storage/eva)
+"aEn" = (/obj/machinery/camera{c_tag = "EVA East"; dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aEo" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/button/door{id = "Dorm1"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; pixel_y = 0; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/carpet,/area/crew_quarters/dorms)
+"aEp" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aEq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aEr" = (/obj/structure/urinal{pixel_y = 32},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aEs" = (/obj/effect/landmark/xeno_spawn,/obj/item/weapon/bikehorn/rubberducky,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aEt" = (/obj/structure/table/wood,/obj/machinery/requests_console{department = "Theatre"; departmentType = 0; name = "theatre RC"; pixel_x = -32; pixel_y = 0},/obj/item/weapon/reagent_containers/food/snacks/baguette,/obj/item/toy/dummy,/turf/open/floor/plasteel/white/side{dir = 4},/area/crew_quarters/theatre)
+"aEu" = (/obj/machinery/camera{c_tag = "Theatre Storage"},/turf/open/floor/plasteel/white/side{dir = 4},/area/crew_quarters/theatre)
+"aEv" = (/obj/machinery/vending/autodrobe,/turf/open/floor/plasteel/white/side{dir = 4},/area/crew_quarters/theatre)
+"aEw" = (/turf/closed/wall,/area/crew_quarters/theatre)
+"aEx" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aEy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/starboard/fore)
+"aEz" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/fitness)
+"aEA" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/fitness)
+"aEB" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/fitness)
+"aEC" = (/obj/machinery/atmospherics/components/binary/valve,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aED" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aEE" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aEF" = (/obj/structure/grille/broken,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/window{icon_state = "window"; dir = 4},/obj/structure/window,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/starboard/fore)
+"aEG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall,/area/maintenance/starboard/fore)
+"aEH" = (/obj/machinery/door/poddoor/preopen{id = "maint1"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aEI" = (/obj/machinery/door/poddoor/preopen{id = "maint1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aEJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/maintenance/starboard/fore)
+"aEK" = (/obj/structure/girder,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aEL" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aEM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aEN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aEO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aEP" = (/obj/structure/chair/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aEQ" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aER" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aES" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aET" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/chapel/main)
+"aEU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/chapel/main)
+"aEV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/black,/area/chapel/main)
+"aEW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/black,/area/chapel/main)
+"aEX" = (/turf/closed/wall,/area/chapel/main)
+"aEY" = (/turf/closed/wall/mineral/titanium,/area/shuttle/arrival)
+"aEZ" = (/obj/machinery/door/airlock/titanium{name = "Arrivals Shuttle Airlock"},/turf/open/floor/plating,/area/shuttle/arrival)
+"aFa" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/arrival)
+"aFb" = (/obj/machinery/camera{c_tag = "Arrivals North"; dir = 8; network = list("SS13")},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/arrival{dir = 4},/area/hallway/secondary/entry)
+"aFc" = (/obj/structure/closet/secure_closet/security,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red/side{dir = 9},/area/security/checkpoint/checkpoint2)
+"aFd" = (/obj/structure/closet/wardrobe/red,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/side{dir = 1},/area/security/checkpoint/checkpoint2)
+"aFe" = (/obj/machinery/computer/security,/obj/structure/reagent_dispensers/peppertank{pixel_x = 0; pixel_y = 30},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/checkpoint/checkpoint2)
+"aFf" = (/obj/machinery/computer/card,/obj/machinery/light{dir = 1},/obj/item/device/radio/intercom{broadcasting = 0; name = "Station Intercom (General)"; pixel_y = 20},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/checkpoint/checkpoint2)
+"aFg" = (/obj/machinery/computer/secure_data,/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_y = 30},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/checkpoint/checkpoint2)
+"aFh" = (/turf/open/floor/plasteel/red/side{dir = 5},/area/security/checkpoint/checkpoint2)
+"aFi" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hydroponics/garden)
+"aFj" = (/turf/open/floor/plasteel,/area/hydroponics/garden)
+"aFk" = (/obj/machinery/biogenerator,/turf/open/floor/plasteel,/area/hydroponics/garden)
+"aFl" = (/obj/machinery/vending/assist,/turf/open/floor/plasteel,/area/storage/primary)
+"aFm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/storage/primary)
+"aFn" = (/obj/structure/table,/obj/item/weapon/wirecutters,/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/open/floor/plasteel,/area/storage/primary)
+"aFo" = (/obj/structure/table,/obj/item/device/t_scanner,/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel,/area/storage/primary)
+"aFp" = (/obj/structure/table,/obj/item/device/assembly/igniter{pixel_x = -8; pixel_y = -4},/obj/item/device/assembly/igniter,/obj/item/weapon/screwdriver{pixel_y = 16},/obj/machinery/camera{c_tag = "Primary Tool Storage"},/obj/machinery/requests_console{department = "Tool Storage"; departmentType = 0; pixel_y = 30},/turf/open/floor/plasteel,/area/storage/primary)
+"aFq" = (/obj/structure/table,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/radio/intercom{broadcasting = 0; name = "Station Intercom (General)"; pixel_y = 20},/obj/item/device/multitool,/obj/item/device/multitool{pixel_x = 4},/turf/open/floor/plasteel,/area/storage/primary)
+"aFr" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/light_switch{pixel_y = 28},/obj/item/weapon/stock_parts/cell/high/plus,/turf/open/floor/plasteel,/area/storage/primary)
+"aFs" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/turf/open/floor/plasteel,/area/storage/primary)
+"aFt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/storage/primary)
+"aFu" = (/obj/machinery/vending/tool,/turf/open/floor/plasteel,/area/storage/primary)
+"aFv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/vault{dir = 1},/area/ai_monitored/nuke_storage)
+"aFw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/circuit,/area/ai_monitored/nuke_storage)
+"aFx" = (/obj/machinery/nuclearbomb/selfdestruct,/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/nuke_storage)
+"aFy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/circuit,/area/ai_monitored/nuke_storage)
+"aFz" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel/vault{dir = 4},/area/ai_monitored/nuke_storage)
+"aFA" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/black,/area/gateway)
+"aFB" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel/black,/area/gateway)
+"aFC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/window{name = "Gateway Chamber"; req_access_txt = "62"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/black,/area/gateway)
+"aFD" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/gateway)
+"aFE" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/gateway)
+"aFF" = (/obj/structure/rack{dir = 1},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"aFG" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aFH" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aFI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aFJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aFK" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/light,/obj/machinery/camera{c_tag = "EVA Storage"; dir = 1},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aFL" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aFM" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva)
+"aFN" = (/obj/machinery/door/airlock/command{name = "Command Tool Storage"; req_access = null; req_access_txt = "19"},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aFO" = (/obj/machinery/door/airlock/command{cyclelinkeddir = 2; name = "Command Tool Storage"; req_access = null; req_access_txt = "19"},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/eva)
+"aFP" = (/obj/machinery/door/airlock{id_tag = "Dorm1"; name = "Dorm 1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms)
+"aFQ" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel/neutral/side{dir = 4},/area/crew_quarters/dorms)
+"aFR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/toilet)
+"aFS" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aFT" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aFU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aFV" = (/obj/machinery/door/airlock{name = "Unisex Showers"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aFW" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aFX" = (/obj/machinery/light/small,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aFY" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aFZ" = (/obj/structure/table/wood,/obj/structure/mirror{pixel_x = -28},/obj/item/weapon/lipstick/random{pixel_x = 2; pixel_y = 2},/obj/item/weapon/lipstick/random{pixel_x = -2; pixel_y = -2},/turf/open/floor/plasteel/white/side{dir = 4},/area/crew_quarters/theatre)
+"aGa" = (/obj/structure/chair/stool,/obj/effect/landmark/start/mime,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/white/side{dir = 4},/area/crew_quarters/theatre)
+"aGb" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white/side{dir = 4},/area/crew_quarters/theatre)
+"aGc" = (/obj/machinery/door/airlock/maintenance{name = "Theatre Maintenance"; req_access_txt = "46"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/theatre)
+"aGd" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 2; icon_state = "pipe-j1s"; sortType = 18},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aGe" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aGf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aGg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aGh" = (/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aGi" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aGj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/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/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aGk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aGl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aGm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aGn" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aGo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aGp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aGq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/power/apc{dir = 2; name = "Chapel APC"; pixel_x = 0; pixel_y = -24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/plating,/area/chapel/main)
+"aGr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Chapel Maintenance"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aGs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/chapel/main)
+"aGt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/black,/area/chapel/main)
+"aGu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/chapel/main)
+"aGv" = (/obj/machinery/door/window{dir = 8; name = "Mass Driver"; req_access_txt = "22"},/obj/machinery/mass_driver{dir = 4; id = "chapelgun"; name = "Holy Driver"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/chapel/main)
+"aGw" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/chapel/main)
+"aGx" = (/obj/machinery/door/poddoor{id = "chapelgun"; name = "Chapel Launcher Door"},/turf/open/floor/plating,/area/chapel/main)
+"aGy" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
+"aGz" = (/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
+"aGA" = (/obj/machinery/computer/arcade,/obj/machinery/light{dir = 1},/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
+"aGB" = (/obj/structure/closet/wardrobe/green,/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
+"aGC" = (/obj/structure/closet/wardrobe/black,/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
+"aGD" = (/obj/structure/closet/wardrobe/mixed,/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
+"aGE" = (/obj/structure/closet/wardrobe/grey,/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
+"aGF" = (/obj/machinery/requests_console{department = "Arrival shuttle"; name = "Arrivals Shuttle console"; pixel_y = 30},/obj/machinery/light{dir = 1},/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
+"aGG" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating/airless,/area/shuttle/arrival)
+"aGH" = (/obj/structure/shuttle/engine/propulsion{dir = 4; icon_state = "burst_r"},/turf/open/floor/plating/airless,/area/shuttle/arrival)
+"aGI" = (/obj/machinery/power/apc{dir = 4; name = "Entry Hall APC"; pixel_x = 24; pixel_y = 0},/obj/structure/cable,/turf/open/floor/plasteel/arrival{dir = 4},/area/hallway/secondary/entry)
+"aGJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red/side{dir = 8},/area/security/checkpoint/checkpoint2)
+"aGK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/checkpoint/checkpoint2)
+"aGL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/security/checkpoint/checkpoint2)
+"aGM" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/security/checkpoint/checkpoint2)
+"aGN" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/security/checkpoint/checkpoint2)
+"aGO" = (/turf/open/floor/plasteel/red/side{dir = 4},/area/security/checkpoint/checkpoint2)
+"aGP" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,/obj/item/weapon/reagent_containers/food/snacks/grown/citrus/orange,/obj/item/weapon/reagent_containers/food/snacks/grown/grapes,/obj/item/weapon/reagent_containers/food/snacks/grown/cocoapod,/turf/open/floor/plasteel/green/side{dir = 4},/area/hydroponics/garden)
+"aGQ" = (/obj/machinery/door/airlock{name = "Garden"; req_access_txt = "0"},/turf/open/floor/plasteel,/area/hydroponics/garden)
+"aGR" = (/turf/open/floor/plasteel,/area/storage/primary)
+"aGS" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/storage/primary)
+"aGT" = (/obj/structure/closet/crate{name = "Gold Crate"},/obj/item/stack/sheet/mineral/gold{pixel_x = -1; pixel_y = 5},/obj/item/stack/sheet/mineral/gold{pixel_y = 2},/obj/item/stack/sheet/mineral/gold{pixel_x = 1; pixel_y = -2},/obj/item/weapon/storage/belt/champion,/turf/open/floor/plasteel/vault{dir = 1},/area/ai_monitored/nuke_storage)
+"aGU" = (/turf/open/floor/circuit,/area/ai_monitored/nuke_storage)
+"aGV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/circuit,/area/ai_monitored/nuke_storage)
+"aGW" = (/obj/item/weapon/coin/silver{pixel_x = 7; pixel_y = 12},/obj/item/weapon/coin/silver{pixel_x = 12; pixel_y = 7},/obj/item/weapon/coin/silver{pixel_x = 4; pixel_y = 8},/obj/item/weapon/coin/silver{pixel_x = -6; pixel_y = 5},/obj/item/weapon/coin/silver{pixel_x = 5; pixel_y = -8},/obj/structure/closet/crate{name = "Silver Crate"},/turf/open/floor/plasteel/vault{dir = 4},/area/ai_monitored/nuke_storage)
+"aGX" = (/obj/machinery/camera{c_tag = "Gateway"; dir = 4; network = list("SS13")},/obj/structure/table,/obj/structure/sign/biohazard{pixel_x = -32},/obj/item/weapon/storage/firstaid/regular,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/gateway)
+"aGY" = (/obj/structure/table,/obj/item/weapon/paper/pamphlet,/turf/open/floor/plasteel,/area/gateway)
+"aGZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/gateway)
+"aHa" = (/obj/structure/table,/obj/item/device/radio/off{pixel_y = 6},/obj/item/device/radio/off{pixel_x = 6; pixel_y = 4},/obj/item/device/radio/off{pixel_x = -6; pixel_y = 4},/obj/item/device/radio/off,/turf/open/floor/plasteel,/area/gateway)
+"aHb" = (/obj/structure/table,/obj/machinery/recharger,/obj/structure/sign/biohazard{pixel_x = 32},/turf/open/floor/plasteel,/area/gateway)
+"aHc" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"aHd" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/ai_monitored/storage/eva)
+"aHe" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "EVA Storage"; req_access_txt = "18"},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aHf" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/ai_monitored/storage/eva)
+"aHg" = (/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva)
+"aHh" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/eva)
+"aHi" = (/obj/machinery/camera{c_tag = "Dormitory South"; c_tag_order = 999; dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/neutral/side{dir = 8},/area/crew_quarters/dorms)
+"aHj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/side{dir = 4},/area/crew_quarters/dorms)
+"aHk" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aHl" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aHm" = (/obj/machinery/power/apc{dir = 4; name = "Dormitory Bathrooms APC"; pixel_x = 26; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aHn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/toilet)
+"aHo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall,/area/crew_quarters/toilet)
+"aHp" = (/obj/machinery/light/small{dir = 8},/obj/structure/dresser,/turf/open/floor/plasteel/redblue/redside,/area/crew_quarters/theatre)
+"aHq" = (/turf/open/floor/plasteel/redblue/redside,/area/crew_quarters/theatre)
+"aHr" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/redblue/redside,/area/crew_quarters/theatre)
+"aHs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aHt" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aHu" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aHv" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aHw" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/space,/area/space)
+"aHx" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aHy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aHz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aHA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aHB" = (/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/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aHC" = (/turf/closed/wall,/area/library)
+"aHD" = (/turf/closed/wall,/area/chapel/office)
+"aHE" = (/obj/machinery/power/apc{dir = 2; name = "Chapel Office APC"; pixel_x = 0; pixel_y = -24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/chapel/office)
+"aHF" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aHG" = (/turf/open/floor/plasteel/black,/area/chapel/main)
+"aHH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/chapel/main)
+"aHI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/computer/pod/old{density = 0; icon = 'icons/obj/airlock_machines.dmi'; icon_state = "airlock_control_standby"; id = "chapelgun"; name = "Mass Driver Controller"; pixel_x = 24; pixel_y = 0},/turf/open/floor/plasteel/black,/area/chapel/main)
+"aHJ" = (/obj/structure/window/shuttle,/obj/structure/grille,/turf/open/floor/plating,/area/shuttle/arrival)
+"aHK" = (/obj/structure/chair,/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
+"aHL" = (/obj/structure/chair,/obj/machinery/light/small{dir = 4},/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
+"aHM" = (/obj/structure/chair{dir = 8},/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
+"aHN" = (/obj/structure/shuttle/engine/propulsion{dir = 4; icon_state = "propulsion"},/turf/open/floor/plating/airless,/area/shuttle/arrival)
+"aHO" = (/turf/open/floor/plasteel/arrival{dir = 4},/area/hallway/secondary/entry)
+"aHP" = (/obj/machinery/camera{c_tag = "Security Checkpoint"; dir = 1},/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/light_switch{pixel_x = 6; pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/red/side{dir = 10},/area/security/checkpoint/checkpoint2)
+"aHQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/red/side,/area/security/checkpoint/checkpoint2)
+"aHR" = (/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/red/side,/area/security/checkpoint/checkpoint2)
+"aHS" = (/obj/structure/chair/office/dark,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/red/side,/area/security/checkpoint/checkpoint2)
+"aHT" = (/obj/machinery/recharger{pixel_y = 4},/obj/structure/table,/turf/open/floor/plasteel/red/side,/area/security/checkpoint/checkpoint2)
+"aHU" = (/obj/item/device/radio/off,/obj/item/weapon/crowbar,/obj/item/device/assembly/flash/handheld,/obj/structure/table,/turf/open/floor/plasteel/red/side{dir = 6},/area/security/checkpoint/checkpoint2)
+"aHV" = (/obj/structure/table/glass,/obj/item/weapon/cultivator,/obj/item/weapon/hatchet,/obj/item/weapon/crowbar,/obj/item/device/plant_analyzer,/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/plasteel/green/side{dir = 4},/area/hydroponics/garden)
+"aHW" = (/obj/machinery/camera{c_tag = "Garden"; dir = 8; network = list("SS13")},/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/open/floor/plasteel,/area/hydroponics/garden)
+"aHX" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 2; pixel_y = -2},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/item/weapon/screwdriver{pixel_y = 16},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel,/area/storage/primary)
+"aHY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/storage/primary)
+"aHZ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel,/area/storage/primary)
+"aIa" = (/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/storage/primary)
+"aIb" = (/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/storage/primary)
+"aIc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/storage/primary)
+"aId" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/storage/primary)
+"aIe" = (/turf/open/floor/plasteel/vault{dir = 1},/area/ai_monitored/nuke_storage)
+"aIf" = (/obj/machinery/light,/turf/open/floor/plasteel/vault{dir = 6},/area/ai_monitored/nuke_storage)
+"aIg" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel/vault,/area/ai_monitored/nuke_storage)
+"aIh" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera/motion{c_tag = "Vault"; dir = 1; network = list("MiniSat")},/obj/machinery/light,/turf/open/floor/plasteel/vault{dir = 10},/area/ai_monitored/nuke_storage)
+"aIi" = (/obj/structure/safe,/obj/item/clothing/head/bearpelt,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/weapon/gun/ballistic/revolver/russian,/obj/item/ammo_box/a357,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,/turf/open/floor/plasteel/vault{dir = 4},/area/ai_monitored/nuke_storage)
+"aIj" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"aIk" = (/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = -30},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/gateway)
+"aIl" = (/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/gateway)
+"aIm" = (/turf/open/floor/plasteel,/area/gateway)
+"aIn" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/open/floor/plasteel,/area/gateway)
+"aIo" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"aIp" = (/obj/structure/table,/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aIq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/ai_monitored/storage/eva)
+"aIr" = (/turf/open/floor/plasteel/black,/area/ai_monitored/storage/eva)
+"aIs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/ai_monitored/storage/eva)
+"aIt" = (/obj/item/stack/sheet/plasteel{amount = 10},/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aIu" = (/obj/machinery/light{dir = 8},/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aIv" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/rglass{amount = 50},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aIw" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/fore)
+"aIx" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/blue/corner,/area/hallway/primary/fore)
+"aIy" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aIz" = (/obj/machinery/light_switch{pixel_x = 27},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aIA" = (/obj/structure/toilet{pixel_y = 8},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aIB" = (/obj/structure/toilet{pixel_y = 8},/obj/machinery/light/small{dir = 8},/obj/effect/landmark/blobstart,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aIC" = (/obj/machinery/light/small{dir = 8},/obj/machinery/recharge_station,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aID" = (/obj/structure/table/wood,/obj/structure/mirror{pixel_x = -28},/obj/item/device/flashlight/lamp/bananalamp{pixel_y = 3},/turf/open/floor/plasteel/redblue,/area/crew_quarters/theatre)
+"aIE" = (/obj/structure/chair/stool,/obj/effect/landmark/start/clown,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/redblue,/area/crew_quarters/theatre)
+"aIF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/closet/secure_closet/freezer/cream_pie,/turf/open/floor/plasteel/redblue,/area/crew_quarters/theatre)
+"aIG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/theatre)
+"aIH" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aII" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aIJ" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j1"; dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aIK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aIL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aIM" = (/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/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aIN" = (/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/sortjunction{dir = 4; icon_state = "pipe-j1s"; sortType = 19},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aIO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aIP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aIQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j1s"; sortType = 20},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aIR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aIS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aIT" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aIU" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aIV" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aIW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aIX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aIY" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aIZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/space,/area/space)
+"aJa" = (/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j2s"; sortType = 17},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aJb" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aJc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/library)
+"aJd" = (/obj/machinery/door/airlock/maintenance{name = "Library Maintenance"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/library)
+"aJe" = (/obj/structure/table/wood,/obj/item/weapon/storage/pill_bottle/dice,/turf/open/floor/wood,/area/library)
+"aJf" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/stack/packageWrap,/turf/open/floor/wood,/area/library)
+"aJg" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/wood,/area/library)
+"aJh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/chapel/office)
+"aJi" = (/obj/machinery/door/airlock/maintenance{name = "Crematorium Maintenance"; req_access_txt = "27"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/chapel/office)
+"aJj" = (/obj/structure/closet/wardrobe/chaplain_black,/obj/item/device/radio/intercom{pixel_y = 25},/turf/open/floor/plasteel/grimy,/area/chapel/office)
+"aJk" = (/obj/machinery/light/small{dir = 1},/obj/machinery/requests_console{department = "Chapel"; departmentType = 2; pixel_y = 30},/turf/open/floor/plasteel/grimy,/area/chapel/office)
+"aJl" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/camera{c_tag = "Chapel Office"; dir = 2; network = list("SS13")},/turf/open/floor/plasteel/grimy,/area/chapel/office)
+"aJm" = (/obj/machinery/airalarm{pixel_y = 25},/turf/open/floor/plasteel/grimy,/area/chapel/office)
+"aJn" = (/obj/structure/closet/coffin,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/black,/area/chapel/office)
+"aJo" = (/obj/structure/closet/coffin,/obj/machinery/door/window/eastleft{name = "Coffin Storage"; req_access_txt = "22"},/turf/open/floor/plasteel/black,/area/chapel/office)
+"aJp" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/black,/area/chapel/main)
+"aJq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/chapel/main)
+"aJr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/chapel/main)
+"aJs" = (/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main)
+"aJt" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/food/snacks/grown/poppy,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main)
+"aJu" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/chapel/main)
+"aJv" = (/turf/closed/wall/mineral/titanium,/area/shuttle/escape)
+"aJw" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/escape)
+"aJx" = (/obj/effect/landmark/marauder_entry,/turf/open/space,/area/space)
+"aJy" = (/obj/machinery/door/airlock/titanium{name = "Arrivals Shuttle Airlock"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
+"aJz" = (/obj/structure/shuttle/engine/propulsion{dir = 4; icon_state = "propulsion"},/obj/docking_port/mobile/arrivals,/obj/docking_port/stationary{dir = 8; dwidth = 3; height = 15; id = "arrivals_stationary"; name = "arrivals"; width = 7},/turf/open/floor/plating/airless,/area/shuttle/arrival)
+"aJA" = (/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 32; pixel_y = 0},/turf/open/floor/plasteel/white/corner{dir = 4},/area/hallway/secondary/entry)
+"aJB" = (/obj/machinery/door/airlock/security{name = "Security Checkpoint"; req_access = null; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/checkpoint/checkpoint2)
+"aJC" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/checkpoint/checkpoint2)
+"aJD" = (/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/item/weapon/paper,/obj/machinery/door/window/westright{dir = 1; name = "Security Checkpoint"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aJE" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel/green/side{dir = 5},/area/hydroponics/garden)
+"aJF" = (/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/hydroponics/garden)
+"aJG" = (/obj/item/weapon/reagent_containers/spray/plantbgone,/obj/item/weapon/reagent_containers/spray/pestspray{pixel_x = 3; pixel_y = 4},/obj/item/weapon/reagent_containers/glass/bottle/nutrient/ez,/obj/item/weapon/reagent_containers/glass/bottle/nutrient/rh{pixel_x = 2; pixel_y = 1},/obj/structure/table/glass,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/green/side{dir = 9},/area/hydroponics/garden)
+"aJH" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/turf/open/floor/plasteel,/area/storage/primary)
+"aJI" = (/obj/structure/chair/stool{pixel_y = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/storage/primary)
+"aJJ" = (/obj/structure/table,/obj/item/weapon/weldingtool,/obj/item/weapon/crowbar,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/turf/open/floor/plasteel,/area/storage/primary)
+"aJK" = (/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage)
+"aJL" = (/obj/machinery/door/airlock/vault{icon_state = "door_locked"; locked = 1; req_access_txt = "53"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/vault{dir = 5},/area/ai_monitored/nuke_storage)
+"aJM" = (/obj/machinery/light_switch{pixel_x = -20; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/gateway)
+"aJN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel,/area/gateway)
+"aJO" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/gateway)
+"aJP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/gateway)
+"aJQ" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/closet/l3closet/scientist,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/gateway)
+"aJR" = (/obj/structure/grille,/obj/structure/window/fulltile{obj_integrity = 25},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"aJS" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/crowbar,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aJT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/eva)
+"aJU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/eva)
+"aJV" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aJW" = (/obj/machinery/door/airlock/command{cyclelinkeddir = 1; name = "Command Tool Storage"; req_access = null; req_access_txt = "19"},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/eva)
+"aJX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/central)
+"aJY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aJZ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/open/floor/plasteel/blue/side{dir = 4},/area/hallway/primary/central)
+"aKa" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Dormitory"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral/side{dir = 8},/area/crew_quarters/dorms)
+"aKb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Dormitory"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/side{dir = 4},/area/crew_quarters/dorms)
+"aKc" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aKd" = (/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aKe" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aKf" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aKg" = (/obj/machinery/door/airlock{name = "Unit B"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aKh" = (/obj/structure/table/wood,/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/item/weapon/storage/crayons{pixel_x = 3; pixel_y = 3},/obj/item/weapon/reagent_containers/food/snacks/pie/cream{pixel_x = -3; pixel_y = -3},/turf/open/floor/plasteel/redblue,/area/crew_quarters/theatre)
+"aKi" = (/turf/open/floor/plasteel/redblue,/area/crew_quarters/theatre)
+"aKj" = (/obj/structure/closet/secure_closet/freezer/cream_pie,/turf/open/floor/plasteel/redblue,/area/crew_quarters/theatre)
+"aKk" = (/obj/machinery/power/apc{dir = 8; name = "Theatre APC"; pixel_x = -25},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/crew_quarters/theatre)
+"aKl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aKm" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aKn" = (/obj/machinery/power/apc{dir = 2; name = "Bar APC"; pixel_y = -24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/bar)
+"aKo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/bar)
+"aKp" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{name = "Bar Storage Maintenance"; req_access_txt = "25"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/crew_quarters/bar)
+"aKq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/closed/wall,/area/crew_quarters/bar)
+"aKr" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Bar"},/obj/structure/plasticflaps{opacity = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot{dir = 2},/turf/open/floor/plasteel{dir = 2},/area/crew_quarters/bar)
+"aKs" = (/obj/machinery/power/apc{dir = 2; name = "Kitchen APC"; pixel_y = -24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/kitchen)
+"aKt" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aKu" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aKv" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aKw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aKx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j1s"; sortType = 21},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aKy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/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/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aKz" = (/obj/machinery/power/apc{dir = 2; name = "Hydroponics APC"; pixel_y = -24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/hydroponics)
+"aKA" = (/turf/closed/wall,/area/hydroponics)
+"aKB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/hydroponics)
+"aKC" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aKD" = (/obj/structure/filingcabinet,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/library)
+"aKE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/wood,/area/library)
+"aKF" = (/obj/structure/chair/office/dark,/obj/machinery/camera{c_tag = "Library North"; dir = 2; network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/library)
+"aKG" = (/obj/structure/chair/office/dark,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/library)
+"aKH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/library)
+"aKI" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/wood,/area/library)
+"aKJ" = (/obj/structure/bodycontainer/crematorium,/obj/effect/landmark/revenantspawn,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/chapel/office)
+"aKK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/chapel/office)
+"aKL" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/grimy,/area/chapel/office)
+"aKM" = (/obj/effect/landmark/start/chaplain,/obj/structure/chair,/turf/open/floor/plasteel/grimy,/area/chapel/office)
+"aKN" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 5},/obj/item/weapon/storage/crayons,/turf/open/floor/plasteel/grimy,/area/chapel/office)
+"aKO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/grimy,/area/chapel/office)
+"aKP" = (/obj/structure/closet/coffin,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/black,/area/chapel/office)
+"aKQ" = (/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main)
+"aKR" = (/obj/structure/table/glass,/turf/open/floor/plasteel/chapel,/area/chapel/main)
+"aKS" = (/turf/open/floor/mineral/titanium,/turf/closed/wall/mineral/titanium/interior,/area/shuttle/escape)
+"aKT" = (/obj/structure/table,/obj/machinery/recharger,/turf/open/floor/mineral/titanium,/area/shuttle/escape)
+"aKU" = (/obj/structure/chair{dir = 1},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
+"aKV" = (/obj/machinery/computer/emergency_shuttle,/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
+"aKW" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 2; pixel_y = 3},/obj/item/weapon/crowbar,/obj/item/weapon/storage/firstaid/fire,/turf/open/floor/mineral/titanium,/area/shuttle/escape)
+"aKX" = (/obj/structure/chair{dir = 1},/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
+"aKY" = (/obj/structure/chair{dir = 1},/obj/machinery/light/small{dir = 4},/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
+"aKZ" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aLa" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aLb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aLc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aLd" = (/obj/machinery/camera{c_tag = "Arrivals Lounge"; dir = 2},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aLe" = (/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aLf" = (/obj/structure/sign/map/left{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aLg" = (/obj/structure/sign/map/right{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aLh" = (/obj/structure/table/glass,/obj/item/weapon/hatchet,/obj/item/weapon/cultivator,/obj/item/weapon/crowbar,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/device/plant_analyzer,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/open/floor/plasteel/green/side{dir = 4},/area/hydroponics/garden)
+"aLi" = (/obj/item/weapon/storage/bag/plants/portaseeder,/obj/structure/table/glass,/obj/item/device/plant_analyzer,/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/obj/machinery/light_switch{pixel_x = -6; pixel_y = -25},/turf/open/floor/plasteel/green/side{dir = 8},/area/hydroponics/garden)
+"aLj" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/device/analyzer,/turf/open/floor/plasteel,/area/storage/primary)
+"aLk" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel,/area/storage/primary)
+"aLl" = (/obj/structure/table,/obj/item/weapon/crowbar,/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/clothing/gloves/color/fyellow,/turf/open/floor/plasteel,/area/storage/primary)
+"aLm" = (/obj/structure/table,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/firstaid/regular,/turf/open/floor/plasteel,/area/storage/primary)
+"aLn" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/storage/primary)
+"aLo" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/storage/primary)
+"aLp" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "Tool Storage"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/storage/primary)
+"aLq" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal/bin,/turf/open/floor/plasteel,/area/storage/primary)
+"aLr" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/primary/port)
+"aLs" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/vault{dir = 5},/area/hallway/primary/port)
+"aLt" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/gateway)
+"aLu" = (/obj/machinery/button/door{id = "stationawaygate"; name = "Gateway Access Shutter Control"; pixel_x = -1; pixel_y = -24; req_access_txt = "31"},/turf/open/floor/plasteel,/area/gateway)
+"aLv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/gateway)
+"aLw" = (/obj/machinery/light{dir = 4},/obj/structure/closet/secure_closet/exile,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/gateway)
+"aLx" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/weapon/extinguisher,/obj/item/weapon/extinguisher,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aLy" = (/obj/machinery/camera{c_tag = "EVA South"; dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aLz" = (/obj/structure/tank_dispenser/oxygen,/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aLA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/primary/central)
+"aLB" = (/turf/open/floor/plasteel/blue/side{dir = 9},/area/hallway/primary/central)
+"aLC" = (/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Central Hallway North"; dir = 2},/turf/open/floor/plasteel/blue/side{dir = 1},/area/hallway/primary/central)
+"aLD" = (/turf/open/floor/plasteel/blue/corner{dir = 1},/area/hallway/primary/central)
+"aLE" = (/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aLF" = (/obj/structure/sign/directions/security{dir = 1; icon_state = "direction_sec"; pixel_x = 32; pixel_y = 40},/obj/structure/sign/directions/medical{dir = 4; icon_state = "direction_med"; pixel_x = 32; pixel_y = 32},/obj/structure/sign/directions/evac{dir = 4; icon_state = "direction_evac"; pixel_x = 32; pixel_y = 24},/turf/open/floor/plasteel/blue/corner{dir = 4},/area/hallway/primary/central)
+"aLG" = (/turf/open/floor/plasteel/blue/side{dir = 1},/area/hallway/primary/central)
+"aLH" = (/turf/open/floor/plasteel/blue/side{dir = 5},/area/hallway/primary/central)
+"aLI" = (/turf/closed/wall,/area/hallway/primary/central)
+"aLJ" = (/obj/machinery/vending/cola/random,/turf/open/floor/plasteel/black,/area/hallway/primary/central)
+"aLK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral/side{dir = 8},/area/hallway/primary/central)
+"aLL" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/side{dir = 4},/area/hallway/primary/central)
+"aLM" = (/obj/machinery/camera{c_tag = "Dormitory Toilets"; dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aLN" = (/obj/machinery/light/small,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aLO" = (/obj/machinery/door/airlock{name = "Theatre Backstage"; req_access_txt = "46"},/turf/open/floor/plasteel,/area/crew_quarters/theatre)
+"aLP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/crew_quarters/bar)
+"aLQ" = (/obj/machinery/door/airlock/maintenance{name = "Bar Maintenance"; req_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aLR" = (/turf/closed/wall,/area/crew_quarters/bar)
+"aLS" = (/obj/item/weapon/reagent_containers/food/drinks/shaker,/obj/item/weapon/gun/ballistic/revolver/doublebarrel,/obj/structure/table/wood,/obj/item/stack/spacecash/c10,/obj/item/stack/spacecash/c100,/turf/open/floor/wood,/area/crew_quarters/bar)
+"aLT" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/bar)
+"aLU" = (/obj/structure/sink/kitchen{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/bar)
+"aLV" = (/obj/machinery/door/window/southleft{base_state = "left"; dir = 2; icon_state = "left"; name = "Bar Delivery"; req_access_txt = "25"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"aLW" = (/turf/closed/wall,/area/crew_quarters/kitchen)
+"aLX" = (/obj/machinery/door/airlock/maintenance{name = "Kitchen Maintenance"; req_access_txt = "28"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/crew_quarters/kitchen)
+"aLY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/kitchen)
+"aLZ" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Kitchen"},/obj/structure/plasticflaps{opacity = 1},/obj/effect/turf_decal/bot{dir = 2},/turf/open/floor/plasteel{dir = 2},/area/crew_quarters/kitchen)
+"aMa" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Hydroponics"},/obj/structure/plasticflaps{opacity = 1},/obj/effect/turf_decal/bot{dir = 2},/turf/open/floor/plasteel{dir = 2},/area/hydroponics)
+"aMb" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{name = "Hydroponics Maintenance"; req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/hydroponics)
+"aMc" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
+"aMd" = (/obj/structure/table,/obj/item/weapon/book/manual/hydroponics_pod_people,/obj/item/weapon/paper/hydroponics,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
+"aMe" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/wood,/area/library)
+"aMf" = (/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/wood,/area/library)
+"aMg" = (/obj/structure/table/wood,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen,/turf/open/floor/wood,/area/library)
+"aMh" = (/obj/structure/table/wood,/obj/structure/disposalpipe/segment,/turf/open/floor/wood,/area/library)
+"aMi" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/wood,/area/library)
+"aMj" = (/obj/machinery/newscaster{pixel_x = 30},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/wood,/area/library)
+"aMk" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/black,/area/chapel/office)
+"aMl" = (/obj/structure/disposalpipe/segment,/obj/machinery/button/crematorium{pixel_x = 25},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/chapel/office)
+"aMm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/chapel/office)
+"aMn" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp{pixel_y = 10},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/chapel/office)
+"aMo" = (/obj/structure/table/wood,/obj/item/weapon/pen,/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/chapel/office)
+"aMp" = (/obj/structure/table/wood,/obj/item/weapon/nullrod,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/chapel/office)
+"aMq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/grimy,/area/chapel/office)
+"aMr" = (/obj/structure/closet/coffin,/obj/machinery/door/window/eastleft{dir = 8; name = "Coffin Storage"; req_access_txt = "22"},/turf/open/floor/plasteel/black,/area/chapel/office)
+"aMs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/xmastree,/turf/open/floor/plasteel/black,/area/chapel/main)
+"aMt" = (/obj/structure/table/glass,/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main)
+"aMu" = (/obj/machinery/computer/atmos_alert,/turf/open/floor/mineral/titanium,/area/shuttle/escape)
+"aMv" = (/obj/structure/chair{dir = 8},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
+"aMw" = (/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
+"aMx" = (/obj/structure/chair{dir = 4},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
+"aMy" = (/obj/machinery/computer/security,/turf/open/floor/mineral/titanium,/area/shuttle/escape)
+"aMz" = (/obj/structure/closet/emcloset,/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
+"aMA" = (/obj/machinery/light,/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
+"aMB" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/obj/machinery/light,/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
+"aMC" = (/obj/structure/shuttle/engine/propulsion{dir = 4; icon_state = "burst_l"},/turf/open/floor/plating/airless,/area/shuttle/arrival)
+"aMD" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/secondary/entry)
+"aME" = (/turf/open/floor/plasteel/neutral/side,/area/hallway/secondary/entry)
+"aMF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral/side,/area/hallway/secondary/entry)
+"aMG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/side,/area/hallway/secondary/entry)
+"aMH" = (/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/secondary/entry)
+"aMI" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/hydroponics/garden)
+"aMJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Garden"},/turf/open/floor/plasteel,/area/hydroponics/garden)
+"aMK" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/storage/primary)
+"aML" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Primary Tool Storage"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/storage/primary)
+"aMM" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Primary Tool Storage"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/storage/primary)
+"aMN" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/storage/primary)
+"aMO" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/primary/port)
+"aMP" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/primary/port)
+"aMQ" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/primary/port)
+"aMR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/vault{dir = 5},/area/hallway/primary/port)
+"aMS" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/obj/structure/cable,/turf/open/floor/plating,/area/hallway/primary/port)
+"aMT" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/primary/port)
+"aMU" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"aMV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{icon_state = "door_closed"; lockdownbyai = 0; locked = 0; name = "Gateway Access"; req_access_txt = "62"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/gateway)
+"aMW" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "stationawaygate"; name = "Gateway Access Shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/gateway)
+"aMX" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "stationawaygate"; name = "Gateway Access Shutters"},/turf/open/floor/plasteel,/area/gateway)
+"aMY" = (/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/gateway)
+"aMZ" = (/turf/open/floor/plasteel/blue/side{dir = 8},/area/hallway/primary/central)
+"aNa" = (/turf/open/floor/plasteel/blue/side{dir = 4},/area/hallway/primary/central)
+"aNb" = (/obj/machinery/vending/snack/random,/turf/open/floor/plasteel/black,/area/hallway/primary/central)
+"aNc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/side{dir = 4},/area/hallway/primary/central)
+"aNd" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/light{dir = 1},/turf/open/floor/wood,/area/crew_quarters/theatre)
+"aNe" = (/turf/open/floor/wood,/area/crew_quarters/theatre)
+"aNf" = (/obj/machinery/airalarm{dir = 2; pixel_y = 24},/turf/open/floor/wood,/area/crew_quarters/theatre)
+"aNg" = (/obj/item/device/radio/intercom{pixel_y = 25},/obj/machinery/camera{c_tag = "Theatre Stage"; dir = 2},/turf/open/floor/wood,/area/crew_quarters/theatre)
+"aNh" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/wood,/area/crew_quarters/theatre)
+"aNi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aNj" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aNk" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aNl" = (/obj/machinery/reagentgrinder,/obj/structure/table/wood,/turf/open/floor/wood,/area/crew_quarters/bar)
+"aNm" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/wood,/area/crew_quarters/bar)
+"aNn" = (/obj/machinery/camera{c_tag = "Bar Storage"},/turf/open/floor/wood,/area/crew_quarters/bar)
+"aNo" = (/turf/open/floor/wood,/area/crew_quarters/bar)
+"aNp" = (/obj/structure/closet/secure_closet/freezer/meat,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
+"aNq" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
+"aNr" = (/obj/machinery/door/window/southleft{base_state = "left"; dir = 2; icon_state = "left"; name = "Kitchen Delivery"; req_access_txt = "28"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/crew_quarters/kitchen)
+"aNs" = (/obj/machinery/door/window/eastright{name = "Hydroponics Delivery"; req_access_txt = "35"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hydroponics)
+"aNt" = (/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
+"aNu" = (/obj/structure/sink{pixel_y = 30},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
+"aNv" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
+"aNw" = (/obj/structure/closet/wardrobe/botanist,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
+"aNx" = (/obj/structure/closet/secure_closet/hydroponics,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
+"aNy" = (/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/camera{c_tag = "Hydroponics Storage"},/obj/machinery/light/small{dir = 1},/obj/machinery/plantgenes,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
+"aNz" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
+"aNA" = (/obj/structure/table,/obj/item/weapon/reagent_containers/spray/plantbgone{pixel_x = 0; pixel_y = 3},/obj/item/weapon/reagent_containers/spray/plantbgone{pixel_x = 8; pixel_y = 8},/obj/item/weapon/reagent_containers/spray/plantbgone{pixel_x = 13; pixel_y = 5},/obj/item/weapon/watertank,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
+"aNB" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/open/floor/wood,/area/library)
+"aNC" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/wood,/area/library)
+"aND" = (/obj/structure/table/wood,/turf/open/floor/wood,/area/library)
+"aNE" = (/obj/structure/table/wood,/obj/structure/disposalpipe/segment,/obj/item/toy/cards/deck/cas,/obj/item/toy/cards/deck/cas/black{pixel_x = -2; pixel_y = 6},/turf/open/floor/wood,/area/library)
+"aNF" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/wood,/area/library)
+"aNG" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/camera{c_tag = "Chapel Crematorium"; dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/chapel/office)
+"aNH" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/black,/area/chapel/office)
+"aNI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock{name = "Crematorium"; req_access_txt = "27"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/chapel/office)
+"aNJ" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/chapel/office)
+"aNK" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/chapel/office)
+"aNL" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel/grimy,/area/chapel/office)
+"aNM" = (/turf/open/floor/plasteel/grimy,/area/chapel/office)
+"aNN" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/black,/area/chapel/main)
+"aNO" = (/obj/machinery/computer/crew,/turf/open/floor/mineral/titanium,/area/shuttle/escape)
+"aNP" = (/obj/structure/chair{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
+"aNQ" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = 0; pixel_y = -29},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
+"aNR" = (/obj/machinery/button/flasher{id = "cockpit_flasher"; pixel_x = 6; pixel_y = -24},/obj/machinery/light,/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
+"aNS" = (/obj/machinery/computer/communications,/turf/open/floor/mineral/titanium,/area/shuttle/escape)
+"aNT" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aNU" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/hallway/secondary/entry)
+"aNV" = (/obj/structure/chair/comfy/beige,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry)
+"aNW" = (/obj/structure/chair/comfy/beige,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry)
+"aNX" = (/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry)
+"aNY" = (/obj/structure/chair/comfy/beige,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry)
+"aNZ" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry)
+"aOa" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel/black,/area/hallway/secondary/entry)
+"aOb" = (/turf/open/floor/plasteel/neutral/side{dir = 8},/area/hallway/secondary/entry)
+"aOc" = (/obj/machinery/door/firedoor,/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aOd" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aOe" = (/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aOf" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{name = "Port Hall APC"; dir = 1; pixel_y = 26},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aOg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aOh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aOi" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aOj" = (/obj/machinery/light{dir = 1},/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 32},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aOk" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aOl" = (/obj/machinery/camera{c_tag = "Port Hallway 2"; dir = 2},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aOm" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aOn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aOo" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aOp" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aOq" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aOr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aOs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aOt" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aOu" = (/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = 30},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aOv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aOw" = (/obj/machinery/camera{c_tag = "Central Hallway North-West"; dir = 2},/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aOx" = (/obj/machinery/light{dir = 1},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aOy" = (/turf/open/floor/plasteel/blue/corner{dir = 4},/area/hallway/primary/central)
+"aOz" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aOA" = (/turf/open/floor/plasteel{icon_state = "L1"},/area/hallway/primary/central)
+"aOB" = (/turf/open/floor/plasteel{icon_state = "L3"},/area/hallway/primary/central)
+"aOC" = (/turf/open/floor/plasteel{icon_state = "L5"},/area/hallway/primary/central)
+"aOD" = (/turf/open/floor/plasteel{icon_state = "L7"},/area/hallway/primary/central)
+"aOE" = (/turf/open/floor/plasteel{icon_state = "L9"},/area/hallway/primary/central)
+"aOF" = (/turf/open/floor/plasteel{icon_state = "L11"},/area/hallway/primary/central)
+"aOG" = (/turf/open/floor/plasteel{icon_state = "L13"; name = "floor"},/area/hallway/primary/central)
+"aOH" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aOI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central)
+"aOJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
+"aOK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central)
+"aOL" = (/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
+"aOM" = (/obj/machinery/camera{c_tag = "Central Hallway North-East"; dir = 2},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aON" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aOO" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aOP" = (/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aOQ" = (/obj/structure/piano{icon_state = "piano"},/turf/open/floor/wood,/area/crew_quarters/theatre)
+"aOR" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/wood,/area/crew_quarters/theatre)
+"aOS" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/wood,/area/crew_quarters/theatre)
+"aOT" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/theatre)
+"aOU" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aOV" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aOW" = (/obj/machinery/computer/slot_machine,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aOX" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/light/small{dir = 8},/obj/structure/reagent_dispensers/beerkeg,/turf/open/floor/wood,/area/crew_quarters/bar)
+"aOY" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark/xeno_spawn,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/bar)
+"aOZ" = (/obj/machinery/vending/cola/random,/turf/open/floor/wood,/area/crew_quarters/bar)
+"aPa" = (/obj/machinery/vending/coffee,/turf/open/floor/wood,/area/crew_quarters/bar)
+"aPb" = (/obj/machinery/icecream_vat,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
+"aPc" = (/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo"},/obj/machinery/camera{c_tag = "Kitchen Cold Room"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
+"aPd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
+"aPe" = (/obj/structure/closet/crate/hydroponics,/obj/item/weapon/shovel/spade,/obj/item/weapon/wrench,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/wirecutters,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
+"aPf" = (/obj/machinery/light/small,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
+"aPg" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
+"aPh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
+"aPi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = -31},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
+"aPj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
+"aPk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
+"aPl" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
+"aPm" = (/obj/machinery/chem_master/condimaster,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
+"aPn" = (/turf/open/floor/wood,/area/library)
+"aPo" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/wood,/area/library)
+"aPp" = (/obj/structure/chair/office/dark{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/wood,/area/library)
+"aPq" = (/obj/structure/bodycontainer/morgue,/obj/effect/landmark/revenantspawn,/turf/open/floor/plasteel/black,/area/chapel/office)
+"aPr" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/plasteel/black,/area/chapel/office)
+"aPs" = (/obj/structure/table/wood,/obj/item/clothing/under/burial,/obj/item/clothing/under/burial,/obj/item/clothing/under/burial,/obj/item/clothing/under/burial,/obj/item/clothing/under/burial,/obj/item/clothing/under/burial,/turf/open/floor/plasteel/grimy,/area/chapel/office)
+"aPt" = (/obj/machinery/camera{c_tag = "Chapel North"; dir = 2; network = list("SS13")},/turf/open/floor/plasteel/black,/area/chapel/main)
+"aPu" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/chapel/main)
+"aPv" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/chapel/main)
+"aPw" = (/turf/closed/wall,/area/hallway/secondary/exit)
+"aPx" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/exit)
+"aPy" = (/obj/machinery/door/airlock/glass{name = "Emergency Shuttle Cockpit"; req_access_txt = "19"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
+"aPz" = (/obj/machinery/status_display,/turf/closed/wall/mineral/titanium,/area/shuttle/escape)
+"aPA" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aPB" = (/obj/structure/table/wood,/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry)
+"aPC" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/chips,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/hallway/secondary/entry)
+"aPD" = (/turf/open/floor/carpet,/area/hallway/secondary/entry)
+"aPE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/hallway/secondary/entry)
+"aPF" = (/obj/structure/chair/comfy/beige{dir = 8},/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry)
+"aPG" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel/black,/area/hallway/secondary/entry)
+"aPH" = (/turf/open/floor/goonplaque,/area/hallway/secondary/entry)
+"aPI" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=CHW"; location = "Lockers"},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aPJ" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aPK" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aPL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aPM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aPN" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aPO" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aPP" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aPQ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aPR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aPS" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aPT" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aPU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aPV" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aPW" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aPX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aPY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aPZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aQa" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aQb" = (/turf/open/floor/plasteel{icon_state = "L2"},/area/hallway/primary/central)
+"aQc" = (/turf/open/floor/plasteel{icon_state = "L4"},/area/hallway/primary/central)
+"aQd" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Lockers"; location = "EVA"},/turf/open/floor/plasteel{icon_state = "L6"},/area/hallway/primary/central)
+"aQe" = (/obj/effect/landmark/observer_start,/turf/open/floor/plasteel{icon_state = "L8"},/area/hallway/primary/central)
+"aQf" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Security"; location = "EVA2"},/turf/open/floor/plasteel{icon_state = "L10"},/area/hallway/primary/central)
+"aQg" = (/turf/open/floor/plasteel{icon_state = "L12"},/area/hallway/primary/central)
+"aQh" = (/turf/open/floor/plasteel{icon_state = "L14"},/area/hallway/primary/central)
+"aQi" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aQj" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=EVA2"; location = "Dorm"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aQk" = (/obj/structure/table/wood,/obj/item/device/instrument/guitar{pixel_x = -7},/obj/item/device/instrument/eguitar{pixel_x = 5},/turf/open/floor/wood,/area/crew_quarters/theatre)
+"aQl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/wood,/area/crew_quarters/theatre)
+"aQm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/wood,/area/crew_quarters/theatre)
+"aQn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/theatre)
+"aQo" = (/obj/machinery/door/window{dir = 4; name = "Theatre Stage"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/theatre)
+"aQp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aQq" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aQr" = (/obj/machinery/computer/slot_machine,/obj/machinery/light/small{dir = 4},/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 32; pixel_y = 0},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aQs" = (/obj/structure/closet/secure_closet/bar{req_access_txt = "25"},/turf/open/floor/wood,/area/crew_quarters/bar)
+"aQt" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/wood,/area/crew_quarters/bar)
+"aQu" = (/obj/structure/closet/gmcloset,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/cable_coil,/obj/item/device/flashlight/lamp,/obj/item/device/flashlight/lamp/green,/turf/open/floor/wood,/area/crew_quarters/bar)
+"aQv" = (/obj/structure/kitchenspike,/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
+"aQw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/mob/living/simple_animal/hostile/retaliate/goat{name = "Pete"},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
+"aQx" = (/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
+"aQy" = (/obj/machinery/light/small{dir = 4},/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/closet/chefcloset,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
+"aQz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/hydroponics)
+"aQA" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/hydroponics)
+"aQB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access_txt = "35"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
+"aQC" = (/obj/machinery/bookbinder{pixel_y = 0},/turf/open/floor/wood,/area/library)
+"aQD" = (/obj/structure/disposalpipe/segment,/turf/open/floor/wood,/area/library)
+"aQE" = (/obj/machinery/photocopier,/turf/open/floor/wood,/area/library)
+"aQF" = (/obj/machinery/door/airlock/glass{name = "Chapel Office"; req_access_txt = "22"},/turf/open/floor/plasteel/black,/area/chapel/office)
+"aQG" = (/obj/machinery/door/morgue{name = "Confession Booth (Chaplain)"; req_access_txt = "22"},/turf/open/floor/plasteel/black,/area/chapel/main)
+"aQH" = (/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1480; name = "Confessional Intercom"; pixel_x = 25},/obj/structure/chair,/turf/open/floor/plasteel/black,/area/chapel/main)
+"aQI" = (/obj/structure/chair,/turf/open/floor/plasteel/red/side{dir = 9},/area/hallway/secondary/exit)
+"aQJ" = (/obj/structure/chair,/turf/open/floor/plasteel/red/side{dir = 1},/area/hallway/secondary/exit)
+"aQK" = (/obj/machinery/light{dir = 1},/obj/structure/chair,/turf/open/floor/plasteel/red/side{dir = 1},/area/hallway/secondary/exit)
+"aQL" = (/obj/structure/chair,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"aQM" = (/obj/structure/chair,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"aQN" = (/obj/structure/chair,/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/escape)
+"aQO" = (/obj/machinery/flasher{id = "cockpit_flasher"; pixel_x = 6; pixel_y = 24},/obj/machinery/light{dir = 1},/turf/open/floor/mineral/titanium,/area/shuttle/escape)
+"aQP" = (/turf/open/floor/mineral/titanium,/area/shuttle/escape)
+"aQQ" = (/obj/structure/closet/emcloset,/turf/open/floor/mineral/titanium,/area/shuttle/escape)
+"aQR" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/regular{pixel_x = 2; pixel_y = 3},/obj/item/weapon/crowbar,/turf/open/floor/mineral/titanium,/area/shuttle/escape)
+"aQS" = (/obj/machinery/vending/snack/random,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aQT" = (/obj/item/device/radio/beacon,/obj/machinery/camera{c_tag = "Arrivals Bay 1 South"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aQU" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aQV" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aQW" = (/obj/structure/table/wood,/obj/item/weapon/storage/fancy/cigarettes{pixel_y = 2},/obj/item/weapon/lighter/greyscale{pixel_x = 4; pixel_y = 2},/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry)
+"aQX" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/hallway/secondary/entry)
+"aQY" = (/obj/machinery/vending/cola/random,/turf/open/floor/plasteel/black,/area/hallway/secondary/entry)
+"aQZ" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aRa" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aRb" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aRc" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aRd" = (/obj/machinery/camera{c_tag = "Port Hallway 3"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aRe" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j1"; dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aRf" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aRg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aRh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Port Hallway"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aRi" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aRj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aRk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aRl" = (/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/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aRm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/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/manifold/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aRn" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aRo" = (/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"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aRp" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aRq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aRr" = (/obj/structure/sign/directions/security{dir = 4; icon_state = "direction_sec"; pixel_x = 32; pixel_y = -24},/obj/structure/sign/directions/evac{dir = 4; icon_state = "direction_evac"; pixel_x = 32; pixel_y = -32},/obj/structure/sign/directions/engineering{pixel_x = 32; pixel_y = -40},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aRs" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aRt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aRu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aRv" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=QM"; location = "CHW"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aRw" = (/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/central)
+"aRx" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/central)
+"aRy" = (/obj/machinery/light,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = -32},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/central)
+"aRz" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = -32},/obj/machinery/door/firedoor,/obj/machinery/light,/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/central)
+"aRA" = (/obj/structure/window/reinforced,/obj/structure/table/wood,/obj/item/device/instrument/violin,/turf/open/floor/wood,/area/crew_quarters/theatre)
+"aRB" = (/obj/structure/window/reinforced,/turf/open/floor/wood,/area/crew_quarters/theatre)
+"aRC" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/wood,/area/crew_quarters/theatre)
+"aRD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/stool,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aRE" = (/obj/machinery/door/airlock{name = "Bar Storage"; req_access_txt = "25"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "wood"},/area/crew_quarters/bar)
+"aRF" = (/obj/effect/landmark/blobstart,/obj/item/toy/beach_ball/holoball,/turf/open/floor/plating,/area/crew_quarters/bar)
+"aRG" = (/obj/structure/kitchenspike,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
+"aRH" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
+"aRI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
+"aRJ" = (/obj/machinery/gibber,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
+"aRK" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/turf/open/floor/plasteel/black,/area/hydroponics)
+"aRL" = (/obj/machinery/requests_console{department = "Hydroponics"; departmentType = 2; pixel_x = 0; pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/hydroponics)
+"aRM" = (/obj/machinery/hydroponics/constructable,/turf/open/floor/plasteel/black,/area/hydroponics)
+"aRN" = (/obj/machinery/hydroponics/constructable,/obj/machinery/camera{c_tag = "Hydroponics North"; dir = 2},/turf/open/floor/plasteel/black,/area/hydroponics)
+"aRO" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/hydroponics)
+"aRP" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/black,/area/hydroponics)
+"aRQ" = (/obj/structure/bookcase/random/religion,/turf/open/floor/wood,/area/library)
+"aRR" = (/turf/open/floor/carpet,/area/library)
+"aRS" = (/obj/structure/disposalpipe/segment,/turf/open/floor/carpet,/area/library)
+"aRT" = (/obj/structure/bookcase/random/reference,/turf/open/floor/wood,/area/library)
+"aRU" = (/obj/machinery/computer/libraryconsole,/obj/structure/table/wood,/turf/open/floor/wood,/area/library)
+"aRV" = (/obj/structure/bookcase{name = "Forbidden Knowledge"},/turf/open/floor/engine/cult,/area/library)
+"aRW" = (/obj/structure/table/wood,/obj/item/device/taperecorder{pixel_y = 0},/obj/item/device/camera,/obj/item/device/radio/intercom{pixel_y = 25},/turf/open/floor/engine/cult,/area/library)
+"aRX" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen/invisible,/turf/open/floor/engine/cult,/area/library)
+"aRY" = (/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/plasteel/black,/area/chapel/main)
+"aRZ" = (/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main)
+"aSa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main)
+"aSb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main)
+"aSc" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/turf/open/floor/plasteel/black,/area/chapel/main)
+"aSd" = (/obj/machinery/camera{c_tag = "Escape Arm Holding Area"; dir = 4},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/open/floor/plasteel/red/side{dir = 8},/area/hallway/secondary/exit)
+"aSe" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"aSf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"aSg" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"aSh" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"aSi" = (/obj/machinery/flasher{id = "shuttle_flasher"; pixel_x = -24; pixel_y = 6},/obj/machinery/button/flasher{id = "shuttle_flasher"; pixel_x = -24; pixel_y = -6},/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/escape)
+"aSj" = (/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/escape)
+"aSk" = (/obj/machinery/door/airlock/glass{name = "Emergency Shuttle Brig"; req_access_txt = "2"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
+"aSl" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/mineral/titanium,/area/shuttle/escape)
+"aSm" = (/turf/closed/wall/mineral/titanium,/area/shuttle/pod_1)
+"aSn" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 4; icon_state = "propulsion"},/turf/closed/wall/mineral/titanium,/area/shuttle/pod_1)
+"aSo" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aSp" = (/obj/item/device/radio/intercom{broadcasting = 0; name = "Station Intercom (General)"; pixel_y = 20},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aSq" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aSr" = (/obj/structure/chair/comfy/beige{dir = 1; icon_state = "comfychair"},/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry)
+"aSs" = (/obj/structure/chair/comfy/beige{dir = 1; icon_state = "comfychair"},/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry)
+"aSt" = (/obj/structure/chair/comfy/beige{dir = 1; icon_state = "comfychair"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry)
+"aSu" = (/obj/machinery/vending/snack/random,/turf/open/floor/plasteel/black,/area/hallway/secondary/entry)
+"aSv" = (/turf/closed/wall,/area/maintenance/port)
+"aSw" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/port)
+"aSx" = (/turf/closed/wall,/area/crew_quarters/locker)
+"aSy" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aSz" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aSA" = (/obj/machinery/status_display{density = 0; layer = 4},/turf/closed/wall,/area/crew_quarters/locker)
+"aSB" = (/turf/closed/wall,/area/storage/art)
+"aSC" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/storage/art)
+"aSD" = (/obj/machinery/door/airlock/glass{name = "Art Storage"},/turf/open/floor/plasteel,/area/storage/art)
+"aSE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/storage/art)
+"aSF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port)
+"aSG" = (/turf/closed/wall,/area/storage/emergency/port)
+"aSH" = (/obj/structure/table,/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aSI" = (/obj/structure/table,/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aSJ" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aSK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aSL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port)
+"aSM" = (/turf/closed/wall,/area/storage/tools)
+"aSN" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aSO" = (/turf/closed/wall/r_wall,/area/bridge)
+"aSP" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/bridge)
+"aSQ" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge)
+"aSR" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/status_display{density = 0; layer = 4},/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge)
+"aSS" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge)
+"aST" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/status_display{density = 0; layer = 4},/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge)
+"aSU" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge)
+"aSV" = (/obj/structure/table,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -31},/obj/item/clothing/head/hardhat/cakehat,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aSW" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aSX" = (/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aSY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aSZ" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/crew_quarters/bar)
+"aTa" = (/obj/machinery/disposal/bin,/obj/structure/sign/securearea{desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; icon_state = "monkey_painting"; name = "Mr. Deempisi portrait"; pixel_x = -28; pixel_y = -4},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/button/door{id = "barShutters"; name = "bar shutters"; pixel_x = 4; pixel_y = 28},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aTb" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aTc" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/table,/obj/machinery/chem_dispenser/drinks/beer,/obj/item/device/radio/intercom{pixel_y = 25},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aTd" = (/obj/machinery/door/airlock{name = "Kitchen cold room"; req_access_txt = "28"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
+"aTe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/green/side{dir = 9},/area/hydroponics)
+"aTf" = (/turf/open/floor/plasteel/green/side{dir = 1},/area/hydroponics)
+"aTg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/green/side{dir = 5},/area/hydroponics)
+"aTh" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/wood,/area/library)
+"aTi" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/wood,/area/library)
+"aTj" = (/obj/structure/closet/crate,/obj/item/clothing/shoes/workboots/mining,/obj/item/clothing/under/rank/curator/treasure_hunter,/obj/item/clothing/suit/curator,/obj/item/clothing/head/curator,/obj/item/weapon/storage/backpack/satchel/explorer,/obj/machinery/light/small,/turf/open/floor/engine/cult,/area/library)
+"aTk" = (/obj/effect/landmark/blobstart,/obj/structure/chair/comfy/brown{dir = 1},/turf/open/floor/engine/cult,/area/library)
+"aTl" = (/obj/structure/destructible/cult/tome,/obj/item/clothing/under/suit_jacket/red,/obj/item/weapon/book/codex_gigas,/turf/open/floor/engine/cult,/area/library)
+"aTm" = (/turf/open/floor/plasteel/chapel,/area/chapel/main)
+"aTn" = (/obj/structure/table/wood,/turf/open/floor/plasteel/black,/area/chapel/main)
+"aTo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main)
+"aTp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/chapel,/area/chapel/main)
+"aTq" = (/obj/machinery/door/morgue{name = "Confession Booth"},/turf/open/floor/plasteel/black,/area/chapel/main)
+"aTr" = (/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1480; name = "Confessional Intercom"; pixel_x = 25},/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/black,/area/chapel/main)
+"aTs" = (/turf/open/floor/plasteel/red/side{dir = 8},/area/hallway/secondary/exit)
+"aTt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"aTu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"aTv" = (/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"aTw" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 4; name = "Security Escape Airlock"; req_access_txt = "2"},/turf/open/floor/plating,/area/hallway/secondary/exit)
+"aTx" = (/turf/open/floor/plating,/area/hallway/secondary/exit)
+"aTy" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/hallway/secondary/exit)
+"aTz" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 8; name = "Security Escape Airlock"; req_access_txt = "2"},/turf/open/floor/plating,/area/hallway/secondary/exit)
+"aTA" = (/obj/machinery/door/airlock/titanium{name = "Emergency Shuttle Airlock"; req_access_txt = "2"},/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/escape)
+"aTB" = (/obj/structure/chair{dir = 1},/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/escape)
+"aTC" = (/obj/structure/chair,/turf/open/floor/mineral/titanium,/area/shuttle/escape)
+"aTD" = (/obj/structure/chair{dir = 4},/turf/open/floor/mineral/titanium,/area/shuttle/escape)
+"aTE" = (/obj/structure/table,/turf/open/floor/mineral/titanium,/area/shuttle/escape)
+"aTF" = (/obj/docking_port/stationary/random{dir = 8; id = "pod_lavaland1"; name = "lavaland"},/turf/open/space,/area/space)
+"aTG" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/pod_1)
+"aTH" = (/obj/machinery/computer/shuttle/pod{pixel_x = 0; pixel_y = -32; possible_destinations = "pod_lavaland1"; shuttleId = "pod1"},/obj/structure/chair{dir = 8},/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 0; pixel_y = 32},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_1)
+"aTI" = (/obj/item/weapon/storage/pod{pixel_x = 6; pixel_y = -28},/obj/item/device/radio/intercom{pixel_x = 0; pixel_y = 25},/obj/structure/chair{dir = 8},/obj/machinery/light/small,/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_1)
+"aTJ" = (/obj/machinery/door/airlock/titanium{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{dir = 8; id = "pod1"; name = "escape pod 1"; port_angle = 180},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_1)
+"aTK" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aTL" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aTM" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aTN" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/secondary/entry)
+"aTO" = (/turf/open/floor/plasteel/neutral/side{dir = 1},/area/hallway/secondary/entry)
+"aTP" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/hallway/secondary/entry)
+"aTQ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/hallway/secondary/entry)
+"aTR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/hallway/secondary/entry)
+"aTS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/hallway/secondary/entry)
+"aTT" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/hallway/secondary/entry)
+"aTU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/secondary/entry)
+"aTV" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/port)
+"aTW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/port)
+"aTX" = (/obj/structure/closet/wardrobe/white,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aTY" = (/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aTZ" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aUa" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aUb" = (/obj/machinery/vending/cola/random,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aUc" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aUd" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aUe" = (/obj/machinery/vending/clothing,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aUf" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aUg" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aUh" = (/obj/structure/closet/secure_closet/personal,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aUi" = (/obj/structure/table,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/turf/open/floor/plasteel,/area/storage/art)
+"aUj" = (/turf/open/floor/plasteel,/area/storage/art)
+"aUk" = (/obj/machinery/light/small{dir = 4},/obj/machinery/light_switch{pixel_x = 27},/turf/open/floor/plasteel,/area/storage/art)
+"aUl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port)
+"aUm" = (/obj/machinery/door/airlock{name = "Port Emergency Storage"; req_access_txt = "0"},/turf/open/floor/plating,/area/storage/emergency/port)
+"aUn" = (/obj/structure/grille,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/storage/tools)
+"aUo" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Auxiliary Tool Storage"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/storage/tools)
+"aUp" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aUq" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/secure/briefcase,/obj/item/weapon/storage/box/PDAs{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/ids,/turf/open/floor/plasteel,/area/bridge)
+"aUr" = (/obj/machinery/computer/atmos_alert,/turf/open/floor/plasteel/yellow/side{dir = 10},/area/bridge)
+"aUs" = (/obj/machinery/computer/station_alert,/turf/open/floor/plasteel/yellow/side,/area/bridge)
+"aUt" = (/obj/machinery/computer/monitor{name = "bridge power monitoring console"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plasteel/yellow/side{dir = 6},/area/bridge)
+"aUu" = (/obj/machinery/computer/shuttle/labor,/turf/open/floor/plasteel/blue/side{dir = 10},/area/bridge)
+"aUv" = (/obj/machinery/computer/communications,/turf/open/floor/plasteel/blue/side{dir = 0},/area/bridge)
+"aUw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/computer/shuttle/mining,/turf/open/floor/plasteel/blue/side{dir = 6},/area/bridge)
+"aUx" = (/obj/machinery/modular_computer/console/preset/command,/turf/open/floor/plasteel/green/side{dir = 10},/area/bridge)
+"aUy" = (/obj/machinery/computer/crew,/turf/open/floor/plasteel/green/side{dir = 2},/area/bridge)
+"aUz" = (/obj/machinery/computer/med_data,/turf/open/floor/plasteel/green/side{dir = 6},/area/bridge)
+"aUA" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/wrench,/obj/item/device/assembly/timer,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/turf/open/floor/plasteel,/area/bridge)
+"aUB" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aUC" = (/obj/effect/landmark/event_spawn,/turf/closed/wall,/area/crew_quarters/bar)
+"aUD" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/chair/stool,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aUE" = (/obj/structure/chair,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aUF" = (/obj/structure/chair/stool/bar,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aUG" = (/obj/structure/table/reinforced,/obj/item/weapon/lighter,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aUH" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aUI" = (/obj/machinery/vending/boozeomat,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aUJ" = (/obj/machinery/vending/dinnerware,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aUK" = (/obj/structure/sink/kitchen{pixel_y = 28},/obj/machinery/food_cart,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aUL" = (/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aUM" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aUN" = (/obj/item/device/radio/intercom{pixel_y = 25},/obj/machinery/camera{c_tag = "Kitchen"; dir = 2},/obj/structure/closet/secure_closet/freezer/fridge,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aUO" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aUP" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aUQ" = (/obj/structure/closet/secure_closet/freezer/kitchen,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aUR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/green/side{dir = 8},/area/hydroponics)
+"aUS" = (/turf/open/floor/plasteel,/area/hydroponics)
+"aUT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/green/side{dir = 4},/area/hydroponics)
+"aUU" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/power/apc{dir = 4; name = "Library APC"; pixel_x = 24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/library)
+"aUV" = (/obj/structure/bookcase/random/fiction,/turf/open/floor/wood,/area/library)
+"aUW" = (/obj/structure/displaycase/trophy,/turf/open/floor/wood,/area/library)
+"aUX" = (/obj/machinery/camera{c_tag = "Library South"; dir = 8; network = list("SS13")},/turf/open/floor/wood,/area/library)
+"aUY" = (/obj/machinery/door/morgue{name = "Private Study"; req_access_txt = "37"},/turf/open/floor/engine/cult,/area/library)
+"aUZ" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/open/floor/plasteel/black,/area/chapel/main)
+"aVa" = (/turf/open/floor/carpet,/area/chapel/main)
+"aVb" = (/obj/effect/landmark/event_spawn,/turf/open/floor/carpet,/area/chapel/main)
+"aVc" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/exit)
+"aVd" = (/obj/machinery/door/airlock/glass_security{name = "Holding Area"; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"aVe" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; pixel_y = 0},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/exit)
+"aVf" = (/turf/closed/wall/mineral/titanium/nodiagonal,/area/shuttle/escape)
+"aVg" = (/obj/structure/table,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/mineral/titanium,/area/shuttle/escape)
+"aVh" = (/obj/machinery/camera{c_tag = "Arrivals Escape Pod 1"; dir = 8},/obj/machinery/light/small,/turf/open/floor/plating,/area/hallway/secondary/entry)
+"aVi" = (/obj/machinery/light,/turf/open/floor/plasteel/arrival{dir = 2},/area/hallway/secondary/entry)
+"aVj" = (/turf/open/floor/plasteel/arrival{dir = 2},/area/hallway/secondary/entry)
+"aVk" = (/turf/open/floor/plasteel/white/corner{dir = 8},/area/hallway/secondary/entry)
+"aVl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aVm" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aVn" = (/obj/machinery/firealarm{dir = 2; pixel_y = -24},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aVo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aVp" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aVq" = (/obj/machinery/camera{c_tag = "Arrivals Hallway"; dir = 8; network = list("SS13")},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aVr" = (/turf/open/floor/plating,/area/maintenance/port)
+"aVs" = (/obj/structure/closet/wardrobe/mixed,/obj/item/device/radio/intercom{dir = 0; name = "Station Intercom (General)"; pixel_x = -27},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aVt" = (/obj/effect/landmark/lightsout,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aVu" = (/obj/structure/table,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil,/obj/item/weapon/paper_bin/construction,/obj/item/stack/cable_coil,/turf/open/floor/plasteel,/area/storage/art)
+"aVv" = (/obj/machinery/light_switch{pixel_y = 28},/obj/item/weapon/storage/box/lights/mixed,/turf/open/floor/plating,/area/storage/emergency/port)
+"aVw" = (/turf/open/floor/plating,/area/storage/emergency/port)
+"aVx" = (/obj/item/weapon/extinguisher,/turf/open/floor/plating,/area/storage/emergency/port)
+"aVy" = (/obj/machinery/power/apc{dir = 1; name = "Auxiliary Tool Storage APC"; pixel_y = 24},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/rods{amount = 50},/turf/open/floor/plasteel,/area/storage/tools)
+"aVz" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/rack,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/electronics/apc,/obj/item/weapon/electronics/airlock,/turf/open/floor/plasteel,/area/storage/tools)
+"aVA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/storage/tools)
+"aVB" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/camera{c_tag = "Auxiliary Tool Storage"; dir = 2},/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/storage/box/lights/mixed,/turf/open/floor/plasteel,/area/storage/tools)
+"aVC" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/emergency,/turf/open/floor/plasteel,/area/storage/tools)
+"aVD" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/storage/tools)
+"aVE" = (/obj/structure/table/reinforced,/obj/item/device/assembly/flash/handheld,/obj/item/device/assembly/flash/handheld,/turf/open/floor/plasteel,/area/bridge)
+"aVF" = (/turf/open/floor/plasteel/yellow/corner{dir = 1},/area/bridge)
+"aVG" = (/obj/structure/chair{dir = 1; name = "Engineering Station"},/turf/open/floor/plasteel,/area/bridge)
+"aVH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/yellow/corner{dir = 4},/area/bridge)
+"aVI" = (/obj/structure/table/reinforced,/obj/item/device/aicard,/obj/item/device/multitool,/turf/open/floor/plasteel/blue/side{dir = 8},/area/bridge)
+"aVJ" = (/obj/structure/chair{dir = 1; name = "Command Station"},/obj/machinery/button/door{id = "bridge blast"; name = "Bridge Blast Door Control"; pixel_x = 28; pixel_y = -2; req_access_txt = "19"},/obj/machinery/keycard_auth{pixel_x = 29; pixel_y = 8},/turf/open/floor/plasteel,/area/bridge)
+"aVK" = (/obj/structure/table/reinforced,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/blue/side{dir = 4},/area/bridge)
+"aVL" = (/turf/open/floor/plasteel/green/corner{dir = 1},/area/bridge)
+"aVM" = (/obj/structure/chair{dir = 1; name = "Crew Station"},/turf/open/floor/plasteel,/area/bridge)
+"aVN" = (/turf/open/floor/plasteel/green/corner{dir = 4},/area/bridge)
+"aVO" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/fancy/donut_box,/turf/open/floor/plasteel,/area/bridge)
+"aVP" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/door/poddoor/preopen{id = "barShutters"; name = "privacy shutters"},/turf/open/floor/plating,/area/crew_quarters/bar)
+"aVQ" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aVR" = (/obj/structure/table,/obj/item/weapon/kitchen/fork,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aVS" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aVT" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aVU" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aVV" = (/obj/structure/table/wood/poker,/obj/item/toy/cards/deck,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aVW" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aVX" = (/obj/structure/table/reinforced,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aVY" = (/mob/living/carbon/monkey/punpun,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aVZ" = (/obj/machinery/door/airlock/glass{name = "Kitchen"; req_access_txt = "28"},/turf/open/floor/plasteel/bar,/area/crew_quarters/kitchen)
+"aWa" = (/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aWb" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aWc" = (/obj/effect/landmark/start/cook,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aWd" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aWe" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aWf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aWg" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aWh" = (/obj/machinery/smartfridge,/turf/closed/wall,/area/crew_quarters/kitchen)
+"aWi" = (/turf/open/floor/plasteel/black,/area/hydroponics)
+"aWj" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/green/side{dir = 8},/area/hydroponics)
+"aWk" = (/obj/machinery/seed_extractor,/turf/open/floor/plasteel,/area/hydroponics)
+"aWl" = (/obj/machinery/biogenerator,/turf/open/floor/plasteel,/area/hydroponics)
+"aWm" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/plasteel/green/side{dir = 4},/area/hydroponics)
+"aWn" = (/obj/machinery/door/window/northright{base_state = "right"; dir = 8; icon_state = "right"; name = "Library Desk Door"; req_access_txt = "37"},/turf/open/floor/wood,/area/library)
+"aWo" = (/obj/machinery/newscaster{pixel_y = 32},/turf/open/floor/wood,/area/library)
+"aWp" = (/obj/structure/table/wood,/obj/machinery/computer/libraryconsole/bookmanagement{pixel_y = 0},/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/wood,/area/library)
+"aWq" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main)
+"aWr" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/chapel,/area/chapel/main)
+"aWs" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main)
+"aWt" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/chapel,/area/chapel/main)
+"aWu" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/plasteel/black,/area/chapel/main)
+"aWv" = (/obj/machinery/vending/cola/random,/obj/machinery/status_display{layer = 4; pixel_x = 0; pixel_y = 32},/turf/open/floor/plasteel/escape{dir = 9},/area/hallway/secondary/exit)
+"aWw" = (/turf/open/floor/plasteel/red/corner{dir = 1},/area/hallway/secondary/exit)
+"aWx" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 4; name = "Escape Airlock"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/turf/open/floor/plating,/area/hallway/secondary/exit)
+"aWy" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 8; name = "Escape Airlock"},/turf/open/floor/plating,/area/hallway/secondary/exit)
+"aWz" = (/obj/machinery/door/airlock/titanium{name = "Emergency Shuttle Airlock"},/obj/docking_port/mobile/emergency{name = "Box emergency shuttle"; timid = 0},/obj/docking_port/stationary{dir = 4; dwidth = 12; height = 18; id = "emergency_home"; name = "BoxStation emergency evac bay"; turf_type = /turf/open/space; width = 32},/turf/open/floor/plating,/area/shuttle/escape)
+"aWA" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
+"aWB" = (/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
+"aWC" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/machinery/light/small{dir = 4},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
+"aWD" = (/obj/machinery/door/firedoor,/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 32; pixel_y = 0},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aWE" = (/turf/closed/wall,/area/security/vacantoffice)
+"aWF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/security/vacantoffice)
+"aWG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/security/vacantoffice)
+"aWH" = (/turf/closed/wall,/area/security/vacantoffice/a)
+"aWI" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/port)
+"aWJ" = (/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/open/floor/plating,/area/maintenance/port)
+"aWK" = (/obj/structure/closet/wardrobe/green,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aWL" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aWM" = (/obj/structure/chair/stool{pixel_y = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aWN" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aWO" = (/obj/structure/table,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aWP" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aWQ" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aWR" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aWS" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/camera{c_tag = "Locker Room East"; dir = 8; network = list("SS13")},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aWT" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/turf/open/floor/plasteel,/area/storage/art)
+"aWU" = (/obj/structure/table,/obj/item/weapon/storage/crayons,/obj/item/weapon/storage/crayons,/turf/open/floor/plasteel,/area/storage/art)
+"aWV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/table,/obj/item/device/camera_film,/obj/item/device/camera,/turf/open/floor/plasteel,/area/storage/art)
+"aWW" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/storage/emergency/port)
+"aWX" = (/obj/machinery/light/small,/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/storage/emergency/port)
+"aWY" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/storage/emergency/port)
+"aWZ" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/turf/open/floor/plating,/area/storage/emergency/port)
+"aXa" = (/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/turf/open/floor/plasteel,/area/storage/tools)
+"aXb" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/open/floor/plasteel,/area/storage/tools)
+"aXc" = (/turf/open/floor/plasteel,/area/storage/tools)
+"aXd" = (/obj/structure/rack,/obj/item/clothing/gloves/color/fyellow,/obj/item/clothing/suit/hazardvest,/obj/item/device/multitool,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel,/area/storage/tools)
+"aXe" = (/turf/closed/wall,/area/bridge)
+"aXf" = (/obj/machinery/computer/prisoner,/turf/open/floor/plasteel/red/side{dir = 10},/area/bridge)
+"aXg" = (/obj/machinery/computer/security,/turf/open/floor/plasteel/red/side,/area/bridge)
+"aXh" = (/obj/machinery/computer/secure_data,/turf/open/floor/plasteel/red/side{dir = 6},/area/bridge)
+"aXi" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/turf/open/floor/plasteel,/area/bridge)
+"aXj" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/bridge)
+"aXk" = (/turf/open/floor/plasteel,/area/bridge)
+"aXl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel,/area/bridge)
+"aXm" = (/turf/open/floor/plasteel/blue/corner{dir = 1},/area/bridge)
+"aXn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/blue/corner{dir = 4},/area/bridge)
+"aXo" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/bridge)
+"aXp" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/bridge)
+"aXq" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/regular,/turf/open/floor/plasteel,/area/bridge)
+"aXr" = (/obj/machinery/computer/teleporter,/turf/open/floor/plasteel/brown{dir = 10},/area/bridge)
+"aXs" = (/obj/machinery/computer/cargo/request,/turf/open/floor/plasteel/brown{dir = 2},/area/bridge)
+"aXt" = (/obj/machinery/computer/security/mining{network = list("MINE","AuxBase")},/turf/open/floor/plasteel/brown{dir = 6},/area/bridge)
+"aXu" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/camera{c_tag = "Bar West"; dir = 4; network = list("SS13")},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aXv" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aXw" = (/obj/effect/landmark/event_spawn,/obj/effect/landmark/xmastree,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aXx" = (/obj/structure/table/reinforced,/obj/item/clothing/head/that{throwforce = 1},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aXy" = (/obj/effect/landmark/start/bartender,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aXz" = (/obj/machinery/requests_console{department = "Bar"; departmentType = 2; pixel_x = 30; pixel_y = 0; receive_ore_updates = 1},/obj/machinery/camera{c_tag = "Bar"; dir = 8; network = list("SS13")},/obj/structure/table,/obj/machinery/chem_dispenser/drinks,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aXA" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/mint,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aXB" = (/obj/structure/table,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aXC" = (/obj/structure/table,/obj/item/weapon/kitchen/rollingpin,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aXD" = (/obj/structure/table,/obj/item/weapon/book/manual/chef_recipes,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aXE" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aXF" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastleft{name = "Hydroponics Desk"; req_access_txt = "35"},/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/crew_quarters/kitchen)
+"aXG" = (/turf/open/floor/plasteel/vault{dir = 8},/area/hydroponics)
+"aXH" = (/turf/open/floor/plasteel/green/side{dir = 8},/area/hydroponics)
+"aXI" = (/obj/machinery/vending/hydronutrients,/turf/open/floor/plasteel,/area/hydroponics)
+"aXJ" = (/obj/machinery/vending/hydroseeds{slogan_delay = 700},/turf/open/floor/plasteel,/area/hydroponics)
+"aXK" = (/turf/open/floor/plasteel/green/side{dir = 4},/area/hydroponics)
+"aXL" = (/obj/machinery/hydroponics/constructable,/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/open/floor/plasteel/black,/area/hydroponics)
+"aXM" = (/obj/structure/bookcase/random/adult,/turf/open/floor/wood,/area/library)
+"aXN" = (/obj/structure/chair/comfy/black,/obj/effect/landmark/start/assistant,/turf/open/floor/wood,/area/library)
+"aXO" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/open/floor/wood,/area/library)
+"aXP" = (/obj/effect/landmark/start/librarian,/obj/structure/chair/office/dark,/turf/open/floor/wood,/area/library)
+"aXQ" = (/obj/machinery/libraryscanner,/turf/open/floor/wood,/area/library)
+"aXR" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/open/floor/plasteel/black,/area/chapel/main)
+"aXS" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main)
+"aXT" = (/obj/structure/chair/stool,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main)
+"aXU" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main)
+"aXV" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main)
+"aXW" = (/obj/machinery/computer/arcade,/turf/open/floor/plasteel/escape{dir = 8},/area/hallway/secondary/exit)
+"aXX" = (/obj/structure/chair{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/mineral/titanium,/area/shuttle/escape)
+"aXY" = (/obj/structure/chair{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/mineral/titanium,/area/shuttle/escape)
+"aXZ" = (/obj/structure/chair{dir = 8},/turf/open/floor/mineral/titanium,/area/shuttle/escape)
+"aYa" = (/turf/closed/wall/mineral/titanium,/area/shuttle/transport)
+"aYb" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/transport)
+"aYc" = (/obj/machinery/door/airlock/external,/turf/open/floor/pod/dark,/area/shuttle/transport)
+"aYd" = (/obj/machinery/camera{c_tag = "Arrivals Bay 2"; dir = 8; network = list("SS13")},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aYe" = (/turf/open/floor/wood,/area/security/vacantoffice)
+"aYf" = (/obj/structure/chair/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/security/vacantoffice)
+"aYg" = (/obj/structure/table/wood,/turf/open/floor/wood,/area/security/vacantoffice)
+"aYh" = (/obj/machinery/airalarm{frequency = 1439; pixel_y = 23},/turf/open/floor/wood,/area/security/vacantoffice)
+"aYi" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/wood,/area/security/vacantoffice)
+"aYj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/security/vacantoffice)
+"aYk" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/port)
+"aYl" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/port)
+"aYm" = (/obj/structure/closet/wardrobe/grey,/obj/machinery/requests_console{department = "Locker Room"; pixel_x = -32; pixel_y = 0},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aYn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aYo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aYp" = (/obj/structure/chair/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aYq" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aYr" = (/obj/structure/table,/obj/item/clothing/head/soft/grey{pixel_x = -2; pixel_y = 3},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aYs" = (/obj/structure/table,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aYt" = (/obj/structure/chair/stool{pixel_y = 8},/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aYu" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aYv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aYw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aYx" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/structure/closet/toolcloset,/turf/open/floor/plasteel,/area/storage/tools)
+"aYy" = (/obj/structure/closet/toolcloset,/turf/open/floor/plasteel,/area/storage/tools)
+"aYz" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/light/small,/turf/open/floor/plasteel,/area/storage/tools)
+"aYA" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/storage/tools)
+"aYB" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 32},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/blue/side{dir = 5},/area/hallway/primary/central)
+"aYC" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/bridge)
+"aYD" = (/obj/structure/sign/securearea{pixel_x = 32; pixel_y = 0},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/bridge)
+"aYE" = (/obj/machinery/camera{c_tag = "Bridge West"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/red/corner{dir = 1},/area/bridge)
+"aYF" = (/obj/structure/chair{dir = 1; name = "Security Station"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge)
+"aYG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/corner{dir = 4},/area/bridge)
+"aYH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge)
+"aYI" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/bridge)
+"aYJ" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge)
+"aYK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/bridge)
+"aYL" = (/obj/machinery/holopad,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge)
+"aYM" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge)
+"aYN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge)
+"aYO" = (/obj/item/device/radio/beacon,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge)
+"aYP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge)
+"aYQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/brown/corner{dir = 1},/area/bridge)
+"aYR" = (/obj/structure/chair{dir = 1; name = "Logistics Station"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge)
+"aYS" = (/obj/machinery/camera{c_tag = "Bridge East"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/brown/corner{dir = 4},/area/bridge)
+"aYT" = (/obj/structure/sign/securearea{pixel_x = -32; pixel_y = 0},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/bridge)
+"aYU" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 32},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/blue/side{dir = 9},/area/hallway/primary/central)
+"aYV" = (/obj/machinery/camera{c_tag = "Bridge East Entrance"; dir = 2},/turf/open/floor/plasteel/blue/side{dir = 1},/area/hallway/primary/central)
+"aYW" = (/obj/machinery/holopad,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aYX" = (/obj/structure/chair,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"aYY" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/weapon/reagent_containers/food/snacks/pie/cream,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aYZ" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/enzyme{layer = 5},/obj/item/stack/packageWrap,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aZa" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 5},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aZb" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3; pixel_y = 0},/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aZc" = (/obj/machinery/processor,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aZd" = (/obj/machinery/light{dir = 8},/obj/machinery/hydroponics/constructable,/turf/open/floor/plasteel/black,/area/hydroponics)
+"aZe" = (/obj/effect/landmark/start/botanist,/turf/open/floor/plasteel,/area/hydroponics)
+"aZf" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/black,/area/hydroponics)
+"aZg" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aZh" = (/obj/structure/table/wood,/obj/item/weapon/paper,/turf/open/floor/wood,/area/library)
+"aZi" = (/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/wood,/area/library)
+"aZj" = (/obj/structure/table/wood,/obj/item/device/camera_film,/obj/item/device/camera_film,/turf/open/floor/wood,/area/library)
+"aZk" = (/obj/structure/table/wood,/obj/item/weapon/pen/red,/obj/item/weapon/pen/blue{pixel_x = 5; pixel_y = 5},/turf/open/floor/wood,/area/library)
+"aZl" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/turf/open/floor/wood,/area/library)
+"aZm" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main)
+"aZn" = (/obj/machinery/camera{c_tag = "Chapel South"; dir = 8; network = list("SS13")},/turf/open/floor/plasteel/black,/area/chapel/main)
+"aZo" = (/obj/item/device/radio/intercom{pixel_x = -25},/turf/open/floor/plasteel/escape{dir = 8},/area/hallway/secondary/exit)
+"aZp" = (/obj/structure/shuttle/engine/propulsion{dir = 8; icon_state = "propulsion_l"},/turf/open/floor/plating/airless,/area/shuttle/transport)
+"aZq" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 8},/obj/structure/window/reinforced,/turf/open/floor/plating/airless,/area/shuttle/transport)
+"aZr" = (/obj/structure/chair,/turf/open/floor/pod/dark,/area/shuttle/transport)
+"aZs" = (/obj/machinery/light{dir = 1},/turf/open/floor/pod/light,/area/shuttle/transport)
+"aZt" = (/turf/open/floor/pod/light,/area/shuttle/transport)
+"aZu" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/entry)
+"aZv" = (/obj/machinery/camera{c_tag = "Vacant Office"; dir = 4; network = list("SS13")},/turf/open/floor/wood,/area/security/vacantoffice)
+"aZw" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/security/vacantoffice)
+"aZx" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp,/turf/open/floor/wood,/area/security/vacantoffice)
+"aZy" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/turf/open/floor/wood,/area/security/vacantoffice)
+"aZz" = (/obj/structure/table/wood,/obj/item/weapon/pen/red,/turf/open/floor/wood,/area/security/vacantoffice)
+"aZA" = (/obj/structure/grille,/obj/structure/window{icon_state = "window"; dir = 8},/obj/structure/window,/turf/open/floor/plating,/area/maintenance/port)
+"aZB" = (/obj/structure/grille,/obj/structure/window{icon_state = "window"; dir = 1},/turf/open/floor/plating,/area/maintenance/port)
+"aZC" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/port)
+"aZD" = (/obj/structure/closet/wardrobe/black,/obj/item/clothing/shoes/jackboots,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aZE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aZF" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aZG" = (/obj/machinery/camera{c_tag = "Locker Room West"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aZH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aZI" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aZJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aZK" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aZL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/port)
+"aZM" = (/obj/machinery/power/apc{dir = 1; name = "Art Storage"; pixel_x = 0; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plating,/area/storage/art)
+"aZN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plating,/area/maintenance/port)
+"aZO" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plating,/area/maintenance/port)
+"aZP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/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/open/floor/plating,/area/maintenance/port)
+"aZQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port)
+"aZR" = (/obj/machinery/power/apc{dir = 1; name = "Port Emergency Storage APC"; pixel_y = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plating,/area/storage/emergency/port)
+"aZS" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/port)
+"aZT" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/port)
+"aZU" = (/turf/closed/wall,/area/security/detectives_office)
+"aZV" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/blue/side{dir = 4},/area/hallway/primary/central)
+"aZW" = (/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/door/airlock/glass_command{cyclelinkeddir = 4; name = "Bridge"; req_access_txt = "19"},/turf/open/floor/plasteel,/area/bridge)
+"aZX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/bridge)
+"aZY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_command{cyclelinkeddir = 8; name = "Bridge"; req_access_txt = "19"},/turf/open/floor/plasteel,/area/bridge)
+"aZZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/bridge)
+"baa" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/bridge)
+"bab" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge)
+"bac" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/blue/corner,/area/bridge)
+"bad" = (/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = -32},/obj/machinery/light,/obj/machinery/light_switch{pixel_x = -6; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/blue/side{dir = 0},/area/bridge)
+"bae" = (/obj/structure/fireaxecabinet{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/blue/side{dir = 0},/area/bridge)
+"baf" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/blue/side{dir = 0},/area/bridge)
+"bag" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Bridge"; departmentType = 5; name = "Bridge RC"; pixel_y = -30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/blue/side{dir = 0},/area/bridge)
+"bah" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/blue/side{dir = 0},/area/bridge)
+"bai" = (/obj/machinery/turretid{control_area = "AI Upload Chamber"; name = "AI Upload turret control"; pixel_y = -25},/obj/machinery/camera{c_tag = "Bridge Center"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/blue/side{dir = 0},/area/bridge)
+"baj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/blue/side{dir = 0},/area/bridge)
+"bak" = (/obj/machinery/newscaster{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/blue/side{dir = 0},/area/bridge)
+"bal" = (/obj/machinery/power/apc{cell_type = 5000; dir = 2; name = "Bridge APC"; pixel_y = -24},/obj/structure/cable,/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/blue/side{dir = 0},/area/bridge)
+"bam" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/blue/corner{dir = 8},/area/bridge)
+"ban" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/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/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/bridge)
+"bao" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/bridge)
+"bap" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_command{cyclelinkeddir = 4; name = "Bridge"; req_access_txt = "19"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/bridge)
+"baq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/bridge)
+"bar" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/door/airlock/glass_command{cyclelinkeddir = 8; name = "Bridge"; req_access_txt = "19"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/bridge)
+"bas" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/blue/side{dir = 8},/area/hallway/primary/central)
+"bat" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bau" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bav" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"baw" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -31},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"bax" = (/obj/structure/table/wood/poker,/obj/item/clothing/mask/cigarette/cigar,/obj/item/toy/cards/deck,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"bay" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 5; pixel_y = -2},/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -2; pixel_y = 2},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"baz" = (/obj/machinery/door/window/southright{name = "Bar Door"; req_access_txt = "0"; req_one_access_txt = "25;28"},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"baA" = (/obj/structure/table/reinforced,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 32},/obj/item/weapon/book/manual/barman_recipes,/obj/item/weapon/reagent_containers/glass/rag,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"baB" = (/obj/effect/landmark/start/cook,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"baC" = (/obj/machinery/deepfryer,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"baD" = (/obj/structure/table,/obj/machinery/reagentgrinder,/obj/machinery/requests_console{department = "Kitchen"; departmentType = 2; pixel_x = 30; pixel_y = 0},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"baE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 2; icon_state = "pipe-j2s"; sortType = 16},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"baF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/airalarm{pixel_y = 25},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"baG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"baH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Library"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/library)
+"baI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/library)
+"baJ" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/library)
+"baK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/library)
+"baL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/carpet,/area/library)
+"baM" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Chapel"},/turf/open/floor/carpet,/area/chapel/main)
+"baN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/carpet,/area/chapel/main)
+"baO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/chapel/main)
+"baP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/carpet,/area/chapel/main)
+"baQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main)
+"baR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/escape{dir = 8},/area/hallway/secondary/exit)
+"baS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"baT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"baU" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"baV" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"baW" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 8},/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/open/floor/plating/airless,/area/shuttle/transport)
+"baX" = (/obj/machinery/light/small,/turf/open/floor/pod/light,/area/shuttle/transport)
+"baY" = (/obj/machinery/door/airlock/titanium,/turf/open/floor/pod/light,/area/shuttle/transport)
+"baZ" = (/obj/machinery/computer/shuttle/ferry/request,/turf/open/floor/pod/dark,/area/shuttle/transport)
+"bba" = (/obj/machinery/door/airlock/titanium,/obj/docking_port/mobile{dir = 8; dwidth = 2; height = 13; id = "ferry"; name = "ferry shuttle"; port_angle = 0; preferred_direction = 4; roundstart_move = "ferry_away"; width = 5},/obj/docking_port/stationary{dir = 8; dwidth = 2; height = 13; id = "ferry_home"; name = "port bay 2"; turf_type = /turf/open/space; width = 5},/turf/open/floor/pod/light,/area/shuttle/transport)
+"bbb" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 4; id_tag = null; name = "Port Docking Bay 2"; req_access_txt = "0"},/turf/open/floor/plating,/area/hallway/secondary/entry)
+"bbc" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 8; id_tag = null; name = "Port Docking Bay 2"; req_access_txt = "0"},/turf/open/floor/plating,/area/hallway/secondary/entry)
+"bbd" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/light_switch{pixel_x = -28; pixel_y = 0},/turf/open/floor/wood,/area/security/vacantoffice)
+"bbe" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/wood,/area/security/vacantoffice)
+"bbf" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/carpet,/area/security/vacantoffice)
+"bbg" = (/turf/open/floor/carpet,/area/security/vacantoffice)
+"bbh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/carpet,/area/security/vacantoffice)
+"bbi" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/security/vacantoffice)
+"bbj" = (/obj/machinery/light{dir = 4},/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/wood,/area/security/vacantoffice)
+"bbk" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/port)
+"bbl" = (/turf/closed/wall,/area/crew_quarters/toilet/locker)
+"bbm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/toilet/locker)
+"bbn" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/locker)
+"bbo" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bbp" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bbq" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bbr" = (/obj/effect/turf_decal/stripes/corner{dir = 2},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bbs" = (/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bbt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bbu" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bbv" = (/obj/machinery/power/apc{dir = 8; name = "Port Maintenance APC"; pixel_x = -27; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/open/floor/plating,/area/maintenance/port)
+"bbw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/maintenance/port)
+"bbx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/port)
+"bby" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/port)
+"bbz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/closed/wall,/area/maintenance/port)
+"bbA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/door/airlock/maintenance{name = "Cargo Bay Warehouse Maintenance"; req_access_txt = "31"},/turf/open/floor/plating,/area/maintenance/port)
+"bbB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/port)
+"bbC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/security/detectives_office)
+"bbD" = (/obj/structure/closet/secure_closet/detective,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"bbE" = (/obj/machinery/computer/med_data,/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"bbF" = (/obj/machinery/computer/secure_data,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"bbG" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/security/detectives_office)
+"bbH" = (/obj/structure/table/wood,/obj/item/weapon/storage/box/evidence,/obj/item/weapon/hand_labeler{pixel_x = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"bbI" = (/obj/structure/table/wood,/obj/item/device/taperecorder,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/button/door{id = "kanyewest"; name = "Privacy Shutters"; pixel_x = 0; pixel_y = 24},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"bbJ" = (/turf/open/floor/plasteel/blue/corner,/area/hallway/primary/central)
+"bbK" = (/obj/machinery/light,/turf/open/floor/plasteel/blue/side{dir = 0},/area/hallway/primary/central)
+"bbL" = (/obj/machinery/camera{c_tag = "Bridge West Entrance"; dir = 1},/turf/open/floor/plasteel/blue/side{dir = 0},/area/hallway/primary/central)
+"bbM" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/blue/side{dir = 6},/area/hallway/primary/central)
+"bbN" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/bridge)
+"bbO" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/bridge)
+"bbP" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/blue/side{dir = 0},/area/bridge)
+"bbQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/blue/side{dir = 0},/area/bridge)
+"bbR" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/open/floor/plasteel/blue/side{dir = 0},/area/bridge)
+"bbS" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/turf/open/floor/plasteel/blue/side{dir = 6},/area/bridge)
+"bbT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload)
+"bbU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload)
+"bbV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload)
+"bbW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/highsecurity{icon_state = "door_closed"; locked = 0; name = "AI Upload Access"; req_access_txt = "16"},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
+"bbX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload)
+"bbY" = (/obj/machinery/ai_status_display,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload)
+"bbZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload)
+"bca" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload)
+"bcb" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/filingcabinet/filingcabinet,/turf/open/floor/plasteel/blue/side{dir = 10},/area/bridge)
+"bcc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/blue/side{dir = 0},/area/bridge)
+"bcd" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/blue/side{dir = 10},/area/hallway/primary/central)
+"bce" = (/obj/machinery/power/apc{dir = 2; name = "Central Hall APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel/blue/side{dir = 0},/area/hallway/primary/central)
+"bcf" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/central)
+"bcg" = (/obj/structure/chair{dir = 1},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"bch" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"bci" = (/obj/structure/chair/stool/bar,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"bcj" = (/obj/structure/chair/stool/bar,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"bck" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Kitchen"; req_access_txt = "28"},/turf/open/floor/plasteel/bar,/area/crew_quarters/kitchen)
+"bcl" = (/obj/machinery/light_switch{pixel_y = -25},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"bcm" = (/obj/machinery/light,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"bcn" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"bco" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/button/door{id = "kitchen"; name = "Kitchen Shutters Control"; pixel_x = -1; pixel_y = -24; req_access_txt = "28"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"bcp" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"bcq" = (/obj/structure/reagent_dispensers/watertank/high,/turf/open/floor/plasteel,/area/hydroponics)
+"bcr" = (/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/plasteel,/area/hydroponics)
+"bcs" = (/obj/machinery/hydroponics/constructable,/turf/open/floor/plasteel/green/side{dir = 1},/area/hydroponics)
+"bct" = (/obj/structure/chair/stool,/obj/effect/landmark/start/botanist,/turf/open/floor/plasteel,/area/hydroponics)
+"bcu" = (/obj/machinery/camera{c_tag = "Hydroponics South"; dir = 8; network = list("SS13")},/obj/structure/reagent_dispensers/watertank/high,/turf/open/floor/plasteel,/area/hydroponics)
+"bcv" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/closed/wall,/area/hydroponics)
+"bcw" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"bcx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"bcy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Library"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/library)
+"bcz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/library)
+"bcA" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/carpet,/area/library)
+"bcB" = (/obj/machinery/holopad,/turf/open/floor/carpet,/area/library)
+"bcC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/carpet,/area/chapel/main)
+"bcD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main)
+"bcE" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/carpet,/area/chapel/main)
+"bcF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/chapel/main)
+"bcG" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main)
+"bcH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/escape{dir = 8},/area/hallway/secondary/exit)
+"bcI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bcJ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bcK" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bcL" = (/obj/machinery/camera{c_tag = "Escape Arm Airlocks"; dir = 8; network = list("SS13")},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bcM" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 8},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/open/floor/plating/airless,/area/shuttle/transport)
+"bcN" = (/obj/structure/chair{dir = 1},/turf/open/floor/pod/dark,/area/shuttle/transport)
+"bcO" = (/obj/machinery/light,/turf/open/floor/pod/light,/area/shuttle/transport)
+"bcP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"bcQ" = (/obj/machinery/door/airlock/engineering{name = "Vacant Office A"; req_access_txt = "32"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/security/vacantoffice)
+"bcR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/security/vacantoffice)
+"bcS" = (/obj/structure/chair/office/dark,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/security/vacantoffice)
+"bcT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/security/vacantoffice)
+"bcU" = (/obj/structure/chair/office/dark,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/security/vacantoffice)
+"bcV" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/components/unary/tank/air{dir = 4},/turf/open/floor/plating,/area/maintenance/port)
+"bcW" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/port)
+"bcX" = (/obj/structure/toilet{pixel_y = 8},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/locker)
+"bcY" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/locker)
+"bcZ" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/locker)
+"bda" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/locker)
+"bdb" = (/obj/structure/table,/obj/item/weapon/razor,/obj/structure/window{icon_state = "window"; dir = 1},/turf/open/floor/plasteel/barber,/area/crew_quarters/locker)
+"bdc" = (/turf/open/floor/plasteel/barber,/area/crew_quarters/locker)
+"bdd" = (/obj/structure/closet,/obj/item/clothing/under/suit_jacket/female{pixel_x = 3; pixel_y = 1},/obj/item/clothing/under/suit_jacket/really_black{pixel_x = -2; pixel_y = 0},/obj/structure/window{icon_state = "window"; dir = 1},/turf/open/floor/plasteel/barber,/area/crew_quarters/locker)
+"bde" = (/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bdf" = (/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bdg" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bdh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bdi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/port)
+"bdj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/maintenance/port)
+"bdk" = (/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage)
+"bdl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage)
+"bdm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage)
+"bdn" = (/turf/closed/wall,/area/quartermaster/storage)
+"bdo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/port)
+"bdp" = (/obj/machinery/light/small{dir = 8},/obj/structure/rack,/obj/item/weapon/storage/briefcase,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"bdq" = (/turf/open/floor/carpet,/area/security/detectives_office)
+"bdr" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"bds" = (/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/camera{c_tag = "Detective's Office"; dir = 2},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"bdt" = (/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"bdu" = (/obj/machinery/light_switch{pixel_x = 27},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"bdv" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/blue/corner,/area/hallway/primary/central)
+"bdw" = (/turf/closed/wall/r_wall,/area/bridge/meeting_room)
+"bdx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/bridge/meeting_room)
+"bdy" = (/obj/machinery/door/airlock/command{name = "Conference Room"; req_access = null; req_access_txt = "19"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/bridge/meeting_room)
+"bdz" = (/turf/closed/wall,/area/bridge/meeting_room)
+"bdA" = (/obj/machinery/porta_turret/ai{dir = 4},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
+"bdB" = (/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload)
+"bdC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
+"bdD" = (/obj/machinery/porta_turret/ai{dir = 8},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
+"bdE" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain)
+"bdF" = (/obj/machinery/door/airlock/command{name = "Captain's Office"; req_access = null; req_access_txt = "20"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/heads/captain)
+"bdG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain)
+"bdH" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/central)
+"bdI" = (/obj/machinery/computer/arcade,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"bdJ" = (/obj/machinery/vending/cigarette{pixel_x = 0; pixel_y = 0},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"bdK" = (/obj/machinery/newscaster{pixel_y = -28},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"bdL" = (/obj/machinery/light,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"bdM" = (/obj/machinery/light,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"bdN" = (/obj/machinery/camera{c_tag = "Bar South"; dir = 1},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"bdO" = (/obj/structure/noticeboard{pixel_y = -27},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"bdP" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"bdQ" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"bdR" = (/obj/machinery/light/small,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
+"bdS" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/fancy/donut_box,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen"; name = "kitchen shutters"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"bdT" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen"; name = "kitchen shutters"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"bdU" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/open/floor/plasteel,/area/hydroponics)
+"bdV" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/hydroponics)
+"bdW" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hydroponics)
+"bdX" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/northleft{name = "Hydroponics Desk"; req_access_txt = "35"},/turf/open/floor/plasteel,/area/hydroponics)
+"bdY" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westright{dir = 1; name = "Hydroponics Desk"; req_access_txt = "35"},/turf/open/floor/plasteel,/area/hydroponics)
+"bdZ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"bea" = (/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"beb" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"bec" = (/obj/machinery/vending/coffee,/turf/open/floor/wood,/area/library)
+"bed" = (/obj/structure/chair/comfy/black{dir = 4},/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/open/floor/wood,/area/library)
+"bee" = (/obj/structure/table/wood,/obj/item/weapon/pen,/turf/open/floor/wood,/area/library)
+"bef" = (/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/wood,/area/library)
+"beg" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/open/floor/wood,/area/library)
+"beh" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/plasteel/black,/area/chapel/main)
+"bei" = (/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"bej" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/chapel/main)
+"bek" = (/obj/machinery/power/apc{dir = 8; name = "Escape Hallway APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plasteel/escape{dir = 8},/area/hallway/secondary/exit)
+"bel" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bem" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"ben" = (/obj/machinery/door/airlock/external,/turf/open/floor/pod/light,/area/shuttle/transport)
+"beo" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"bep" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"beq" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/open/floor/wood,/area/security/vacantoffice)
+"ber" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/security/vacantoffice)
+"bes" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 4},/turf/open/floor/plating,/area/maintenance/port)
+"bet" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port)
+"beu" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/power/apc{dir = 4; name = "Locker Restrooms APC"; pixel_x = 27; pixel_y = 2},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plating,/area/crew_quarters/toilet/locker)
+"bev" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/locker)
+"bew" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/locker)
+"bex" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/barber,/area/crew_quarters/locker)
+"bey" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/stack/sheet/cardboard,/obj/item/stack/rods{amount = 50},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage)
+"bez" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/electronics/apc,/obj/item/weapon/stock_parts/cell{maxcharge = 2000},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage)
+"beA" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage)
+"beB" = (/obj/item/weapon/storage/secure/safe{pixel_x = -23},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"beC" = (/obj/structure/chair/comfy/brown,/obj/effect/landmark/start/detective,/turf/open/floor/carpet,/area/security/detectives_office)
+"beD" = (/obj/structure/table/wood,/obj/item/device/camera/detective,/turf/open/floor/carpet,/area/security/detectives_office)
+"beE" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"beF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Detective's Office"; req_access_txt = "4"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"beG" = (/obj/machinery/photocopier,/turf/open/floor/wood,/area/bridge/meeting_room)
+"beH" = (/obj/machinery/button/door{id = "heads_meeting"; name = "Security Shutters"; pixel_x = 0; pixel_y = 24},/turf/open/floor/wood,/area/bridge/meeting_room)
+"beI" = (/obj/machinery/newscaster{pixel_y = 32},/turf/open/floor/wood,/area/bridge/meeting_room)
+"beJ" = (/obj/machinery/camera{c_tag = "Conference Room"; dir = 2},/turf/open/floor/wood,/area/bridge/meeting_room)
+"beK" = (/turf/open/floor/wood,/area/bridge/meeting_room)
+"beL" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/bridge/meeting_room)
+"beM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/bridge/meeting_room)
+"beN" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/wood,/area/bridge/meeting_room)
+"beO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload)
+"beP" = (/obj/structure/table,/obj/item/weapon/aiModule/reset,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
+"beQ" = (/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
+"beR" = (/obj/structure/table,/obj/item/weapon/folder/blue,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
+"beS" = (/obj/structure/table,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
+"beT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload)
+"beU" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/wood,/area/crew_quarters/heads/captain)
+"beV" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/wood,/area/crew_quarters/heads/captain)
+"beW" = (/obj/machinery/light_switch{pixel_y = 28},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/heads/captain)
+"beX" = (/obj/machinery/ai_status_display{pixel_y = 32},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/captain)
+"beY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0; pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/carpet,/area/crew_quarters/heads/captain)
+"beZ" = (/obj/machinery/status_display{pixel_x = 0; pixel_y = 32},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/carpet,/area/crew_quarters/heads/captain)
+"bfa" = (/obj/machinery/power/apc{cell_type = 2500; dir = 1; name = "Captain's Office APC"; pixel_y = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/wood,/area/crew_quarters/heads/captain)
+"bfb" = (/turf/open/floor/wood,/area/crew_quarters/heads/captain)
+"bfc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Diner"},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"bfd" = (/obj/structure/sign/barsign,/turf/closed/wall,/area/crew_quarters/bar)
+"bfe" = (/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/primary/starboard)
+"bff" = (/obj/machinery/camera{c_tag = "Starboard Primary Hallway 2"; dir = 2; network = list("SS13")},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/primary/starboard)
+"bfg" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access_txt = "35"},/turf/open/floor/plasteel,/area/hydroponics)
+"bfh" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/library)
+"bfi" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/chapel/main)
+"bfj" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/open/floor/plasteel/escape{dir = 8},/area/hallway/secondary/exit)
+"bfk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bfl" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 4; name = "Escape Airlock"},/turf/open/floor/plating,/area/hallway/secondary/exit)
+"bfm" = (/obj/machinery/door/airlock/titanium{name = "Emergency Shuttle Airlock"},/turf/open/floor/plating,/area/shuttle/escape)
+"bfn" = (/obj/machinery/light/small,/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
+"bfo" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
+"bfp" = (/obj/machinery/light,/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
+"bfq" = (/obj/machinery/power/apc{dir = 8; name = "Vacant Office A APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plating,/area/security/vacantoffice/a)
+"bfr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port)
+"bfs" = (/obj/structure/disposalpipe/segment,/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"},/turf/open/floor/plating,/area/maintenance/port)
+"bft" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/locker)
+"bfu" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{pixel_x = 28},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/locker)
+"bfv" = (/obj/machinery/washing_machine,/turf/open/floor/plasteel/barber,/area/crew_quarters/locker)
+"bfw" = (/obj/machinery/washing_machine,/obj/machinery/light,/turf/open/floor/plasteel/barber,/area/crew_quarters/locker)
+"bfx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/closet/crate,/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage)
+"bfy" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage)
+"bfz" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage)
+"bfA" = (/obj/machinery/door/airlock/maintenance{name = "Detective Maintenance"; req_access_txt = "4"},/turf/open/floor/plating,/area/security/detectives_office)
+"bfB" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey{pixel_x = 3},/obj/item/weapon/lighter,/turf/open/floor/carpet,/area/security/detectives_office)
+"bfC" = (/obj/structure/table/wood,/obj/machinery/computer/security/wooden_tv,/turf/open/floor/carpet,/area/security/detectives_office)
+"bfD" = (/obj/structure/table/wood,/obj/item/weapon/storage/fancy/cigarettes,/obj/item/clothing/glasses/sunglasses,/turf/open/floor/carpet,/area/security/detectives_office)
+"bfE" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/turf/open/floor/carpet,/area/security/detectives_office)
+"bfF" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "kanyewest"; layer = 2.9; name = "privacy shutters"},/turf/open/floor/plating,/area/security/detectives_office)
+"bfG" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "heads_meeting"; layer = 2.9; name = "privacy shutters"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/bridge/meeting_room)
+"bfH" = (/obj/machinery/recharger{pixel_y = 4},/obj/structure/table,/turf/open/floor/wood,/area/bridge/meeting_room)
+"bfI" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/carpet,/area/bridge/meeting_room)
+"bfJ" = (/obj/structure/chair/comfy/black,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/bridge/meeting_room)
+"bfK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/bridge/meeting_room)
+"bfL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/wood,/area/bridge/meeting_room)
+"bfM" = (/obj/machinery/vending/snack/random,/turf/open/floor/wood,/area/bridge/meeting_room)
+"bfN" = (/obj/structure/table,/obj/item/weapon/aiModule/supplied/quarantine,/obj/machinery/camera/motion{dir = 4},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
+"bfO" = (/obj/machinery/holopad,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
+"bfP" = (/obj/structure/table,/obj/item/weapon/aiModule/supplied/freeform,/obj/structure/sign/kiddieplaque{pixel_x = 32},/obj/machinery/camera/motion{dir = 8},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
+"bfQ" = (/obj/machinery/vending/cigarette,/turf/open/floor/wood,/area/crew_quarters/heads/captain)
+"bfR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/heads/captain)
+"bfS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/heads/captain)
+"bfT" = (/obj/structure/chair/comfy/brown{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/captain)
+"bfU" = (/obj/structure/table/wood,/obj/item/weapon/storage/fancy/donut_box,/turf/open/floor/carpet,/area/crew_quarters/heads/captain)
+"bfV" = (/obj/structure/chair/comfy/brown{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/carpet,/area/crew_quarters/heads/captain)
+"bfW" = (/obj/structure/displaycase/captain,/turf/open/floor/wood,/area/crew_quarters/heads/captain)
+"bfX" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Dorm"; location = "HOP2"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bfY" = (/obj/structure/sign/directions/evac{dir = 4; icon_state = "direction_evac"; pixel_x = 32; pixel_y = 28},/obj/structure/sign/directions/security{dir = 1; icon_state = "direction_sec"; pixel_x = 32; pixel_y = 36},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bfZ" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"bga" = (/obj/machinery/camera{c_tag = "Starboard Primary Hallway"; dir = 2; network = list("SS13")},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"bgb" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"bgc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"bgd" = (/obj/machinery/status_display{layer = 4; pixel_x = 0; pixel_y = 32},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"bge" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"bgf" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"bgg" = (/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"bgh" = (/obj/machinery/camera{c_tag = "Starboard Primary Hallway 5"; dir = 2; network = list("SS13")},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"bgi" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white/corner{dir = 4},/area/hallway/secondary/exit)
+"bgj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bgk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bgl" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bgm" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 32; pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bgn" = (/obj/machinery/door/airlock/titanium{name = "Emergency Shuttle Cargo"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
+"bgo" = (/obj/machinery/door/airlock/glass{name = "Emergency Shuttle Infirmary"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
+"bgp" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/blue/corner{dir = 1},/area/hallway/secondary/entry)
+"bgq" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port)
+"bgr" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port)
+"bgs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/port)
+"bgt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port)
+"bgu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/port)
+"bgv" = (/obj/effect/landmark/blobstart,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port)
+"bgw" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/port)
+"bgx" = (/obj/structure/rack{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/port)
+"bgy" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port)
+"bgz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 1},/turf/open/floor/plating,/area/maintenance/port)
+"bgA" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/locker)
+"bgB" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/locker)
+"bgC" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bgD" = (/obj/machinery/camera{c_tag = "Locker Room South"; dir = 8; network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bgE" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/closet/crate/freezer,/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage)
+"bgF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage)
+"bgG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage)
+"bgH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/quartermaster/storage)
+"bgI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/power/apc{dir = 4; name = "Detective's Office APC"; pixel_x = 24; pixel_y = 0},/obj/structure/cable,/turf/open/floor/plating,/area/security/detectives_office)
+"bgJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/security/detectives_office)
+"bgK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"bgL" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"bgM" = (/obj/machinery/light/small,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"bgN" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/filingcabinet,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"bgO" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bgP" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "heads_meeting"; layer = 2.9; name = "privacy shutters"},/turf/open/floor/plating,/area/bridge/meeting_room)
+"bgQ" = (/obj/item/weapon/hand_labeler,/obj/item/device/assembly/timer,/obj/structure/table,/turf/open/floor/wood,/area/bridge/meeting_room)
+"bgR" = (/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/carpet,/area/bridge/meeting_room)
+"bgS" = (/obj/structure/table/wood,/obj/item/device/radio/intercom{dir = 8; freerange = 1; name = "Station Intercom (Command)"; pixel_x = 0},/turf/open/floor/carpet,/area/bridge/meeting_room)
+"bgT" = (/obj/item/weapon/book/manual/wiki/security_space_law,/obj/structure/table/wood,/turf/open/floor/carpet,/area/bridge/meeting_room)
+"bgU" = (/obj/structure/chair/comfy/black{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/bridge/meeting_room)
+"bgV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/bridge/meeting_room)
+"bgW" = (/obj/machinery/vending/cola/random,/turf/open/floor/wood,/area/bridge/meeting_room)
+"bgX" = (/obj/machinery/airalarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/machinery/porta_turret/ai{dir = 4},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
+"bgY" = (/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/turret_protected/ai_upload)
+"bgZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload)
+"bha" = (/obj/machinery/computer/arcade,/turf/open/floor/wood,/area/crew_quarters/heads/captain)
+"bhb" = (/obj/structure/table/wood,/turf/open/floor/carpet,/area/crew_quarters/heads/captain)
+"bhc" = (/obj/machinery/camera{c_tag = "Central Hallway East"; dir = 4; network = list("SS13")},/obj/structure/disposalpipe/segment,/obj/machinery/status_display{density = 0; layer = 3; pixel_x = -32; pixel_y = 0},/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/central)
+"bhd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"bhe" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"bhf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"bhg" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"bhh" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"bhi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"bhj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"bhk" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"bhl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"bhm" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=HOP2"; location = "Stbd"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"bhn" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"bho" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bhp" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bhq" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bhr" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bhs" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 4; name = "Cargo Escape Airlock"},/turf/open/floor/plating,/area/hallway/secondary/exit)
+"bht" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/hallway/secondary/exit)
+"bhu" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 8; name = "Cargo Escape Airlock"},/turf/open/floor/plating,/area/hallway/secondary/exit)
+"bhv" = (/turf/open/floor/mineral/titanium/yellow,/area/shuttle/escape)
+"bhw" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/turf/open/floor/mineral/titanium/yellow,/area/shuttle/escape)
+"bhx" = (/obj/machinery/sleeper{icon_state = "sleeper-open"; dir = 8},/turf/open/floor/mineral/titanium,/area/shuttle/escape)
+"bhy" = (/obj/effect/turf_decal/stripes/corner{dir = 2},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"bhz" = (/turf/closed/wall,/area/maintenance/disposal)
+"bhA" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/maintenance/disposal)
+"bhB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/disposal)
+"bhC" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port)
+"bhD" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port)
+"bhE" = (/obj/machinery/door/airlock{name = "Unit 3"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/locker)
+"bhF" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/locker)
+"bhG" = (/obj/item/latexballon,/turf/open/floor/plating,/area/maintenance/port)
+"bhH" = (/obj/effect/landmark/blobstart,/obj/item/clothing/suit/ianshirt,/obj/structure/closet,/turf/open/floor/plating,/area/maintenance/port)
+"bhI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/locker)
+"bhJ" = (/obj/machinery/door/airlock/maintenance{name = "Locker Room Maintenance"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port)
+"bhK" = (/obj/structure/closet/crate/internals,/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage)
+"bhL" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage)
+"bhM" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage)
+"bhN" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage)
+"bhO" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/security/detectives_office)
+"bhP" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bhQ" = (/obj/item/weapon/storage/fancy/donut_box,/obj/structure/table,/turf/open/floor/wood,/area/bridge/meeting_room)
+"bhR" = (/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/structure/table/wood,/turf/open/floor/carpet,/area/bridge/meeting_room)
+"bhS" = (/obj/item/weapon/folder/blue,/obj/structure/table/wood,/turf/open/floor/carpet,/area/bridge/meeting_room)
+"bhT" = (/obj/structure/table,/obj/item/weapon/aiModule/core/full/asimov,/obj/item/weapon/aiModule/core/freeformcore,/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"; name = "Core Modules"; req_access_txt = "20"},/obj/structure/window/reinforced,/obj/item/weapon/aiModule/core/full/corp,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/aiModule/core/full/custom,/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
+"bhU" = (/obj/machinery/light,/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
+"bhV" = (/obj/machinery/computer/upload/ai,/obj/machinery/flasher{id = "AI"; pixel_x = 0; pixel_y = -21},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload)
+"bhW" = (/obj/machinery/power/apc{cell_type = 5000; dir = 2; name = "Upload APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload)
+"bhX" = (/obj/machinery/computer/upload/borg,/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1447; listening = 0; name = "Station Intercom (AI Private)"; pixel_y = -29},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload)
+"bhY" = (/obj/machinery/light,/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
+"bhZ" = (/obj/structure/table,/obj/item/weapon/aiModule/supplied/oxygen,/obj/item/weapon/aiModule/zeroth/oneHuman,/obj/machinery/door/window{base_state = "left"; dir = 8; icon_state = "left"; name = "High-Risk Modules"; req_access_txt = "20"},/obj/item/weapon/aiModule/reset/purge,/obj/structure/window/reinforced,/obj/item/weapon/aiModule/core/full/antimov,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/aiModule/supplied/protectStation,/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
+"bia" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/wood,/area/crew_quarters/heads/captain)
+"bib" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/heads/captain)
+"bic" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/wood,/area/crew_quarters/heads/captain)
+"bid" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/captain)
+"bie" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/carpet,/area/crew_quarters/heads/captain)
+"bif" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/carpet,/area/crew_quarters/heads/captain)
+"big" = (/obj/structure/table/wood,/obj/machinery/camera{c_tag = "Captain's Office"; dir = 8},/obj/item/weapon/storage/lockbox/medal{pixel_y = 0},/turf/open/floor/wood,/area/crew_quarters/heads/captain)
+"bih" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/central)
+"bii" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Stbd"; location = "HOP"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bij" = (/obj/structure/sign/directions/medical{dir = 4; icon_state = "direction_med"; pixel_x = 32; pixel_y = -24},/obj/structure/sign/directions/science{dir = 4; icon_state = "direction_sci"; pixel_x = 32; pixel_y = -32},/obj/structure/sign/directions/engineering{pixel_x = 32; pixel_y = -40},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bik" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"bil" = (/obj/machinery/light,/turf/open/floor/plasteel/blue/corner,/area/hallway/primary/starboard)
+"bim" = (/turf/open/floor/plasteel/blue/side{dir = 0},/area/hallway/primary/starboard)
+"bin" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/blue/side{dir = 0},/area/hallway/primary/starboard)
+"bio" = (/obj/machinery/light,/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/starboard)
+"bip" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"biq" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/obj/machinery/light,/turf/open/floor/plasteel/white/corner{dir = 2},/area/hallway/primary/starboard)
+"bir" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white/side{dir = 2},/area/hallway/primary/starboard)
+"bis" = (/turf/open/floor/plasteel/white/corner{dir = 8},/area/hallway/primary/starboard)
+"bit" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"biu" = (/obj/machinery/camera{c_tag = "Starboard Primary Hallway 3"; dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"biv" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"biw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"bix" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"biy" = (/turf/open/floor/plasteel/loadingarea{dir = 1},/area/hallway/primary/starboard)
+"biz" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"biA" = (/obj/machinery/camera{c_tag = "Starboard Primary Hallway 4"; dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
+"biB" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/red/corner{dir = 2},/area/hallway/secondary/exit)
+"biC" = (/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = -32},/turf/open/floor/plasteel/escape{dir = 2},/area/hallway/secondary/exit)
+"biD" = (/obj/machinery/newscaster{pixel_y = -32},/obj/machinery/light,/turf/open/floor/plasteel/escape{dir = 2},/area/hallway/secondary/exit)
+"biE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white/corner{dir = 8},/area/hallway/secondary/exit)
+"biF" = (/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/mineral/titanium/yellow,/area/shuttle/escape)
+"biG" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/mineral/titanium/yellow,/area/shuttle/escape)
+"biH" = (/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/mineral/titanium,/area/shuttle/escape)
+"biI" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/regular{pixel_x = 2; pixel_y = 3},/obj/item/weapon/crowbar,/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/machinery/light/small{dir = 4},/turf/open/floor/mineral/titanium,/area/shuttle/escape)
+"biJ" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 2; name = "Port Docking Bay 4"; req_access_txt = "0"},/turf/open/floor/plating,/area/hallway/secondary/entry)
+"biK" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 2; name = "Port Docking Bay 3"; req_access_txt = "0"},/turf/open/floor/plating,/area/hallway/secondary/entry)
+"biL" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/obj/structure/chair{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"biM" = (/obj/structure/chair{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"biN" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal)
+"biO" = (/obj/machinery/conveyor{dir = 8; id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal)
+"biP" = (/obj/machinery/conveyor{dir = 8; id = "garbage"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal)
+"biQ" = (/obj/machinery/conveyor{dir = 8; id = "garbage"},/obj/machinery/recycler,/obj/structure/sign/securearea{name = "\improper STAY CLEAR HEAVY MACHINERY"; pixel_y = 32},/turf/open/floor/plating,/area/maintenance/disposal)
+"biR" = (/obj/machinery/conveyor{dir = 6; id = "garbage"; verted = -1},/turf/open/floor/plating,/area/maintenance/disposal)
+"biS" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/port)
+"biT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port)
+"biU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port)
+"biV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port)
+"biW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j2s"; sortType = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/port)
+"biX" = (/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/locker)
+"biY" = (/obj/machinery/camera{c_tag = "Locker Room Toilets"; dir = 8; network = list("SS13")},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/locker)
+"biZ" = (/obj/machinery/power/apc{dir = 1; name = "Locker Room APC"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/crew_quarters/locker)
+"bja" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port)
+"bjb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port)
+"bjc" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/port)
+"bjd" = (/obj/machinery/atmospherics/pipe